diff --git a/grammar.js b/grammar.js index 386770c..a62c6f6 100644 --- a/grammar.js +++ b/grammar.js @@ -1533,10 +1533,10 @@ module.exports = grammar({ // - or just content for the comment choice( // A tricky edge case where what looks like a doc comment is not - seq(token.immediate(prec(2, /\/\//)), /.*/), + seq(token.immediate(prec(3, /\/\//)), field('comment', alias(/.*/, $.comment))), // A regular doc comment seq($._line_doc_comment_marker, field('doc', alias($._line_doc_content, $.doc_comment))), - token.immediate(prec(1, /.*/)), + field('comment', alias(token.immediate(prec(1, /.*/)), $.comment)), ), ), @@ -1560,7 +1560,7 @@ module.exports = grammar({ optional(field('doc', alias($._block_comment_content, $.doc_comment))), ), // Non-doc block comments - $._block_comment_content, + field('comment', alias($._block_comment_content, $.comment)), ), ), '*/', diff --git a/src/grammar.json b/src/grammar.json index e36731f..79b606b 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -8923,7 +8923,7 @@ "type": "IMMEDIATE_TOKEN", "content": { "type": "PREC", - "value": 2, + "value": 3, "content": { "type": "PATTERN", "value": "\\/\\/" @@ -8931,8 +8931,17 @@ } }, { - "type": "PATTERN", - "value": ".*" + "type": "FIELD", + "name": "comment", + "content": { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": ".*" + }, + "named": true, + "value": "comment" + } } ] }, @@ -8959,14 +8968,23 @@ ] }, { - "type": "IMMEDIATE_TOKEN", + "type": "FIELD", + "name": "comment", "content": { - "type": "PREC", - "value": 1, + "type": "ALIAS", "content": { - "type": "PATTERN", - "value": ".*" - } + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "PREC", + "value": 1, + "content": { + "type": "PATTERN", + "value": ".*" + } + } + }, + "named": true, + "value": "comment" } } ] @@ -9070,8 +9088,17 @@ ] }, { - "type": "SYMBOL", - "name": "_block_comment_content" + "type": "FIELD", + "name": "comment", + "content": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_block_comment_content" + }, + "named": true, + "value": "comment" + } } ] }, diff --git a/src/node-types.json b/src/node-types.json index 93c3644..037323d 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -907,6 +907,16 @@ "type": "block_comment", "named": true, "fields": { + "comment": { + "multiple": false, + "required": false, + "types": [ + { + "type": "comment", + "named": true + } + ] + }, "doc": { "multiple": false, "required": false, @@ -2619,6 +2629,16 @@ "type": "line_comment", "named": true, "fields": { + "comment": { + "multiple": false, + "required": false, + "types": [ + { + "type": "comment", + "named": true + } + ] + }, "doc": { "multiple": false, "required": false, @@ -5127,6 +5147,10 @@ "type": "char_literal", "named": true }, + { + "type": "comment", + "named": true + }, { "type": "const", "named": false diff --git a/src/parser.c b/src/parser.c index 58e98a9..4504711 100644 --- a/src/parser.c +++ b/src/parser.c @@ -11,9 +11,9 @@ #define ALIAS_COUNT 4 #define TOKEN_COUNT 153 #define EXTERNAL_TOKEN_COUNT 10 -#define FIELD_COUNT 31 +#define FIELD_COUNT 32 #define MAX_ALIAS_SEQUENCE_LENGTH 10 -#define PRODUCTION_ID_COUNT 279 +#define PRODUCTION_ID_COUNT 281 enum ts_symbol_identifiers { sym_identifier = 1, @@ -497,8 +497,8 @@ static const char * const ts_symbol_names[] = { [anon_sym_false] = "false", [anon_sym_SLASH_SLASH] = "//", [aux_sym_line_comment_token1] = "line_comment_token1", - [aux_sym_line_comment_token2] = "line_comment_token2", - [aux_sym_line_comment_token3] = "line_comment_token3", + [aux_sym_line_comment_token2] = "comment", + [aux_sym_line_comment_token3] = "comment", [anon_sym_BANG2] = "!", [anon_sym_SLASH2] = "/", [anon_sym_SLASH_STAR] = "/*", @@ -515,7 +515,7 @@ static const char * const ts_symbol_names[] = { [sym_float_literal] = "float_literal", [sym__outer_block_doc_comment_marker] = "outer_doc_comment_marker", [sym__inner_block_doc_comment_marker] = "inner_doc_comment_marker", - [sym__block_comment_content] = "_block_comment_content", + [sym__block_comment_content] = "doc_comment", [sym__line_doc_content] = "doc_comment", [sym__error_sentinel] = "_error_sentinel", [sym_source_file] = "source_file", @@ -848,7 +848,7 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_SLASH_SLASH] = anon_sym_SLASH_SLASH, [aux_sym_line_comment_token1] = aux_sym_line_comment_token1, [aux_sym_line_comment_token2] = aux_sym_line_comment_token2, - [aux_sym_line_comment_token3] = aux_sym_line_comment_token3, + [aux_sym_line_comment_token3] = aux_sym_line_comment_token2, [anon_sym_BANG2] = anon_sym_BANG, [anon_sym_SLASH2] = anon_sym_SLASH, [anon_sym_SLASH_STAR] = anon_sym_SLASH_STAR, @@ -866,7 +866,7 @@ static const TSSymbol ts_symbol_map[] = { [sym__outer_block_doc_comment_marker] = sym__outer_block_doc_comment_marker, [sym__inner_block_doc_comment_marker] = sym__inner_block_doc_comment_marker, [sym__block_comment_content] = sym__block_comment_content, - [sym__line_doc_content] = sym__line_doc_content, + [sym__line_doc_content] = sym__block_comment_content, [sym__error_sentinel] = sym__error_sentinel, [sym_source_file] = sym_source_file, [sym__statement] = sym__statement, @@ -1594,12 +1594,12 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .named = false, }, [aux_sym_line_comment_token2] = { - .visible = false, - .named = false, + .visible = true, + .named = true, }, [aux_sym_line_comment_token3] = { - .visible = false, - .named = false, + .visible = true, + .named = true, }, [anon_sym_BANG2] = { .visible = true, @@ -1666,7 +1666,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .named = true, }, [sym__block_comment_content] = { - .visible = false, + .visible = true, .named = true, }, [sym__line_doc_content] = { @@ -2467,31 +2467,32 @@ enum ts_field_identifiers { 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_comment = 7, + field_condition = 8, + field_consequence = 9, + field_default_type = 10, + field_doc = 11, + field_element = 12, + field_field = 13, + field_function = 14, + field_inner = 15, + field_left = 16, + field_length = 17, + field_list = 18, + field_macro = 19, + field_name = 20, + field_operator = 21, + field_outer = 22, + field_parameters = 23, + field_path = 24, + field_pattern = 25, + field_return_type = 26, + field_right = 27, + field_trait = 28, + field_type = 29, + field_type_arguments = 30, + field_type_parameters = 31, + field_value = 32, }; static const char * const ts_field_names[] = { @@ -2502,6 +2503,7 @@ static const char * const ts_field_names[] = { [field_arguments] = "arguments", [field_body] = "body", [field_bounds] = "bounds", + [field_comment] = "comment", [field_condition] = "condition", [field_consequence] = "consequence", [field_default_type] = "default_type", @@ -2533,1007 +2535,1013 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [2] = {.index = 0, .length = 1}, [3] = {.index = 1, .length = 1}, [4] = {.index = 2, .length = 1}, - [6] = {.index = 3, .length = 1}, - [7] = {.index = 3, .length = 1}, + [5] = {.index = 3, .length = 1}, + [7] = {.index = 4, .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 = 2}, - [20] = {.index = 19, .length = 2}, - [21] = {.index = 19, .length = 2}, - [22] = {.index = 21, .length = 1}, - [23] = {.index = 22, .length = 1}, - [24] = {.index = 23, .length = 1}, + [9] = {.index = 5, .length = 1}, + [11] = {.index = 6, .length = 2}, + [12] = {.index = 6, .length = 2}, + [13] = {.index = 8, .length = 2}, + [14] = {.index = 10, .length = 2}, + [15] = {.index = 12, .length = 1}, + [16] = {.index = 13, .length = 3}, + [17] = {.index = 0, .length = 1}, + [18] = {.index = 16, .length = 2}, + [19] = {.index = 18, .length = 2}, + [20] = {.index = 18, .length = 2}, + [21] = {.index = 20, .length = 1}, + [22] = {.index = 21, .length = 2}, + [23] = {.index = 21, .length = 2}, + [24] = {.index = 21, .length = 2}, [25] = {.index = 23, .length = 1}, - [26] = {.index = 24, .length = 2}, - [27] = {.index = 24, .length = 2}, - [28] = {.index = 26, .length = 1}, - [29] = {.index = 27, .length = 2}, - [30] = {.index = 29, .length = 2}, - [31] = {.index = 31, .length = 2}, - [32] = {.index = 33, .length = 1}, - [33] = {.index = 34, .length = 2}, - [34] = {.index = 27, .length = 2}, - [35] = {.index = 36, .length = 2}, - [36] = {.index = 38, .length = 1}, - [37] = {.index = 39, .length = 1}, - [38] = {.index = 40, .length = 2}, - [39] = {.index = 26, .length = 1}, - [40] = {.index = 16, .length = 2}, - [41] = {.index = 16, .length = 2}, - [42] = {.index = 42, .length = 2}, - [43] = {.index = 44, .length = 2}, - [44] = {.index = 46, .length = 1}, - [45] = {.index = 16, .length = 2}, - [46] = {.index = 16, .length = 2}, - [47] = {.index = 47, .length = 3}, - [48] = {.index = 50, .length = 2}, - [49] = {.index = 52, .length = 2}, - [50] = {.index = 52, .length = 2}, - [51] = {.index = 54, .length = 2}, - [52] = {.index = 44, .length = 2}, - [53] = {.index = 11, .length = 3}, - [54] = {.index = 3, .length = 1}, - [56] = {.index = 56, .length = 1}, - [57] = {.index = 56, .length = 1}, - [58] = {.index = 57, .length = 1}, - [60] = {.index = 58, .length = 2}, - [61] = {.index = 56, .length = 1}, - [62] = {.index = 60, .length = 1}, - [63] = {.index = 61, .length = 1}, + [26] = {.index = 24, .length = 1}, + [27] = {.index = 25, .length = 1}, + [28] = {.index = 25, .length = 1}, + [29] = {.index = 26, .length = 2}, + [30] = {.index = 26, .length = 2}, + [31] = {.index = 28, .length = 1}, + [32] = {.index = 29, .length = 2}, + [33] = {.index = 31, .length = 2}, + [34] = {.index = 33, .length = 2}, + [35] = {.index = 35, .length = 1}, + [36] = {.index = 36, .length = 2}, + [37] = {.index = 29, .length = 2}, + [38] = {.index = 38, .length = 2}, + [39] = {.index = 40, .length = 1}, + [40] = {.index = 41, .length = 1}, + [41] = {.index = 42, .length = 2}, + [42] = {.index = 28, .length = 1}, + [43] = {.index = 18, .length = 2}, + [44] = {.index = 18, .length = 2}, + [45] = {.index = 44, .length = 2}, + [46] = {.index = 46, .length = 2}, + [47] = {.index = 48, .length = 1}, + [48] = {.index = 18, .length = 2}, + [49] = {.index = 18, .length = 2}, + [50] = {.index = 49, .length = 3}, + [51] = {.index = 52, .length = 2}, + [52] = {.index = 54, .length = 2}, + [53] = {.index = 54, .length = 2}, + [54] = {.index = 56, .length = 2}, + [55] = {.index = 46, .length = 2}, + [56] = {.index = 4, .length = 1}, + [58] = {.index = 58, .length = 1}, + [59] = {.index = 58, .length = 1}, + [60] = {.index = 59, .length = 1}, + [62] = {.index = 60, .length = 2}, + [63] = {.index = 58, .length = 1}, [64] = {.index = 62, .length = 1}, - [65] = {.index = 63, .length = 2}, - [66] = {.index = 65, .length = 2}, + [65] = {.index = 63, .length = 1}, + [66] = {.index = 64, .length = 1}, [67] = {.index = 65, .length = 2}, - [68] = {.index = 67, .length = 1}, - [69] = {.index = 67, .length = 1}, - [70] = {.index = 57, .length = 1}, - [71] = {.index = 68, .length = 2}, - [72] = {.index = 70, .length = 3}, - [73] = {.index = 73, .length = 2}, - [74] = {.index = 75, .length = 3}, - [75] = {.index = 78, .length = 3}, - [77] = {.index = 81, .length = 2}, - [78] = {.index = 81, .length = 2}, + [68] = {.index = 67, .length = 2}, + [69] = {.index = 67, .length = 2}, + [70] = {.index = 69, .length = 1}, + [71] = {.index = 69, .length = 1}, + [72] = {.index = 59, .length = 1}, + [73] = {.index = 70, .length = 2}, + [74] = {.index = 72, .length = 3}, + [75] = {.index = 75, .length = 2}, + [76] = {.index = 77, .length = 3}, + [77] = {.index = 80, .length = 3}, [79] = {.index = 83, .length = 2}, - [80] = {.index = 85, .length = 3}, - [81] = {.index = 88, .length = 2}, - [82] = {.index = 90, .length = 1}, - [83] = {.index = 91, .length = 2}, - [84] = {.index = 93, .length = 2}, - [85] = {.index = 95, .length = 3}, - [86] = {.index = 98, .length = 2}, - [87] = {.index = 100, .length = 2}, - [88] = {.index = 102, .length = 2}, - [89] = {.index = 104, .length = 2}, - [90] = {.index = 106, .length = 2}, - [91] = {.index = 104, .length = 2}, - [92] = {.index = 106, .length = 2}, - [93] = {.index = 108, .length = 1}, - [94] = {.index = 102, .length = 2}, - [95] = {.index = 108, .length = 1}, - [96] = {.index = 109, .length = 1}, - [97] = {.index = 110, .length = 3}, - [98] = {.index = 113, .length = 1}, - [99] = {.index = 114, .length = 1}, - [100] = {.index = 115, .length = 2}, - [101] = {.index = 3, .length = 1}, - [102] = {.index = 117, .length = 1}, - [103] = {.index = 118, .length = 2}, - [104] = {.index = 120, .length = 1}, - [105] = {.index = 120, .length = 1}, - [106] = {.index = 121, .length = 3}, - [107] = {.index = 124, .length = 1}, - [108] = {.index = 121, .length = 3}, - [109] = {.index = 18, .length = 1}, - [110] = {.index = 125, .length = 2}, - [111] = {.index = 127, .length = 3}, - [112] = {.index = 130, .length = 3}, - [113] = {.index = 133, .length = 4}, - [114] = {.index = 137, .length = 3}, - [115] = {.index = 140, .length = 3}, - [116] = {.index = 143, .length = 2}, - [117] = {.index = 145, .length = 2}, + [80] = {.index = 83, .length = 2}, + [81] = {.index = 85, .length = 2}, + [82] = {.index = 87, .length = 3}, + [83] = {.index = 90, .length = 2}, + [84] = {.index = 92, .length = 1}, + [85] = {.index = 93, .length = 2}, + [86] = {.index = 95, .length = 2}, + [87] = {.index = 97, .length = 3}, + [88] = {.index = 100, .length = 2}, + [89] = {.index = 102, .length = 2}, + [90] = {.index = 104, .length = 2}, + [91] = {.index = 106, .length = 2}, + [92] = {.index = 108, .length = 2}, + [93] = {.index = 106, .length = 2}, + [94] = {.index = 108, .length = 2}, + [95] = {.index = 110, .length = 1}, + [96] = {.index = 104, .length = 2}, + [97] = {.index = 110, .length = 1}, + [98] = {.index = 111, .length = 1}, + [99] = {.index = 112, .length = 3}, + [100] = {.index = 115, .length = 1}, + [101] = {.index = 116, .length = 1}, + [102] = {.index = 117, .length = 2}, + [103] = {.index = 4, .length = 1}, + [104] = {.index = 119, .length = 1}, + [105] = {.index = 120, .length = 2}, + [106] = {.index = 122, .length = 1}, + [107] = {.index = 122, .length = 1}, + [108] = {.index = 123, .length = 3}, + [109] = {.index = 126, .length = 1}, + [110] = {.index = 123, .length = 3}, + [111] = {.index = 20, .length = 1}, + [112] = {.index = 127, .length = 2}, + [113] = {.index = 129, .length = 3}, + [114] = {.index = 132, .length = 3}, + [115] = {.index = 135, .length = 4}, + [116] = {.index = 139, .length = 3}, + [117] = {.index = 142, .length = 3}, [118] = {.index = 145, .length = 2}, + [119] = {.index = 147, .length = 2}, [120] = {.index = 147, .length = 2}, - [121] = {.index = 149, .length = 3}, - [122] = {.index = 152, .length = 3}, - [123] = {.index = 147, .length = 2}, - [124] = {.index = 149, .length = 3}, - [125] = {.index = 155, .length = 2}, - [127] = {.index = 157, .length = 3}, - [128] = {.index = 160, .length = 3}, - [129] = {.index = 163, .length = 4}, - [130] = {.index = 125, .length = 2}, - [131] = {.index = 167, .length = 3}, - [132] = {.index = 170, .length = 2}, - [133] = {.index = 172, .length = 3}, - [134] = {.index = 175, .length = 2}, - [135] = {.index = 177, .length = 2}, - [136] = {.index = 179, .length = 3}, - [137] = {.index = 182, .length = 3}, - [138] = {.index = 185, .length = 2}, - [139] = {.index = 185, .length = 2}, + [122] = {.index = 149, .length = 2}, + [123] = {.index = 151, .length = 3}, + [124] = {.index = 154, .length = 3}, + [125] = {.index = 149, .length = 2}, + [126] = {.index = 151, .length = 3}, + [127] = {.index = 157, .length = 2}, + [129] = {.index = 159, .length = 3}, + [130] = {.index = 162, .length = 3}, + [131] = {.index = 165, .length = 4}, + [132] = {.index = 127, .length = 2}, + [133] = {.index = 169, .length = 3}, + [134] = {.index = 172, .length = 2}, + [135] = {.index = 174, .length = 3}, + [136] = {.index = 177, .length = 2}, + [137] = {.index = 179, .length = 2}, + [138] = {.index = 181, .length = 3}, + [139] = {.index = 184, .length = 3}, [140] = {.index = 187, .length = 2}, - [141] = {.index = 189, .length = 3}, - [142] = {.index = 192, .length = 2}, - [143] = {.index = 194, .length = 2}, - [144] = {.index = 196, .length = 1}, - [145] = {.index = 197, .length = 2}, - [146] = {.index = 199, .length = 1}, - [147] = {.index = 200, .length = 2}, - [148] = {.index = 108, .length = 1}, + [141] = {.index = 187, .length = 2}, + [142] = {.index = 189, .length = 2}, + [143] = {.index = 191, .length = 3}, + [144] = {.index = 194, .length = 2}, + [145] = {.index = 196, .length = 2}, + [146] = {.index = 198, .length = 1}, + [147] = {.index = 199, .length = 2}, + [148] = {.index = 201, .length = 1}, [149] = {.index = 202, .length = 2}, - [150] = {.index = 204, .length = 2}, - [151] = {.index = 206, .length = 1}, - [152] = {.index = 207, .length = 2}, - [153] = {.index = 209, .length = 3}, - [154] = {.index = 209, .length = 3}, - [155] = {.index = 212, .length = 2}, - [156] = {.index = 214, .length = 4}, - [157] = {.index = 218, .length = 3}, - [158] = {.index = 221, .length = 4}, - [159] = {.index = 225, .length = 2}, - [160] = {.index = 227, .length = 3}, - [161] = {.index = 225, .length = 2}, - [162] = {.index = 227, .length = 3}, - [163] = {.index = 230, .length = 3}, - [164] = {.index = 233, .length = 3}, - [165] = {.index = 236, .length = 4}, - [166] = {.index = 233, .length = 3}, - [167] = {.index = 236, .length = 4}, - [168] = {.index = 230, .length = 3}, - [169] = {.index = 240, .length = 2}, - [170] = {.index = 242, .length = 2}, - [171] = {.index = 244, .length = 2}, - [172] = {.index = 246, .length = 2}, - [173] = {.index = 248, .length = 1}, - [174] = {.index = 249, .length = 2}, - [175] = {.index = 251, .length = 3}, - [176] = {.index = 254, .length = 2}, - [177] = {.index = 256, .length = 2}, - [178] = {.index = 200, .length = 2}, - [179] = {.index = 258, .length = 4}, - [180] = {.index = 262, .length = 3}, - [181] = {.index = 265, .length = 3}, - [182] = {.index = 268, .length = 3}, - [183] = {.index = 271, .length = 3}, - [184] = {.index = 274, .length = 4}, - [185] = {.index = 278, .length = 2}, - [186] = {.index = 280, .length = 2}, + [150] = {.index = 110, .length = 1}, + [151] = {.index = 204, .length = 2}, + [152] = {.index = 206, .length = 2}, + [153] = {.index = 208, .length = 1}, + [154] = {.index = 209, .length = 2}, + [155] = {.index = 211, .length = 3}, + [156] = {.index = 211, .length = 3}, + [157] = {.index = 214, .length = 2}, + [158] = {.index = 216, .length = 4}, + [159] = {.index = 220, .length = 3}, + [160] = {.index = 223, .length = 4}, + [161] = {.index = 227, .length = 2}, + [162] = {.index = 229, .length = 3}, + [163] = {.index = 227, .length = 2}, + [164] = {.index = 229, .length = 3}, + [165] = {.index = 232, .length = 3}, + [166] = {.index = 235, .length = 3}, + [167] = {.index = 238, .length = 4}, + [168] = {.index = 235, .length = 3}, + [169] = {.index = 238, .length = 4}, + [170] = {.index = 232, .length = 3}, + [171] = {.index = 242, .length = 2}, + [172] = {.index = 244, .length = 2}, + [173] = {.index = 246, .length = 2}, + [174] = {.index = 248, .length = 2}, + [175] = {.index = 250, .length = 1}, + [176] = {.index = 251, .length = 2}, + [177] = {.index = 253, .length = 3}, + [178] = {.index = 256, .length = 2}, + [179] = {.index = 258, .length = 2}, + [180] = {.index = 202, .length = 2}, + [181] = {.index = 260, .length = 4}, + [182] = {.index = 264, .length = 3}, + [183] = {.index = 267, .length = 3}, + [184] = {.index = 270, .length = 3}, + [185] = {.index = 273, .length = 3}, + [186] = {.index = 276, .length = 4}, [187] = {.index = 280, .length = 2}, - [188] = {.index = 282, .length = 3}, - [189] = {.index = 285, .length = 4}, - [190] = {.index = 289, .length = 3}, - [191] = {.index = 249, .length = 2}, - [192] = {.index = 292, .length = 2}, - [193] = {.index = 294, .length = 3}, - [194] = {.index = 297, .length = 3}, - [195] = {.index = 300, .length = 2}, - [196] = {.index = 302, .length = 3}, - [197] = {.index = 200, .length = 2}, - [198] = {.index = 305, .length = 3}, - [199] = {.index = 308, .length = 2}, - [200] = {.index = 310, .length = 2}, - [201] = {.index = 312, .length = 3}, - [202] = {.index = 315, .length = 3}, - [203] = {.index = 318, .length = 2}, - [204] = {.index = 320, .length = 4}, - [205] = {.index = 324, .length = 5}, - [206] = {.index = 329, .length = 4}, - [207] = {.index = 333, .length = 3}, - [208] = {.index = 333, .length = 3}, - [209] = {.index = 336, .length = 3}, - [210] = {.index = 339, .length = 4}, - [211] = {.index = 336, .length = 3}, - [212] = {.index = 339, .length = 4}, - [213] = {.index = 343, .length = 4}, - [214] = {.index = 343, .length = 4}, - [215] = {.index = 347, .length = 3}, - [216] = {.index = 350, .length = 3}, - [217] = {.index = 353, .length = 3}, - [218] = {.index = 356, .length = 2}, - [219] = {.index = 358, .length = 2}, - [220] = {.index = 125, .length = 2}, + [188] = {.index = 282, .length = 2}, + [189] = {.index = 282, .length = 2}, + [190] = {.index = 284, .length = 3}, + [191] = {.index = 287, .length = 4}, + [192] = {.index = 291, .length = 3}, + [193] = {.index = 251, .length = 2}, + [194] = {.index = 294, .length = 2}, + [195] = {.index = 296, .length = 3}, + [196] = {.index = 299, .length = 3}, + [197] = {.index = 302, .length = 2}, + [198] = {.index = 304, .length = 3}, + [199] = {.index = 202, .length = 2}, + [200] = {.index = 307, .length = 3}, + [201] = {.index = 310, .length = 2}, + [202] = {.index = 312, .length = 2}, + [203] = {.index = 314, .length = 3}, + [204] = {.index = 317, .length = 3}, + [205] = {.index = 320, .length = 2}, + [206] = {.index = 322, .length = 4}, + [207] = {.index = 326, .length = 5}, + [208] = {.index = 331, .length = 4}, + [209] = {.index = 335, .length = 3}, + [210] = {.index = 335, .length = 3}, + [211] = {.index = 338, .length = 3}, + [212] = {.index = 341, .length = 4}, + [213] = {.index = 338, .length = 3}, + [214] = {.index = 341, .length = 4}, + [215] = {.index = 345, .length = 4}, + [216] = {.index = 345, .length = 4}, + [217] = {.index = 349, .length = 3}, + [218] = {.index = 352, .length = 3}, + [219] = {.index = 355, .length = 3}, + [220] = {.index = 358, .length = 2}, [221] = {.index = 360, .length = 2}, - [222] = {.index = 362, .length = 3}, - [223] = {.index = 360, .length = 2}, - [224] = {.index = 362, .length = 3}, - [225] = {.index = 365, .length = 3}, - [226] = {.index = 368, .length = 4}, - [227] = {.index = 365, .length = 3}, - [228] = {.index = 368, .length = 4}, - [229] = {.index = 372, .length = 4}, - [230] = {.index = 376, .length = 4}, - [231] = {.index = 380, .length = 3}, - [232] = {.index = 383, .length = 4}, - [233] = {.index = 387, .length = 3}, - [234] = {.index = 390, .length = 3}, - [235] = {.index = 393, .length = 3}, - [236] = {.index = 396, .length = 4}, - [237] = {.index = 400, .length = 2}, - [238] = {.index = 402, .length = 3}, - [239] = {.index = 405, .length = 4}, - [240] = {.index = 409, .length = 3}, - [241] = {.index = 412, .length = 3}, - [242] = {.index = 415, .length = 2}, - [243] = {.index = 417, .length = 3}, - [244] = {.index = 420, .length = 5}, - [245] = {.index = 425, .length = 4}, - [246] = {.index = 425, .length = 4}, - [247] = {.index = 429, .length = 3}, - [248] = {.index = 432, .length = 3}, - [249] = {.index = 435, .length = 3}, - [250] = {.index = 438, .length = 3}, - [251] = {.index = 441, .length = 2}, - [252] = {.index = 443, .length = 3}, - [253] = {.index = 443, .length = 3}, - [254] = {.index = 446, .length = 3}, - [255] = {.index = 449, .length = 4}, - [256] = {.index = 446, .length = 3}, - [257] = {.index = 449, .length = 4}, - [258] = {.index = 453, .length = 4}, - [259] = {.index = 453, .length = 4}, - [260] = {.index = 457, .length = 4}, - [261] = {.index = 461, .length = 5}, - [262] = {.index = 466, .length = 4}, - [263] = {.index = 470, .length = 2}, - [264] = {.index = 472, .length = 4}, - [265] = {.index = 476, .length = 4}, - [266] = {.index = 480, .length = 3}, - [267] = {.index = 483, .length = 4}, - [268] = {.index = 487, .length = 4}, - [269] = {.index = 491, .length = 3}, - [270] = {.index = 494, .length = 4}, - [271] = {.index = 494, .length = 4}, - [272] = {.index = 498, .length = 5}, - [273] = {.index = 503, .length = 4}, - [274] = {.index = 507, .length = 5}, - [275] = {.index = 512, .length = 4}, - [276] = {.index = 516, .length = 4}, - [277] = {.index = 520, .length = 3}, - [278] = {.index = 523, .length = 5}, + [222] = {.index = 127, .length = 2}, + [223] = {.index = 362, .length = 2}, + [224] = {.index = 364, .length = 3}, + [225] = {.index = 362, .length = 2}, + [226] = {.index = 364, .length = 3}, + [227] = {.index = 367, .length = 3}, + [228] = {.index = 370, .length = 4}, + [229] = {.index = 367, .length = 3}, + [230] = {.index = 370, .length = 4}, + [231] = {.index = 374, .length = 4}, + [232] = {.index = 378, .length = 4}, + [233] = {.index = 382, .length = 3}, + [234] = {.index = 385, .length = 4}, + [235] = {.index = 389, .length = 3}, + [236] = {.index = 392, .length = 3}, + [237] = {.index = 395, .length = 3}, + [238] = {.index = 398, .length = 4}, + [239] = {.index = 402, .length = 2}, + [240] = {.index = 404, .length = 3}, + [241] = {.index = 407, .length = 4}, + [242] = {.index = 411, .length = 3}, + [243] = {.index = 414, .length = 3}, + [244] = {.index = 417, .length = 2}, + [245] = {.index = 419, .length = 3}, + [246] = {.index = 422, .length = 5}, + [247] = {.index = 427, .length = 4}, + [248] = {.index = 427, .length = 4}, + [249] = {.index = 431, .length = 3}, + [250] = {.index = 434, .length = 3}, + [251] = {.index = 437, .length = 3}, + [252] = {.index = 440, .length = 3}, + [253] = {.index = 443, .length = 2}, + [254] = {.index = 445, .length = 3}, + [255] = {.index = 445, .length = 3}, + [256] = {.index = 448, .length = 3}, + [257] = {.index = 451, .length = 4}, + [258] = {.index = 448, .length = 3}, + [259] = {.index = 451, .length = 4}, + [260] = {.index = 455, .length = 4}, + [261] = {.index = 455, .length = 4}, + [262] = {.index = 459, .length = 4}, + [263] = {.index = 463, .length = 5}, + [264] = {.index = 468, .length = 4}, + [265] = {.index = 472, .length = 2}, + [266] = {.index = 474, .length = 4}, + [267] = {.index = 478, .length = 4}, + [268] = {.index = 482, .length = 3}, + [269] = {.index = 485, .length = 4}, + [270] = {.index = 489, .length = 4}, + [271] = {.index = 493, .length = 3}, + [272] = {.index = 496, .length = 4}, + [273] = {.index = 496, .length = 4}, + [274] = {.index = 500, .length = 5}, + [275] = {.index = 505, .length = 4}, + [276] = {.index = 509, .length = 5}, + [277] = {.index = 514, .length = 4}, + [278] = {.index = 518, .length = 4}, + [279] = {.index = 522, .length = 3}, + [280] = {.index = 525, .length = 5}, }; static const TSFieldMapEntry ts_field_map_entries[] = { [0] = - {field_inner, 0}, + {field_comment, 1}, [1] = - {field_outer, 0}, + {field_inner, 0}, [2] = - {field_value, 1}, + {field_outer, 0}, [3] = - {field_name, 1}, + {field_value, 1}, [4] = - {field_body, 1}, + {field_name, 1}, [5] = {field_body, 1}, + [6] = + {field_body, 1}, {field_name, 0}, - [7] = + [8] = {field_arguments, 1}, {field_function, 0}, - [9] = + [10] = {field_body, 1}, {field_parameters, 0}, - [11] = + [12] = + {field_comment, 2}, + [13] = {field_doc, 2}, {field_inner, 1, .inherited = true}, {field_outer, 1, .inherited = true}, - [14] = + [16] = {field_inner, 1, .inherited = true}, {field_outer, 1, .inherited = true}, - [16] = + [18] = {field_name, 2}, {field_path, 0}, - [18] = + [20] = {field_value, 2}, - [19] = + [21] = {field_type, 0}, {field_type_arguments, 1}, - [21] = + [23] = {field_type, 1}, - [22] = + [24] = {field_parameters, 1}, - [23] = + [25] = {field_trait, 1}, - [24] = + [26] = {field_parameters, 1}, {field_trait, 0}, - [26] = + [28] = {field_macro, 0}, - [27] = + [29] = {field_body, 2}, {field_name, 1}, - [29] = + [31] = {field_condition, 1}, {field_consequence, 2}, - [31] = + [33] = {field_body, 2}, {field_type, 1}, - [33] = + [35] = {field_pattern, 1}, - [34] = + [36] = {field_body, 2}, {field_value, 1}, - [36] = + [38] = {field_body, 2}, {field_parameters, 1}, - [38] = + [40] = {field_list, 1}, - [39] = + [41] = {field_argument, 1}, - [40] = + [42] = {field_body, 2}, {field_condition, 1}, - [42] = + [44] = {field_function, 0}, {field_type_arguments, 2}, - [44] = + [46] = {field_type, 0}, {field_type_arguments, 2}, - [46] = + [48] = {field_body, 2}, - [47] = + [49] = {field_left, 0}, {field_operator, 1}, {field_right, 2}, - [50] = + [52] = {field_left, 0}, {field_right, 2}, - [52] = + [54] = {field_field, 2}, {field_value, 0}, - [54] = + [56] = {field_type, 2}, {field_value, 0}, - [56] = + [58] = {field_type, 0}, - [57] = + [59] = {field_name, 0}, - [58] = + [60] = {field_pattern, 0}, {field_type, 2}, - [60] = + [62] = {field_element, 1}, - [61] = + [63] = {field_type, 2}, - [62] = + [64] = {field_parameters, 2}, - [63] = + [65] = {field_alias, 2}, {field_type, 0}, - [65] = + [67] = {field_parameters, 2}, {field_trait, 1}, - [67] = + [69] = {field_arguments, 1}, - [68] = + [70] = {field_body, 3}, {field_name, 1}, - [70] = + [72] = {field_body, 3}, {field_name, 1}, {field_type_parameters, 2}, - [73] = + [75] = {field_name, 1}, {field_parameters, 2}, - [75] = + [77] = {field_body, 3}, {field_name, 1}, {field_parameters, 2}, - [78] = + [80] = {field_alternative, 3}, {field_condition, 1}, {field_consequence, 2}, - [81] = + [83] = {field_bounds, 1}, {field_left, 0}, - [83] = + [85] = {field_type, 2}, {field_type_parameters, 1}, - [85] = + [87] = {field_body, 3}, {field_type, 2}, {field_type_parameters, 1}, - [88] = + [90] = {field_body, 3}, {field_type, 1}, - [90] = + [92] = {field_pattern, 2}, - [91] = + [93] = {field_body, 3}, {field_parameters, 2}, - [93] = + [95] = {field_name, 1}, {field_type_parameters, 2}, - [95] = + [97] = {field_body, 3}, {field_bounds, 2}, {field_name, 1}, - [98] = + [100] = {field_bounds, 2}, {field_name, 1}, - [100] = + [102] = {field_body, 3}, {field_type, 2}, - [102] = + [104] = {field_body, 3}, {field_name, 2}, - [104] = + [106] = {field_list, 2}, {field_path, 0}, - [106] = + [108] = {field_alias, 2}, {field_path, 0}, - [108] = + [110] = {field_name, 2}, - [109] = + [111] = {field_argument, 2}, - [110] = + [112] = {field_body, 3}, {field_parameters, 0}, {field_return_type, 2}, - [113] = + [115] = {field_body, 3}, - [114] = + [116] = {field_length, 3}, - [115] = + [117] = {field_pattern, 1}, {field_type, 3}, - [117] = + [119] = {field_type, 3}, - [118] = + [120] = {field_parameters, 1}, {field_return_type, 3}, - [120] = + [122] = {field_trait, 3}, - [121] = + [123] = {field_parameters, 1}, {field_return_type, 3}, {field_trait, 0}, - [124] = + [126] = {field_parameters, 3}, - [125] = + [127] = {field_name, 1}, {field_type, 3}, - [127] = + [129] = {field_body, 4}, {field_name, 1}, {field_type_parameters, 2}, - [130] = + [132] = {field_name, 1}, {field_parameters, 3}, {field_type_parameters, 2}, - [133] = + [135] = {field_body, 4}, {field_name, 1}, {field_parameters, 3}, {field_type_parameters, 2}, - [137] = + [139] = {field_body, 4}, {field_name, 1}, {field_parameters, 2}, - [140] = + [142] = {field_body, 4}, {field_pattern, 1}, {field_value, 3}, - [143] = + [145] = {field_pattern, 1}, {field_value, 3}, - [145] = + [147] = {field_default_type, 2}, {field_name, 0}, - [147] = + [149] = {field_trait, 1}, {field_type, 3}, - [149] = + [151] = {field_body, 4}, {field_trait, 1}, {field_type, 3}, - [152] = + [154] = {field_body, 4}, {field_type, 2}, {field_type_parameters, 1}, - [155] = + [157] = {field_alternative, 3}, {field_pattern, 1}, - [157] = + [159] = {field_body, 4}, {field_parameters, 1}, {field_return_type, 3}, - [160] = + [162] = {field_body, 4}, {field_bounds, 2}, {field_name, 1}, - [163] = + [165] = {field_body, 4}, {field_bounds, 3}, {field_name, 1}, {field_type_parameters, 2}, - [167] = + [169] = {field_bounds, 3}, {field_name, 1}, {field_type_parameters, 2}, - [170] = + [172] = {field_type, 3}, {field_type_parameters, 2}, - [172] = + [174] = {field_body, 4}, {field_type, 3}, {field_type_parameters, 2}, - [175] = + [177] = {field_body, 4}, {field_type, 2}, - [177] = + [179] = {field_body, 4}, {field_name, 2}, - [179] = + [181] = {field_body, 4}, {field_bounds, 3}, {field_name, 2}, - [182] = + [184] = {field_body, 4}, {field_name, 2}, {field_type_parameters, 3}, - [185] = + [187] = {field_field, 0}, {field_value, 2}, - [187] = + [189] = {field_name, 2}, {field_parameters, 3}, - [189] = + [191] = {field_body, 4}, {field_name, 2}, {field_parameters, 3}, - [192] = + [194] = {field_name, 2}, {field_type_parameters, 3}, - [194] = + [196] = {field_body, 4}, {field_name, 3}, - [196] = + [198] = {field_name, 3}, - [197] = + [199] = {field_body, 4}, {field_condition, 3}, - [199] = + [201] = {field_length, 4}, - [200] = + [202] = {field_name, 0}, {field_type, 2}, - [202] = + [204] = {field_name, 0}, {field_pattern, 2}, - [204] = + [206] = {field_element, 1}, {field_length, 3}, - [206] = + [208] = {field_pattern, 0}, - [207] = + [209] = {field_parameters, 2}, {field_return_type, 4}, - [209] = + [211] = {field_parameters, 2}, {field_return_type, 4}, {field_trait, 1}, - [212] = + [214] = {field_name, 0}, {field_value, 2}, - [214] = + [216] = {field_body, 5}, {field_name, 1}, {field_parameters, 3}, {field_type_parameters, 2}, - [218] = + [220] = {field_name, 1}, {field_parameters, 2}, {field_return_type, 4}, - [221] = + [223] = {field_body, 5}, {field_name, 1}, {field_parameters, 2}, {field_return_type, 4}, - [225] = + [227] = {field_trait, 2}, {field_type, 4}, - [227] = + [229] = {field_body, 5}, {field_trait, 2}, {field_type, 4}, - [230] = + [232] = {field_body, 5}, {field_trait, 1}, {field_type, 3}, - [233] = + [235] = {field_trait, 2}, {field_type, 4}, {field_type_parameters, 1}, - [236] = + [238] = {field_body, 5}, {field_trait, 2}, {field_type, 4}, {field_type_parameters, 1}, - [240] = + [242] = {field_pattern, 2}, {field_type, 4}, - [242] = + [244] = {field_pattern, 2}, {field_value, 4}, - [244] = + [246] = {field_alternative, 4}, {field_pattern, 2}, - [246] = + [248] = {field_pattern, 0}, {field_value, 2}, - [248] = + [250] = {field_condition, 2}, - [249] = + [251] = {field_name, 2}, {field_type, 4}, - [251] = + [253] = {field_body, 5}, {field_parameters, 2}, {field_return_type, 4}, - [254] = + [256] = {field_type, 1}, {field_type, 2, .inherited = true}, - [256] = + [258] = {field_type, 0, .inherited = true}, {field_type, 1, .inherited = true}, - [258] = + [260] = {field_body, 5}, {field_bounds, 3}, {field_name, 1}, {field_type_parameters, 2}, - [262] = + [264] = {field_name, 1}, {field_type, 4}, {field_type_parameters, 2}, - [265] = + [267] = {field_body, 5}, {field_type, 3}, {field_type_parameters, 2}, - [268] = + [270] = {field_body, 5}, {field_bounds, 3}, {field_name, 2}, - [271] = + [273] = {field_body, 5}, {field_name, 2}, {field_type_parameters, 3}, - [274] = + [276] = {field_body, 5}, {field_bounds, 4}, {field_name, 2}, {field_type_parameters, 3}, - [278] = + [280] = {field_alias, 4}, {field_name, 2}, - [280] = + [282] = {field_field, 1}, {field_value, 3}, - [282] = + [284] = {field_name, 2}, {field_parameters, 4}, {field_type_parameters, 3}, - [285] = + [287] = {field_body, 5}, {field_name, 2}, {field_parameters, 4}, {field_type_parameters, 3}, - [289] = + [291] = {field_body, 5}, {field_name, 2}, {field_parameters, 3}, - [292] = + [294] = {field_body, 5}, {field_name, 3}, - [294] = + [296] = {field_body, 5}, {field_bounds, 4}, {field_name, 3}, - [297] = + [299] = {field_body, 5}, {field_name, 3}, {field_type_parameters, 4}, - [300] = + [302] = {field_name, 3}, {field_parameters, 4}, - [302] = + [304] = {field_body, 5}, {field_name, 3}, {field_parameters, 4}, - [305] = + [307] = {field_name, 0}, {field_type, 3}, {field_type_arguments, 1}, - [308] = + [310] = {field_name, 1}, {field_pattern, 3}, - [310] = + [312] = {field_parameters, 3}, {field_return_type, 5}, - [312] = + [314] = {field_name, 1}, {field_type, 3}, {field_value, 5}, - [315] = + [317] = {field_body, 1}, {field_name, 0}, {field_value, 3}, - [318] = + [320] = {field_name, 1}, {field_value, 3}, - [320] = + [322] = {field_name, 1}, {field_parameters, 3}, {field_return_type, 5}, {field_type_parameters, 2}, - [324] = + [326] = {field_body, 6}, {field_name, 1}, {field_parameters, 3}, {field_return_type, 5}, {field_type_parameters, 2}, - [329] = + [331] = {field_body, 6}, {field_name, 1}, {field_parameters, 2}, {field_return_type, 4}, - [333] = + [335] = {field_body, 6}, {field_trait, 2}, {field_type, 4}, - [336] = + [338] = {field_trait, 3}, {field_type, 5}, {field_type_parameters, 1}, - [339] = + [341] = {field_body, 6}, {field_trait, 3}, {field_type, 5}, {field_type_parameters, 1}, - [343] = + [345] = {field_body, 6}, {field_trait, 2}, {field_type, 4}, {field_type_parameters, 1}, - [347] = + [349] = {field_pattern, 1}, {field_type, 3}, {field_value, 5}, - [350] = + [352] = {field_alternative, 5}, {field_pattern, 1}, {field_type, 3}, - [353] = + [355] = {field_alternative, 5}, {field_pattern, 1}, {field_value, 3}, - [356] = + [358] = {field_name, 3}, {field_type, 5}, - [358] = + [360] = {field_type, 2}, {field_type, 3, .inherited = true}, - [360] = + [362] = {field_trait, 3}, {field_type, 5}, - [362] = + [364] = {field_body, 6}, {field_trait, 3}, {field_type, 5}, - [365] = + [367] = {field_trait, 3}, {field_type, 5}, {field_type_parameters, 2}, - [368] = + [370] = {field_body, 6}, {field_trait, 3}, {field_type, 5}, {field_type_parameters, 2}, - [372] = + [374] = {field_body, 6}, {field_bounds, 4}, {field_name, 2}, {field_type_parameters, 3}, - [376] = + [378] = {field_body, 6}, {field_name, 2}, {field_parameters, 4}, {field_type_parameters, 3}, - [380] = + [382] = {field_name, 2}, {field_parameters, 3}, {field_return_type, 5}, - [383] = + [385] = {field_body, 6}, {field_name, 2}, {field_parameters, 3}, {field_return_type, 5}, - [387] = + [389] = {field_name, 2}, {field_type, 5}, {field_type_parameters, 3}, - [390] = + [392] = {field_body, 6}, {field_bounds, 4}, {field_name, 3}, - [393] = + [395] = {field_body, 6}, {field_name, 3}, {field_type_parameters, 4}, - [396] = + [398] = {field_body, 6}, {field_bounds, 5}, {field_name, 3}, {field_type_parameters, 4}, - [400] = + [402] = {field_alias, 5}, {field_name, 3}, - [402] = + [404] = {field_name, 3}, {field_parameters, 5}, {field_type_parameters, 4}, - [405] = + [407] = {field_body, 6}, {field_name, 3}, {field_parameters, 5}, {field_type_parameters, 4}, - [409] = + [411] = {field_body, 6}, {field_name, 3}, {field_parameters, 4}, - [412] = + [414] = {field_body, 6}, {field_pattern, 3}, {field_value, 5}, - [415] = + [417] = {field_name, 2}, {field_pattern, 4}, - [417] = + [419] = {field_body, 2}, {field_name, 1}, {field_value, 4}, - [420] = + [422] = {field_body, 7}, {field_name, 1}, {field_parameters, 3}, {field_return_type, 5}, {field_type_parameters, 2}, - [425] = + [427] = {field_body, 7}, {field_trait, 3}, {field_type, 5}, {field_type_parameters, 1}, - [429] = + [431] = {field_pattern, 2}, {field_type, 4}, {field_value, 6}, - [432] = + [434] = {field_alternative, 6}, {field_pattern, 2}, {field_type, 4}, - [435] = + [437] = {field_alternative, 6}, {field_pattern, 2}, {field_value, 4}, - [438] = + [440] = {field_name, 2}, {field_type, 4}, {field_value, 6}, - [441] = + [443] = {field_type, 3}, {field_type, 4, .inherited = true}, - [443] = + [445] = {field_body, 7}, {field_trait, 3}, {field_type, 5}, - [446] = + [448] = {field_trait, 4}, {field_type, 6}, {field_type_parameters, 2}, - [449] = + [451] = {field_body, 7}, {field_trait, 4}, {field_type, 6}, {field_type_parameters, 2}, - [453] = + [455] = {field_body, 7}, {field_trait, 3}, {field_type, 5}, {field_type_parameters, 2}, - [457] = + [459] = {field_name, 2}, {field_parameters, 4}, {field_return_type, 6}, {field_type_parameters, 3}, - [461] = + [463] = {field_body, 7}, {field_name, 2}, {field_parameters, 4}, {field_return_type, 6}, {field_type_parameters, 3}, - [466] = + [468] = {field_body, 7}, {field_name, 2}, {field_parameters, 3}, {field_return_type, 5}, - [470] = + [472] = {field_name, 4}, {field_type, 6}, - [472] = + [474] = {field_body, 7}, {field_bounds, 5}, {field_name, 3}, {field_type_parameters, 4}, - [476] = + [478] = {field_body, 7}, {field_name, 3}, {field_parameters, 5}, {field_type_parameters, 4}, - [480] = + [482] = {field_name, 3}, {field_parameters, 4}, {field_return_type, 6}, - [483] = + [485] = {field_body, 7}, {field_name, 3}, {field_parameters, 4}, {field_return_type, 6}, - [487] = + [489] = {field_alternative, 7}, {field_pattern, 1}, {field_type, 3}, {field_value, 5}, - [491] = + [493] = {field_name, 3}, {field_type, 5}, {field_value, 7}, - [494] = + [496] = {field_body, 8}, {field_trait, 4}, {field_type, 6}, {field_type_parameters, 2}, - [498] = + [500] = {field_body, 8}, {field_name, 2}, {field_parameters, 4}, {field_return_type, 6}, {field_type_parameters, 3}, - [503] = + [505] = {field_name, 3}, {field_parameters, 5}, {field_return_type, 7}, {field_type_parameters, 4}, - [507] = + [509] = {field_body, 8}, {field_name, 3}, {field_parameters, 5}, {field_return_type, 7}, {field_type_parameters, 4}, - [512] = + [514] = {field_body, 8}, {field_name, 3}, {field_parameters, 4}, {field_return_type, 6}, - [516] = + [518] = {field_alternative, 8}, {field_pattern, 2}, {field_type, 4}, {field_value, 6}, - [520] = + [522] = {field_name, 4}, {field_type, 6}, {field_value, 8}, - [523] = + [525] = {field_body, 9}, {field_name, 3}, {field_parameters, 5}, @@ -3546,310 +3554,310 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [1] = { [0] = sym_identifier, }, - [5] = { + [6] = { [0] = alias_sym_type_identifier, }, - [7] = { + [8] = { [1] = alias_sym_type_identifier, }, - [9] = { + [10] = { [0] = alias_sym_let_chain, }, - [10] = { + [11] = { [0] = alias_sym_type_identifier, }, - [16] = { + [17] = { + [1] = aux_sym_line_comment_token2, + }, + [19] = { [0] = sym_identifier, }, - [17] = { + [20] = { [0] = sym_identifier, [2] = alias_sym_type_identifier, }, - [19] = { + [22] = { [0] = sym_identifier, }, - [20] = { + [23] = { [0] = alias_sym_type_identifier, }, - [24] = { + [27] = { [1] = alias_sym_type_identifier, }, - [26] = { + [29] = { [0] = alias_sym_type_identifier, }, - [28] = { + [31] = { [0] = sym_identifier, }, - [29] = { + [32] = { [1] = alias_sym_type_identifier, }, - [41] = { + [44] = { [2] = alias_sym_type_identifier, }, - [43] = { + [46] = { [0] = alias_sym_type_identifier, }, - [45] = { + [48] = { [0] = sym_generic_type, }, - [46] = { + [49] = { [0] = sym_generic_type, [2] = alias_sym_type_identifier, }, - [50] = { - [2] = alias_sym_field_identifier, - }, [53] = { - [2] = sym__line_doc_content, + [2] = alias_sym_field_identifier, }, - [54] = { + [56] = { [1] = sym_identifier, }, - [55] = { + [57] = { [0] = sym_identifier, [2] = sym_identifier, }, - [57] = { + [59] = { [0] = alias_sym_type_identifier, }, - [58] = { + [60] = { [0] = alias_sym_shorthand_field_identifier, }, - [59] = { + [61] = { [2] = sym_identifier, }, - [61] = { + [63] = { [0] = sym_generic_type, }, - [66] = { + [68] = { [1] = alias_sym_type_identifier, }, - [68] = { + [70] = { [0] = sym_identifier, }, - [71] = { + [73] = { [1] = alias_sym_type_identifier, }, - [72] = { + [74] = { [1] = alias_sym_type_identifier, }, - [76] = { + [78] = { [1] = alias_sym_type_identifier, }, - [77] = { + [79] = { [0] = alias_sym_type_identifier, }, - [84] = { + [86] = { [1] = alias_sym_type_identifier, }, - [85] = { + [87] = { [1] = alias_sym_type_identifier, }, - [86] = { + [88] = { [1] = alias_sym_type_identifier, }, - [88] = { + [90] = { [2] = alias_sym_type_identifier, }, - [89] = { + [91] = { [0] = sym_identifier, }, - [90] = { + [92] = { [0] = sym_identifier, }, - [95] = { + [97] = { [2] = alias_sym_type_identifier, }, - [101] = { + [103] = { [1] = alias_sym_shorthand_field_identifier, }, - [104] = { + [106] = { [3] = alias_sym_type_identifier, }, - [106] = { + [108] = { [0] = alias_sym_type_identifier, }, - [109] = { + [111] = { [0] = sym_identifier, }, - [111] = { + [113] = { [1] = alias_sym_type_identifier, }, - [117] = { + [119] = { [0] = alias_sym_type_identifier, }, - [119] = { + [121] = { [2] = alias_sym_type_identifier, }, - [120] = { + [122] = { [1] = alias_sym_type_identifier, }, - [121] = { + [123] = { [1] = alias_sym_type_identifier, }, - [126] = { + [128] = { [3] = sym_identifier, }, - [128] = { + [130] = { [1] = alias_sym_type_identifier, }, - [129] = { + [131] = { [1] = alias_sym_type_identifier, }, - [130] = { + [132] = { [1] = alias_sym_type_identifier, }, - [131] = { + [133] = { [1] = alias_sym_type_identifier, }, - [135] = { + [137] = { [2] = alias_sym_type_identifier, }, - [136] = { + [138] = { [2] = alias_sym_type_identifier, }, - [137] = { + [139] = { [2] = alias_sym_type_identifier, }, - [139] = { + [141] = { [0] = alias_sym_field_identifier, }, - [142] = { + [144] = { [2] = alias_sym_type_identifier, }, - [143] = { + [145] = { [3] = alias_sym_type_identifier, }, - [147] = { + [149] = { [0] = alias_sym_type_identifier, }, - [148] = { + [150] = { [2] = alias_sym_shorthand_field_identifier, }, - [149] = { + [151] = { [0] = alias_sym_field_identifier, }, - [153] = { + [155] = { [1] = alias_sym_type_identifier, }, - [159] = { + [161] = { [2] = alias_sym_type_identifier, }, - [160] = { + [162] = { [2] = alias_sym_type_identifier, }, - [163] = { + [165] = { [1] = alias_sym_type_identifier, }, - [164] = { + [166] = { [2] = alias_sym_type_identifier, }, - [165] = { + [167] = { [2] = alias_sym_type_identifier, }, - [178] = { + [180] = { [0] = alias_sym_field_identifier, }, - [179] = { + [181] = { [1] = alias_sym_type_identifier, }, - [180] = { + [182] = { [1] = alias_sym_type_identifier, }, - [182] = { + [184] = { [2] = alias_sym_type_identifier, }, - [183] = { + [185] = { [2] = alias_sym_type_identifier, }, - [184] = { + [186] = { [2] = alias_sym_type_identifier, }, - [187] = { + [189] = { [1] = alias_sym_field_identifier, }, - [191] = { + [193] = { [2] = alias_sym_type_identifier, }, - [192] = { + [194] = { [3] = alias_sym_type_identifier, }, - [193] = { + [195] = { [3] = alias_sym_type_identifier, }, - [194] = { + [196] = { [3] = alias_sym_type_identifier, }, - [198] = { + [200] = { [0] = alias_sym_type_identifier, }, - [199] = { + [201] = { [1] = alias_sym_field_identifier, }, - [207] = { + [209] = { [2] = alias_sym_type_identifier, }, - [209] = { + [211] = { [3] = alias_sym_type_identifier, }, - [210] = { + [212] = { [3] = alias_sym_type_identifier, }, - [213] = { + [215] = { [2] = alias_sym_type_identifier, }, - [220] = { + [222] = { [1] = alias_sym_field_identifier, }, - [221] = { + [223] = { [3] = alias_sym_type_identifier, }, - [222] = { + [224] = { [3] = alias_sym_type_identifier, }, - [225] = { + [227] = { [3] = alias_sym_type_identifier, }, - [226] = { + [228] = { [3] = alias_sym_type_identifier, }, - [229] = { + [231] = { [2] = alias_sym_type_identifier, }, - [233] = { + [235] = { [2] = alias_sym_type_identifier, }, - [234] = { + [236] = { [3] = alias_sym_type_identifier, }, - [235] = { + [237] = { [3] = alias_sym_type_identifier, }, - [236] = { + [238] = { [3] = alias_sym_type_identifier, }, - [242] = { + [244] = { [2] = alias_sym_field_identifier, }, - [245] = { + [247] = { [3] = alias_sym_type_identifier, }, - [252] = { + [254] = { [3] = alias_sym_type_identifier, }, - [254] = { + [256] = { [4] = alias_sym_type_identifier, }, - [255] = { + [257] = { [4] = alias_sym_type_identifier, }, - [258] = { + [260] = { [3] = alias_sym_type_identifier, }, - [264] = { + [266] = { [3] = alias_sym_type_identifier, }, - [270] = { + [272] = { [4] = alias_sym_type_identifier, }, }; @@ -3871,134 +3879,134 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3] = 3, [4] = 4, [5] = 5, - [6] = 6, - [7] = 7, + [6] = 2, + [7] = 3, [8] = 8, - [9] = 3, - [10] = 2, - [11] = 5, - [12] = 6, - [13] = 8, - [14] = 3, - [15] = 2, - [16] = 5, - [17] = 6, - [18] = 3, - [19] = 2, - [20] = 5, - [21] = 6, - [22] = 3, - [23] = 2, - [24] = 5, - [25] = 6, - [26] = 3, - [27] = 2, + [9] = 5, + [10] = 3, + [11] = 2, + [12] = 2, + [13] = 13, + [14] = 2, + [15] = 5, + [16] = 3, + [17] = 13, + [18] = 2, + [19] = 13, + [20] = 3, + [21] = 3, + [22] = 13, + [23] = 13, + [24] = 3, + [25] = 5, + [26] = 5, + [27] = 27, [28] = 5, - [29] = 6, - [30] = 3, - [31] = 2, + [29] = 13, + [30] = 2, + [31] = 13, [32] = 5, - [33] = 6, + [33] = 4, [34] = 34, [35] = 35, [36] = 36, [37] = 37, [38] = 38, - [39] = 38, - [40] = 36, + [39] = 37, + [40] = 40, [41] = 41, - [42] = 42, + [42] = 40, [43] = 35, - [44] = 35, - [45] = 42, - [46] = 37, - [47] = 41, - [48] = 38, - [49] = 36, - [50] = 38, - [51] = 36, - [52] = 35, - [53] = 42, - [54] = 37, - [55] = 36, - [56] = 36, - [57] = 38, + [44] = 41, + [45] = 40, + [46] = 38, + [47] = 35, + [48] = 37, + [49] = 35, + [50] = 36, + [51] = 40, + [52] = 37, + [53] = 41, + [54] = 38, + [55] = 40, + [56] = 40, + [57] = 40, [58] = 36, - [59] = 37, - [60] = 38, - [61] = 36, - [62] = 38, - [63] = 38, - [64] = 41, - [65] = 41, - [66] = 42, + [59] = 41, + [60] = 40, + [61] = 37, + [62] = 37, + [63] = 37, + [64] = 37, + [65] = 38, + [66] = 36, [67] = 67, [68] = 68, [69] = 69, [70] = 68, - [71] = 69, + [71] = 71, [72] = 72, [73] = 73, [74] = 74, - [75] = 75, - [76] = 75, - [77] = 72, - [78] = 73, - [79] = 74, + [75] = 71, + [76] = 76, + [77] = 73, + [78] = 78, + [79] = 79, [80] = 80, - [81] = 81, - [82] = 82, - [83] = 83, + [81] = 79, + [82] = 69, + [83] = 80, [84] = 84, [85] = 85, [86] = 86, - [87] = 87, + [87] = 85, [88] = 88, - [89] = 89, + [89] = 88, [90] = 90, - [91] = 91, - [92] = 92, + [91] = 85, + [92] = 86, [93] = 93, - [94] = 84, - [95] = 89, - [96] = 96, - [97] = 96, - [98] = 93, - [99] = 99, - [100] = 100, - [101] = 101, - [102] = 85, - [103] = 86, - [104] = 87, - [105] = 91, - [106] = 92, + [94] = 94, + [95] = 84, + [96] = 94, + [97] = 88, + [98] = 85, + [99] = 86, + [100] = 93, + [101] = 94, + [102] = 84, + [103] = 103, + [104] = 84, + [105] = 94, + [106] = 94, [107] = 84, - [108] = 84, - [109] = 89, - [110] = 96, - [111] = 91, - [112] = 92, - [113] = 93, - [114] = 84, - [115] = 89, - [116] = 96, - [117] = 91, - [118] = 92, + [108] = 88, + [109] = 109, + [110] = 110, + [111] = 93, + [112] = 112, + [113] = 113, + [114] = 114, + [115] = 115, + [116] = 90, + [117] = 86, + [118] = 110, [119] = 93, - [120] = 84, - [121] = 89, - [122] = 96, - [123] = 91, - [124] = 92, - [125] = 91, - [126] = 92, - [127] = 93, - [128] = 89, - [129] = 96, - [130] = 99, - [131] = 100, - [132] = 101, - [133] = 93, + [120] = 93, + [121] = 88, + [122] = 114, + [123] = 88, + [124] = 86, + [125] = 84, + [126] = 115, + [127] = 113, + [128] = 112, + [129] = 85, + [130] = 94, + [131] = 85, + [132] = 93, + [133] = 86, [134] = 134, [135] = 135, [136] = 136, @@ -4009,105 +4017,105 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [141] = 141, [142] = 142, [143] = 143, - [144] = 144, - [145] = 140, + [144] = 140, + [145] = 145, [146] = 146, [147] = 147, [148] = 148, [149] = 149, - [150] = 134, + [150] = 137, [151] = 151, [152] = 152, [153] = 153, [154] = 154, - [155] = 155, + [155] = 135, [156] = 156, [157] = 157, - [158] = 155, + [158] = 158, [159] = 159, [160] = 160, - [161] = 146, + [161] = 161, [162] = 162, - [163] = 151, + [163] = 142, [164] = 164, [165] = 165, - [166] = 166, + [166] = 143, [167] = 167, [168] = 168, [169] = 169, [170] = 170, [171] = 171, - [172] = 170, - [173] = 156, + [172] = 172, + [173] = 171, [174] = 174, - [175] = 167, - [176] = 138, - [177] = 141, - [178] = 142, - [179] = 179, + [175] = 175, + [176] = 176, + [177] = 158, + [178] = 178, + [179] = 171, [180] = 180, [181] = 181, [182] = 174, - [183] = 183, - [184] = 184, + [183] = 172, + [184] = 169, [185] = 185, - [186] = 171, - [187] = 187, + [186] = 186, + [187] = 175, [188] = 188, - [189] = 169, - [190] = 179, + [189] = 178, + [190] = 186, [191] = 188, [192] = 192, - [193] = 193, - [194] = 192, - [195] = 195, - [196] = 196, - [197] = 197, - [198] = 193, - [199] = 195, - [200] = 196, - [201] = 169, - [202] = 170, - [203] = 187, - [204] = 174, - [205] = 170, - [206] = 174, - [207] = 169, - [208] = 137, + [193] = 169, + [194] = 145, + [195] = 185, + [196] = 192, + [197] = 176, + [198] = 159, + [199] = 161, + [200] = 151, + [201] = 174, + [202] = 174, + [203] = 169, + [204] = 171, + [205] = 205, + [206] = 167, + [207] = 207, + [208] = 208, [209] = 209, - [210] = 210, + [210] = 209, [211] = 211, [212] = 212, - [213] = 209, - [214] = 212, + [213] = 212, + [214] = 214, [215] = 215, [216] = 216, [217] = 217, [218] = 218, - [219] = 219, - [220] = 220, + [219] = 217, + [220] = 218, [221] = 218, - [222] = 222, - [223] = 223, - [224] = 217, - [225] = 225, - [226] = 223, - [227] = 219, - [228] = 217, - [229] = 229, - [230] = 220, - [231] = 217, - [232] = 225, - [233] = 220, - [234] = 220, - [235] = 225, - [236] = 225, - [237] = 220, - [238] = 215, - [239] = 217, - [240] = 216, - [241] = 225, - [242] = 229, + [222] = 216, + [223] = 216, + [224] = 224, + [225] = 217, + [226] = 216, + [227] = 227, + [228] = 215, + [229] = 224, + [230] = 227, + [231] = 231, + [232] = 217, + [233] = 217, + [234] = 234, + [235] = 218, + [236] = 216, + [237] = 237, + [238] = 238, + [239] = 231, + [240] = 234, + [241] = 238, + [242] = 218, [243] = 243, [244] = 244, [245] = 243, @@ -4118,228 +4126,228 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [250] = 250, [251] = 251, [252] = 252, - [253] = 253, + [253] = 250, [254] = 254, [255] = 255, [256] = 256, [257] = 257, [258] = 258, [259] = 259, - [260] = 260, + [260] = 252, [261] = 261, [262] = 262, [263] = 263, [264] = 264, - [265] = 264, + [265] = 265, [266] = 266, [267] = 267, [268] = 268, - [269] = 249, - [270] = 250, - [271] = 251, - [272] = 252, - [273] = 253, - [274] = 254, - [275] = 255, - [276] = 256, + [269] = 251, + [270] = 252, + [271] = 250, + [272] = 254, + [273] = 255, + [274] = 256, + [275] = 261, + [276] = 251, [277] = 258, - [278] = 278, + [278] = 262, [279] = 279, - [280] = 266, - [281] = 267, - [282] = 268, - [283] = 258, - [284] = 249, - [285] = 250, - [286] = 258, - [287] = 251, - [288] = 252, - [289] = 258, - [290] = 258, - [291] = 253, - [292] = 254, - [293] = 257, - [294] = 255, + [280] = 280, + [281] = 281, + [282] = 282, + [283] = 282, + [284] = 284, + [285] = 285, + [286] = 286, + [287] = 268, + [288] = 288, + [289] = 279, + [290] = 290, + [291] = 268, + [292] = 267, + [293] = 258, + [294] = 266, [295] = 295, - [296] = 296, - [297] = 256, - [298] = 298, + [296] = 261, + [297] = 297, + [298] = 281, [299] = 299, - [300] = 258, + [300] = 300, [301] = 301, [302] = 302, - [303] = 266, - [304] = 267, - [305] = 268, - [306] = 249, - [307] = 295, - [308] = 308, - [309] = 309, - [310] = 257, + [303] = 281, + [304] = 249, + [305] = 305, + [306] = 306, + [307] = 265, + [308] = 282, + [309] = 254, + [310] = 301, [311] = 311, - [312] = 268, + [312] = 264, [313] = 313, - [314] = 250, - [315] = 251, - [316] = 316, - [317] = 317, - [318] = 318, - [319] = 264, - [320] = 320, - [321] = 321, - [322] = 322, - [323] = 323, - [324] = 324, - [325] = 252, - [326] = 253, - [327] = 254, - [328] = 255, - [329] = 256, + [314] = 281, + [315] = 258, + [316] = 299, + [317] = 258, + [318] = 258, + [319] = 319, + [320] = 256, + [321] = 264, + [322] = 306, + [323] = 265, + [324] = 282, + [325] = 288, + [326] = 258, + [327] = 248, + [328] = 302, + [329] = 329, [330] = 330, - [331] = 331, - [332] = 332, - [333] = 333, + [331] = 255, + [332] = 255, + [333] = 259, [334] = 334, - [335] = 335, - [336] = 336, - [337] = 258, + [335] = 302, + [336] = 254, + [337] = 290, [338] = 338, - [339] = 257, - [340] = 340, - [341] = 264, - [342] = 342, - [343] = 302, - [344] = 340, - [345] = 345, - [346] = 248, - [347] = 347, - [348] = 260, - [349] = 262, - [350] = 296, - [351] = 313, - [352] = 317, - [353] = 320, - [354] = 324, - [355] = 332, - [356] = 334, - [357] = 335, - [358] = 301, - [359] = 311, - [360] = 342, - [361] = 345, - [362] = 262, - [363] = 324, - [364] = 345, - [365] = 342, - [366] = 266, - [367] = 345, - [368] = 267, - [369] = 324, - [370] = 342, + [339] = 256, + [340] = 280, + [341] = 267, + [342] = 266, + [343] = 266, + [344] = 344, + [345] = 302, + [346] = 346, + [347] = 284, + [348] = 348, + [349] = 313, + [350] = 279, + [351] = 351, + [352] = 352, + [353] = 258, + [354] = 290, + [355] = 250, + [356] = 263, + [357] = 267, + [358] = 305, + [359] = 359, + [360] = 252, + [361] = 361, + [362] = 268, + [363] = 290, + [364] = 297, + [365] = 261, + [366] = 366, + [367] = 264, + [368] = 368, + [369] = 251, + [370] = 265, [371] = 371, [372] = 372, [373] = 373, - [374] = 181, - [375] = 180, + [374] = 374, + [375] = 375, [376] = 376, [377] = 377, - [378] = 371, + [378] = 170, [379] = 379, [380] = 380, [381] = 381, - [382] = 382, - [383] = 383, - [384] = 384, + [382] = 374, + [383] = 374, + [384] = 375, [385] = 385, [386] = 386, [387] = 387, - [388] = 388, + [388] = 375, [389] = 389, - [390] = 373, + [390] = 390, [391] = 391, [392] = 392, [393] = 393, [394] = 394, [395] = 395, - [396] = 373, + [396] = 396, [397] = 397, - [398] = 371, + [398] = 181, [399] = 399, [400] = 400, - [401] = 400, + [401] = 401, [402] = 402, - [403] = 402, - [404] = 395, - [405] = 405, - [406] = 405, + [403] = 391, + [404] = 400, + [405] = 401, + [406] = 402, [407] = 400, - [408] = 405, - [409] = 402, + [408] = 402, + [409] = 401, [410] = 410, [411] = 411, - [412] = 410, - [413] = 410, + [412] = 411, + [413] = 411, [414] = 414, [415] = 415, - [416] = 414, - [417] = 414, + [416] = 415, + [417] = 415, [418] = 418, [419] = 419, [420] = 420, - [421] = 421, + [421] = 419, [422] = 422, - [423] = 421, - [424] = 422, - [425] = 419, - [426] = 421, - [427] = 420, - [428] = 420, + [423] = 423, + [424] = 420, + [425] = 422, + [426] = 419, + [427] = 423, + [428] = 423, [429] = 429, [430] = 429, [431] = 431, [432] = 432, [433] = 433, [434] = 434, - [435] = 435, - [436] = 433, - [437] = 434, - [438] = 434, - [439] = 433, - [440] = 435, - [441] = 435, + [435] = 434, + [436] = 436, + [437] = 433, + [438] = 436, + [439] = 436, + [440] = 433, + [441] = 434, [442] = 442, - [443] = 443, - [444] = 443, - [445] = 443, + [443] = 442, + [444] = 442, + [445] = 445, [446] = 244, - [447] = 338, - [448] = 347, - [449] = 261, - [450] = 323, - [451] = 336, - [452] = 379, - [453] = 394, - [454] = 381, - [455] = 385, + [447] = 368, + [448] = 352, + [449] = 257, + [450] = 311, + [451] = 361, + [452] = 372, + [453] = 399, + [454] = 454, + [455] = 395, [456] = 456, - [457] = 377, - [458] = 458, - [459] = 456, - [460] = 388, - [461] = 456, - [462] = 380, - [463] = 389, - [464] = 464, - [465] = 384, - [466] = 392, - [467] = 399, - [468] = 383, - [469] = 376, - [470] = 386, - [471] = 387, - [472] = 456, - [473] = 382, - [474] = 393, + [457] = 454, + [458] = 376, + [459] = 397, + [460] = 454, + [461] = 394, + [462] = 379, + [463] = 386, + [464] = 385, + [465] = 381, + [466] = 396, + [467] = 390, + [468] = 393, + [469] = 380, + [470] = 470, + [471] = 454, + [472] = 377, + [473] = 373, + [474] = 392, [475] = 475, [476] = 475, [477] = 475, @@ -4486,14 +4494,14 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [618] = 618, [619] = 619, [620] = 620, - [621] = 621, + [621] = 361, [622] = 622, [623] = 623, [624] = 624, [625] = 625, [626] = 626, [627] = 627, - [628] = 628, + [628] = 528, [629] = 629, [630] = 630, [631] = 631, @@ -4501,11 +4509,11 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [633] = 633, [634] = 634, [635] = 635, - [636] = 636, + [636] = 368, [637] = 637, [638] = 638, [639] = 639, - [640] = 640, + [640] = 311, [641] = 641, [642] = 642, [643] = 643, @@ -4528,16 +4536,16 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [660] = 660, [661] = 661, [662] = 662, - [663] = 347, + [663] = 663, [664] = 664, [665] = 665, [666] = 666, [667] = 667, [668] = 668, - [669] = 338, - [670] = 261, - [671] = 323, - [672] = 336, + [669] = 669, + [670] = 670, + [671] = 671, + [672] = 672, [673] = 673, [674] = 674, [675] = 675, @@ -4553,9 +4561,9 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [685] = 685, [686] = 686, [687] = 687, - [688] = 688, + [688] = 257, [689] = 689, - [690] = 654, + [690] = 690, [691] = 691, [692] = 692, [693] = 693, @@ -4563,7 +4571,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [695] = 695, [696] = 696, [697] = 697, - [698] = 646, + [698] = 698, [699] = 699, [700] = 700, [701] = 701, @@ -4588,7 +4596,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [720] = 720, [721] = 721, [722] = 722, - [723] = 723, + [723] = 706, [724] = 724, [725] = 725, [726] = 726, @@ -4614,7 +4622,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [746] = 746, [747] = 747, [748] = 748, - [749] = 749, + [749] = 352, [750] = 750, [751] = 751, [752] = 752, @@ -4622,9 +4630,9 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [754] = 754, [755] = 754, [756] = 756, - [757] = 756, + [757] = 757, [758] = 758, - [759] = 759, + [759] = 758, [760] = 760, [761] = 760, [762] = 762, @@ -4639,90 +4647,90 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [771] = 771, [772] = 772, [773] = 773, - [774] = 774, - [775] = 771, + [774] = 772, + [775] = 775, [776] = 776, - [777] = 777, - [778] = 776, - [779] = 773, + [777] = 776, + [778] = 778, + [779] = 775, [780] = 780, [781] = 781, [782] = 782, [783] = 783, [784] = 784, - [785] = 782, + [785] = 785, [786] = 786, - [787] = 787, + [787] = 780, [788] = 788, [789] = 789, - [790] = 784, - [791] = 786, - [792] = 787, - [793] = 788, - [794] = 789, - [795] = 795, + [790] = 783, + [791] = 782, + [792] = 786, + [793] = 793, + [794] = 781, + [795] = 789, [796] = 796, [797] = 797, [798] = 798, [799] = 799, [800] = 800, - [801] = 801, + [801] = 800, [802] = 802, - [803] = 803, - [804] = 796, + [803] = 802, + [804] = 804, [805] = 805, - [806] = 806, + [806] = 804, [807] = 807, [808] = 808, - [809] = 801, + [809] = 799, [810] = 810, - [811] = 811, - [812] = 812, - [813] = 802, + [811] = 797, + [812] = 798, + [813] = 799, [814] = 814, - [815] = 815, - [816] = 805, - [817] = 807, - [818] = 799, - [819] = 800, - [820] = 814, - [821] = 812, - [822] = 798, - [823] = 810, - [824] = 815, - [825] = 796, - [826] = 798, - [827] = 796, - [828] = 798, + [815] = 800, + [816] = 814, + [817] = 808, + [818] = 818, + [819] = 819, + [820] = 819, + [821] = 818, + [822] = 800, + [823] = 823, + [824] = 824, + [825] = 810, + [826] = 826, + [827] = 805, + [828] = 799, [829] = 829, [830] = 830, - [831] = 830, - [832] = 830, - [833] = 830, + [831] = 829, + [832] = 829, + [833] = 829, [834] = 834, [835] = 835, [836] = 836, [837] = 837, [838] = 837, - [839] = 834, + [839] = 839, [840] = 840, - [841] = 841, + [841] = 836, [842] = 842, - [843] = 843, + [843] = 842, [844] = 844, - [845] = 841, + [845] = 837, [846] = 846, - [847] = 837, - [848] = 848, - [849] = 849, - [850] = 837, + [847] = 834, + [848] = 834, + [849] = 835, + [850] = 850, [851] = 834, - [852] = 836, - [853] = 848, - [854] = 835, - [855] = 835, + [852] = 844, + [853] = 835, + [854] = 842, + [855] = 855, [856] = 856, - [857] = 836, + [857] = 857, [858] = 858, [859] = 859, [860] = 860, @@ -4730,9 +4738,9 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [862] = 862, [863] = 863, [864] = 864, - [865] = 859, - [866] = 860, - [867] = 861, + [865] = 865, + [866] = 866, + [867] = 867, [868] = 868, [869] = 869, [870] = 870, @@ -4753,126 +4761,126 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [885] = 885, [886] = 886, [887] = 887, - [888] = 888, + [888] = 875, [889] = 889, - [890] = 890, + [890] = 859, [891] = 891, - [892] = 892, - [893] = 863, + [892] = 869, + [893] = 874, [894] = 894, - [895] = 864, + [895] = 895, [896] = 896, - [897] = 859, - [898] = 898, - [899] = 899, - [900] = 860, + [897] = 897, + [898] = 860, + [899] = 891, + [900] = 875, [901] = 901, - [902] = 890, - [903] = 903, - [904] = 886, - [905] = 889, - [906] = 906, - [907] = 861, - [908] = 656, + [902] = 902, + [903] = 886, + [904] = 884, + [905] = 905, + [906] = 864, + [907] = 907, + [908] = 908, [909] = 909, - [910] = 910, - [911] = 863, - [912] = 859, - [913] = 898, - [914] = 914, - [915] = 915, - [916] = 916, - [917] = 868, - [918] = 869, - [919] = 880, - [920] = 870, - [921] = 921, - [922] = 871, + [910] = 877, + [911] = 911, + [912] = 909, + [913] = 883, + [914] = 865, + [915] = 877, + [916] = 908, + [917] = 874, + [918] = 858, + [919] = 919, + [920] = 875, + [921] = 873, + [922] = 859, [923] = 923, - [924] = 896, - [925] = 886, - [926] = 868, - [927] = 869, - [928] = 870, - [929] = 929, - [930] = 896, - [931] = 931, + [924] = 887, + [925] = 925, + [926] = 863, + [927] = 862, + [928] = 928, + [929] = 895, + [930] = 930, + [931] = 874, [932] = 932, [933] = 933, [934] = 934, [935] = 935, - [936] = 936, - [937] = 937, + [936] = 881, + [937] = 880, [938] = 938, [939] = 939, - [940] = 871, - [941] = 941, + [940] = 940, + [941] = 901, [942] = 942, [943] = 943, - [944] = 944, - [945] = 901, - [946] = 946, - [947] = 890, - [948] = 929, + [944] = 873, + [945] = 861, + [946] = 934, + [947] = 947, + [948] = 948, [949] = 949, - [950] = 935, - [951] = 914, - [952] = 952, - [953] = 953, - [954] = 939, - [955] = 946, - [956] = 903, - [957] = 862, - [958] = 932, - [959] = 938, - [960] = 960, - [961] = 961, - [962] = 858, - [963] = 872, - [964] = 873, - [965] = 874, - [966] = 877, - [967] = 879, - [968] = 881, - [969] = 883, - [970] = 884, - [971] = 891, - [972] = 899, - [973] = 909, - [974] = 974, - [975] = 931, - [976] = 936, - [977] = 937, - [978] = 941, - [979] = 863, - [980] = 960, - [981] = 961, - [982] = 974, - [983] = 983, - [984] = 984, - [985] = 887, - [986] = 888, - [987] = 892, - [988] = 915, - [989] = 933, - [990] = 990, - [991] = 944, - [992] = 983, - [993] = 929, - [994] = 984, - [995] = 901, - [996] = 952, - [997] = 864, - [998] = 901, - [999] = 890, - [1000] = 880, - [1001] = 953, + [950] = 887, + [951] = 902, + [952] = 923, + [953] = 939, + [954] = 942, + [955] = 948, + [956] = 905, + [957] = 957, + [958] = 958, + [959] = 947, + [960] = 934, + [961] = 868, + [962] = 962, + [963] = 879, + [964] = 964, + [965] = 965, + [966] = 887, + [967] = 967, + [968] = 935, + [969] = 871, + [970] = 940, + [971] = 925, + [972] = 967, + [973] = 973, + [974] = 973, + [975] = 975, + [976] = 907, + [977] = 889, + [978] = 938, + [979] = 930, + [980] = 911, + [981] = 877, + [982] = 949, + [983] = 909, + [984] = 878, + [985] = 985, + [986] = 923, + [987] = 985, + [988] = 866, + [989] = 935, + [990] = 967, + [991] = 867, + [992] = 885, + [993] = 858, + [994] = 928, + [995] = 870, + [996] = 895, + [997] = 708, + [998] = 876, + [999] = 908, + [1000] = 1000, + [1001] = 880, [1002] = 1002, [1003] = 1003, [1004] = 1004, [1005] = 1005, [1006] = 1006, - [1007] = 656, + [1007] = 708, [1008] = 1008, [1009] = 1009, [1010] = 1010, @@ -4880,42 +4888,42 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1012] = 1012, [1013] = 1013, [1014] = 1014, - [1015] = 336, - [1016] = 1016, + [1015] = 1015, + [1016] = 181, [1017] = 1017, - [1018] = 261, - [1019] = 180, - [1020] = 323, - [1021] = 1021, - [1022] = 1022, - [1023] = 181, + [1018] = 170, + [1019] = 1019, + [1020] = 389, + [1021] = 368, + [1022] = 371, + [1023] = 1023, [1024] = 1024, - [1025] = 397, - [1026] = 372, - [1027] = 347, + [1025] = 361, + [1026] = 1026, + [1027] = 311, [1028] = 1028, - [1029] = 1029, - [1030] = 338, + [1029] = 352, + [1030] = 257, [1031] = 1031, [1032] = 1032, [1033] = 1033, [1034] = 1034, - [1035] = 723, - [1036] = 1036, - [1037] = 504, - [1038] = 673, - [1039] = 562, + [1035] = 523, + [1036] = 596, + [1037] = 1037, + [1038] = 735, + [1039] = 1039, [1040] = 1040, [1041] = 1041, - [1042] = 1042, - [1043] = 600, + [1042] = 715, + [1043] = 491, [1044] = 1044, [1045] = 1045, [1046] = 1046, [1047] = 1047, - [1048] = 1048, + [1048] = 244, [1049] = 1049, - [1050] = 244, + [1050] = 1050, [1051] = 1051, [1052] = 1052, [1053] = 1053, @@ -4927,10 +4935,10 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1059] = 1059, [1060] = 1060, [1061] = 1061, - [1062] = 1054, - [1063] = 429, - [1064] = 1064, - [1065] = 1002, + [1062] = 1062, + [1063] = 1063, + [1064] = 1008, + [1065] = 1065, [1066] = 1066, [1067] = 1067, [1068] = 1068, @@ -4939,1015 +4947,1015 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1071] = 1071, [1072] = 1072, [1073] = 1073, - [1074] = 1068, + [1074] = 1054, [1075] = 1075, [1076] = 1076, [1077] = 1077, - [1078] = 1078, - [1079] = 1054, - [1080] = 1008, + [1078] = 1002, + [1079] = 1079, + [1080] = 1080, [1081] = 1081, [1082] = 1082, - [1083] = 1083, - [1084] = 1068, + [1083] = 1077, + [1084] = 429, [1085] = 1085, - [1086] = 1086, + [1086] = 1077, [1087] = 1087, - [1088] = 1088, + [1088] = 1054, [1089] = 1089, [1090] = 1090, - [1091] = 380, - [1092] = 553, - [1093] = 554, - [1094] = 555, - [1095] = 556, - [1096] = 557, - [1097] = 558, - [1098] = 559, - [1099] = 560, - [1100] = 561, - [1101] = 532, - [1102] = 563, - [1103] = 564, - [1104] = 565, - [1105] = 566, - [1106] = 567, - [1107] = 568, - [1108] = 569, - [1109] = 570, - [1110] = 571, - [1111] = 572, - [1112] = 573, - [1113] = 574, + [1091] = 480, + [1092] = 721, + [1093] = 1093, + [1094] = 708, + [1095] = 592, + [1096] = 1096, + [1097] = 552, + [1098] = 650, + [1099] = 551, + [1100] = 588, + [1101] = 647, + [1102] = 151, + [1103] = 586, + [1104] = 550, + [1105] = 606, + [1106] = 395, + [1107] = 578, + [1108] = 1108, + [1109] = 604, + [1110] = 1110, + [1111] = 576, + [1112] = 603, + [1113] = 602, [1114] = 575, - [1115] = 576, - [1116] = 577, - [1117] = 578, - [1118] = 579, - [1119] = 580, - [1120] = 581, - [1121] = 582, - [1122] = 583, - [1123] = 584, - [1124] = 585, - [1125] = 586, - [1126] = 587, - [1127] = 394, - [1128] = 533, - [1129] = 534, - [1130] = 388, - [1131] = 589, - [1132] = 590, - [1133] = 591, - [1134] = 592, - [1135] = 593, - [1136] = 594, - [1137] = 595, - [1138] = 596, - [1139] = 597, - [1140] = 598, - [1141] = 599, - [1142] = 537, - [1143] = 601, - [1144] = 602, - [1145] = 603, - [1146] = 604, - [1147] = 605, - [1148] = 606, - [1149] = 607, - [1150] = 608, - [1151] = 609, - [1152] = 610, - [1153] = 611, - [1154] = 612, - [1155] = 613, - [1156] = 614, - [1157] = 615, - [1158] = 616, - [1159] = 617, - [1160] = 618, - [1161] = 619, - [1162] = 620, - [1163] = 621, - [1164] = 622, - [1165] = 623, - [1166] = 624, - [1167] = 626, - [1168] = 627, - [1169] = 628, - [1170] = 629, - [1171] = 630, - [1172] = 753, - [1173] = 632, - [1174] = 633, - [1175] = 634, - [1176] = 635, - [1177] = 636, - [1178] = 637, - [1179] = 639, - [1180] = 640, - [1181] = 641, - [1182] = 642, - [1183] = 1183, - [1184] = 540, - [1185] = 588, - [1186] = 1186, - [1187] = 479, - [1188] = 625, - [1189] = 1189, - [1190] = 638, - [1191] = 643, - [1192] = 1192, - [1193] = 1193, - [1194] = 644, - [1195] = 399, - [1196] = 372, - [1197] = 645, - [1198] = 138, - [1199] = 1199, - [1200] = 647, - [1201] = 648, + [1115] = 600, + [1116] = 607, + [1117] = 396, + [1118] = 361, + [1119] = 634, + [1120] = 626, + [1121] = 572, + [1122] = 625, + [1123] = 624, + [1124] = 622, + [1125] = 1125, + [1126] = 525, + [1127] = 617, + [1128] = 674, + [1129] = 608, + [1130] = 610, + [1131] = 613, + [1132] = 620, + [1133] = 623, + [1134] = 573, + [1135] = 629, + [1136] = 630, + [1137] = 645, + [1138] = 616, + [1139] = 524, + [1140] = 615, + [1141] = 614, + [1142] = 612, + [1143] = 482, + [1144] = 486, + [1145] = 611, + [1146] = 609, + [1147] = 598, + [1148] = 597, + [1149] = 595, + [1150] = 591, + [1151] = 631, + [1152] = 583, + [1153] = 581, + [1154] = 568, + [1155] = 691, + [1156] = 567, + [1157] = 632, + [1158] = 566, + [1159] = 633, + [1160] = 562, + [1161] = 545, + [1162] = 544, + [1163] = 487, + [1164] = 543, + [1165] = 542, + [1166] = 1166, + [1167] = 490, + [1168] = 493, + [1169] = 534, + [1170] = 635, + [1171] = 637, + [1172] = 494, + [1173] = 483, + [1174] = 484, + [1175] = 495, + [1176] = 489, + [1177] = 638, + [1178] = 642, + [1179] = 644, + [1180] = 714, + [1181] = 651, + [1182] = 662, + [1183] = 497, + [1184] = 669, + [1185] = 675, + [1186] = 479, + [1187] = 505, + [1188] = 716, + [1189] = 498, + [1190] = 1190, + [1191] = 679, + [1192] = 681, + [1193] = 499, + [1194] = 687, + [1195] = 500, + [1196] = 699, + [1197] = 501, + [1198] = 627, + [1199] = 502, + [1200] = 503, + [1201] = 504, [1202] = 1202, - [1203] = 649, - [1204] = 650, - [1205] = 261, - [1206] = 384, - [1207] = 1207, - [1208] = 1208, - [1209] = 1209, - [1210] = 1210, - [1211] = 1211, + [1203] = 705, + [1204] = 509, + [1205] = 709, + [1206] = 717, + [1207] = 711, + [1208] = 713, + [1209] = 392, + [1210] = 508, + [1211] = 510, [1212] = 1212, - [1213] = 1213, + [1213] = 718, [1214] = 1214, - [1215] = 1215, - [1216] = 1009, - [1217] = 1217, - [1218] = 392, - [1219] = 1219, - [1220] = 1220, - [1221] = 1221, + [1215] = 513, + [1216] = 1216, + [1217] = 511, + [1218] = 512, + [1219] = 514, + [1220] = 516, + [1221] = 515, [1222] = 1222, - [1223] = 1223, - [1224] = 1224, + [1223] = 520, + [1224] = 526, [1225] = 1225, [1226] = 1226, - [1227] = 653, - [1228] = 1228, - [1229] = 1229, - [1230] = 1230, - [1231] = 180, - [1232] = 658, - [1233] = 659, - [1234] = 660, - [1235] = 661, - [1236] = 662, - [1237] = 1237, - [1238] = 1238, - [1239] = 385, - [1240] = 664, - [1241] = 1241, - [1242] = 665, + [1227] = 527, + [1228] = 518, + [1229] = 720, + [1230] = 519, + [1231] = 731, + [1232] = 522, + [1233] = 529, + [1234] = 530, + [1235] = 746, + [1236] = 546, + [1237] = 549, + [1238] = 751, + [1239] = 553, + [1240] = 719, + [1241] = 554, + [1242] = 394, [1243] = 1243, - [1244] = 656, - [1245] = 666, - [1246] = 667, - [1247] = 668, - [1248] = 387, + [1244] = 1244, + [1245] = 722, + [1246] = 381, + [1247] = 556, + [1248] = 558, [1249] = 1249, - [1250] = 1250, - [1251] = 1251, - [1252] = 674, - [1253] = 675, - [1254] = 676, - [1255] = 677, - [1256] = 678, - [1257] = 1257, - [1258] = 679, - [1259] = 680, - [1260] = 1260, - [1261] = 1261, - [1262] = 1262, - [1263] = 681, + [1250] = 559, + [1251] = 531, + [1252] = 560, + [1253] = 563, + [1254] = 532, + [1255] = 1255, + [1256] = 533, + [1257] = 537, + [1258] = 564, + [1259] = 539, + [1260] = 565, + [1261] = 555, + [1262] = 724, + [1263] = 181, [1264] = 1264, - [1265] = 682, - [1266] = 683, - [1267] = 684, - [1268] = 685, - [1269] = 382, - [1270] = 687, - [1271] = 688, - [1272] = 1272, + [1265] = 557, + [1266] = 561, + [1267] = 1267, + [1268] = 1268, + [1269] = 569, + [1270] = 1270, + [1271] = 571, + [1272] = 574, [1273] = 1273, - [1274] = 1274, + [1274] = 577, [1275] = 1275, - [1276] = 689, - [1277] = 691, - [1278] = 1278, - [1279] = 693, - [1280] = 694, - [1281] = 695, - [1282] = 696, - [1283] = 697, - [1284] = 699, - [1285] = 700, - [1286] = 1286, - [1287] = 393, - [1288] = 1288, - [1289] = 701, - [1290] = 703, - [1291] = 1291, - [1292] = 1292, + [1276] = 1276, + [1277] = 1277, + [1278] = 496, + [1279] = 158, + [1280] = 1280, + [1281] = 1281, + [1282] = 652, + [1283] = 728, + [1284] = 656, + [1285] = 393, + [1286] = 657, + [1287] = 658, + [1288] = 660, + [1289] = 1289, + [1290] = 579, + [1291] = 580, + [1292] = 661, [1293] = 1293, - [1294] = 1294, - [1295] = 1295, - [1296] = 1296, - [1297] = 1297, - [1298] = 1298, - [1299] = 1299, - [1300] = 1300, - [1301] = 655, - [1302] = 338, - [1303] = 1010, - [1304] = 1304, + [1294] = 584, + [1295] = 585, + [1296] = 730, + [1297] = 663, + [1298] = 587, + [1299] = 589, + [1300] = 665, + [1301] = 1301, + [1302] = 666, + [1303] = 593, + [1304] = 670, [1305] = 1305, - [1306] = 704, - [1307] = 705, - [1308] = 1308, - [1309] = 1309, - [1310] = 1310, - [1311] = 181, - [1312] = 706, - [1313] = 141, - [1314] = 707, - [1315] = 708, - [1316] = 709, - [1317] = 710, - [1318] = 711, - [1319] = 376, - [1320] = 1320, - [1321] = 377, - [1322] = 1322, + [1306] = 1306, + [1307] = 732, + [1308] = 733, + [1309] = 671, + [1310] = 677, + [1311] = 594, + [1312] = 1312, + [1313] = 678, + [1314] = 683, + [1315] = 257, + [1316] = 1316, + [1317] = 684, + [1318] = 1318, + [1319] = 1319, + [1320] = 685, + [1321] = 686, + [1322] = 689, [1323] = 1323, - [1324] = 1324, - [1325] = 1325, - [1326] = 712, - [1327] = 1327, - [1328] = 713, - [1329] = 714, - [1330] = 715, - [1331] = 716, - [1332] = 717, - [1333] = 718, - [1334] = 719, - [1335] = 720, - [1336] = 379, - [1337] = 1337, - [1338] = 722, - [1339] = 724, - [1340] = 725, - [1341] = 726, - [1342] = 727, - [1343] = 728, - [1344] = 729, - [1345] = 730, - [1346] = 731, - [1347] = 732, - [1348] = 733, - [1349] = 734, - [1350] = 735, - [1351] = 736, - [1352] = 737, + [1324] = 690, + [1325] = 692, + [1326] = 1326, + [1327] = 693, + [1328] = 700, + [1329] = 1329, + [1330] = 1330, + [1331] = 702, + [1332] = 703, + [1333] = 704, + [1334] = 1334, + [1335] = 1335, + [1336] = 710, + [1337] = 145, + [1338] = 570, + [1339] = 736, + [1340] = 1340, + [1341] = 1341, + [1342] = 379, + [1343] = 740, + [1344] = 743, + [1345] = 744, + [1346] = 1346, + [1347] = 747, + [1348] = 748, + [1349] = 1349, + [1350] = 618, + [1351] = 1351, + [1352] = 385, [1353] = 1353, - [1354] = 738, - [1355] = 739, - [1356] = 740, - [1357] = 741, + [1354] = 1354, + [1355] = 619, + [1356] = 745, + [1357] = 159, [1358] = 742, - [1359] = 743, - [1360] = 744, - [1361] = 745, - [1362] = 746, - [1363] = 747, - [1364] = 748, + [1359] = 1359, + [1360] = 377, + [1361] = 739, + [1362] = 368, + [1363] = 738, + [1364] = 161, [1365] = 1365, - [1366] = 1366, - [1367] = 1367, - [1368] = 749, - [1369] = 1369, - [1370] = 750, - [1371] = 751, - [1372] = 752, - [1373] = 631, - [1374] = 702, - [1375] = 323, - [1376] = 383, - [1377] = 1377, - [1378] = 480, - [1379] = 481, - [1380] = 142, - [1381] = 381, - [1382] = 1382, - [1383] = 1383, + [1366] = 170, + [1367] = 737, + [1368] = 741, + [1369] = 639, + [1370] = 641, + [1371] = 373, + [1372] = 372, + [1373] = 1373, + [1374] = 1374, + [1375] = 643, + [1376] = 646, + [1377] = 648, + [1378] = 649, + [1379] = 653, + [1380] = 654, + [1381] = 380, + [1382] = 390, + [1383] = 752, [1384] = 1384, - [1385] = 1385, - [1386] = 1386, - [1387] = 397, - [1388] = 1388, + [1385] = 753, + [1386] = 655, + [1387] = 659, + [1388] = 701, [1389] = 1389, - [1390] = 503, + [1390] = 664, [1391] = 1391, - [1392] = 482, - [1393] = 1393, - [1394] = 483, - [1395] = 484, - [1396] = 485, - [1397] = 486, - [1398] = 487, - [1399] = 488, - [1400] = 489, - [1401] = 490, - [1402] = 491, - [1403] = 492, - [1404] = 493, - [1405] = 494, - [1406] = 495, - [1407] = 496, - [1408] = 497, - [1409] = 498, - [1410] = 499, - [1411] = 500, - [1412] = 501, - [1413] = 386, - [1414] = 502, - [1415] = 505, - [1416] = 506, - [1417] = 507, - [1418] = 347, + [1392] = 712, + [1393] = 668, + [1394] = 397, + [1395] = 1395, + [1396] = 1396, + [1397] = 1397, + [1398] = 1398, + [1399] = 1399, + [1400] = 1400, + [1401] = 1401, + [1402] = 672, + [1403] = 1403, + [1404] = 1404, + [1405] = 1405, + [1406] = 352, + [1407] = 673, + [1408] = 590, + [1409] = 676, + [1410] = 582, + [1411] = 750, + [1412] = 1412, + [1413] = 311, + [1414] = 1414, + [1415] = 1009, + [1416] = 1416, + [1417] = 1417, + [1418] = 1418, [1419] = 1419, - [1420] = 508, - [1421] = 509, - [1422] = 510, - [1423] = 511, - [1424] = 512, - [1425] = 513, - [1426] = 514, - [1427] = 515, - [1428] = 516, - [1429] = 517, - [1430] = 518, - [1431] = 519, - [1432] = 520, - [1433] = 521, - [1434] = 522, - [1435] = 523, - [1436] = 524, - [1437] = 525, - [1438] = 526, + [1420] = 1420, + [1421] = 1421, + [1422] = 1422, + [1423] = 1010, + [1424] = 729, + [1425] = 1425, + [1426] = 727, + [1427] = 1427, + [1428] = 680, + [1429] = 1429, + [1430] = 726, + [1431] = 682, + [1432] = 541, + [1433] = 1433, + [1434] = 694, + [1435] = 540, + [1436] = 1436, + [1437] = 1437, + [1438] = 517, [1439] = 1439, - [1440] = 527, - [1441] = 528, - [1442] = 529, - [1443] = 530, - [1444] = 1444, - [1445] = 531, - [1446] = 336, - [1447] = 535, - [1448] = 536, - [1449] = 1449, - [1450] = 538, - [1451] = 1451, - [1452] = 539, - [1453] = 541, - [1454] = 389, - [1455] = 542, - [1456] = 1456, - [1457] = 543, - [1458] = 544, - [1459] = 545, - [1460] = 1460, - [1461] = 546, - [1462] = 156, - [1463] = 167, - [1464] = 547, - [1465] = 548, - [1466] = 549, - [1467] = 550, - [1468] = 551, - [1469] = 552, - [1470] = 686, + [1440] = 1440, + [1441] = 1441, + [1442] = 1442, + [1443] = 725, + [1444] = 389, + [1445] = 376, + [1446] = 507, + [1447] = 492, + [1448] = 488, + [1449] = 485, + [1450] = 481, + [1451] = 521, + [1452] = 1452, + [1453] = 1453, + [1454] = 1454, + [1455] = 535, + [1456] = 536, + [1457] = 386, + [1458] = 538, + [1459] = 547, + [1460] = 695, + [1461] = 548, + [1462] = 1462, + [1463] = 696, + [1464] = 697, + [1465] = 698, + [1466] = 707, + [1467] = 1467, + [1468] = 399, + [1469] = 601, + [1470] = 371, [1471] = 1471, - [1472] = 656, + [1472] = 1472, [1473] = 1473, - [1474] = 704, + [1474] = 1474, [1475] = 1475, - [1476] = 1003, - [1477] = 1477, - [1478] = 1478, + [1476] = 1476, + [1477] = 1003, + [1478] = 708, [1479] = 1479, - [1480] = 1480, + [1480] = 561, [1481] = 1481, [1482] = 1482, [1483] = 1483, - [1484] = 1040, + [1484] = 1484, [1485] = 1485, [1486] = 1486, [1487] = 1487, - [1488] = 1488, + [1488] = 1034, [1489] = 1489, [1490] = 1490, - [1491] = 1491, - [1492] = 1011, + [1491] = 1011, + [1492] = 1484, [1493] = 1493, [1494] = 1494, [1495] = 1495, [1496] = 1496, [1497] = 1497, - [1498] = 1491, + [1498] = 1484, [1499] = 1499, [1500] = 1500, [1501] = 1501, [1502] = 1502, [1503] = 1503, - [1504] = 1491, + [1504] = 1504, [1505] = 1505, - [1506] = 1013, - [1507] = 1040, + [1506] = 1034, + [1507] = 1034, [1508] = 1014, - [1509] = 1509, + [1509] = 1013, [1510] = 1510, - [1511] = 1040, + [1511] = 1510, [1512] = 1512, [1513] = 1012, - [1514] = 1510, + [1514] = 1514, [1515] = 1512, - [1516] = 1089, - [1517] = 1517, - [1518] = 1089, - [1519] = 1024, - [1520] = 1021, - [1521] = 1056, - [1522] = 1056, - [1523] = 1046, - [1524] = 1069, - [1525] = 1069, - [1526] = 1028, - [1527] = 1016, + [1516] = 1024, + [1517] = 1404, + [1518] = 1017, + [1519] = 1519, + [1520] = 1520, + [1521] = 1521, + [1522] = 1065, + [1523] = 1071, + [1524] = 1031, + [1525] = 1071, + [1526] = 1047, + [1527] = 1065, [1528] = 1528, - [1529] = 1031, - [1530] = 1022, + [1529] = 1081, + [1530] = 1268, [1531] = 1531, - [1532] = 1029, - [1533] = 1017, - [1534] = 1393, - [1535] = 1393, - [1536] = 1536, - [1537] = 1238, - [1538] = 1046, - [1539] = 1539, + [1532] = 1019, + [1533] = 1081, + [1534] = 1047, + [1535] = 1535, + [1536] = 1268, + [1537] = 1028, + [1538] = 1015, + [1539] = 1026, [1540] = 1540, - [1541] = 1541, - [1542] = 1045, - [1543] = 1543, - [1544] = 1045, - [1545] = 1036, - [1546] = 1393, - [1547] = 1033, - [1548] = 1238, + [1541] = 1023, + [1542] = 1542, + [1543] = 1033, + [1544] = 1544, + [1545] = 1542, + [1546] = 1040, + [1547] = 1056, + [1548] = 1437, [1549] = 1549, - [1550] = 1072, - [1551] = 1551, - [1552] = 1377, - [1553] = 1478, - [1554] = 244, - [1555] = 1549, - [1556] = 1047, - [1557] = 1058, - [1558] = 1475, - [1559] = 1059, - [1560] = 1551, - [1561] = 1042, - [1562] = 1562, - [1563] = 1562, - [1564] = 1034, - [1565] = 1419, - [1566] = 1551, - [1567] = 1562, - [1568] = 1419, - [1569] = 1543, - [1570] = 1377, - [1571] = 1551, - [1572] = 1562, - [1573] = 1496, - [1574] = 1574, - [1575] = 1489, - [1576] = 1576, - [1577] = 1499, - [1578] = 1576, - [1579] = 1482, - [1580] = 1486, - [1581] = 1048, - [1582] = 1071, - [1583] = 1075, - [1584] = 1044, - [1585] = 1505, - [1586] = 1064, - [1587] = 338, - [1588] = 1488, - [1589] = 1574, - [1590] = 1490, - [1591] = 1478, - [1592] = 1592, - [1593] = 1500, - [1594] = 1060, - [1595] = 261, - [1596] = 1076, - [1597] = 1088, - [1598] = 1085, - [1599] = 1057, - [1600] = 1051, - [1601] = 1502, - [1602] = 1087, - [1603] = 323, - [1604] = 1055, - [1605] = 1066, - [1606] = 1501, - [1607] = 1607, - [1608] = 1078, - [1609] = 336, - [1610] = 1610, - [1611] = 1053, - [1612] = 1090, - [1613] = 1592, - [1614] = 1086, - [1615] = 1494, - [1616] = 1503, - [1617] = 1081, - [1618] = 1592, - [1619] = 1497, - [1620] = 1073, + [1550] = 1437, + [1551] = 244, + [1552] = 1549, + [1553] = 1553, + [1554] = 1039, + [1555] = 1067, + [1556] = 1542, + [1557] = 1419, + [1558] = 1419, + [1559] = 1542, + [1560] = 1544, + [1561] = 1473, + [1562] = 1553, + [1563] = 1067, + [1564] = 1068, + [1565] = 1058, + [1566] = 1549, + [1567] = 1481, + [1568] = 1268, + [1569] = 1404, + [1570] = 1041, + [1571] = 1549, + [1572] = 1076, + [1573] = 1497, + [1574] = 1061, + [1575] = 1090, + [1576] = 1069, + [1577] = 1063, + [1578] = 1486, + [1579] = 352, + [1580] = 1483, + [1581] = 1502, + [1582] = 1070, + [1583] = 1055, + [1584] = 1501, + [1585] = 1500, + [1586] = 1499, + [1587] = 1587, + [1588] = 311, + [1589] = 1049, + [1590] = 1060, + [1591] = 1059, + [1592] = 1473, + [1593] = 1050, + [1594] = 1079, + [1595] = 1595, + [1596] = 1482, + [1597] = 1496, + [1598] = 1075, + [1599] = 1072, + [1600] = 1503, + [1601] = 1481, + [1602] = 1505, + [1603] = 1045, + [1604] = 1082, + [1605] = 1062, + [1606] = 1485, + [1607] = 1080, + [1608] = 1053, + [1609] = 1609, + [1610] = 1073, + [1611] = 1611, + [1612] = 1495, + [1613] = 1087, + [1614] = 1587, + [1615] = 1489, + [1616] = 1494, + [1617] = 1493, + [1618] = 257, + [1619] = 1487, + [1620] = 1490, [1621] = 1052, - [1622] = 1083, - [1623] = 1049, - [1624] = 1061, - [1625] = 1483, - [1626] = 1067, - [1627] = 1493, - [1628] = 1628, - [1629] = 1495, - [1630] = 1485, - [1631] = 347, - [1632] = 1628, - [1633] = 1070, - [1634] = 1487, - [1635] = 1475, + [1622] = 1595, + [1623] = 1587, + [1624] = 1066, + [1625] = 361, + [1626] = 1626, + [1627] = 1627, + [1628] = 1627, + [1629] = 1609, + [1630] = 1044, + [1631] = 1057, + [1632] = 1085, + [1633] = 1504, + [1634] = 368, + [1635] = 1051, [1636] = 1636, - [1637] = 1192, - [1638] = 1638, - [1639] = 1215, + [1637] = 1637, + [1638] = 1493, + [1639] = 1397, [1640] = 1226, - [1641] = 1241, - [1642] = 1286, - [1643] = 1323, - [1644] = 1337, - [1645] = 1493, - [1646] = 1502, - [1647] = 1386, - [1648] = 1489, - [1649] = 1499, - [1650] = 1199, - [1651] = 1208, - [1652] = 1209, - [1653] = 1217, + [1641] = 1225, + [1642] = 1222, + [1643] = 1270, + [1644] = 1644, + [1645] = 1202, + [1646] = 1646, + [1647] = 1301, + [1648] = 1648, + [1649] = 1166, + [1650] = 1650, + [1651] = 1651, + [1652] = 1652, + [1653] = 1653, [1654] = 1654, - [1655] = 1308, - [1656] = 1310, - [1657] = 1322, - [1658] = 1327, - [1659] = 1353, - [1660] = 1660, - [1661] = 1295, - [1662] = 1214, - [1663] = 1383, - [1664] = 1221, - [1665] = 1251, - [1666] = 1237, - [1667] = 1309, - [1668] = 1183, - [1669] = 1186, - [1670] = 1189, - [1671] = 1671, - [1672] = 1249, - [1673] = 1250, - [1674] = 1674, - [1675] = 1278, - [1676] = 1299, - [1677] = 1300, - [1678] = 1304, - [1679] = 1320, - [1680] = 1324, - [1681] = 1325, - [1682] = 1682, - [1683] = 1384, - [1684] = 1444, - [1685] = 1460, - [1686] = 1257, - [1687] = 1262, - [1688] = 1264, - [1689] = 1193, - [1690] = 1690, - [1691] = 1274, - [1692] = 1369, - [1693] = 1219, - [1694] = 1220, - [1695] = 1695, - [1696] = 1202, - [1697] = 1697, - [1698] = 1698, - [1699] = 1699, - [1700] = 1439, - [1701] = 1451, - [1702] = 1636, - [1703] = 1496, - [1704] = 1704, - [1705] = 1222, - [1706] = 1225, - [1707] = 1008, - [1708] = 1293, - [1709] = 1297, - [1710] = 1483, - [1711] = 1505, - [1712] = 1495, - [1713] = 1485, - [1714] = 1486, - [1715] = 1488, - [1716] = 1490, - [1717] = 1500, - [1718] = 1501, - [1719] = 1494, - [1720] = 1503, - [1721] = 1497, - [1722] = 1482, - [1723] = 1207, - [1724] = 1211, - [1725] = 1223, - [1726] = 1224, - [1727] = 1487, - [1728] = 1291, - [1729] = 1294, - [1730] = 1296, - [1731] = 1298, - [1732] = 1305, - [1733] = 1733, - [1734] = 1382, - [1735] = 1385, - [1736] = 1388, - [1737] = 1389, - [1738] = 1391, - [1739] = 1449, - [1740] = 1740, - [1741] = 429, - [1742] = 389, - [1743] = 382, - [1744] = 384, - [1745] = 392, - [1746] = 1496, - [1747] = 1228, - [1748] = 1748, - [1749] = 1483, - [1750] = 388, - [1751] = 1505, - [1752] = 399, - [1753] = 1495, - [1754] = 1485, - [1755] = 1486, - [1756] = 1488, - [1757] = 1490, - [1758] = 1500, - [1759] = 1501, - [1760] = 1494, - [1761] = 1503, - [1762] = 1497, - [1763] = 1482, - [1764] = 1212, - [1765] = 1213, - [1766] = 385, - [1767] = 387, - [1768] = 1487, - [1769] = 393, - [1770] = 1292, - [1771] = 1210, - [1772] = 376, - [1773] = 377, - [1774] = 379, - [1775] = 383, - [1776] = 386, - [1777] = 394, - [1778] = 156, - [1779] = 167, - [1780] = 380, - [1781] = 138, - [1782] = 1782, - [1783] = 1496, - [1784] = 141, - [1785] = 397, - [1786] = 1786, - [1787] = 1505, - [1788] = 142, - [1789] = 372, - [1790] = 1487, - [1791] = 180, - [1792] = 181, - [1793] = 1793, - [1794] = 1748, - [1795] = 1795, - [1796] = 1740, - [1797] = 1660, - [1798] = 1798, + [1655] = 1108, + [1656] = 1637, + [1657] = 1651, + [1658] = 1658, + [1659] = 1646, + [1660] = 1273, + [1661] = 1650, + [1662] = 1495, + [1663] = 1637, + [1664] = 1658, + [1665] = 1341, + [1666] = 1275, + [1667] = 1391, + [1668] = 1668, + [1669] = 1312, + [1670] = 1395, + [1671] = 376, + [1672] = 1503, + [1673] = 1277, + [1674] = 1351, + [1675] = 1675, + [1676] = 1675, + [1677] = 385, + [1678] = 379, + [1679] = 1503, + [1680] = 393, + [1681] = 1334, + [1682] = 1504, + [1683] = 1330, + [1684] = 1280, + [1685] = 1326, + [1686] = 1190, + [1687] = 1496, + [1688] = 1281, + [1689] = 1212, + [1690] = 1214, + [1691] = 1216, + [1692] = 1494, + [1693] = 1503, + [1694] = 1694, + [1695] = 1384, + [1696] = 1696, + [1697] = 1243, + [1698] = 1244, + [1699] = 1396, + [1700] = 1249, + [1701] = 1701, + [1702] = 1403, + [1703] = 1703, + [1704] = 1637, + [1705] = 1462, + [1706] = 1467, + [1707] = 1650, + [1708] = 1452, + [1709] = 1675, + [1710] = 1442, + [1711] = 1482, + [1712] = 1264, + [1713] = 1502, + [1714] = 1501, + [1715] = 1483, + [1716] = 1505, + [1717] = 1648, + [1718] = 1429, + [1719] = 1306, + [1720] = 1701, + [1721] = 1374, + [1722] = 1636, + [1723] = 1255, + [1724] = 1637, + [1725] = 1725, + [1726] = 1398, + [1727] = 1727, + [1728] = 1650, + [1729] = 1490, + [1730] = 1454, + [1731] = 1453, + [1732] = 1425, + [1733] = 170, + [1734] = 1489, + [1735] = 1675, + [1736] = 1736, + [1737] = 1405, + [1738] = 181, + [1739] = 429, + [1740] = 1490, + [1741] = 1373, + [1742] = 1485, + [1743] = 377, + [1744] = 1636, + [1745] = 1486, + [1746] = 1637, + [1747] = 1008, + [1748] = 1354, + [1749] = 1497, + [1750] = 1489, + [1751] = 1289, + [1752] = 1340, + [1753] = 1753, + [1754] = 372, + [1755] = 1335, + [1756] = 380, + [1757] = 1650, + [1758] = 1725, + [1759] = 390, + [1760] = 1725, + [1761] = 1436, + [1762] = 1762, + [1763] = 1499, + [1764] = 1399, + [1765] = 1485, + [1766] = 1400, + [1767] = 1329, + [1768] = 1675, + [1769] = 1323, + [1770] = 1486, + [1771] = 1276, + [1772] = 386, + [1773] = 1365, + [1774] = 1353, + [1775] = 381, + [1776] = 394, + [1777] = 1125, + [1778] = 1675, + [1779] = 1439, + [1780] = 1440, + [1781] = 1781, + [1782] = 389, + [1783] = 1703, + [1784] = 1487, + [1785] = 159, + [1786] = 1504, + [1787] = 1487, + [1788] = 1788, + [1789] = 392, + [1790] = 1636, + [1791] = 1637, + [1792] = 1650, + [1793] = 399, + [1794] = 395, + [1795] = 1505, + [1796] = 1433, + [1797] = 1483, + [1798] = 397, [1799] = 1799, - [1800] = 1800, - [1801] = 1654, - [1802] = 1674, - [1803] = 1682, - [1804] = 1695, - [1805] = 1636, - [1806] = 1800, - [1807] = 1704, - [1808] = 1782, + [1800] = 396, + [1801] = 151, + [1802] = 1652, + [1803] = 1636, + [1804] = 1804, + [1805] = 145, + [1806] = 373, + [1807] = 161, + [1808] = 1482, [1809] = 1809, - [1810] = 1748, - [1811] = 1493, - [1812] = 1502, - [1813] = 1740, - [1814] = 1489, - [1815] = 1499, - [1816] = 1660, - [1817] = 1817, - [1818] = 1818, - [1819] = 1674, - [1820] = 1636, - [1821] = 1748, - [1822] = 1740, - [1823] = 1660, - [1824] = 1674, - [1825] = 1809, - [1826] = 1748, - [1827] = 1660, - [1828] = 1674, - [1829] = 1829, - [1830] = 1636, - [1831] = 1748, - [1832] = 1660, - [1833] = 1674, - [1834] = 1636, - [1835] = 1748, - [1836] = 1660, - [1837] = 1674, - [1838] = 1636, - [1839] = 1839, - [1840] = 1793, - [1841] = 381, + [1810] = 1482, + [1811] = 1500, + [1812] = 158, + [1813] = 1441, + [1814] = 371, + [1815] = 1502, + [1816] = 1501, + [1817] = 1427, + [1818] = 1500, + [1819] = 1650, + [1820] = 1420, + [1821] = 1504, + [1822] = 1418, + [1823] = 1417, + [1824] = 1636, + [1825] = 1825, + [1826] = 1414, + [1827] = 1401, + [1828] = 1412, + [1829] = 1636, + [1830] = 1825, + [1831] = 1293, + [1832] = 1499, + [1833] = 1305, + [1834] = 1725, + [1835] = 1497, + [1836] = 1675, + [1837] = 1496, + [1838] = 1495, + [1839] = 1494, + [1840] = 1493, + [1841] = 1359, [1842] = 1842, [1843] = 1843, [1844] = 1844, [1845] = 1845, [1846] = 1846, - [1847] = 1638, + [1847] = 1847, [1848] = 1848, [1849] = 1849, [1850] = 1850, - [1851] = 1850, + [1851] = 1851, [1852] = 1852, - [1853] = 1853, + [1853] = 1845, [1854] = 1854, - [1855] = 1855, - [1856] = 1856, - [1857] = 1852, + [1855] = 1843, + [1856] = 1843, + [1857] = 1857, [1858] = 1858, - [1859] = 1849, - [1860] = 1855, - [1861] = 1861, - [1862] = 1862, - [1863] = 1842, - [1864] = 1864, - [1865] = 1690, - [1866] = 1856, - [1867] = 1856, - [1868] = 1858, - [1869] = 1861, - [1870] = 1864, - [1871] = 1854, - [1872] = 1862, - [1873] = 1873, + [1859] = 1850, + [1860] = 1851, + [1861] = 1644, + [1862] = 1857, + [1863] = 1863, + [1864] = 1842, + [1865] = 1863, + [1866] = 1866, + [1867] = 1736, + [1868] = 1868, + [1869] = 1846, + [1870] = 1870, + [1871] = 1762, + [1872] = 1844, + [1873] = 1866, [1874] = 1874, - [1875] = 1699, + [1875] = 1849, [1876] = 1876, [1877] = 1877, - [1878] = 1876, - [1879] = 1879, - [1880] = 1877, + [1878] = 1877, + [1879] = 1876, + [1880] = 1880, [1881] = 1881, - [1882] = 1881, + [1882] = 1882, [1883] = 1883, [1884] = 1884, - [1885] = 1885, - [1886] = 1884, - [1887] = 1885, - [1888] = 1883, + [1885] = 1883, + [1886] = 1882, + [1887] = 1881, + [1888] = 1884, [1889] = 1889, [1890] = 1890, [1891] = 1891, [1892] = 1892, - [1893] = 1893, - [1894] = 1892, + [1893] = 1892, + [1894] = 1894, [1895] = 1892, - [1896] = 1893, - [1897] = 1893, - [1898] = 1893, - [1899] = 1893, + [1896] = 1892, + [1897] = 1892, + [1898] = 1894, + [1899] = 1894, [1900] = 1900, [1901] = 1900, - [1902] = 142, + [1902] = 161, [1903] = 1011, - [1904] = 138, - [1905] = 1013, - [1906] = 1016, - [1907] = 1012, - [1908] = 1024, - [1909] = 1031, - [1910] = 1910, - [1911] = 1014, - [1912] = 1017, - [1913] = 1024, - [1914] = 1022, - [1915] = 1016, - [1916] = 1021, - [1917] = 1029, - [1918] = 1017, - [1919] = 1031, - [1920] = 1028, - [1921] = 1033, - [1922] = 1058, - [1923] = 1059, - [1924] = 1036, - [1925] = 1034, - [1926] = 1064, - [1927] = 1047, - [1928] = 1072, - [1929] = 1042, - [1930] = 1048, - [1931] = 1071, + [1904] = 159, + [1905] = 1028, + [1906] = 1906, + [1907] = 1017, + [1908] = 1014, + [1909] = 1026, + [1910] = 1013, + [1911] = 1012, + [1912] = 1023, + [1913] = 1031, + [1914] = 1028, + [1915] = 1015, + [1916] = 1019, + [1917] = 1023, + [1918] = 1024, + [1919] = 1017, + [1920] = 1026, + [1921] = 1076, + [1922] = 1041, + [1923] = 1056, + [1924] = 1061, + [1925] = 1039, + [1926] = 1058, + [1927] = 1068, + [1928] = 1033, + [1929] = 1040, + [1930] = 1930, + [1931] = 1070, [1932] = 1932, - [1933] = 1075, - [1934] = 1932, - [1935] = 1935, - [1936] = 1936, - [1937] = 1936, - [1938] = 1076, - [1939] = 180, - [1940] = 1070, + [1933] = 1932, + [1934] = 1934, + [1935] = 1072, + [1936] = 1075, + [1937] = 1059, + [1938] = 170, + [1939] = 1066, + [1940] = 1057, [1941] = 1085, - [1942] = 1942, - [1943] = 181, - [1944] = 1051, - [1945] = 1087, - [1946] = 1061, - [1947] = 1086, - [1948] = 1067, - [1949] = 1078, - [1950] = 1066, - [1951] = 1088, - [1952] = 1090, - [1953] = 1044, - [1954] = 1053, - [1955] = 1942, - [1956] = 1081, - [1957] = 397, - [1958] = 1942, - [1959] = 372, - [1960] = 1083, - [1961] = 1961, - [1962] = 1049, - [1963] = 1060, - [1964] = 1531, - [1965] = 1211, - [1966] = 1293, - [1967] = 1385, - [1968] = 1292, - [1969] = 1222, - [1970] = 1291, - [1971] = 1225, - [1972] = 1391, - [1973] = 1207, - [1974] = 1540, - [1975] = 1212, - [1976] = 1213, - [1977] = 1539, - [1978] = 1451, - [1979] = 1296, - [1980] = 1541, - [1981] = 1936, + [1942] = 1049, + [1943] = 1052, + [1944] = 1044, + [1945] = 1945, + [1946] = 1519, + [1947] = 1050, + [1948] = 1051, + [1949] = 1087, + [1950] = 1079, + [1951] = 1053, + [1952] = 1062, + [1953] = 1945, + [1954] = 1954, + [1955] = 1073, + [1956] = 1090, + [1957] = 1045, + [1958] = 1080, + [1959] = 371, + [1960] = 181, + [1961] = 1934, + [1962] = 1945, + [1963] = 1082, + [1964] = 389, + [1965] = 1540, + [1966] = 1190, + [1967] = 1374, + [1968] = 1391, + [1969] = 1399, + [1970] = 1395, + [1971] = 1270, + [1972] = 1528, + [1973] = 1281, + [1974] = 1280, + [1975] = 1975, + [1976] = 1351, + [1977] = 1326, + [1978] = 1535, + [1979] = 1312, + [1980] = 1425, + [1981] = 1341, [1982] = 1982, - [1983] = 1228, - [1984] = 1297, - [1985] = 1298, - [1986] = 1382, - [1987] = 1987, - [1988] = 1439, - [1989] = 1294, - [1990] = 1223, - [1991] = 1224, - [1992] = 1449, - [1993] = 1388, - [1994] = 1305, - [1995] = 1389, - [1996] = 1210, - [1997] = 167, - [1998] = 1998, - [1999] = 1999, + [1983] = 1277, + [1984] = 1429, + [1985] = 1934, + [1986] = 1440, + [1987] = 1275, + [1988] = 1330, + [1989] = 1334, + [1990] = 1400, + [1991] = 1439, + [1992] = 1433, + [1993] = 1373, + [1994] = 1273, + [1995] = 1397, + [1996] = 1398, + [1997] = 1997, + [1998] = 158, + [1999] = 145, [2000] = 2000, - [2001] = 141, - [2002] = 1031, - [2003] = 1016, - [2004] = 2004, - [2005] = 2005, - [2006] = 1024, - [2007] = 1910, - [2008] = 1017, - [2009] = 1031, - [2010] = 1017, - [2011] = 2011, - [2012] = 1024, - [2013] = 1016, - [2014] = 1031, - [2015] = 1017, - [2016] = 1024, - [2017] = 1016, + [2001] = 2001, + [2002] = 1906, + [2003] = 1017, + [2004] = 1023, + [2005] = 1028, + [2006] = 2006, + [2007] = 1028, + [2008] = 2008, + [2009] = 2009, + [2010] = 1026, + [2011] = 1023, + [2012] = 1017, + [2013] = 1028, + [2014] = 1017, + [2015] = 1026, + [2016] = 1023, + [2017] = 1026, [2018] = 2018, [2019] = 2019, [2020] = 2020, [2021] = 2021, [2022] = 2022, - [2023] = 2021, - [2024] = 2022, - [2025] = 2025, + [2023] = 2023, + [2024] = 2023, + [2025] = 2018, [2026] = 2026, - [2027] = 2027, - [2028] = 2019, - [2029] = 2020, - [2030] = 2025, - [2031] = 2031, - [2032] = 2027, - [2033] = 2031, + [2027] = 2020, + [2028] = 2028, + [2029] = 2026, + [2030] = 2030, + [2031] = 2021, + [2032] = 2022, + [2033] = 2019, [2034] = 2034, - [2035] = 2035, + [2035] = 368, [2036] = 2036, [2037] = 2037, [2038] = 2038, - [2039] = 338, - [2040] = 1016, + [2039] = 2039, + [2040] = 2040, [2041] = 2041, - [2042] = 2042, + [2042] = 311, [2043] = 2043, - [2044] = 2044, - [2045] = 1024, + [2044] = 2043, + [2045] = 2045, [2046] = 2046, - [2047] = 336, - [2048] = 2048, - [2049] = 2042, + [2047] = 2047, + [2048] = 1017, + [2049] = 2049, [2050] = 2050, - [2051] = 2051, - [2052] = 2052, - [2053] = 323, + [2051] = 2045, + [2052] = 2034, + [2053] = 2038, [2054] = 2054, - [2055] = 2052, - [2056] = 347, - [2057] = 2051, - [2058] = 1935, - [2059] = 261, - [2060] = 2060, + [2055] = 2055, + [2056] = 2056, + [2057] = 2057, + [2058] = 2058, + [2059] = 2055, + [2060] = 361, [2061] = 2061, [2062] = 2062, - [2063] = 2063, - [2064] = 2064, - [2065] = 2065, - [2066] = 1031, - [2067] = 1017, - [2068] = 2064, - [2069] = 2069, - [2070] = 2034, - [2071] = 2050, - [2072] = 2065, - [2073] = 2037, - [2074] = 2044, - [2075] = 2075, + [2063] = 2047, + [2064] = 1026, + [2065] = 2056, + [2066] = 2066, + [2067] = 2050, + [2068] = 1028, + [2069] = 2049, + [2070] = 2070, + [2071] = 352, + [2072] = 1930, + [2073] = 257, + [2074] = 2074, + [2075] = 1023, [2076] = 2076, [2077] = 2077, - [2078] = 2078, + [2078] = 1930, [2079] = 2079, [2080] = 2080, [2081] = 2081, - [2082] = 2082, + [2082] = 1954, [2083] = 2083, [2084] = 2084, [2085] = 2085, @@ -5956,7 +5964,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2088] = 2088, [2089] = 2089, [2090] = 2090, - [2091] = 2091, + [2091] = 1930, [2092] = 2092, [2093] = 2093, [2094] = 2094, @@ -5965,82 +5973,82 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2097] = 2097, [2098] = 2098, [2099] = 2099, - [2100] = 380, + [2100] = 2100, [2101] = 2101, [2102] = 2102, [2103] = 2103, [2104] = 2104, - [2105] = 2105, - [2106] = 2106, + [2105] = 2081, + [2106] = 373, [2107] = 2107, - [2108] = 2089, + [2108] = 2108, [2109] = 2109, [2110] = 2110, - [2111] = 2087, + [2111] = 2111, [2112] = 2112, - [2113] = 1961, + [2113] = 2113, [2114] = 2114, - [2115] = 2115, - [2116] = 2090, - [2117] = 1935, + [2115] = 2107, + [2116] = 2108, + [2117] = 2117, [2118] = 2118, - [2119] = 2118, - [2120] = 1935, - [2121] = 2121, + [2119] = 2119, + [2120] = 2120, + [2121] = 2081, [2122] = 2122, - [2123] = 2105, - [2124] = 2118, + [2123] = 2088, + [2124] = 2090, [2125] = 2125, [2126] = 2126, [2127] = 2127, - [2128] = 1042, + [2128] = 2128, [2129] = 2129, - [2130] = 1961, - [2131] = 2131, - [2132] = 2132, + [2130] = 2130, + [2131] = 1040, + [2132] = 1039, [2133] = 2133, - [2134] = 1034, + [2134] = 2134, [2135] = 2135, - [2136] = 2135, + [2136] = 2136, [2137] = 2137, - [2138] = 1036, - [2139] = 2139, - [2140] = 2140, - [2141] = 2132, + [2138] = 2138, + [2139] = 2129, + [2140] = 2138, + [2141] = 2141, [2142] = 2142, - [2143] = 2139, + [2143] = 2135, [2144] = 2144, - [2145] = 2144, + [2145] = 2136, [2146] = 2146, - [2147] = 2147, - [2148] = 2148, - [2149] = 1033, - [2150] = 1935, - [2151] = 2137, - [2152] = 2135, - [2153] = 2153, + [2147] = 1041, + [2148] = 1954, + [2149] = 2137, + [2150] = 1930, + [2151] = 2151, + [2152] = 1954, + [2153] = 2141, [2154] = 2154, [2155] = 2155, [2156] = 2156, - [2157] = 1961, + [2157] = 2130, [2158] = 2158, - [2159] = 2159, - [2160] = 2154, - [2161] = 2159, - [2162] = 2137, - [2163] = 2163, - [2164] = 2164, - [2165] = 2147, - [2166] = 2158, - [2167] = 2164, + [2159] = 2146, + [2160] = 2160, + [2161] = 2142, + [2162] = 2154, + [2163] = 2160, + [2164] = 2155, + [2165] = 2133, + [2166] = 1033, + [2167] = 2167, [2168] = 2168, - [2169] = 2148, - [2170] = 2140, - [2171] = 2142, - [2172] = 2131, - [2173] = 2173, - [2174] = 2168, - [2175] = 2133, + [2169] = 2130, + [2170] = 2135, + [2171] = 2171, + [2172] = 2128, + [2173] = 2134, + [2174] = 2171, + [2175] = 2175, [2176] = 2176, [2177] = 2177, [2178] = 2178, @@ -6052,139 +6060,139 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2184] = 2184, [2185] = 2185, [2186] = 2186, - [2187] = 2187, - [2188] = 2181, + [2187] = 2181, + [2188] = 2188, [2189] = 2189, - [2190] = 2185, + [2190] = 2190, [2191] = 2191, - [2192] = 2184, - [2193] = 2183, + [2192] = 2177, + [2193] = 2178, [2194] = 2194, [2195] = 2195, [2196] = 2196, - [2197] = 2196, - [2198] = 2198, - [2199] = 2176, - [2200] = 2198, - [2201] = 2201, - [2202] = 2194, + [2197] = 2186, + [2198] = 2195, + [2199] = 2199, + [2200] = 2200, + [2201] = 2180, + [2202] = 2182, [2203] = 2203, - [2204] = 2204, + [2204] = 2199, [2205] = 2205, [2206] = 2206, - [2207] = 2207, + [2207] = 2196, [2208] = 2208, - [2209] = 2209, + [2209] = 2208, [2210] = 2210, [2211] = 2211, - [2212] = 2212, - [2213] = 2213, + [2212] = 1954, + [2213] = 2190, [2214] = 2214, - [2215] = 2180, - [2216] = 1961, - [2217] = 2204, - [2218] = 2189, - [2219] = 2219, + [2215] = 2211, + [2216] = 2216, + [2217] = 2217, + [2218] = 2218, + [2219] = 2200, [2220] = 2220, [2221] = 2221, - [2222] = 2211, - [2223] = 2223, - [2224] = 2195, - [2225] = 2186, - [2226] = 2187, - [2227] = 2219, - [2228] = 2191, - [2229] = 2214, - [2230] = 2221, - [2231] = 2182, + [2222] = 2222, + [2223] = 2185, + [2224] = 2189, + [2225] = 2194, + [2226] = 2226, + [2227] = 2226, + [2228] = 2210, + [2229] = 2229, + [2230] = 2188, + [2231] = 2203, [2232] = 2232, - [2233] = 1999, + [2233] = 2233, [2234] = 2234, [2235] = 2235, [2236] = 2236, [2237] = 2237, [2238] = 2238, - [2239] = 2239, + [2239] = 2233, [2240] = 2240, [2241] = 2241, [2242] = 2242, - [2243] = 2243, + [2243] = 2001, [2244] = 2244, [2245] = 2245, [2246] = 2246, - [2247] = 2243, - [2248] = 2246, + [2247] = 2247, + [2248] = 2248, [2249] = 2249, [2250] = 2250, [2251] = 2251, - [2252] = 2252, + [2252] = 2246, [2253] = 2253, [2254] = 2254, - [2255] = 2239, - [2256] = 2256, + [2255] = 2254, + [2256] = 2251, [2257] = 2257, - [2258] = 2252, + [2258] = 2258, [2259] = 2259, - [2260] = 2251, - [2261] = 2249, - [2262] = 2250, - [2263] = 2253, - [2264] = 2235, - [2265] = 2237, - [2266] = 2266, - [2267] = 2267, + [2260] = 2260, + [2261] = 2261, + [2262] = 2262, + [2263] = 2263, + [2264] = 2264, + [2265] = 2263, + [2266] = 2262, + [2267] = 2242, [2268] = 2268, - [2269] = 2269, + [2269] = 2245, [2270] = 2270, [2271] = 2271, - [2272] = 2272, - [2273] = 2241, - [2274] = 2242, - [2275] = 2244, - [2276] = 2245, - [2277] = 2254, - [2278] = 2256, - [2279] = 2259, - [2280] = 2280, - [2281] = 2281, - [2282] = 2232, - [2283] = 2283, - [2284] = 2281, - [2285] = 2232, + [2272] = 2232, + [2273] = 2235, + [2274] = 2236, + [2275] = 2237, + [2276] = 2268, + [2277] = 2270, + [2278] = 2240, + [2279] = 2257, + [2280] = 2261, + [2281] = 2264, + [2282] = 2247, + [2283] = 2271, + [2284] = 2284, + [2285] = 2260, [2286] = 2286, - [2287] = 2272, - [2288] = 2266, - [2289] = 2280, + [2287] = 2261, + [2288] = 2284, + [2289] = 2289, [2290] = 2290, [2291] = 2291, [2292] = 2292, [2293] = 2293, [2294] = 2294, - [2295] = 2295, + [2295] = 158, [2296] = 2296, [2297] = 2297, [2298] = 2298, - [2299] = 2004, + [2299] = 2299, [2300] = 2300, [2301] = 2301, - [2302] = 2292, - [2303] = 2303, + [2302] = 2302, + [2303] = 2294, [2304] = 2304, [2305] = 2305, - [2306] = 2298, - [2307] = 2307, + [2306] = 2306, + [2307] = 2291, [2308] = 2308, [2309] = 2309, [2310] = 2310, [2311] = 2311, - [2312] = 2307, - [2313] = 2293, + [2312] = 2312, + [2313] = 2299, [2314] = 2314, - [2315] = 2011, - [2316] = 2316, - [2317] = 2295, - [2318] = 2318, - [2319] = 2319, + [2315] = 2298, + [2316] = 2297, + [2317] = 2317, + [2318] = 159, + [2319] = 2292, [2320] = 2320, [2321] = 2321, [2322] = 2322, @@ -6192,68 +6200,68 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2324] = 2324, [2325] = 2325, [2326] = 2326, - [2327] = 2310, - [2328] = 2309, - [2329] = 2296, - [2330] = 2316, - [2331] = 2318, + [2327] = 2327, + [2328] = 2317, + [2329] = 2329, + [2330] = 2322, + [2331] = 2326, [2332] = 2332, - [2333] = 2333, + [2333] = 2332, [2334] = 2334, [2335] = 2335, - [2336] = 2292, + [2336] = 2336, [2337] = 2337, - [2338] = 2338, - [2339] = 2339, + [2338] = 2300, + [2339] = 2336, [2340] = 2340, [2341] = 2341, - [2342] = 2342, - [2343] = 2303, - [2344] = 2311, + [2342] = 2337, + [2343] = 2324, + [2344] = 161, [2345] = 2300, - [2346] = 2301, - [2347] = 2308, - [2348] = 2305, - [2349] = 2297, - [2350] = 2321, - [2351] = 2290, - [2352] = 2300, - [2353] = 2301, - [2354] = 2305, - [2355] = 2323, - [2356] = 2311, - [2357] = 2324, - [2358] = 2338, - [2359] = 2339, - [2360] = 167, - [2361] = 138, - [2362] = 141, - [2363] = 142, - [2364] = 2364, - [2365] = 2365, - [2366] = 2332, - [2367] = 2333, - [2368] = 2322, - [2369] = 2314, - [2370] = 2334, - [2371] = 2371, - [2372] = 2304, + [2346] = 2346, + [2347] = 2347, + [2348] = 2348, + [2349] = 2329, + [2350] = 2350, + [2351] = 2314, + [2352] = 2352, + [2353] = 2305, + [2354] = 2312, + [2355] = 2009, + [2356] = 145, + [2357] = 2008, + [2358] = 2320, + [2359] = 2312, + [2360] = 2360, + [2361] = 2341, + [2362] = 2340, + [2363] = 2363, + [2364] = 2340, + [2365] = 2341, + [2366] = 2006, + [2367] = 2335, + [2368] = 2334, + [2369] = 2329, + [2370] = 2370, + [2371] = 2311, + [2372] = 2329, [2373] = 2373, - [2374] = 2342, - [2375] = 2364, - [2376] = 2335, - [2377] = 2305, - [2378] = 2291, - [2379] = 2379, - [2380] = 2380, - [2381] = 2381, - [2382] = 2341, - [2383] = 2294, - [2384] = 2379, - [2385] = 2319, - [2386] = 2380, - [2387] = 2005, - [2388] = 2325, + [2374] = 2302, + [2375] = 2347, + [2376] = 2363, + [2377] = 2308, + [2378] = 2360, + [2379] = 2309, + [2380] = 2310, + [2381] = 2346, + [2382] = 2327, + [2383] = 2348, + [2384] = 2350, + [2385] = 2296, + [2386] = 2352, + [2387] = 2325, + [2388] = 2323, [2389] = 2389, [2390] = 2390, [2391] = 2391, @@ -6264,9 +6272,9 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2396] = 2396, [2397] = 2397, [2398] = 2398, - [2399] = 2399, + [2399] = 1319, [2400] = 2400, - [2401] = 2401, + [2401] = 2391, [2402] = 2402, [2403] = 2403, [2404] = 2404, @@ -6277,99 +6285,99 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2409] = 2409, [2410] = 2410, [2411] = 2411, - [2412] = 2411, + [2412] = 2412, [2413] = 2413, - [2414] = 2394, + [2414] = 2414, [2415] = 2415, - [2416] = 1272, - [2417] = 1273, - [2418] = 1275, - [2419] = 2413, + [2416] = 2416, + [2417] = 2417, + [2418] = 2418, + [2419] = 2400, [2420] = 2420, - [2421] = 2407, - [2422] = 2405, + [2421] = 2414, + [2422] = 2422, [2423] = 2423, [2424] = 2424, [2425] = 2425, - [2426] = 2425, + [2426] = 2413, [2427] = 2427, - [2428] = 2428, - [2429] = 2429, - [2430] = 2427, - [2431] = 2389, - [2432] = 2404, - [2433] = 2433, - [2434] = 2434, + [2428] = 2394, + [2429] = 1316, + [2430] = 1422, + [2431] = 2413, + [2432] = 2402, + [2433] = 2397, + [2434] = 2402, [2435] = 2435, - [2436] = 2401, - [2437] = 2398, - [2438] = 2438, - [2439] = 2439, + [2436] = 2394, + [2437] = 2437, + [2438] = 2396, + [2439] = 2413, [2440] = 2440, - [2441] = 2425, + [2441] = 2441, [2442] = 2442, - [2443] = 2443, + [2443] = 1318, [2444] = 2444, - [2445] = 2420, + [2445] = 2445, [2446] = 2446, - [2447] = 2390, - [2448] = 1229, - [2449] = 1230, - [2450] = 2402, - [2451] = 2415, - [2452] = 1365, - [2453] = 1366, - [2454] = 1367, - [2455] = 1260, - [2456] = 1261, - [2457] = 2408, - [2458] = 2458, - [2459] = 2399, - [2460] = 2460, + [2447] = 2414, + [2448] = 2396, + [2449] = 2449, + [2450] = 2445, + [2451] = 2407, + [2452] = 2452, + [2453] = 2453, + [2454] = 2454, + [2455] = 2455, + [2456] = 2456, + [2457] = 2457, + [2458] = 2410, + [2459] = 2457, + [2460] = 2406, [2461] = 2461, - [2462] = 2462, - [2463] = 1008, - [2464] = 2464, - [2465] = 2409, - [2466] = 2434, - [2467] = 2467, - [2468] = 2433, + [2462] = 2395, + [2463] = 2405, + [2464] = 2416, + [2465] = 2465, + [2466] = 1346, + [2467] = 2423, + [2468] = 2468, [2469] = 2469, - [2470] = 2470, - [2471] = 2427, + [2470] = 1349, + [2471] = 1093, [2472] = 2472, - [2473] = 2433, - [2474] = 2410, - [2475] = 2407, - [2476] = 2476, - [2477] = 2477, + [2473] = 2417, + [2474] = 1110, + [2475] = 1096, + [2476] = 2424, + [2477] = 2415, [2478] = 2478, - [2479] = 2479, - [2480] = 2424, - [2481] = 2481, - [2482] = 2427, + [2479] = 1008, + [2480] = 2478, + [2481] = 2441, + [2482] = 1421, [2483] = 2483, - [2484] = 2467, - [2485] = 2393, - [2486] = 2486, - [2487] = 2424, - [2488] = 2488, - [2489] = 2415, - [2490] = 2486, - [2491] = 2405, - [2492] = 2397, + [2484] = 2484, + [2485] = 2417, + [2486] = 2418, + [2487] = 2484, + [2488] = 2483, + [2489] = 2405, + [2490] = 2390, + [2491] = 2491, + [2492] = 2492, [2493] = 2493, [2494] = 2494, [2495] = 2495, [2496] = 2496, [2497] = 2497, [2498] = 2498, - [2499] = 2499, + [2499] = 2497, [2500] = 2500, [2501] = 2501, [2502] = 2502, [2503] = 2503, - [2504] = 2495, + [2504] = 2504, [2505] = 2505, [2506] = 2506, [2507] = 2507, @@ -6380,222 +6388,222 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2512] = 2512, [2513] = 2513, [2514] = 2514, - [2515] = 2514, + [2515] = 2515, [2516] = 2516, - [2517] = 2517, + [2517] = 2498, [2518] = 2518, - [2519] = 2518, + [2519] = 2519, [2520] = 2496, - [2521] = 2497, - [2522] = 2498, + [2521] = 2521, + [2522] = 2522, [2523] = 2523, [2524] = 2524, - [2525] = 2525, - [2526] = 2526, - [2527] = 2527, - [2528] = 2528, - [2529] = 2527, + [2525] = 2057, + [2526] = 2046, + [2527] = 2058, + [2528] = 2061, + [2529] = 2529, [2530] = 2530, [2531] = 2531, [2532] = 2532, [2533] = 2533, - [2534] = 2531, - [2535] = 2528, - [2536] = 2536, - [2537] = 2527, + [2534] = 2041, + [2535] = 2040, + [2536] = 2037, + [2537] = 2074, [2538] = 2538, - [2539] = 2503, + [2539] = 2539, [2540] = 2540, [2541] = 2541, [2542] = 2542, - [2543] = 2536, - [2544] = 2542, + [2543] = 2543, + [2544] = 2544, [2545] = 2545, [2546] = 2546, [2547] = 2547, - [2548] = 2548, + [2548] = 2518, [2549] = 2549, - [2550] = 2550, + [2550] = 2519, [2551] = 2551, - [2552] = 139, + [2552] = 2552, [2553] = 2553, - [2554] = 2554, - [2555] = 2554, - [2556] = 2556, - [2557] = 2557, + [2554] = 2510, + [2555] = 2555, + [2556] = 2553, + [2557] = 2540, [2558] = 2558, [2559] = 2559, [2560] = 2560, [2561] = 2561, - [2562] = 2513, + [2562] = 2562, [2563] = 2563, - [2564] = 2564, + [2564] = 139, [2565] = 2565, - [2566] = 2545, - [2567] = 2567, + [2566] = 2566, + [2567] = 2508, [2568] = 2568, - [2569] = 2569, - [2570] = 2523, - [2571] = 2530, - [2572] = 2505, - [2573] = 2547, - [2574] = 2560, - [2575] = 2575, - [2576] = 2506, - [2577] = 2559, - [2578] = 2509, + [2569] = 2563, + [2570] = 2570, + [2571] = 2563, + [2572] = 2497, + [2573] = 2540, + [2574] = 149, + [2575] = 2498, + [2576] = 2496, + [2577] = 2577, + [2578] = 2533, [2579] = 2579, [2580] = 2580, [2581] = 2581, - [2582] = 2567, - [2583] = 2583, - [2584] = 2563, + [2582] = 2582, + [2583] = 2524, + [2584] = 2584, [2585] = 2585, [2586] = 2586, - [2587] = 2587, - [2588] = 2528, - [2589] = 2589, + [2587] = 2514, + [2588] = 2516, + [2589] = 2513, [2590] = 2590, - [2591] = 2591, + [2591] = 2521, [2592] = 2592, - [2593] = 2548, - [2594] = 2495, - [2595] = 2496, - [2596] = 2497, - [2597] = 2498, - [2598] = 2499, - [2599] = 2503, - [2600] = 2505, - [2601] = 2506, - [2602] = 2602, - [2603] = 2509, - [2604] = 2604, - [2605] = 2605, + [2593] = 2581, + [2594] = 2594, + [2595] = 2523, + [2596] = 2506, + [2597] = 2597, + [2598] = 2586, + [2599] = 2529, + [2600] = 2497, + [2601] = 2584, + [2602] = 2498, + [2603] = 2496, + [2604] = 2530, + [2605] = 2504, [2606] = 2606, - [2607] = 2518, - [2608] = 2608, - [2609] = 2583, - [2610] = 2526, - [2611] = 2611, - [2612] = 2547, - [2613] = 2590, - [2614] = 2554, - [2615] = 2567, - [2616] = 2583, - [2617] = 2563, - [2618] = 2585, - [2619] = 2591, - [2620] = 2592, - [2621] = 2548, + [2607] = 2586, + [2608] = 2505, + [2609] = 2581, + [2610] = 2503, + [2611] = 2506, + [2612] = 2512, + [2613] = 2613, + [2614] = 2562, + [2615] = 2507, + [2616] = 2579, + [2617] = 2514, + [2618] = 2516, + [2619] = 2538, + [2620] = 2620, + [2621] = 2621, [2622] = 2622, - [2623] = 2496, - [2624] = 2497, - [2625] = 2499, - [2626] = 2503, - [2627] = 2505, - [2628] = 2518, - [2629] = 2547, - [2630] = 2563, - [2631] = 2585, - [2632] = 2632, - [2633] = 2592, - [2634] = 2496, - [2635] = 2497, - [2636] = 2503, - [2637] = 2505, - [2638] = 2638, - [2639] = 2524, - [2640] = 2500, - [2641] = 2563, - [2642] = 2496, - [2643] = 2503, - [2644] = 2505, - [2645] = 2645, - [2646] = 2538, - [2647] = 2511, - [2648] = 2503, - [2649] = 2505, - [2650] = 2503, - [2651] = 2505, - [2652] = 2503, - [2653] = 2505, - [2654] = 2503, - [2655] = 2505, - [2656] = 2503, - [2657] = 2505, - [2658] = 2503, - [2659] = 2505, - [2660] = 2561, - [2661] = 2661, - [2662] = 2662, - [2663] = 2494, - [2664] = 2664, - [2665] = 2517, - [2666] = 2069, - [2667] = 2551, - [2668] = 2557, - [2669] = 2611, - [2670] = 2054, + [2623] = 2586, + [2624] = 2539, + [2625] = 2546, + [2626] = 2626, + [2627] = 2540, + [2628] = 2521, + [2629] = 2496, + [2630] = 2630, + [2631] = 2501, + [2632] = 2512, + [2633] = 2633, + [2634] = 2634, + [2635] = 2509, + [2636] = 2514, + [2637] = 2558, + [2638] = 2516, + [2639] = 2581, + [2640] = 2640, + [2641] = 2640, + [2642] = 2521, + [2643] = 2634, + [2644] = 2644, + [2645] = 2546, + [2646] = 2516, + [2647] = 2494, + [2648] = 2523, + [2649] = 2649, + [2650] = 2620, + [2651] = 2621, + [2652] = 2529, + [2653] = 2529, + [2654] = 2523, + [2655] = 2530, + [2656] = 2529, + [2657] = 2657, + [2658] = 2530, + [2659] = 2531, + [2660] = 2530, + [2661] = 2538, + [2662] = 2531, + [2663] = 2500, + [2664] = 2518, + [2665] = 2519, + [2666] = 2539, + [2667] = 2667, + [2668] = 2532, + [2669] = 2532, + [2670] = 2553, [2671] = 2671, - [2672] = 2501, - [2673] = 2673, - [2674] = 2525, - [2675] = 2675, - [2676] = 2676, - [2677] = 2677, - [2678] = 2553, - [2679] = 2679, - [2680] = 2680, + [2672] = 2496, + [2673] = 2551, + [2674] = 2529, + [2675] = 2559, + [2676] = 2584, + [2677] = 2538, + [2678] = 2539, + [2679] = 2667, + [2680] = 2613, [2681] = 2681, - [2682] = 2035, - [2683] = 2540, - [2684] = 2567, - [2685] = 2541, - [2686] = 2645, - [2687] = 2583, - [2688] = 2563, - [2689] = 2568, - [2690] = 2585, - [2691] = 2691, - [2692] = 143, - [2693] = 2512, - [2694] = 2673, - [2695] = 2676, - [2696] = 2036, - [2697] = 2585, - [2698] = 2698, - [2699] = 2586, - [2700] = 2602, - [2701] = 2608, + [2682] = 2511, + [2683] = 2683, + [2684] = 2681, + [2685] = 2685, + [2686] = 2686, + [2687] = 2538, + [2688] = 2683, + [2689] = 2689, + [2690] = 2538, + [2691] = 2549, + [2692] = 2539, + [2693] = 2539, + [2694] = 2541, + [2695] = 2581, + [2696] = 2538, + [2697] = 2541, + [2698] = 2539, + [2699] = 2699, + [2700] = 2538, + [2701] = 2546, [2702] = 2702, - [2703] = 2586, - [2704] = 2638, - [2705] = 2526, - [2706] = 2702, - [2707] = 2494, - [2708] = 2494, - [2709] = 2611, - [2710] = 2590, - [2711] = 2711, - [2712] = 2591, - [2713] = 2494, - [2714] = 2611, - [2715] = 2591, - [2716] = 2041, - [2717] = 2592, - [2718] = 2043, - [2719] = 2558, - [2720] = 2677, - [2721] = 2675, - [2722] = 2548, - [2723] = 2046, - [2724] = 2556, - [2725] = 2502, - [2726] = 2048, - [2727] = 2592, - [2728] = 2728, - [2729] = 2728, - [2730] = 2495, + [2703] = 2539, + [2704] = 2538, + [2705] = 2584, + [2706] = 2544, + [2707] = 2539, + [2708] = 2545, + [2709] = 2545, + [2710] = 2630, + [2711] = 2622, + [2712] = 2538, + [2713] = 2539, + [2714] = 2538, + [2715] = 2715, + [2716] = 2715, + [2717] = 2542, + [2718] = 2539, + [2719] = 2538, + [2720] = 2720, + [2721] = 2721, + [2722] = 2539, + [2723] = 2723, + [2724] = 2586, + [2725] = 2580, + [2726] = 2686, + [2727] = 2495, + [2728] = 2720, + [2729] = 2729, + [2730] = 2699, [2731] = 2731, [2732] = 2732, [2733] = 2733, @@ -6605,9 +6613,9 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2737] = 2737, [2738] = 2738, [2739] = 2739, - [2740] = 2740, - [2741] = 2741, - [2742] = 2742, + [2740] = 2737, + [2741] = 2736, + [2742] = 2733, [2743] = 2743, [2744] = 2744, [2745] = 2745, @@ -6619,19 +6627,19 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2751] = 2751, [2752] = 2752, [2753] = 2753, - [2754] = 2754, + [2754] = 2752, [2755] = 2755, - [2756] = 2102, + [2756] = 2756, [2757] = 2757, - [2758] = 2758, + [2758] = 2734, [2759] = 2759, [2760] = 2760, - [2761] = 2103, + [2761] = 2761, [2762] = 2762, - [2763] = 2763, + [2763] = 2756, [2764] = 2764, [2765] = 2765, - [2766] = 2085, + [2766] = 2766, [2767] = 2767, [2768] = 2768, [2769] = 2769, @@ -6642,33 +6650,33 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2774] = 2774, [2775] = 2775, [2776] = 2776, - [2777] = 2774, + [2777] = 2777, [2778] = 2778, - [2779] = 2779, - [2780] = 2734, - [2781] = 2735, + [2779] = 2743, + [2780] = 2778, + [2781] = 2781, [2782] = 2782, [2783] = 2783, - [2784] = 2753, - [2785] = 2096, - [2786] = 2773, + [2784] = 2783, + [2785] = 2785, + [2786] = 2786, [2787] = 2787, [2788] = 2788, [2789] = 2789, [2790] = 2790, [2791] = 2791, - [2792] = 2792, + [2792] = 2746, [2793] = 2793, - [2794] = 2104, - [2795] = 2742, + [2794] = 2794, + [2795] = 2795, [2796] = 2796, - [2797] = 2107, - [2798] = 2751, + [2797] = 2797, + [2798] = 2755, [2799] = 2799, - [2800] = 2125, + [2800] = 2800, [2801] = 2801, - [2802] = 2094, - [2803] = 2121, + [2802] = 2802, + [2803] = 2803, [2804] = 2804, [2805] = 2805, [2806] = 2806, @@ -6676,233 +6684,233 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2808] = 2808, [2809] = 2809, [2810] = 2810, - [2811] = 2767, + [2811] = 2811, [2812] = 2812, [2813] = 2813, - [2814] = 2791, - [2815] = 2747, + [2814] = 2814, + [2815] = 2815, [2816] = 2816, [2817] = 2817, [2818] = 2818, [2819] = 2819, [2820] = 2820, [2821] = 2821, - [2822] = 2809, + [2822] = 2822, [2823] = 2823, - [2824] = 2757, + [2824] = 2824, [2825] = 2825, [2826] = 2826, [2827] = 2827, - [2828] = 2828, + [2828] = 2810, [2829] = 2829, [2830] = 2830, [2831] = 2831, - [2832] = 2832, - [2833] = 2833, + [2832] = 2770, + [2833] = 2773, [2834] = 2834, [2835] = 2835, - [2836] = 2753, + [2836] = 2775, [2837] = 2837, - [2838] = 2838, + [2838] = 2752, [2839] = 2839, [2840] = 2840, - [2841] = 380, + [2841] = 2841, [2842] = 2842, - [2843] = 2843, - [2844] = 2844, - [2845] = 2126, - [2846] = 2817, + [2843] = 2812, + [2844] = 2731, + [2845] = 2744, + [2846] = 2846, [2847] = 2847, - [2848] = 2848, + [2848] = 2812, [2849] = 2849, - [2850] = 2757, - [2851] = 2770, - [2852] = 2852, - [2853] = 2805, - [2854] = 2806, - [2855] = 2828, + [2850] = 2850, + [2851] = 2851, + [2852] = 2739, + [2853] = 2853, + [2854] = 2854, + [2855] = 2855, [2856] = 2856, - [2857] = 2839, + [2857] = 2735, [2858] = 2858, [2859] = 2859, - [2860] = 2860, - [2861] = 156, - [2862] = 2793, - [2863] = 2863, - [2864] = 2752, + [2860] = 2812, + [2861] = 2861, + [2862] = 2862, + [2863] = 2732, + [2864] = 2864, [2865] = 2865, - [2866] = 2764, - [2867] = 2755, + [2866] = 2866, + [2867] = 2867, [2868] = 2868, - [2869] = 2869, + [2869] = 2731, [2870] = 2870, - [2871] = 2077, - [2872] = 2809, + [2871] = 2871, + [2872] = 2872, [2873] = 2873, [2874] = 2874, - [2875] = 2826, - [2876] = 2876, - [2877] = 2079, - [2878] = 2122, - [2879] = 2812, + [2875] = 2782, + [2876] = 2762, + [2877] = 2745, + [2878] = 2878, + [2879] = 2879, [2880] = 2880, - [2881] = 2753, - [2882] = 2098, - [2883] = 2812, - [2884] = 2771, - [2885] = 2783, + [2881] = 2881, + [2882] = 2882, + [2883] = 2883, + [2884] = 2884, + [2885] = 2885, [2886] = 2886, [2887] = 2887, [2888] = 2888, [2889] = 2889, - [2890] = 2869, - [2891] = 2873, - [2892] = 2876, - [2893] = 2893, - [2894] = 2106, - [2895] = 2091, - [2896] = 2896, - [2897] = 2115, - [2898] = 2849, - [2899] = 2088, - [2900] = 2900, - [2901] = 2901, - [2902] = 2808, - [2903] = 2741, - [2904] = 2835, - [2905] = 2732, + [2890] = 2890, + [2891] = 2891, + [2892] = 2892, + [2893] = 2892, + [2894] = 2891, + [2895] = 2895, + [2896] = 2889, + [2897] = 2897, + [2898] = 2890, + [2899] = 2795, + [2900] = 2888, + [2901] = 2884, + [2902] = 2887, + [2903] = 2903, + [2904] = 2880, + [2905] = 2905, [2906] = 2906, - [2907] = 2772, - [2908] = 2908, + [2907] = 2868, + [2908] = 2866, [2909] = 2909, [2910] = 2910, - [2911] = 2733, - [2912] = 2093, - [2913] = 2913, + [2911] = 2911, + [2912] = 2880, + [2913] = 2883, [2914] = 2914, - [2915] = 2915, - [2916] = 2901, - [2917] = 2917, - [2918] = 2736, - [2919] = 2919, - [2920] = 2920, - [2921] = 2825, - [2922] = 2922, - [2923] = 2097, - [2924] = 2924, - [2925] = 2737, - [2926] = 2112, - [2927] = 2927, + [2915] = 2884, + [2916] = 2825, + [2917] = 2823, + [2918] = 2822, + [2919] = 2786, + [2920] = 2888, + [2921] = 2819, + [2922] = 373, + [2923] = 2887, + [2924] = 2788, + [2925] = 2925, + [2926] = 2809, + [2927] = 2793, [2928] = 2928, - [2929] = 2929, - [2930] = 2930, + [2929] = 2804, + [2930] = 2796, [2931] = 2931, [2932] = 2932, [2933] = 2933, - [2934] = 2739, - [2935] = 2834, - [2936] = 2821, - [2937] = 2738, - [2938] = 2938, - [2939] = 2939, - [2940] = 2940, - [2941] = 2941, - [2942] = 2942, - [2943] = 2943, - [2944] = 2790, - [2945] = 2945, - [2946] = 2742, - [2947] = 2758, - [2948] = 2948, - [2949] = 2101, - [2950] = 2859, - [2951] = 2747, - [2952] = 2909, - [2953] = 2078, - [2954] = 2954, - [2955] = 2955, - [2956] = 2808, - [2957] = 2957, - [2958] = 2083, - [2959] = 2778, - [2960] = 2788, - [2961] = 2817, - [2962] = 2084, - [2963] = 2832, - [2964] = 2092, - [2965] = 2965, - [2966] = 2966, - [2967] = 2886, - [2968] = 2757, - [2969] = 2910, - [2970] = 2908, - [2971] = 2080, - [2972] = 2757, - [2973] = 2095, - [2974] = 2099, - [2975] = 2975, - [2976] = 2833, - [2977] = 2977, - [2978] = 2081, + [2934] = 2934, + [2935] = 2793, + [2936] = 2774, + [2937] = 2788, + [2938] = 151, + [2939] = 2079, + [2940] = 2080, + [2941] = 2083, + [2942] = 2084, + [2943] = 2802, + [2944] = 2759, + [2945] = 2807, + [2946] = 2946, + [2947] = 2753, + [2948] = 2752, + [2949] = 2085, + [2950] = 2086, + [2951] = 2756, + [2952] = 2087, + [2953] = 2953, + [2954] = 2089, + [2955] = 2099, + [2956] = 2738, + [2957] = 2867, + [2958] = 2092, + [2959] = 2093, + [2960] = 2960, + [2961] = 2094, + [2962] = 2095, + [2963] = 2096, + [2964] = 2097, + [2965] = 2859, + [2966] = 2745, + [2967] = 2967, + [2968] = 2098, + [2969] = 2100, + [2970] = 2101, + [2971] = 2971, + [2972] = 2102, + [2973] = 2110, + [2974] = 2762, + [2975] = 2855, + [2976] = 2111, + [2977] = 2790, + [2978] = 2978, [2979] = 2979, - [2980] = 2980, - [2981] = 2751, - [2982] = 2745, - [2983] = 2127, - [2984] = 2805, + [2980] = 2794, + [2981] = 2797, + [2982] = 2906, + [2983] = 2983, + [2984] = 2984, [2985] = 2985, - [2986] = 2829, - [2987] = 2987, + [2986] = 2803, + [2987] = 2806, [2988] = 2988, - [2989] = 2810, - [2990] = 2082, - [2991] = 2806, - [2992] = 2914, - [2993] = 2943, - [2994] = 2917, - [2995] = 2076, - [2996] = 2996, - [2997] = 2734, - [2998] = 2086, - [2999] = 2743, + [2989] = 2112, + [2990] = 2990, + [2991] = 2813, + [2992] = 2992, + [2993] = 2113, + [2994] = 2830, + [2995] = 2114, + [2996] = 2816, + [2997] = 2850, + [2998] = 2946, + [2999] = 2818, [3000] = 3000, - [3001] = 3001, - [3002] = 2933, - [3003] = 2787, - [3004] = 2830, - [3005] = 2744, - [3006] = 3006, - [3007] = 2818, - [3008] = 3006, - [3009] = 2813, - [3010] = 2980, - [3011] = 2775, - [3012] = 2762, - [3013] = 2942, - [3014] = 3014, - [3015] = 2789, - [3016] = 3016, - [3017] = 2792, - [3018] = 2932, - [3019] = 2979, - [3020] = 3020, - [3021] = 2865, - [3022] = 2870, - [3023] = 2838, - [3024] = 2840, + [3001] = 2109, + [3002] = 2820, + [3003] = 2119, + [3004] = 2122, + [3005] = 2076, + [3006] = 2118, + [3007] = 2812, + [3008] = 2127, + [3009] = 2847, + [3010] = 2117, + [3011] = 2077, + [3012] = 2839, + [3013] = 2858, + [3014] = 2861, + [3015] = 2837, + [3016] = 2871, + [3017] = 2873, + [3018] = 2126, + [3019] = 2879, + [3020] = 2881, + [3021] = 2834, + [3022] = 2897, + [3023] = 2914, + [3024] = 2925, [3025] = 3025, - [3026] = 3026, - [3027] = 3027, - [3028] = 2782, - [3029] = 3025, - [3030] = 2856, - [3031] = 2801, - [3032] = 2110, + [3026] = 2125, + [3027] = 2120, + [3028] = 2824, + [3029] = 3029, + [3030] = 2776, + [3031] = 2800, + [3032] = 2862, [3033] = 3033, [3034] = 3034, - [3035] = 3035, + [3035] = 1397, [3036] = 3036, - [3037] = 3037, + [3037] = 3033, [3038] = 3038, [3039] = 3039, [3040] = 3040, @@ -6910,275 +6918,275 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3042] = 3042, [3043] = 3043, [3044] = 3044, - [3045] = 3034, - [3046] = 3046, - [3047] = 3047, - [3048] = 1210, + [3045] = 3045, + [3046] = 1398, + [3047] = 1433, + [3048] = 3048, [3049] = 3049, - [3050] = 3037, - [3051] = 3051, - [3052] = 3044, - [3053] = 3053, + [3050] = 3050, + [3051] = 3049, + [3052] = 3052, + [3053] = 3050, [3054] = 3054, [3055] = 3055, - [3056] = 3056, - [3057] = 3057, - [3058] = 3058, - [3059] = 1212, + [3056] = 3052, + [3057] = 3038, + [3058] = 1190, + [3059] = 3059, [3060] = 3060, - [3061] = 1213, - [3062] = 3062, + [3061] = 3061, + [3062] = 3049, [3063] = 3063, - [3064] = 3064, + [3064] = 3059, [3065] = 3065, - [3066] = 3040, + [3066] = 3066, [3067] = 3067, [3068] = 3068, - [3069] = 1228, + [3069] = 3069, [3070] = 3070, - [3071] = 3071, - [3072] = 3067, + [3071] = 3052, + [3072] = 3072, [3073] = 3073, [3074] = 3074, [3075] = 3075, [3076] = 3076, - [3077] = 3077, + [3077] = 3074, [3078] = 3078, - [3079] = 3042, - [3080] = 3080, + [3079] = 3039, + [3080] = 3063, [3081] = 3081, [3082] = 3082, [3083] = 3083, - [3084] = 3084, - [3085] = 3081, - [3086] = 3051, - [3087] = 3087, + [3084] = 3034, + [3085] = 3085, + [3086] = 3086, + [3087] = 3050, [3088] = 3088, [3089] = 3089, - [3090] = 3046, - [3091] = 3091, - [3092] = 3042, - [3093] = 3093, - [3094] = 3044, + [3090] = 3090, + [3091] = 3042, + [3092] = 3092, + [3093] = 3038, + [3094] = 3094, [3095] = 3095, - [3096] = 3040, + [3096] = 3096, [3097] = 3097, - [3098] = 3044, - [3099] = 3099, + [3098] = 3098, + [3099] = 3052, [3100] = 3100, - [3101] = 3071, - [3102] = 3051, + [3101] = 3101, + [3102] = 3102, [3103] = 3103, - [3104] = 3091, - [3105] = 3057, - [3106] = 3093, + [3104] = 3104, + [3105] = 3049, + [3106] = 3106, [3107] = 3107, [3108] = 3108, - [3109] = 3063, - [3110] = 3040, - [3111] = 3067, - [3112] = 3068, + [3109] = 3109, + [3110] = 3110, + [3111] = 3111, + [3112] = 3112, [3113] = 3113, [3114] = 3114, - [3115] = 3115, + [3115] = 3100, [3116] = 3116, [3117] = 3117, [3118] = 3118, [3119] = 3119, [3120] = 3120, - [3121] = 3121, - [3122] = 3044, + [3121] = 3033, + [3122] = 3069, [3123] = 3123, - [3124] = 3037, - [3125] = 3051, - [3126] = 3040, - [3127] = 3057, - [3128] = 3128, + [3124] = 3070, + [3125] = 1280, + [3126] = 3126, + [3127] = 3127, + [3128] = 3068, [3129] = 3129, - [3130] = 3040, + [3130] = 3130, [3131] = 3131, - [3132] = 3067, - [3133] = 3068, - [3134] = 3051, - [3135] = 3039, - [3136] = 3060, - [3137] = 3097, + [3132] = 3083, + [3133] = 3133, + [3134] = 3129, + [3135] = 3072, + [3136] = 3100, + [3137] = 3137, [3138] = 3138, - [3139] = 3118, + [3139] = 3066, [3140] = 3140, - [3141] = 3141, - [3142] = 3051, - [3143] = 3033, - [3144] = 3115, - [3145] = 3040, - [3146] = 3067, - [3147] = 3068, - [3148] = 3148, - [3149] = 3054, - [3150] = 3047, + [3141] = 3076, + [3142] = 3067, + [3143] = 3143, + [3144] = 3144, + [3145] = 3145, + [3146] = 3130, + [3147] = 3147, + [3148] = 3069, + [3149] = 3075, + [3150] = 3150, [3151] = 3151, [3152] = 3152, - [3153] = 3153, + [3153] = 3123, [3154] = 3154, [3155] = 3155, - [3156] = 3156, - [3157] = 3051, - [3158] = 3040, - [3159] = 3159, - [3160] = 3067, - [3161] = 3068, - [3162] = 3162, + [3156] = 3070, + [3157] = 3059, + [3158] = 3068, + [3159] = 3154, + [3160] = 3160, + [3161] = 3050, + [3162] = 3072, [3163] = 3163, - [3164] = 3051, - [3165] = 3040, - [3166] = 1292, - [3167] = 3067, - [3168] = 3068, - [3169] = 3169, - [3170] = 3051, - [3171] = 3057, - [3172] = 3067, - [3173] = 3068, - [3174] = 3068, - [3175] = 3051, - [3176] = 3077, - [3177] = 3067, - [3178] = 3068, - [3179] = 2823, - [3180] = 3051, - [3181] = 2887, - [3182] = 3067, - [3183] = 3068, - [3184] = 3184, - [3185] = 3077, - [3186] = 3067, - [3187] = 3068, - [3188] = 3188, - [3189] = 3189, - [3190] = 3119, - [3191] = 3062, - [3192] = 3053, - [3193] = 3057, - [3194] = 3194, - [3195] = 3195, - [3196] = 3196, - [3197] = 3197, - [3198] = 3113, - [3199] = 3199, - [3200] = 3033, - [3201] = 3201, - [3202] = 3153, - [3203] = 3203, - [3204] = 3062, - [3205] = 3063, - [3206] = 3064, - [3207] = 3054, - [3208] = 3208, - [3209] = 3107, - [3210] = 3116, - [3211] = 3056, - [3212] = 3212, - [3213] = 3152, - [3214] = 3163, + [3164] = 3164, + [3165] = 3147, + [3166] = 3052, + [3167] = 3167, + [3168] = 3076, + [3169] = 3048, + [3170] = 3059, + [3171] = 3171, + [3172] = 3172, + [3173] = 3088, + [3174] = 3104, + [3175] = 3172, + [3176] = 2840, + [3177] = 3177, + [3178] = 3070, + [3179] = 2831, + [3180] = 3092, + [3181] = 3090, + [3182] = 3182, + [3183] = 3152, + [3184] = 3088, + [3185] = 3078, + [3186] = 3073, + [3187] = 3151, + [3188] = 3095, + [3189] = 3144, + [3190] = 3052, + [3191] = 3044, + [3192] = 3101, + [3193] = 3103, + [3194] = 3054, + [3195] = 3055, + [3196] = 3140, + [3197] = 3088, + [3198] = 3089, + [3199] = 3094, + [3200] = 3200, + [3201] = 3036, + [3202] = 3040, + [3203] = 3041, + [3204] = 3204, + [3205] = 3205, + [3206] = 3206, + [3207] = 3095, + [3208] = 3094, + [3209] = 3209, + [3210] = 3210, + [3211] = 3043, + [3212] = 3096, + [3213] = 3085, + [3214] = 3214, [3215] = 3215, - [3216] = 3100, - [3217] = 3217, - [3218] = 3117, - [3219] = 3099, - [3220] = 3220, - [3221] = 3221, - [3222] = 3074, - [3223] = 3141, - [3224] = 3224, - [3225] = 3162, - [3226] = 3169, - [3227] = 3227, - [3228] = 3228, - [3229] = 3159, - [3230] = 3035, - [3231] = 3231, - [3232] = 3232, - [3233] = 3233, - [3234] = 3038, - [3235] = 3063, - [3236] = 3064, - [3237] = 3228, - [3238] = 3238, - [3239] = 3040, - [3240] = 3070, - [3241] = 3224, + [3216] = 3059, + [3217] = 3095, + [3218] = 3096, + [3219] = 3100, + [3220] = 3215, + [3221] = 3205, + [3222] = 3206, + [3223] = 3070, + [3224] = 3210, + [3225] = 3088, + [3226] = 3086, + [3227] = 3214, + [3228] = 3052, + [3229] = 3052, + [3230] = 3230, + [3231] = 3101, + [3232] = 3103, + [3233] = 3101, + [3234] = 3052, + [3235] = 3081, + [3236] = 3114, + [3237] = 3237, + [3238] = 3103, + [3239] = 3129, + [3240] = 3045, + [3241] = 3101, [3242] = 3242, [3243] = 3243, [3244] = 3244, - [3245] = 3242, - [3246] = 3246, - [3247] = 3067, - [3248] = 3151, - [3249] = 3068, - [3250] = 3250, - [3251] = 3231, - [3252] = 3252, - [3253] = 3083, - [3254] = 3033, - [3255] = 3129, - [3256] = 3256, - [3257] = 3123, - [3258] = 3070, - [3259] = 3071, - [3260] = 3082, - [3261] = 3039, - [3262] = 3113, - [3263] = 3131, - [3264] = 3153, + [3245] = 3245, + [3246] = 3138, + [3247] = 3103, + [3248] = 3126, + [3249] = 3249, + [3250] = 3070, + [3251] = 3251, + [3252] = 3112, + [3253] = 3052, + [3254] = 3111, + [3255] = 3101, + [3256] = 3103, + [3257] = 3061, + [3258] = 3112, + [3259] = 3126, + [3260] = 3260, + [3261] = 3061, + [3262] = 3060, + [3263] = 3263, + [3264] = 3120, [3265] = 3265, - [3266] = 3056, - [3267] = 3267, + [3266] = 3131, + [3267] = 3265, [3268] = 3268, - [3269] = 3154, - [3270] = 3040, - [3271] = 3221, - [3272] = 3212, - [3273] = 3113, - [3274] = 3080, - [3275] = 3087, - [3276] = 3220, - [3277] = 3277, - [3278] = 3113, - [3279] = 3243, - [3280] = 3121, - [3281] = 3199, - [3282] = 3215, - [3283] = 3267, - [3284] = 3244, - [3285] = 3238, - [3286] = 3233, - [3287] = 3227, - [3288] = 3155, - [3289] = 3040, - [3290] = 3128, - [3291] = 3036, - [3292] = 3095, - [3293] = 3208, - [3294] = 3043, - [3295] = 3295, - [3296] = 3188, - [3297] = 3297, - [3298] = 3121, - [3299] = 3267, - [3300] = 3188, - [3301] = 3267, - [3302] = 3188, - [3303] = 3081, - [3304] = 3058, - [3305] = 3114, - [3306] = 3297, - [3307] = 3307, - [3308] = 3246, - [3309] = 3103, - [3310] = 3082, - [3311] = 3051, + [3269] = 3130, + [3270] = 3270, + [3271] = 3070, + [3272] = 3272, + [3273] = 3052, + [3274] = 3204, + [3275] = 3101, + [3276] = 3103, + [3277] = 3072, + [3278] = 3278, + [3279] = 3209, + [3280] = 3245, + [3281] = 3119, + [3282] = 3070, + [3283] = 3052, + [3284] = 3127, + [3285] = 3101, + [3286] = 3103, + [3287] = 3270, + [3288] = 3070, + [3289] = 3100, + [3290] = 3101, + [3291] = 3103, + [3292] = 3111, + [3293] = 3070, + [3294] = 3101, + [3295] = 3103, + [3296] = 3070, + [3297] = 3110, + [3298] = 3101, + [3299] = 3103, + [3300] = 3065, + [3301] = 3070, + [3302] = 3101, + [3303] = 3103, + [3304] = 3304, + [3305] = 3305, + [3306] = 3263, + [3307] = 3120, + [3308] = 3163, + [3309] = 3278, + [3310] = 3304, + [3311] = 3305, [3312] = 3312, - [3313] = 162, + [3313] = 3313, [3314] = 3314, [3315] = 3315, [3316] = 3316, @@ -7189,32 +7197,32 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3321] = 3321, [3322] = 3322, [3323] = 3323, - [3324] = 3324, - [3325] = 164, - [3326] = 3321, - [3327] = 3320, + [3324] = 160, + [3325] = 3325, + [3326] = 3326, + [3327] = 3327, [3328] = 3328, [3329] = 3329, [3330] = 3330, [3331] = 3331, - [3332] = 3332, + [3332] = 3319, [3333] = 3333, [3334] = 3334, [3335] = 3335, [3336] = 3336, [3337] = 3337, - [3338] = 3338, + [3338] = 3326, [3339] = 3339, [3340] = 3340, [3341] = 3341, - [3342] = 3314, + [3342] = 3342, [3343] = 3343, [3344] = 3344, [3345] = 3345, [3346] = 3346, [3347] = 3347, - [3348] = 3328, - [3349] = 3349, + [3348] = 3320, + [3349] = 3346, [3350] = 3350, [3351] = 3351, [3352] = 3352, @@ -7229,17 +7237,17 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3361] = 3361, [3362] = 3362, [3363] = 3363, - [3364] = 3363, - [3365] = 3362, + [3364] = 3364, + [3365] = 3365, [3366] = 3366, - [3367] = 3367, + [3367] = 3365, [3368] = 3368, - [3369] = 3369, - [3370] = 3330, - [3371] = 3371, - [3372] = 3372, + [3369] = 3365, + [3370] = 3370, + [3371] = 3362, + [3372] = 3334, [3373] = 3373, - [3374] = 3350, + [3374] = 3345, [3375] = 3375, [3376] = 3376, [3377] = 3377, @@ -7247,237 +7255,237 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3379] = 3379, [3380] = 3380, [3381] = 3381, - [3382] = 3382, - [3383] = 3383, - [3384] = 3384, - [3385] = 3369, + [3382] = 3330, + [3383] = 3376, + [3384] = 3346, + [3385] = 3385, [3386] = 3386, - [3387] = 3354, + [3387] = 3387, [3388] = 3388, [3389] = 3389, - [3390] = 3390, - [3391] = 3391, - [3392] = 3321, - [3393] = 3393, + [3390] = 3385, + [3391] = 3381, + [3392] = 3366, + [3393] = 3388, [3394] = 3394, - [3395] = 3395, + [3395] = 3329, [3396] = 3396, - [3397] = 3361, + [3397] = 3397, [3398] = 3398, [3399] = 3399, [3400] = 3400, - [3401] = 3336, + [3401] = 3401, [3402] = 3402, [3403] = 3403, - [3404] = 3329, - [3405] = 3363, - [3406] = 3339, + [3404] = 3404, + [3405] = 3389, + [3406] = 3406, [3407] = 3407, - [3408] = 3336, + [3408] = 3377, [3409] = 3409, - [3410] = 3410, - [3411] = 3321, - [3412] = 3412, + [3410] = 3356, + [3411] = 3411, + [3412] = 3355, [3413] = 3413, - [3414] = 3414, - [3415] = 3415, - [3416] = 3334, + [3414] = 3354, + [3415] = 3353, + [3416] = 3337, [3417] = 3417, - [3418] = 3418, - [3419] = 3419, - [3420] = 3420, - [3421] = 3343, + [3418] = 3401, + [3419] = 3413, + [3420] = 3340, + [3421] = 3421, [3422] = 3422, [3423] = 3423, - [3424] = 3394, - [3425] = 3425, - [3426] = 3358, - [3427] = 3338, - [3428] = 3428, - [3429] = 3380, - [3430] = 3340, - [3431] = 3431, - [3432] = 3414, + [3424] = 3424, + [3425] = 3352, + [3426] = 3426, + [3427] = 3427, + [3428] = 3359, + [3429] = 3346, + [3430] = 3430, + [3431] = 3394, + [3432] = 3351, [3433] = 3433, - [3434] = 3434, + [3434] = 3422, [3435] = 3435, [3436] = 3436, - [3437] = 3437, - [3438] = 3372, + [3437] = 3350, + [3438] = 3360, [3439] = 3439, - [3440] = 3312, + [3440] = 3440, [3441] = 3441, - [3442] = 3361, - [3443] = 3433, - [3444] = 3395, - [3445] = 3355, - [3446] = 3446, - [3447] = 3379, - [3448] = 3351, - [3449] = 3420, - [3450] = 3398, - [3451] = 3380, - [3452] = 3452, + [3442] = 3442, + [3443] = 3377, + [3444] = 3444, + [3445] = 3445, + [3446] = 3402, + [3447] = 3439, + [3448] = 3322, + [3449] = 3449, + [3450] = 3450, + [3451] = 3451, + [3452] = 3373, [3453] = 3453, - [3454] = 3312, - [3455] = 3322, + [3454] = 3401, + [3455] = 3361, [3456] = 3456, [3457] = 3457, - [3458] = 3458, - [3459] = 3349, - [3460] = 3436, - [3461] = 3376, - [3462] = 3382, - [3463] = 3463, - [3464] = 3322, - [3465] = 3324, - [3466] = 3466, - [3467] = 3357, - [3468] = 3321, - [3469] = 3332, - [3470] = 3360, - [3471] = 3471, - [3472] = 3472, - [3473] = 3338, - [3474] = 3474, - [3475] = 3340, - [3476] = 3393, - [3477] = 3363, - [3478] = 3350, - [3479] = 3441, - [3480] = 3480, - [3481] = 3312, - [3482] = 3482, - [3483] = 3369, - [3484] = 3330, - [3485] = 3485, - [3486] = 3372, + [3458] = 3363, + [3459] = 3459, + [3460] = 3451, + [3461] = 3341, + [3462] = 3406, + [3463] = 3444, + [3464] = 3464, + [3465] = 3465, + [3466] = 3401, + [3467] = 3321, + [3468] = 3339, + [3469] = 3469, + [3470] = 3470, + [3471] = 3323, + [3472] = 3312, + [3473] = 3378, + [3474] = 3439, + [3475] = 3413, + [3476] = 3333, + [3477] = 3380, + [3478] = 3375, + [3479] = 3377, + [3480] = 3339, + [3481] = 3386, + [3482] = 3341, + [3483] = 3368, + [3484] = 3333, + [3485] = 3351, + [3486] = 3325, [3487] = 3487, - [3488] = 3463, - [3489] = 3489, - [3490] = 3490, - [3491] = 3377, - [3492] = 3492, - [3493] = 3360, - [3494] = 3376, - [3495] = 3324, - [3496] = 3379, + [3488] = 3365, + [3489] = 3378, + [3490] = 3362, + [3491] = 3334, + [3492] = 3321, + [3493] = 3345, + [3494] = 3494, + [3495] = 3402, + [3496] = 3342, [3497] = 3497, - [3498] = 3324, - [3499] = 3371, - [3500] = 3413, - [3501] = 3332, - [3502] = 3502, - [3503] = 3466, - [3504] = 3340, - [3505] = 3359, - [3506] = 3471, - [3507] = 3369, - [3508] = 3372, - [3509] = 3390, - [3510] = 3510, - [3511] = 3368, - [3512] = 3512, - [3513] = 3376, - [3514] = 3332, - [3515] = 3515, - [3516] = 3340, - [3517] = 3425, - [3518] = 3372, - [3519] = 3376, - [3520] = 3332, - [3521] = 3340, - [3522] = 3372, - [3523] = 3332, - [3524] = 3340, - [3525] = 3372, - [3526] = 3332, - [3527] = 3332, - [3528] = 3332, - [3529] = 3332, - [3530] = 3332, - [3531] = 3453, - [3532] = 3532, - [3533] = 3368, - [3534] = 3360, - [3535] = 3535, - [3536] = 3431, - [3537] = 3315, - [3538] = 3457, - [3539] = 3510, - [3540] = 3540, + [3498] = 3449, + [3499] = 3469, + [3500] = 3500, + [3501] = 3501, + [3502] = 3321, + [3503] = 3503, + [3504] = 3504, + [3505] = 3386, + [3506] = 3312, + [3507] = 3397, + [3508] = 3508, + [3509] = 3333, + [3510] = 3335, + [3511] = 3377, + [3512] = 3341, + [3513] = 3346, + [3514] = 3514, + [3515] = 3362, + [3516] = 3345, + [3517] = 3327, + [3518] = 3518, + [3519] = 3519, + [3520] = 164, + [3521] = 3321, + [3522] = 3333, + [3523] = 3376, + [3524] = 3341, + [3525] = 3525, + [3526] = 3345, + [3527] = 3321, + [3528] = 3333, + [3529] = 3341, + [3530] = 3345, + [3531] = 3333, + [3532] = 3341, + [3533] = 3345, + [3534] = 3333, + [3535] = 3333, + [3536] = 3333, + [3537] = 3333, + [3538] = 3333, + [3539] = 3328, + [3540] = 3404, [3541] = 3541, - [3542] = 3381, - [3543] = 3417, - [3544] = 3535, - [3545] = 3412, - [3546] = 3358, - [3547] = 3352, + [3542] = 3542, + [3543] = 3543, + [3544] = 3504, + [3545] = 3545, + [3546] = 3459, + [3547] = 3457, [3548] = 3456, - [3549] = 3353, - [3550] = 3380, - [3551] = 3436, + [3549] = 3403, + [3550] = 3550, + [3551] = 3551, [3552] = 3552, - [3553] = 3380, - [3554] = 3540, + [3553] = 3440, + [3554] = 3554, [3555] = 3555, - [3556] = 3383, - [3557] = 3389, - [3558] = 3316, - [3559] = 3331, - [3560] = 3560, - [3561] = 3380, - [3562] = 3562, - [3563] = 3541, - [3564] = 3453, - [3565] = 3435, - [3566] = 3566, - [3567] = 3384, - [3568] = 3358, - [3569] = 3317, - [3570] = 3373, - [3571] = 3388, - [3572] = 3472, - [3573] = 3422, - [3574] = 3574, - [3575] = 3492, - [3576] = 3375, - [3577] = 3577, - [3578] = 3378, - [3579] = 3535, - [3580] = 3431, - [3581] = 3457, - [3582] = 3510, - [3583] = 3437, - [3584] = 3391, - [3585] = 3535, - [3586] = 3510, - [3587] = 3587, - [3588] = 3577, - [3589] = 3510, - [3590] = 3510, - [3591] = 3510, - [3592] = 3555, - [3593] = 3452, - [3594] = 3594, + [3556] = 3543, + [3557] = 3552, + [3558] = 3373, + [3559] = 3559, + [3560] = 3423, + [3561] = 3561, + [3562] = 3312, + [3563] = 3465, + [3564] = 3564, + [3565] = 3565, + [3566] = 3323, + [3567] = 3379, + [3568] = 3426, + [3569] = 3433, + [3570] = 3398, + [3571] = 3571, + [3572] = 3444, + [3573] = 3494, + [3574] = 3400, + [3575] = 3364, + [3576] = 3576, + [3577] = 3439, + [3578] = 3501, + [3579] = 3313, + [3580] = 3541, + [3581] = 3581, + [3582] = 3377, + [3583] = 3424, + [3584] = 3584, + [3585] = 3336, + [3586] = 3430, + [3587] = 3543, + [3588] = 3504, + [3589] = 3459, + [3590] = 3457, + [3591] = 3402, + [3592] = 3421, + [3593] = 3543, + [3594] = 3457, [3595] = 3595, - [3596] = 3458, - [3597] = 3487, - [3598] = 3400, - [3599] = 3409, - [3600] = 3407, - [3601] = 3376, - [3602] = 3367, - [3603] = 3603, - [3604] = 3497, - [3605] = 3605, - [3606] = 3428, - [3607] = 3566, - [3608] = 3552, - [3609] = 3332, - [3610] = 3347, - [3611] = 3453, - [3612] = 3482, + [3596] = 3407, + [3597] = 3457, + [3598] = 3457, + [3599] = 3457, + [3600] = 3318, + [3601] = 3564, + [3602] = 3317, + [3603] = 3576, + [3604] = 3442, + [3605] = 3316, + [3606] = 3413, + [3607] = 3411, + [3608] = 3409, + [3609] = 3315, + [3610] = 3314, + [3611] = 3611, + [3612] = 3559, [3613] = 3613, [3614] = 3614, [3615] = 3615, @@ -10082,15 +10090,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [41] = {.lex_state = 3, .external_lex_state = 2}, [42] = {.lex_state = 3, .external_lex_state = 2}, [43] = {.lex_state = 5, .external_lex_state = 2}, - [44] = {.lex_state = 3, .external_lex_state = 2}, + [44] = {.lex_state = 5, .external_lex_state = 2}, [45] = {.lex_state = 5, .external_lex_state = 2}, [46] = {.lex_state = 5, .external_lex_state = 2}, - [47] = {.lex_state = 5, .external_lex_state = 2}, + [47] = {.lex_state = 3, .external_lex_state = 2}, [48] = {.lex_state = 5, .external_lex_state = 2}, - [49] = {.lex_state = 5, .external_lex_state = 2}, + [49] = {.lex_state = 3, .external_lex_state = 2}, [50] = {.lex_state = 5, .external_lex_state = 2}, [51] = {.lex_state = 5, .external_lex_state = 2}, - [52] = {.lex_state = 3, .external_lex_state = 2}, + [52] = {.lex_state = 5, .external_lex_state = 2}, [53] = {.lex_state = 3, .external_lex_state = 2}, [54] = {.lex_state = 3, .external_lex_state = 2}, [55] = {.lex_state = 3, .external_lex_state = 2}, @@ -10112,7 +10120,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [71] = {.lex_state = 2, .external_lex_state = 2}, [72] = {.lex_state = 2, .external_lex_state = 2}, [73] = {.lex_state = 2, .external_lex_state = 2}, - [74] = {.lex_state = 2, .external_lex_state = 2}, + [74] = {.lex_state = 4, .external_lex_state = 2}, [75] = {.lex_state = 2, .external_lex_state = 2}, [76] = {.lex_state = 2, .external_lex_state = 2}, [77] = {.lex_state = 2, .external_lex_state = 2}, @@ -10121,12 +10129,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [80] = {.lex_state = 2, .external_lex_state = 2}, [81] = {.lex_state = 2, .external_lex_state = 2}, [82] = {.lex_state = 2, .external_lex_state = 2}, - [83] = {.lex_state = 4, .external_lex_state = 2}, + [83] = {.lex_state = 2, .external_lex_state = 2}, [84] = {.lex_state = 4, .external_lex_state = 2}, - [85] = {.lex_state = 2, .external_lex_state = 2}, - [86] = {.lex_state = 2, .external_lex_state = 2}, - [87] = {.lex_state = 2, .external_lex_state = 2}, - [88] = {.lex_state = 2, .external_lex_state = 2}, + [85] = {.lex_state = 4, .external_lex_state = 2}, + [86] = {.lex_state = 4, .external_lex_state = 2}, + [87] = {.lex_state = 4, .external_lex_state = 2}, + [88] = {.lex_state = 4, .external_lex_state = 2}, [89] = {.lex_state = 4, .external_lex_state = 2}, [90] = {.lex_state = 2, .external_lex_state = 2}, [91] = {.lex_state = 4, .external_lex_state = 2}, @@ -10137,93 +10145,93 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [96] = {.lex_state = 4, .external_lex_state = 2}, [97] = {.lex_state = 4, .external_lex_state = 2}, [98] = {.lex_state = 4, .external_lex_state = 2}, - [99] = {.lex_state = 2, .external_lex_state = 2}, - [100] = {.lex_state = 2, .external_lex_state = 2}, - [101] = {.lex_state = 2, .external_lex_state = 2}, - [102] = {.lex_state = 2, .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}, + [102] = {.lex_state = 4, .external_lex_state = 2}, [103] = {.lex_state = 2, .external_lex_state = 2}, - [104] = {.lex_state = 2, .external_lex_state = 2}, + [104] = {.lex_state = 4, .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 = 4, .external_lex_state = 2}, - [109] = {.lex_state = 4, .external_lex_state = 2}, - [110] = {.lex_state = 4, .external_lex_state = 2}, + [109] = {.lex_state = 2, .external_lex_state = 2}, + [110] = {.lex_state = 2, .external_lex_state = 2}, [111] = {.lex_state = 4, .external_lex_state = 2}, - [112] = {.lex_state = 4, .external_lex_state = 2}, - [113] = {.lex_state = 4, .external_lex_state = 2}, - [114] = {.lex_state = 4, .external_lex_state = 2}, - [115] = {.lex_state = 4, .external_lex_state = 2}, - [116] = {.lex_state = 4, .external_lex_state = 2}, + [112] = {.lex_state = 2, .external_lex_state = 2}, + [113] = {.lex_state = 2, .external_lex_state = 2}, + [114] = {.lex_state = 2, .external_lex_state = 2}, + [115] = {.lex_state = 2, .external_lex_state = 2}, + [116] = {.lex_state = 2, .external_lex_state = 2}, [117] = {.lex_state = 4, .external_lex_state = 2}, - [118] = {.lex_state = 4, .external_lex_state = 2}, + [118] = {.lex_state = 2, .external_lex_state = 2}, [119] = {.lex_state = 4, .external_lex_state = 2}, [120] = {.lex_state = 4, .external_lex_state = 2}, [121] = {.lex_state = 4, .external_lex_state = 2}, - [122] = {.lex_state = 4, .external_lex_state = 2}, + [122] = {.lex_state = 2, .external_lex_state = 2}, [123] = {.lex_state = 4, .external_lex_state = 2}, [124] = {.lex_state = 4, .external_lex_state = 2}, [125] = {.lex_state = 4, .external_lex_state = 2}, - [126] = {.lex_state = 4, .external_lex_state = 2}, - [127] = {.lex_state = 4, .external_lex_state = 2}, - [128] = {.lex_state = 4, .external_lex_state = 2}, + [126] = {.lex_state = 2, .external_lex_state = 2}, + [127] = {.lex_state = 2, .external_lex_state = 2}, + [128] = {.lex_state = 2, .external_lex_state = 2}, [129] = {.lex_state = 4, .external_lex_state = 2}, - [130] = {.lex_state = 2, .external_lex_state = 2}, - [131] = {.lex_state = 2, .external_lex_state = 2}, - [132] = {.lex_state = 2, .external_lex_state = 2}, + [130] = {.lex_state = 4, .external_lex_state = 2}, + [131] = {.lex_state = 4, .external_lex_state = 2}, + [132] = {.lex_state = 4, .external_lex_state = 2}, [133] = {.lex_state = 4, .external_lex_state = 2}, [134] = {.lex_state = 2, .external_lex_state = 2}, [135] = {.lex_state = 2, .external_lex_state = 2}, [136] = {.lex_state = 2, .external_lex_state = 2}, - [137] = {.lex_state = 2, .external_lex_state = 2}, + [137] = {.lex_state = 11, .external_lex_state = 2}, [138] = {.lex_state = 2, .external_lex_state = 2}, [139] = {.lex_state = 2, .external_lex_state = 2}, [140] = {.lex_state = 11, .external_lex_state = 2}, [141] = {.lex_state = 2, .external_lex_state = 2}, - [142] = {.lex_state = 2, .external_lex_state = 2}, - [143] = {.lex_state = 2, .external_lex_state = 2}, - [144] = {.lex_state = 2, .external_lex_state = 2}, - [145] = {.lex_state = 11, .external_lex_state = 2}, - [146] = {.lex_state = 11, .external_lex_state = 2}, + [142] = {.lex_state = 11, .external_lex_state = 2}, + [143] = {.lex_state = 11, .external_lex_state = 2}, + [144] = {.lex_state = 11, .external_lex_state = 2}, + [145] = {.lex_state = 2, .external_lex_state = 2}, + [146] = {.lex_state = 2, .external_lex_state = 2}, [147] = {.lex_state = 2, .external_lex_state = 2}, [148] = {.lex_state = 2, .external_lex_state = 2}, [149] = {.lex_state = 2, .external_lex_state = 2}, - [150] = {.lex_state = 4, .external_lex_state = 2}, - [151] = {.lex_state = 11, .external_lex_state = 2}, + [150] = {.lex_state = 11, .external_lex_state = 2}, + [151] = {.lex_state = 2, .external_lex_state = 2}, [152] = {.lex_state = 2, .external_lex_state = 2}, [153] = {.lex_state = 2, .external_lex_state = 2}, - [154] = {.lex_state = 2, .external_lex_state = 2}, - [155] = {.lex_state = 11, .external_lex_state = 2}, + [154] = {.lex_state = 4, .external_lex_state = 2}, + [155] = {.lex_state = 4, .external_lex_state = 2}, [156] = {.lex_state = 2, .external_lex_state = 2}, [157] = {.lex_state = 2, .external_lex_state = 2}, - [158] = {.lex_state = 11, .external_lex_state = 2}, + [158] = {.lex_state = 2, .external_lex_state = 2}, [159] = {.lex_state = 2, .external_lex_state = 2}, - [160] = {.lex_state = 4, .external_lex_state = 2}, - [161] = {.lex_state = 11, .external_lex_state = 2}, + [160] = {.lex_state = 2, .external_lex_state = 2}, + [161] = {.lex_state = 2, .external_lex_state = 2}, [162] = {.lex_state = 2, .external_lex_state = 2}, [163] = {.lex_state = 11, .external_lex_state = 2}, [164] = {.lex_state = 2, .external_lex_state = 2}, [165] = {.lex_state = 2, .external_lex_state = 2}, - [166] = {.lex_state = 2, .external_lex_state = 2}, + [166] = {.lex_state = 11, .external_lex_state = 2}, [167] = {.lex_state = 2, .external_lex_state = 2}, [168] = {.lex_state = 2, .external_lex_state = 2}, [169] = {.lex_state = 11, .external_lex_state = 2}, - [170] = {.lex_state = 11, .external_lex_state = 2}, + [170] = {.lex_state = 4, .external_lex_state = 2}, [171] = {.lex_state = 11, .external_lex_state = 2}, [172] = {.lex_state = 11, .external_lex_state = 2}, - [173] = {.lex_state = 4, .external_lex_state = 2}, + [173] = {.lex_state = 11, .external_lex_state = 2}, [174] = {.lex_state = 11, .external_lex_state = 2}, - [175] = {.lex_state = 4, .external_lex_state = 2}, - [176] = {.lex_state = 4, .external_lex_state = 2}, + [175] = {.lex_state = 11, .external_lex_state = 2}, + [176] = {.lex_state = 11, .external_lex_state = 2}, [177] = {.lex_state = 4, .external_lex_state = 2}, - [178] = {.lex_state = 4, .external_lex_state = 2}, + [178] = {.lex_state = 11, .external_lex_state = 2}, [179] = {.lex_state = 11, .external_lex_state = 2}, - [180] = {.lex_state = 4, .external_lex_state = 2}, + [180] = {.lex_state = 11, .external_lex_state = 2}, [181] = {.lex_state = 4, .external_lex_state = 2}, [182] = {.lex_state = 11, .external_lex_state = 2}, - [183] = {.lex_state = 4, .external_lex_state = 2}, - [184] = {.lex_state = 4, .external_lex_state = 2}, - [185] = {.lex_state = 4, .external_lex_state = 2}, + [183] = {.lex_state = 11, .external_lex_state = 2}, + [184] = {.lex_state = 11, .external_lex_state = 2}, + [185] = {.lex_state = 11, .external_lex_state = 2}, [186] = {.lex_state = 11, .external_lex_state = 2}, [187] = {.lex_state = 11, .external_lex_state = 2}, [188] = {.lex_state = 11, .external_lex_state = 2}, @@ -10232,20 +10240,20 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [191] = {.lex_state = 11, .external_lex_state = 2}, [192] = {.lex_state = 11, .external_lex_state = 2}, [193] = {.lex_state = 11, .external_lex_state = 2}, - [194] = {.lex_state = 11, .external_lex_state = 2}, + [194] = {.lex_state = 4, .external_lex_state = 2}, [195] = {.lex_state = 11, .external_lex_state = 2}, [196] = {.lex_state = 11, .external_lex_state = 2}, [197] = {.lex_state = 11, .external_lex_state = 2}, - [198] = {.lex_state = 11, .external_lex_state = 2}, - [199] = {.lex_state = 11, .external_lex_state = 2}, - [200] = {.lex_state = 11, .external_lex_state = 2}, + [198] = {.lex_state = 4, .external_lex_state = 2}, + [199] = {.lex_state = 4, .external_lex_state = 2}, + [200] = {.lex_state = 4, .external_lex_state = 2}, [201] = {.lex_state = 11, .external_lex_state = 2}, [202] = {.lex_state = 11, .external_lex_state = 2}, [203] = {.lex_state = 11, .external_lex_state = 2}, [204] = {.lex_state = 11, .external_lex_state = 2}, - [205] = {.lex_state = 11, .external_lex_state = 2}, - [206] = {.lex_state = 11, .external_lex_state = 2}, - [207] = {.lex_state = 11, .external_lex_state = 2}, + [205] = {.lex_state = 4, .external_lex_state = 2}, + [206] = {.lex_state = 4, .external_lex_state = 2}, + [207] = {.lex_state = 4, .external_lex_state = 2}, [208] = {.lex_state = 4, .external_lex_state = 2}, [209] = {.lex_state = 11, .external_lex_state = 2}, [210] = {.lex_state = 11, .external_lex_state = 2}, @@ -10254,33 +10262,33 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [213] = {.lex_state = 11, .external_lex_state = 2}, [214] = {.lex_state = 11, .external_lex_state = 2}, [215] = {.lex_state = 11, .external_lex_state = 2}, - [216] = {.lex_state = 11, .external_lex_state = 2}, + [216] = {.lex_state = 13, .external_lex_state = 2}, [217] = {.lex_state = 13, .external_lex_state = 2}, - [218] = {.lex_state = 11, .external_lex_state = 2}, - [219] = {.lex_state = 11, .external_lex_state = 2}, + [218] = {.lex_state = 13, .external_lex_state = 2}, + [219] = {.lex_state = 13, .external_lex_state = 2}, [220] = {.lex_state = 13, .external_lex_state = 2}, - [221] = {.lex_state = 11, .external_lex_state = 2}, - [222] = {.lex_state = 11, .external_lex_state = 2}, - [223] = {.lex_state = 11, .external_lex_state = 2}, - [224] = {.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 = 11, .external_lex_state = 2}, [225] = {.lex_state = 13, .external_lex_state = 2}, - [226] = {.lex_state = 11, .external_lex_state = 2}, + [226] = {.lex_state = 13, .external_lex_state = 2}, [227] = {.lex_state = 11, .external_lex_state = 2}, - [228] = {.lex_state = 13, .external_lex_state = 2}, + [228] = {.lex_state = 11, .external_lex_state = 2}, [229] = {.lex_state = 11, .external_lex_state = 2}, - [230] = {.lex_state = 13, .external_lex_state = 2}, - [231] = {.lex_state = 13, .external_lex_state = 2}, + [230] = {.lex_state = 11, .external_lex_state = 2}, + [231] = {.lex_state = 11, .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}, + [234] = {.lex_state = 11, .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}, + [237] = {.lex_state = 11, .external_lex_state = 2}, [238] = {.lex_state = 11, .external_lex_state = 2}, - [239] = {.lex_state = 13, .external_lex_state = 2}, + [239] = {.lex_state = 11, .external_lex_state = 2}, [240] = {.lex_state = 11, .external_lex_state = 2}, - [241] = {.lex_state = 13, .external_lex_state = 2}, - [242] = {.lex_state = 11, .external_lex_state = 2}, + [241] = {.lex_state = 11, .external_lex_state = 2}, + [242] = {.lex_state = 13, .external_lex_state = 2}, [243] = {.lex_state = 11, .external_lex_state = 2}, [244] = {.lex_state = 69, .external_lex_state = 2}, [245] = {.lex_state = 11, .external_lex_state = 2}, @@ -10295,11 +10303,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [254] = {.lex_state = 11, .external_lex_state = 2}, [255] = {.lex_state = 11, .external_lex_state = 2}, [256] = {.lex_state = 11, .external_lex_state = 2}, - [257] = {.lex_state = 11, .external_lex_state = 2}, + [257] = {.lex_state = 69, .external_lex_state = 2}, [258] = {.lex_state = 11, .external_lex_state = 2}, [259] = {.lex_state = 11, .external_lex_state = 2}, [260] = {.lex_state = 11, .external_lex_state = 2}, - [261] = {.lex_state = 69, .external_lex_state = 2}, + [261] = {.lex_state = 11, .external_lex_state = 2}, [262] = {.lex_state = 11, .external_lex_state = 2}, [263] = {.lex_state = 11, .external_lex_state = 2}, [264] = {.lex_state = 11, .external_lex_state = 2}, @@ -10349,7 +10357,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [308] = {.lex_state = 11, .external_lex_state = 2}, [309] = {.lex_state = 11, .external_lex_state = 2}, [310] = {.lex_state = 11, .external_lex_state = 2}, - [311] = {.lex_state = 11, .external_lex_state = 2}, + [311] = {.lex_state = 69, .external_lex_state = 2}, [312] = {.lex_state = 11, .external_lex_state = 2}, [313] = {.lex_state = 11, .external_lex_state = 2}, [314] = {.lex_state = 11, .external_lex_state = 2}, @@ -10361,7 +10369,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [320] = {.lex_state = 11, .external_lex_state = 2}, [321] = {.lex_state = 11, .external_lex_state = 2}, [322] = {.lex_state = 11, .external_lex_state = 2}, - [323] = {.lex_state = 69, .external_lex_state = 2}, + [323] = {.lex_state = 11, .external_lex_state = 2}, [324] = {.lex_state = 11, .external_lex_state = 2}, [325] = {.lex_state = 11, .external_lex_state = 2}, [326] = {.lex_state = 11, .external_lex_state = 2}, @@ -10374,9 +10382,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [333] = {.lex_state = 11, .external_lex_state = 2}, [334] = {.lex_state = 11, .external_lex_state = 2}, [335] = {.lex_state = 11, .external_lex_state = 2}, - [336] = {.lex_state = 69, .external_lex_state = 2}, + [336] = {.lex_state = 11, .external_lex_state = 2}, [337] = {.lex_state = 11, .external_lex_state = 2}, - [338] = {.lex_state = 69, .external_lex_state = 2}, + [338] = {.lex_state = 11, .external_lex_state = 2}, [339] = {.lex_state = 11, .external_lex_state = 2}, [340] = {.lex_state = 11, .external_lex_state = 2}, [341] = {.lex_state = 11, .external_lex_state = 2}, @@ -10385,12 +10393,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [344] = {.lex_state = 11, .external_lex_state = 2}, [345] = {.lex_state = 11, .external_lex_state = 2}, [346] = {.lex_state = 11, .external_lex_state = 2}, - [347] = {.lex_state = 69, .external_lex_state = 2}, + [347] = {.lex_state = 11, .external_lex_state = 2}, [348] = {.lex_state = 11, .external_lex_state = 2}, [349] = {.lex_state = 11, .external_lex_state = 2}, [350] = {.lex_state = 11, .external_lex_state = 2}, [351] = {.lex_state = 11, .external_lex_state = 2}, - [352] = {.lex_state = 11, .external_lex_state = 2}, + [352] = {.lex_state = 69, .external_lex_state = 2}, [353] = {.lex_state = 11, .external_lex_state = 2}, [354] = {.lex_state = 11, .external_lex_state = 2}, [355] = {.lex_state = 11, .external_lex_state = 2}, @@ -10399,57 +10407,57 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [358] = {.lex_state = 11, .external_lex_state = 2}, [359] = {.lex_state = 11, .external_lex_state = 2}, [360] = {.lex_state = 11, .external_lex_state = 2}, - [361] = {.lex_state = 11, .external_lex_state = 2}, + [361] = {.lex_state = 69, .external_lex_state = 2}, [362] = {.lex_state = 11, .external_lex_state = 2}, [363] = {.lex_state = 11, .external_lex_state = 2}, [364] = {.lex_state = 11, .external_lex_state = 2}, [365] = {.lex_state = 11, .external_lex_state = 2}, [366] = {.lex_state = 11, .external_lex_state = 2}, [367] = {.lex_state = 11, .external_lex_state = 2}, - [368] = {.lex_state = 11, .external_lex_state = 2}, + [368] = {.lex_state = 69, .external_lex_state = 2}, [369] = {.lex_state = 11, .external_lex_state = 2}, [370] = {.lex_state = 11, .external_lex_state = 2}, - [371] = {.lex_state = 12, .external_lex_state = 2}, + [371] = {.lex_state = 69, .external_lex_state = 2}, [372] = {.lex_state = 69, .external_lex_state = 2}, - [373] = {.lex_state = 12, .external_lex_state = 2}, - [374] = {.lex_state = 69, .external_lex_state = 2}, - [375] = {.lex_state = 69, .external_lex_state = 2}, + [373] = {.lex_state = 69, .external_lex_state = 2}, + [374] = {.lex_state = 12, .external_lex_state = 2}, + [375] = {.lex_state = 12, .external_lex_state = 2}, [376] = {.lex_state = 69, .external_lex_state = 2}, [377] = {.lex_state = 69, .external_lex_state = 2}, - [378] = {.lex_state = 12, .external_lex_state = 2}, + [378] = {.lex_state = 69, .external_lex_state = 2}, [379] = {.lex_state = 69, .external_lex_state = 2}, [380] = {.lex_state = 69, .external_lex_state = 2}, [381] = {.lex_state = 69, .external_lex_state = 2}, - [382] = {.lex_state = 69, .external_lex_state = 2}, - [383] = {.lex_state = 69, .external_lex_state = 2}, - [384] = {.lex_state = 69, .external_lex_state = 2}, + [382] = {.lex_state = 12, .external_lex_state = 2}, + [383] = {.lex_state = 12, .external_lex_state = 2}, + [384] = {.lex_state = 12, .external_lex_state = 2}, [385] = {.lex_state = 69, .external_lex_state = 2}, [386] = {.lex_state = 69, .external_lex_state = 2}, [387] = {.lex_state = 69, .external_lex_state = 2}, - [388] = {.lex_state = 69, .external_lex_state = 2}, + [388] = {.lex_state = 12, .external_lex_state = 2}, [389] = {.lex_state = 69, .external_lex_state = 2}, - [390] = {.lex_state = 12, .external_lex_state = 2}, + [390] = {.lex_state = 69, .external_lex_state = 2}, [391] = {.lex_state = 69, .external_lex_state = 2}, [392] = {.lex_state = 69, .external_lex_state = 2}, [393] = {.lex_state = 69, .external_lex_state = 2}, [394] = {.lex_state = 69, .external_lex_state = 2}, [395] = {.lex_state = 69, .external_lex_state = 2}, - [396] = {.lex_state = 12, .external_lex_state = 2}, + [396] = {.lex_state = 69, .external_lex_state = 2}, [397] = {.lex_state = 69, .external_lex_state = 2}, - [398] = {.lex_state = 12, .external_lex_state = 2}, + [398] = {.lex_state = 69, .external_lex_state = 2}, [399] = {.lex_state = 69, .external_lex_state = 2}, [400] = {.lex_state = 12, .external_lex_state = 2}, [401] = {.lex_state = 12, .external_lex_state = 2}, [402] = {.lex_state = 12, .external_lex_state = 2}, - [403] = {.lex_state = 12, .external_lex_state = 2}, - [404] = {.lex_state = 69, .external_lex_state = 2}, + [403] = {.lex_state = 69, .external_lex_state = 2}, + [404] = {.lex_state = 12, .external_lex_state = 2}, [405] = {.lex_state = 12, .external_lex_state = 2}, [406] = {.lex_state = 12, .external_lex_state = 2}, [407] = {.lex_state = 12, .external_lex_state = 2}, [408] = {.lex_state = 12, .external_lex_state = 2}, [409] = {.lex_state = 12, .external_lex_state = 2}, - [410] = {.lex_state = 11, .external_lex_state = 2}, - [411] = {.lex_state = 12, .external_lex_state = 2}, + [410] = {.lex_state = 12, .external_lex_state = 2}, + [411] = {.lex_state = 11, .external_lex_state = 2}, [412] = {.lex_state = 11, .external_lex_state = 2}, [413] = {.lex_state = 11, .external_lex_state = 2}, [414] = {.lex_state = 12, .external_lex_state = 2}, @@ -10492,14 +10500,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [451] = {.lex_state = 3, .external_lex_state = 2}, [452] = {.lex_state = 3, .external_lex_state = 2}, [453] = {.lex_state = 3, .external_lex_state = 2}, - [454] = {.lex_state = 3, .external_lex_state = 2}, + [454] = {.lex_state = 11, .external_lex_state = 2}, [455] = {.lex_state = 3, .external_lex_state = 2}, - [456] = {.lex_state = 11, .external_lex_state = 2}, - [457] = {.lex_state = 3, .external_lex_state = 2}, + [456] = {.lex_state = 3, .external_lex_state = 2}, + [457] = {.lex_state = 11, .external_lex_state = 2}, [458] = {.lex_state = 3, .external_lex_state = 2}, - [459] = {.lex_state = 11, .external_lex_state = 2}, - [460] = {.lex_state = 3, .external_lex_state = 2}, - [461] = {.lex_state = 11, .external_lex_state = 2}, + [459] = {.lex_state = 3, .external_lex_state = 2}, + [460] = {.lex_state = 11, .external_lex_state = 2}, + [461] = {.lex_state = 3, .external_lex_state = 2}, [462] = {.lex_state = 3, .external_lex_state = 2}, [463] = {.lex_state = 3, .external_lex_state = 2}, [464] = {.lex_state = 3, .external_lex_state = 2}, @@ -10509,8 +10517,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [468] = {.lex_state = 3, .external_lex_state = 2}, [469] = {.lex_state = 3, .external_lex_state = 2}, [470] = {.lex_state = 3, .external_lex_state = 2}, - [471] = {.lex_state = 3, .external_lex_state = 2}, - [472] = {.lex_state = 11, .external_lex_state = 2}, + [471] = {.lex_state = 11, .external_lex_state = 2}, + [472] = {.lex_state = 3, .external_lex_state = 2}, [473] = {.lex_state = 3, .external_lex_state = 2}, [474] = {.lex_state = 3, .external_lex_state = 2}, [475] = {.lex_state = 11, .external_lex_state = 2}, @@ -10544,7 +10552,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [503] = {.lex_state = 71, .external_lex_state = 2}, [504] = {.lex_state = 71, .external_lex_state = 2}, [505] = {.lex_state = 71, .external_lex_state = 2}, - [506] = {.lex_state = 71, .external_lex_state = 2}, + [506] = {.lex_state = 11, .external_lex_state = 2}, [507] = {.lex_state = 71, .external_lex_state = 2}, [508] = {.lex_state = 71, .external_lex_state = 2}, [509] = {.lex_state = 71, .external_lex_state = 2}, @@ -10566,7 +10574,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [525] = {.lex_state = 71, .external_lex_state = 2}, [526] = {.lex_state = 71, .external_lex_state = 2}, [527] = {.lex_state = 71, .external_lex_state = 2}, - [528] = {.lex_state = 71, .external_lex_state = 2}, + [528] = {.lex_state = 10}, [529] = {.lex_state = 71, .external_lex_state = 2}, [530] = {.lex_state = 71, .external_lex_state = 2}, [531] = {.lex_state = 71, .external_lex_state = 2}, @@ -10666,7 +10674,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [625] = {.lex_state = 71, .external_lex_state = 2}, [626] = {.lex_state = 71, .external_lex_state = 2}, [627] = {.lex_state = 71, .external_lex_state = 2}, - [628] = {.lex_state = 71, .external_lex_state = 2}, + [628] = {.lex_state = 10}, [629] = {.lex_state = 71, .external_lex_state = 2}, [630] = {.lex_state = 71, .external_lex_state = 2}, [631] = {.lex_state = 71, .external_lex_state = 2}, @@ -10684,7 +10692,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [643] = {.lex_state = 71, .external_lex_state = 2}, [644] = {.lex_state = 71, .external_lex_state = 2}, [645] = {.lex_state = 71, .external_lex_state = 2}, - [646] = {.lex_state = 10}, + [646] = {.lex_state = 71, .external_lex_state = 2}, [647] = {.lex_state = 71, .external_lex_state = 2}, [648] = {.lex_state = 71, .external_lex_state = 2}, [649] = {.lex_state = 71, .external_lex_state = 2}, @@ -10692,7 +10700,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [651] = {.lex_state = 71, .external_lex_state = 2}, [652] = {.lex_state = 71, .external_lex_state = 2}, [653] = {.lex_state = 71, .external_lex_state = 2}, - [654] = {.lex_state = 10}, + [654] = {.lex_state = 71, .external_lex_state = 2}, [655] = {.lex_state = 71, .external_lex_state = 2}, [656] = {.lex_state = 71, .external_lex_state = 2}, [657] = {.lex_state = 71, .external_lex_state = 2}, @@ -10705,7 +10713,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [664] = {.lex_state = 71, .external_lex_state = 2}, [665] = {.lex_state = 71, .external_lex_state = 2}, [666] = {.lex_state = 71, .external_lex_state = 2}, - [667] = {.lex_state = 71, .external_lex_state = 2}, + [667] = {.lex_state = 10}, [668] = {.lex_state = 71, .external_lex_state = 2}, [669] = {.lex_state = 71, .external_lex_state = 2}, [670] = {.lex_state = 71, .external_lex_state = 2}, @@ -10728,15 +10736,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [687] = {.lex_state = 71, .external_lex_state = 2}, [688] = {.lex_state = 71, .external_lex_state = 2}, [689] = {.lex_state = 71, .external_lex_state = 2}, - [690] = {.lex_state = 10}, + [690] = {.lex_state = 71, .external_lex_state = 2}, [691] = {.lex_state = 71, .external_lex_state = 2}, - [692] = {.lex_state = 10}, + [692] = {.lex_state = 71, .external_lex_state = 2}, [693] = {.lex_state = 71, .external_lex_state = 2}, [694] = {.lex_state = 71, .external_lex_state = 2}, [695] = {.lex_state = 71, .external_lex_state = 2}, [696] = {.lex_state = 71, .external_lex_state = 2}, [697] = {.lex_state = 71, .external_lex_state = 2}, - [698] = {.lex_state = 10}, + [698] = {.lex_state = 71, .external_lex_state = 2}, [699] = {.lex_state = 71, .external_lex_state = 2}, [700] = {.lex_state = 71, .external_lex_state = 2}, [701] = {.lex_state = 71, .external_lex_state = 2}, @@ -10744,7 +10752,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [703] = {.lex_state = 71, .external_lex_state = 2}, [704] = {.lex_state = 71, .external_lex_state = 2}, [705] = {.lex_state = 71, .external_lex_state = 2}, - [706] = {.lex_state = 71, .external_lex_state = 2}, + [706] = {.lex_state = 10}, [707] = {.lex_state = 71, .external_lex_state = 2}, [708] = {.lex_state = 71, .external_lex_state = 2}, [709] = {.lex_state = 71, .external_lex_state = 2}, @@ -10759,9 +10767,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [718] = {.lex_state = 71, .external_lex_state = 2}, [719] = {.lex_state = 71, .external_lex_state = 2}, [720] = {.lex_state = 71, .external_lex_state = 2}, - [721] = {.lex_state = 11, .external_lex_state = 2}, + [721] = {.lex_state = 71, .external_lex_state = 2}, [722] = {.lex_state = 71, .external_lex_state = 2}, - [723] = {.lex_state = 71, .external_lex_state = 2}, + [723] = {.lex_state = 10}, [724] = {.lex_state = 71, .external_lex_state = 2}, [725] = {.lex_state = 71, .external_lex_state = 2}, [726] = {.lex_state = 71, .external_lex_state = 2}, @@ -10800,33 +10808,33 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [759] = {.lex_state = 11, .external_lex_state = 2}, [760] = {.lex_state = 11, .external_lex_state = 2}, [761] = {.lex_state = 11, .external_lex_state = 2}, - [762] = {.lex_state = 11, .external_lex_state = 2}, + [762] = {.lex_state = 14}, [763] = {.lex_state = 14}, - [764] = {.lex_state = 14}, + [764] = {.lex_state = 11, .external_lex_state = 2}, [765] = {.lex_state = 14}, [766] = {.lex_state = 14}, [767] = {.lex_state = 14}, [768] = {.lex_state = 14}, [769] = {.lex_state = 14}, [770] = {.lex_state = 14}, - [771] = {.lex_state = 11, .external_lex_state = 2}, - [772] = {.lex_state = 14}, - [773] = {.lex_state = 11, .external_lex_state = 2}, - [774] = {.lex_state = 14}, + [771] = {.lex_state = 14}, + [772] = {.lex_state = 11, .external_lex_state = 2}, + [773] = {.lex_state = 14}, + [774] = {.lex_state = 11, .external_lex_state = 2}, [775] = {.lex_state = 11, .external_lex_state = 2}, [776] = {.lex_state = 11, .external_lex_state = 2}, - [777] = {.lex_state = 14}, - [778] = {.lex_state = 11, .external_lex_state = 2}, + [777] = {.lex_state = 11, .external_lex_state = 2}, + [778] = {.lex_state = 14}, [779] = {.lex_state = 11, .external_lex_state = 2}, [780] = {.lex_state = 11, .external_lex_state = 2}, - [781] = {.lex_state = 12, .external_lex_state = 2}, + [781] = {.lex_state = 11, .external_lex_state = 2}, [782] = {.lex_state = 11, .external_lex_state = 2}, [783] = {.lex_state = 11, .external_lex_state = 2}, [784] = {.lex_state = 11, .external_lex_state = 2}, [785] = {.lex_state = 11, .external_lex_state = 2}, [786] = {.lex_state = 11, .external_lex_state = 2}, [787] = {.lex_state = 11, .external_lex_state = 2}, - [788] = {.lex_state = 11, .external_lex_state = 2}, + [788] = {.lex_state = 12, .external_lex_state = 2}, [789] = {.lex_state = 11, .external_lex_state = 2}, [790] = {.lex_state = 11, .external_lex_state = 2}, [791] = {.lex_state = 11, .external_lex_state = 2}, @@ -10946,7 +10954,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [905] = {.lex_state = 14}, [906] = {.lex_state = 14}, [907] = {.lex_state = 14}, - [908] = {.lex_state = 11, .external_lex_state = 2}, + [908] = {.lex_state = 14}, [909] = {.lex_state = 14}, [910] = {.lex_state = 14}, [911] = {.lex_state = 14}, @@ -11035,7 +11043,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [994] = {.lex_state = 14}, [995] = {.lex_state = 14}, [996] = {.lex_state = 14}, - [997] = {.lex_state = 14}, + [997] = {.lex_state = 11, .external_lex_state = 2}, [998] = {.lex_state = 14}, [999] = {.lex_state = 14}, [1000] = {.lex_state = 14}, @@ -11053,122 +11061,122 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1012] = {.lex_state = 6}, [1013] = {.lex_state = 6}, [1014] = {.lex_state = 6}, - [1015] = {.lex_state = 10}, - [1016] = {.lex_state = 6}, + [1015] = {.lex_state = 6}, + [1016] = {.lex_state = 10}, [1017] = {.lex_state = 6}, [1018] = {.lex_state = 10}, - [1019] = {.lex_state = 10}, + [1019] = {.lex_state = 6}, [1020] = {.lex_state = 10}, - [1021] = {.lex_state = 6}, - [1022] = {.lex_state = 6}, - [1023] = {.lex_state = 10}, + [1021] = {.lex_state = 10}, + [1022] = {.lex_state = 10}, + [1023] = {.lex_state = 6}, [1024] = {.lex_state = 6}, [1025] = {.lex_state = 10}, - [1026] = {.lex_state = 10}, + [1026] = {.lex_state = 6}, [1027] = {.lex_state = 10}, [1028] = {.lex_state = 6}, - [1029] = {.lex_state = 6}, + [1029] = {.lex_state = 10}, [1030] = {.lex_state = 10}, [1031] = {.lex_state = 6}, - [1032] = {.lex_state = 7}, + [1032] = {.lex_state = 11, .external_lex_state = 2}, [1033] = {.lex_state = 7}, [1034] = {.lex_state = 7}, [1035] = {.lex_state = 22}, - [1036] = {.lex_state = 7}, - [1037] = {.lex_state = 22}, + [1036] = {.lex_state = 22}, + [1037] = {.lex_state = 7}, [1038] = {.lex_state = 22}, - [1039] = {.lex_state = 22}, + [1039] = {.lex_state = 7}, [1040] = {.lex_state = 7}, - [1041] = {.lex_state = 11, .external_lex_state = 2}, - [1042] = {.lex_state = 7}, + [1041] = {.lex_state = 7}, + [1042] = {.lex_state = 22}, [1043] = {.lex_state = 22}, [1044] = {.lex_state = 18}, - [1045] = {.lex_state = 7}, - [1046] = {.lex_state = 7}, + [1045] = {.lex_state = 18}, + [1046] = {.lex_state = 14}, [1047] = {.lex_state = 7}, [1048] = {.lex_state = 7}, [1049] = {.lex_state = 18}, - [1050] = {.lex_state = 7}, + [1050] = {.lex_state = 18}, [1051] = {.lex_state = 7}, - [1052] = {.lex_state = 7}, - [1053] = {.lex_state = 18}, + [1052] = {.lex_state = 18}, + [1053] = {.lex_state = 7}, [1054] = {.lex_state = 14}, [1055] = {.lex_state = 7}, [1056] = {.lex_state = 7}, [1057] = {.lex_state = 7}, [1058] = {.lex_state = 7}, [1059] = {.lex_state = 7}, - [1060] = {.lex_state = 18}, - [1061] = {.lex_state = 18}, - [1062] = {.lex_state = 14}, - [1063] = {.lex_state = 19}, - [1064] = {.lex_state = 6}, - [1065] = {.lex_state = 14}, + [1060] = {.lex_state = 7}, + [1061] = {.lex_state = 6}, + [1062] = {.lex_state = 7}, + [1063] = {.lex_state = 7}, + [1064] = {.lex_state = 19}, + [1065] = {.lex_state = 7}, [1066] = {.lex_state = 18}, - [1067] = {.lex_state = 18}, - [1068] = {.lex_state = 14}, + [1067] = {.lex_state = 7}, + [1068] = {.lex_state = 7}, [1069] = {.lex_state = 7}, [1070] = {.lex_state = 7}, [1071] = {.lex_state = 7}, [1072] = {.lex_state = 7}, - [1073] = {.lex_state = 7}, + [1073] = {.lex_state = 18}, [1074] = {.lex_state = 14}, [1075] = {.lex_state = 7}, [1076] = {.lex_state = 7}, [1077] = {.lex_state = 14}, - [1078] = {.lex_state = 7}, - [1079] = {.lex_state = 14}, - [1080] = {.lex_state = 19}, - [1081] = {.lex_state = 18}, - [1082] = {.lex_state = 14}, - [1083] = {.lex_state = 18}, - [1084] = {.lex_state = 14}, + [1078] = {.lex_state = 14}, + [1079] = {.lex_state = 18}, + [1080] = {.lex_state = 18}, + [1081] = {.lex_state = 7}, + [1082] = {.lex_state = 18}, + [1083] = {.lex_state = 14}, + [1084] = {.lex_state = 19}, [1085] = {.lex_state = 18}, - [1086] = {.lex_state = 18}, - [1087] = {.lex_state = 18}, - [1088] = {.lex_state = 7}, - [1089] = {.lex_state = 7}, - [1090] = {.lex_state = 7}, - [1091] = {.lex_state = 7}, + [1086] = {.lex_state = 14}, + [1087] = {.lex_state = 7}, + [1088] = {.lex_state = 14}, + [1089] = {.lex_state = 14}, + [1090] = {.lex_state = 18}, + [1091] = {.lex_state = 10}, [1092] = {.lex_state = 10}, - [1093] = {.lex_state = 10}, + [1093] = {.lex_state = 14}, [1094] = {.lex_state = 10}, [1095] = {.lex_state = 10}, - [1096] = {.lex_state = 10}, + [1096] = {.lex_state = 14}, [1097] = {.lex_state = 10}, [1098] = {.lex_state = 10}, [1099] = {.lex_state = 10}, [1100] = {.lex_state = 10}, [1101] = {.lex_state = 10}, - [1102] = {.lex_state = 10}, + [1102] = {.lex_state = 7}, [1103] = {.lex_state = 10}, [1104] = {.lex_state = 10}, [1105] = {.lex_state = 10}, - [1106] = {.lex_state = 10}, + [1106] = {.lex_state = 7}, [1107] = {.lex_state = 10}, - [1108] = {.lex_state = 10}, + [1108] = {.lex_state = 7}, [1109] = {.lex_state = 10}, - [1110] = {.lex_state = 10}, + [1110] = {.lex_state = 14}, [1111] = {.lex_state = 10}, [1112] = {.lex_state = 10}, [1113] = {.lex_state = 10}, [1114] = {.lex_state = 10}, [1115] = {.lex_state = 10}, [1116] = {.lex_state = 10}, - [1117] = {.lex_state = 10}, - [1118] = {.lex_state = 10}, + [1117] = {.lex_state = 7}, + [1118] = {.lex_state = 7}, [1119] = {.lex_state = 10}, [1120] = {.lex_state = 10}, [1121] = {.lex_state = 10}, [1122] = {.lex_state = 10}, [1123] = {.lex_state = 10}, [1124] = {.lex_state = 10}, - [1125] = {.lex_state = 10}, + [1125] = {.lex_state = 7}, [1126] = {.lex_state = 10}, - [1127] = {.lex_state = 7}, + [1127] = {.lex_state = 10}, [1128] = {.lex_state = 10}, [1129] = {.lex_state = 10}, - [1130] = {.lex_state = 7}, + [1130] = {.lex_state = 10}, [1131] = {.lex_state = 10}, [1132] = {.lex_state = 10}, [1133] = {.lex_state = 10}, @@ -11204,7 +11212,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1163] = {.lex_state = 10}, [1164] = {.lex_state = 10}, [1165] = {.lex_state = 10}, - [1166] = {.lex_state = 10}, + [1166] = {.lex_state = 7}, [1167] = {.lex_state = 10}, [1168] = {.lex_state = 10}, [1169] = {.lex_state = 10}, @@ -11221,316 +11229,316 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1180] = {.lex_state = 10}, [1181] = {.lex_state = 10}, [1182] = {.lex_state = 10}, - [1183] = {.lex_state = 7}, + [1183] = {.lex_state = 10}, [1184] = {.lex_state = 10}, [1185] = {.lex_state = 10}, - [1186] = {.lex_state = 7}, + [1186] = {.lex_state = 10}, [1187] = {.lex_state = 10}, [1188] = {.lex_state = 10}, - [1189] = {.lex_state = 7}, - [1190] = {.lex_state = 10}, + [1189] = {.lex_state = 10}, + [1190] = {.lex_state = 7}, [1191] = {.lex_state = 10}, - [1192] = {.lex_state = 7}, - [1193] = {.lex_state = 7}, + [1192] = {.lex_state = 10}, + [1193] = {.lex_state = 10}, [1194] = {.lex_state = 10}, - [1195] = {.lex_state = 7}, - [1196] = {.lex_state = 7}, + [1195] = {.lex_state = 10}, + [1196] = {.lex_state = 10}, [1197] = {.lex_state = 10}, - [1198] = {.lex_state = 7}, - [1199] = {.lex_state = 7}, + [1198] = {.lex_state = 10}, + [1199] = {.lex_state = 10}, [1200] = {.lex_state = 10}, [1201] = {.lex_state = 10}, [1202] = {.lex_state = 7}, [1203] = {.lex_state = 10}, [1204] = {.lex_state = 10}, - [1205] = {.lex_state = 7}, - [1206] = {.lex_state = 7}, - [1207] = {.lex_state = 7}, - [1208] = {.lex_state = 7}, + [1205] = {.lex_state = 10}, + [1206] = {.lex_state = 10}, + [1207] = {.lex_state = 10}, + [1208] = {.lex_state = 10}, [1209] = {.lex_state = 7}, - [1210] = {.lex_state = 7}, - [1211] = {.lex_state = 7}, + [1210] = {.lex_state = 10}, + [1211] = {.lex_state = 10}, [1212] = {.lex_state = 7}, - [1213] = {.lex_state = 7}, + [1213] = {.lex_state = 10}, [1214] = {.lex_state = 7}, - [1215] = {.lex_state = 7}, - [1216] = {.lex_state = 12, .external_lex_state = 2}, - [1217] = {.lex_state = 7}, - [1218] = {.lex_state = 7}, - [1219] = {.lex_state = 7}, - [1220] = {.lex_state = 7}, - [1221] = {.lex_state = 7}, + [1215] = {.lex_state = 10}, + [1216] = {.lex_state = 7}, + [1217] = {.lex_state = 10}, + [1218] = {.lex_state = 10}, + [1219] = {.lex_state = 10}, + [1220] = {.lex_state = 10}, + [1221] = {.lex_state = 10}, [1222] = {.lex_state = 7}, - [1223] = {.lex_state = 7}, - [1224] = {.lex_state = 7}, + [1223] = {.lex_state = 10}, + [1224] = {.lex_state = 10}, [1225] = {.lex_state = 7}, [1226] = {.lex_state = 7}, [1227] = {.lex_state = 10}, - [1228] = {.lex_state = 7}, - [1229] = {.lex_state = 14}, - [1230] = {.lex_state = 14}, - [1231] = {.lex_state = 7}, + [1228] = {.lex_state = 10}, + [1229] = {.lex_state = 10}, + [1230] = {.lex_state = 10}, + [1231] = {.lex_state = 10}, [1232] = {.lex_state = 10}, [1233] = {.lex_state = 10}, [1234] = {.lex_state = 10}, [1235] = {.lex_state = 10}, [1236] = {.lex_state = 10}, - [1237] = {.lex_state = 7}, - [1238] = {.lex_state = 7}, - [1239] = {.lex_state = 7}, + [1237] = {.lex_state = 10}, + [1238] = {.lex_state = 10}, + [1239] = {.lex_state = 10}, [1240] = {.lex_state = 10}, - [1241] = {.lex_state = 7}, - [1242] = {.lex_state = 10}, - [1243] = {.lex_state = 11, .external_lex_state = 2}, - [1244] = {.lex_state = 10}, + [1241] = {.lex_state = 10}, + [1242] = {.lex_state = 7}, + [1243] = {.lex_state = 7}, + [1244] = {.lex_state = 7}, [1245] = {.lex_state = 10}, - [1246] = {.lex_state = 10}, + [1246] = {.lex_state = 7}, [1247] = {.lex_state = 10}, - [1248] = {.lex_state = 7}, + [1248] = {.lex_state = 10}, [1249] = {.lex_state = 7}, - [1250] = {.lex_state = 7}, - [1251] = {.lex_state = 7}, + [1250] = {.lex_state = 10}, + [1251] = {.lex_state = 10}, [1252] = {.lex_state = 10}, [1253] = {.lex_state = 10}, [1254] = {.lex_state = 10}, - [1255] = {.lex_state = 10}, + [1255] = {.lex_state = 7}, [1256] = {.lex_state = 10}, - [1257] = {.lex_state = 7}, + [1257] = {.lex_state = 10}, [1258] = {.lex_state = 10}, [1259] = {.lex_state = 10}, - [1260] = {.lex_state = 14}, - [1261] = {.lex_state = 14}, - [1262] = {.lex_state = 7}, - [1263] = {.lex_state = 10}, + [1260] = {.lex_state = 10}, + [1261] = {.lex_state = 10}, + [1262] = {.lex_state = 10}, + [1263] = {.lex_state = 7}, [1264] = {.lex_state = 7}, [1265] = {.lex_state = 10}, [1266] = {.lex_state = 10}, - [1267] = {.lex_state = 10}, - [1268] = {.lex_state = 10}, - [1269] = {.lex_state = 7}, - [1270] = {.lex_state = 10}, + [1267] = {.lex_state = 11, .external_lex_state = 2}, + [1268] = {.lex_state = 7}, + [1269] = {.lex_state = 10}, + [1270] = {.lex_state = 7}, [1271] = {.lex_state = 10}, - [1272] = {.lex_state = 14}, - [1273] = {.lex_state = 14}, - [1274] = {.lex_state = 7}, - [1275] = {.lex_state = 14}, - [1276] = {.lex_state = 10}, - [1277] = {.lex_state = 10}, - [1278] = {.lex_state = 7}, - [1279] = {.lex_state = 10}, - [1280] = {.lex_state = 10}, - [1281] = {.lex_state = 10}, + [1272] = {.lex_state = 10}, + [1273] = {.lex_state = 7}, + [1274] = {.lex_state = 10}, + [1275] = {.lex_state = 7}, + [1276] = {.lex_state = 7}, + [1277] = {.lex_state = 7}, + [1278] = {.lex_state = 10}, + [1279] = {.lex_state = 7}, + [1280] = {.lex_state = 7}, + [1281] = {.lex_state = 7}, [1282] = {.lex_state = 10}, [1283] = {.lex_state = 10}, [1284] = {.lex_state = 10}, - [1285] = {.lex_state = 10}, - [1286] = {.lex_state = 7}, - [1287] = {.lex_state = 7}, - [1288] = {.lex_state = 11, .external_lex_state = 2}, - [1289] = {.lex_state = 10}, + [1285] = {.lex_state = 7}, + [1286] = {.lex_state = 10}, + [1287] = {.lex_state = 10}, + [1288] = {.lex_state = 10}, + [1289] = {.lex_state = 7}, [1290] = {.lex_state = 10}, - [1291] = {.lex_state = 7}, - [1292] = {.lex_state = 7}, + [1291] = {.lex_state = 10}, + [1292] = {.lex_state = 10}, [1293] = {.lex_state = 7}, - [1294] = {.lex_state = 7}, - [1295] = {.lex_state = 7}, - [1296] = {.lex_state = 7}, - [1297] = {.lex_state = 7}, - [1298] = {.lex_state = 7}, - [1299] = {.lex_state = 7}, - [1300] = {.lex_state = 7}, - [1301] = {.lex_state = 10}, - [1302] = {.lex_state = 7}, - [1303] = {.lex_state = 12, .external_lex_state = 2}, - [1304] = {.lex_state = 7}, + [1294] = {.lex_state = 10}, + [1295] = {.lex_state = 10}, + [1296] = {.lex_state = 10}, + [1297] = {.lex_state = 10}, + [1298] = {.lex_state = 10}, + [1299] = {.lex_state = 10}, + [1300] = {.lex_state = 10}, + [1301] = {.lex_state = 7}, + [1302] = {.lex_state = 10}, + [1303] = {.lex_state = 10}, + [1304] = {.lex_state = 10}, [1305] = {.lex_state = 7}, - [1306] = {.lex_state = 10}, + [1306] = {.lex_state = 7}, [1307] = {.lex_state = 10}, - [1308] = {.lex_state = 7}, - [1309] = {.lex_state = 7}, - [1310] = {.lex_state = 7}, - [1311] = {.lex_state = 7}, - [1312] = {.lex_state = 10}, - [1313] = {.lex_state = 7}, + [1308] = {.lex_state = 10}, + [1309] = {.lex_state = 10}, + [1310] = {.lex_state = 10}, + [1311] = {.lex_state = 10}, + [1312] = {.lex_state = 7}, + [1313] = {.lex_state = 10}, [1314] = {.lex_state = 10}, - [1315] = {.lex_state = 10}, - [1316] = {.lex_state = 10}, + [1315] = {.lex_state = 7}, + [1316] = {.lex_state = 14}, [1317] = {.lex_state = 10}, - [1318] = {.lex_state = 10}, - [1319] = {.lex_state = 7}, - [1320] = {.lex_state = 7}, - [1321] = {.lex_state = 7}, - [1322] = {.lex_state = 7}, + [1318] = {.lex_state = 14}, + [1319] = {.lex_state = 14}, + [1320] = {.lex_state = 10}, + [1321] = {.lex_state = 10}, + [1322] = {.lex_state = 10}, [1323] = {.lex_state = 7}, - [1324] = {.lex_state = 7}, - [1325] = {.lex_state = 7}, - [1326] = {.lex_state = 10}, - [1327] = {.lex_state = 7}, + [1324] = {.lex_state = 10}, + [1325] = {.lex_state = 10}, + [1326] = {.lex_state = 7}, + [1327] = {.lex_state = 10}, [1328] = {.lex_state = 10}, - [1329] = {.lex_state = 10}, - [1330] = {.lex_state = 10}, + [1329] = {.lex_state = 7}, + [1330] = {.lex_state = 7}, [1331] = {.lex_state = 10}, [1332] = {.lex_state = 10}, [1333] = {.lex_state = 10}, - [1334] = {.lex_state = 10}, - [1335] = {.lex_state = 10}, - [1336] = {.lex_state = 7}, + [1334] = {.lex_state = 7}, + [1335] = {.lex_state = 7}, + [1336] = {.lex_state = 10}, [1337] = {.lex_state = 7}, [1338] = {.lex_state = 10}, [1339] = {.lex_state = 10}, - [1340] = {.lex_state = 10}, - [1341] = {.lex_state = 10}, - [1342] = {.lex_state = 10}, + [1340] = {.lex_state = 7}, + [1341] = {.lex_state = 7}, + [1342] = {.lex_state = 7}, [1343] = {.lex_state = 10}, [1344] = {.lex_state = 10}, [1345] = {.lex_state = 10}, - [1346] = {.lex_state = 10}, + [1346] = {.lex_state = 14}, [1347] = {.lex_state = 10}, [1348] = {.lex_state = 10}, - [1349] = {.lex_state = 10}, + [1349] = {.lex_state = 14}, [1350] = {.lex_state = 10}, - [1351] = {.lex_state = 10}, - [1352] = {.lex_state = 10}, + [1351] = {.lex_state = 7}, + [1352] = {.lex_state = 7}, [1353] = {.lex_state = 7}, - [1354] = {.lex_state = 10}, + [1354] = {.lex_state = 7}, [1355] = {.lex_state = 10}, [1356] = {.lex_state = 10}, - [1357] = {.lex_state = 10}, + [1357] = {.lex_state = 7}, [1358] = {.lex_state = 10}, - [1359] = {.lex_state = 10}, - [1360] = {.lex_state = 10}, + [1359] = {.lex_state = 7}, + [1360] = {.lex_state = 7}, [1361] = {.lex_state = 10}, - [1362] = {.lex_state = 10}, + [1362] = {.lex_state = 7}, [1363] = {.lex_state = 10}, - [1364] = {.lex_state = 10}, - [1365] = {.lex_state = 14}, - [1366] = {.lex_state = 14}, - [1367] = {.lex_state = 14}, + [1364] = {.lex_state = 7}, + [1365] = {.lex_state = 7}, + [1366] = {.lex_state = 7}, + [1367] = {.lex_state = 10}, [1368] = {.lex_state = 10}, - [1369] = {.lex_state = 7}, + [1369] = {.lex_state = 10}, [1370] = {.lex_state = 10}, - [1371] = {.lex_state = 10}, - [1372] = {.lex_state = 10}, - [1373] = {.lex_state = 10}, - [1374] = {.lex_state = 10}, - [1375] = {.lex_state = 7}, - [1376] = {.lex_state = 7}, - [1377] = {.lex_state = 7}, + [1371] = {.lex_state = 7}, + [1372] = {.lex_state = 7}, + [1373] = {.lex_state = 7}, + [1374] = {.lex_state = 7}, + [1375] = {.lex_state = 10}, + [1376] = {.lex_state = 10}, + [1377] = {.lex_state = 10}, [1378] = {.lex_state = 10}, [1379] = {.lex_state = 10}, - [1380] = {.lex_state = 7}, + [1380] = {.lex_state = 10}, [1381] = {.lex_state = 7}, [1382] = {.lex_state = 7}, - [1383] = {.lex_state = 7}, + [1383] = {.lex_state = 10}, [1384] = {.lex_state = 7}, - [1385] = {.lex_state = 7}, - [1386] = {.lex_state = 7}, - [1387] = {.lex_state = 7}, - [1388] = {.lex_state = 7}, - [1389] = {.lex_state = 7}, + [1385] = {.lex_state = 10}, + [1386] = {.lex_state = 10}, + [1387] = {.lex_state = 10}, + [1388] = {.lex_state = 10}, + [1389] = {.lex_state = 10}, [1390] = {.lex_state = 10}, [1391] = {.lex_state = 7}, [1392] = {.lex_state = 10}, - [1393] = {.lex_state = 7}, - [1394] = {.lex_state = 10}, - [1395] = {.lex_state = 10}, - [1396] = {.lex_state = 10}, - [1397] = {.lex_state = 10}, - [1398] = {.lex_state = 10}, - [1399] = {.lex_state = 10}, - [1400] = {.lex_state = 10}, - [1401] = {.lex_state = 10}, + [1393] = {.lex_state = 10}, + [1394] = {.lex_state = 7}, + [1395] = {.lex_state = 7}, + [1396] = {.lex_state = 7}, + [1397] = {.lex_state = 7}, + [1398] = {.lex_state = 7}, + [1399] = {.lex_state = 7}, + [1400] = {.lex_state = 7}, + [1401] = {.lex_state = 7}, [1402] = {.lex_state = 10}, - [1403] = {.lex_state = 10}, - [1404] = {.lex_state = 10}, - [1405] = {.lex_state = 10}, - [1406] = {.lex_state = 10}, + [1403] = {.lex_state = 7}, + [1404] = {.lex_state = 7}, + [1405] = {.lex_state = 7}, + [1406] = {.lex_state = 7}, [1407] = {.lex_state = 10}, [1408] = {.lex_state = 10}, [1409] = {.lex_state = 10}, [1410] = {.lex_state = 10}, [1411] = {.lex_state = 10}, - [1412] = {.lex_state = 10}, + [1412] = {.lex_state = 7}, [1413] = {.lex_state = 7}, - [1414] = {.lex_state = 10}, - [1415] = {.lex_state = 10}, - [1416] = {.lex_state = 10}, - [1417] = {.lex_state = 10}, + [1414] = {.lex_state = 7}, + [1415] = {.lex_state = 12, .external_lex_state = 2}, + [1416] = {.lex_state = 11, .external_lex_state = 2}, + [1417] = {.lex_state = 7}, [1418] = {.lex_state = 7}, [1419] = {.lex_state = 7}, - [1420] = {.lex_state = 10}, - [1421] = {.lex_state = 10}, - [1422] = {.lex_state = 10}, - [1423] = {.lex_state = 10}, + [1420] = {.lex_state = 7}, + [1421] = {.lex_state = 14}, + [1422] = {.lex_state = 14}, + [1423] = {.lex_state = 12, .external_lex_state = 2}, [1424] = {.lex_state = 10}, - [1425] = {.lex_state = 10}, + [1425] = {.lex_state = 7}, [1426] = {.lex_state = 10}, - [1427] = {.lex_state = 10}, + [1427] = {.lex_state = 7}, [1428] = {.lex_state = 10}, - [1429] = {.lex_state = 10}, + [1429] = {.lex_state = 7}, [1430] = {.lex_state = 10}, [1431] = {.lex_state = 10}, [1432] = {.lex_state = 10}, - [1433] = {.lex_state = 10}, + [1433] = {.lex_state = 7}, [1434] = {.lex_state = 10}, [1435] = {.lex_state = 10}, - [1436] = {.lex_state = 10}, - [1437] = {.lex_state = 10}, + [1436] = {.lex_state = 7}, + [1437] = {.lex_state = 7}, [1438] = {.lex_state = 10}, [1439] = {.lex_state = 7}, - [1440] = {.lex_state = 10}, - [1441] = {.lex_state = 10}, - [1442] = {.lex_state = 10}, + [1440] = {.lex_state = 7}, + [1441] = {.lex_state = 7}, + [1442] = {.lex_state = 7}, [1443] = {.lex_state = 10}, [1444] = {.lex_state = 7}, - [1445] = {.lex_state = 10}, - [1446] = {.lex_state = 7}, + [1445] = {.lex_state = 7}, + [1446] = {.lex_state = 10}, [1447] = {.lex_state = 10}, [1448] = {.lex_state = 10}, - [1449] = {.lex_state = 7}, + [1449] = {.lex_state = 10}, [1450] = {.lex_state = 10}, - [1451] = {.lex_state = 7}, - [1452] = {.lex_state = 10}, - [1453] = {.lex_state = 10}, + [1451] = {.lex_state = 10}, + [1452] = {.lex_state = 7}, + [1453] = {.lex_state = 7}, [1454] = {.lex_state = 7}, [1455] = {.lex_state = 10}, [1456] = {.lex_state = 10}, - [1457] = {.lex_state = 10}, + [1457] = {.lex_state = 7}, [1458] = {.lex_state = 10}, [1459] = {.lex_state = 10}, - [1460] = {.lex_state = 7}, + [1460] = {.lex_state = 10}, [1461] = {.lex_state = 10}, [1462] = {.lex_state = 7}, - [1463] = {.lex_state = 7}, + [1463] = {.lex_state = 10}, [1464] = {.lex_state = 10}, [1465] = {.lex_state = 10}, [1466] = {.lex_state = 10}, - [1467] = {.lex_state = 10}, - [1468] = {.lex_state = 10}, + [1467] = {.lex_state = 7}, + [1468] = {.lex_state = 7}, [1469] = {.lex_state = 10}, - [1470] = {.lex_state = 10}, - [1471] = {.lex_state = 11, .external_lex_state = 2}, - [1472] = {.lex_state = 14}, - [1473] = {.lex_state = 11, .external_lex_state = 2}, + [1470] = {.lex_state = 7}, + [1471] = {.lex_state = 14}, + [1472] = {.lex_state = 11, .external_lex_state = 2}, + [1473] = {.lex_state = 7}, [1474] = {.lex_state = 11, .external_lex_state = 2}, - [1475] = {.lex_state = 7}, - [1476] = {.lex_state = 14}, - [1477] = {.lex_state = 11, .external_lex_state = 2}, - [1478] = {.lex_state = 7}, - [1479] = {.lex_state = 11, .external_lex_state = 2}, - [1480] = {.lex_state = 14}, - [1481] = {.lex_state = 14}, + [1475] = {.lex_state = 11, .external_lex_state = 2}, + [1476] = {.lex_state = 11, .external_lex_state = 2}, + [1477] = {.lex_state = 14}, + [1478] = {.lex_state = 14}, + [1479] = {.lex_state = 14}, + [1480] = {.lex_state = 11, .external_lex_state = 2}, + [1481] = {.lex_state = 7}, [1482] = {.lex_state = 7}, [1483] = {.lex_state = 7}, - [1484] = {.lex_state = 7}, + [1484] = {.lex_state = 14}, [1485] = {.lex_state = 7}, [1486] = {.lex_state = 7}, [1487] = {.lex_state = 7}, [1488] = {.lex_state = 7}, [1489] = {.lex_state = 7}, [1490] = {.lex_state = 7}, - [1491] = {.lex_state = 14}, - [1492] = {.lex_state = 9}, + [1491] = {.lex_state = 9}, + [1492] = {.lex_state = 14}, [1493] = {.lex_state = 7}, [1494] = {.lex_state = 7}, [1495] = {.lex_state = 7}, @@ -11542,182 +11550,182 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1501] = {.lex_state = 7}, [1502] = {.lex_state = 7}, [1503] = {.lex_state = 7}, - [1504] = {.lex_state = 14}, + [1504] = {.lex_state = 7}, [1505] = {.lex_state = 7}, - [1506] = {.lex_state = 9}, - [1507] = {.lex_state = 8}, + [1506] = {.lex_state = 8}, + [1507] = {.lex_state = 7}, [1508] = {.lex_state = 9}, - [1509] = {.lex_state = 7}, + [1509] = {.lex_state = 9}, [1510] = {.lex_state = 11, .external_lex_state = 2}, - [1511] = {.lex_state = 7}, + [1511] = {.lex_state = 11, .external_lex_state = 2}, [1512] = {.lex_state = 11, .external_lex_state = 2}, [1513] = {.lex_state = 9}, - [1514] = {.lex_state = 11, .external_lex_state = 2}, + [1514] = {.lex_state = 7}, [1515] = {.lex_state = 11, .external_lex_state = 2}, - [1516] = {.lex_state = 7}, - [1517] = {.lex_state = 14}, - [1518] = {.lex_state = 8}, - [1519] = {.lex_state = 9}, - [1520] = {.lex_state = 9}, - [1521] = {.lex_state = 7}, + [1516] = {.lex_state = 9}, + [1517] = {.lex_state = 7}, + [1518] = {.lex_state = 9}, + [1519] = {.lex_state = 14}, + [1520] = {.lex_state = 14}, + [1521] = {.lex_state = 14}, [1522] = {.lex_state = 8}, - [1523] = {.lex_state = 7}, - [1524] = {.lex_state = 8}, + [1523] = {.lex_state = 8}, + [1524] = {.lex_state = 9}, [1525] = {.lex_state = 7}, - [1526] = {.lex_state = 9}, - [1527] = {.lex_state = 9}, + [1526] = {.lex_state = 8}, + [1527] = {.lex_state = 7}, [1528] = {.lex_state = 14}, - [1529] = {.lex_state = 9}, - [1530] = {.lex_state = 9}, + [1529] = {.lex_state = 8}, + [1530] = {.lex_state = 7}, [1531] = {.lex_state = 14}, [1532] = {.lex_state = 9}, - [1533] = {.lex_state = 9}, + [1533] = {.lex_state = 7}, [1534] = {.lex_state = 7}, - [1535] = {.lex_state = 7}, - [1536] = {.lex_state = 14}, - [1537] = {.lex_state = 7}, - [1538] = {.lex_state = 8}, - [1539] = {.lex_state = 14}, + [1535] = {.lex_state = 14}, + [1536] = {.lex_state = 7}, + [1537] = {.lex_state = 9}, + [1538] = {.lex_state = 9}, + [1539] = {.lex_state = 9}, [1540] = {.lex_state = 14}, - [1541] = {.lex_state = 14}, + [1541] = {.lex_state = 9}, [1542] = {.lex_state = 7}, - [1543] = {.lex_state = 7}, - [1544] = {.lex_state = 8}, - [1545] = {.lex_state = 8}, + [1543] = {.lex_state = 8}, + [1544] = {.lex_state = 7}, + [1545] = {.lex_state = 7}, [1546] = {.lex_state = 8}, [1547] = {.lex_state = 8}, - [1548] = {.lex_state = 8}, + [1548] = {.lex_state = 7}, [1549] = {.lex_state = 7}, [1550] = {.lex_state = 8}, - [1551] = {.lex_state = 7}, - [1552] = {.lex_state = 8}, + [1551] = {.lex_state = 8}, + [1552] = {.lex_state = 7}, [1553] = {.lex_state = 7}, [1554] = {.lex_state = 8}, - [1555] = {.lex_state = 7}, - [1556] = {.lex_state = 8}, - [1557] = {.lex_state = 8}, - [1558] = {.lex_state = 7}, - [1559] = {.lex_state = 8}, + [1555] = {.lex_state = 8}, + [1556] = {.lex_state = 7}, + [1557] = {.lex_state = 7}, + [1558] = {.lex_state = 8}, + [1559] = {.lex_state = 7}, [1560] = {.lex_state = 7}, - [1561] = {.lex_state = 8}, + [1561] = {.lex_state = 7}, [1562] = {.lex_state = 7}, [1563] = {.lex_state = 7}, [1564] = {.lex_state = 8}, - [1565] = {.lex_state = 7}, + [1565] = {.lex_state = 8}, [1566] = {.lex_state = 7}, [1567] = {.lex_state = 7}, [1568] = {.lex_state = 8}, - [1569] = {.lex_state = 7}, - [1570] = {.lex_state = 7}, + [1569] = {.lex_state = 8}, + [1570] = {.lex_state = 8}, [1571] = {.lex_state = 7}, - [1572] = {.lex_state = 7}, + [1572] = {.lex_state = 8}, [1573] = {.lex_state = 7}, - [1574] = {.lex_state = 7}, - [1575] = {.lex_state = 7}, - [1576] = {.lex_state = 7}, - [1577] = {.lex_state = 7}, + [1574] = {.lex_state = 9}, + [1575] = {.lex_state = 20}, + [1576] = {.lex_state = 8}, + [1577] = {.lex_state = 8}, [1578] = {.lex_state = 7}, - [1579] = {.lex_state = 7}, + [1579] = {.lex_state = 8}, [1580] = {.lex_state = 7}, - [1581] = {.lex_state = 8}, + [1581] = {.lex_state = 7}, [1582] = {.lex_state = 8}, [1583] = {.lex_state = 8}, - [1584] = {.lex_state = 20}, + [1584] = {.lex_state = 7}, [1585] = {.lex_state = 7}, - [1586] = {.lex_state = 9}, - [1587] = {.lex_state = 8}, - [1588] = {.lex_state = 7}, - [1589] = {.lex_state = 7}, - [1590] = {.lex_state = 7}, + [1586] = {.lex_state = 7}, + [1587] = {.lex_state = 14}, + [1588] = {.lex_state = 8}, + [1589] = {.lex_state = 20}, + [1590] = {.lex_state = 8}, [1591] = {.lex_state = 8}, - [1592] = {.lex_state = 14}, - [1593] = {.lex_state = 7}, + [1592] = {.lex_state = 8}, + [1593] = {.lex_state = 20}, [1594] = {.lex_state = 20}, - [1595] = {.lex_state = 8}, - [1596] = {.lex_state = 8}, - [1597] = {.lex_state = 8}, - [1598] = {.lex_state = 20}, + [1595] = {.lex_state = 7}, + [1596] = {.lex_state = 7}, + [1597] = {.lex_state = 7}, + [1598] = {.lex_state = 8}, [1599] = {.lex_state = 8}, - [1600] = {.lex_state = 8}, - [1601] = {.lex_state = 7}, - [1602] = {.lex_state = 20}, - [1603] = {.lex_state = 8}, - [1604] = {.lex_state = 8}, - [1605] = {.lex_state = 20}, + [1600] = {.lex_state = 7}, + [1601] = {.lex_state = 8}, + [1602] = {.lex_state = 7}, + [1603] = {.lex_state = 20}, + [1604] = {.lex_state = 20}, + [1605] = {.lex_state = 8}, [1606] = {.lex_state = 7}, - [1607] = {.lex_state = 7}, + [1607] = {.lex_state = 20}, [1608] = {.lex_state = 8}, - [1609] = {.lex_state = 8}, - [1610] = {.lex_state = 7}, - [1611] = {.lex_state = 20}, - [1612] = {.lex_state = 8}, - [1613] = {.lex_state = 14}, - [1614] = {.lex_state = 20}, + [1609] = {.lex_state = 7}, + [1610] = {.lex_state = 20}, + [1611] = {.lex_state = 7}, + [1612] = {.lex_state = 7}, + [1613] = {.lex_state = 8}, + [1614] = {.lex_state = 14}, [1615] = {.lex_state = 7}, [1616] = {.lex_state = 7}, - [1617] = {.lex_state = 20}, - [1618] = {.lex_state = 14}, + [1617] = {.lex_state = 7}, + [1618] = {.lex_state = 8}, [1619] = {.lex_state = 7}, - [1620] = {.lex_state = 8}, - [1621] = {.lex_state = 8}, - [1622] = {.lex_state = 20}, - [1623] = {.lex_state = 20}, + [1620] = {.lex_state = 7}, + [1621] = {.lex_state = 20}, + [1622] = {.lex_state = 7}, + [1623] = {.lex_state = 14}, [1624] = {.lex_state = 20}, - [1625] = {.lex_state = 7}, - [1626] = {.lex_state = 20}, + [1625] = {.lex_state = 8}, + [1626] = {.lex_state = 7}, [1627] = {.lex_state = 7}, [1628] = {.lex_state = 7}, [1629] = {.lex_state = 7}, - [1630] = {.lex_state = 7}, + [1630] = {.lex_state = 20}, [1631] = {.lex_state = 8}, - [1632] = {.lex_state = 7}, - [1633] = {.lex_state = 8}, - [1634] = {.lex_state = 7}, + [1632] = {.lex_state = 20}, + [1633] = {.lex_state = 7}, + [1634] = {.lex_state = 8}, [1635] = {.lex_state = 8}, [1636] = {.lex_state = 7}, - [1637] = {.lex_state = 8}, - [1638] = {.lex_state = 7}, + [1637] = {.lex_state = 7}, + [1638] = {.lex_state = 8}, [1639] = {.lex_state = 8}, [1640] = {.lex_state = 8}, [1641] = {.lex_state = 8}, [1642] = {.lex_state = 8}, [1643] = {.lex_state = 8}, - [1644] = {.lex_state = 8}, + [1644] = {.lex_state = 7}, [1645] = {.lex_state = 8}, - [1646] = {.lex_state = 8}, + [1646] = {.lex_state = 7}, [1647] = {.lex_state = 8}, - [1648] = {.lex_state = 8}, + [1648] = {.lex_state = 7}, [1649] = {.lex_state = 8}, - [1650] = {.lex_state = 8}, - [1651] = {.lex_state = 8}, - [1652] = {.lex_state = 8}, - [1653] = {.lex_state = 8}, + [1650] = {.lex_state = 7}, + [1651] = {.lex_state = 7}, + [1652] = {.lex_state = 7}, + [1653] = {.lex_state = 7}, [1654] = {.lex_state = 7}, [1655] = {.lex_state = 8}, - [1656] = {.lex_state = 8}, - [1657] = {.lex_state = 8}, - [1658] = {.lex_state = 8}, - [1659] = {.lex_state = 8}, - [1660] = {.lex_state = 7}, - [1661] = {.lex_state = 8}, + [1656] = {.lex_state = 7}, + [1657] = {.lex_state = 7}, + [1658] = {.lex_state = 7}, + [1659] = {.lex_state = 7}, + [1660] = {.lex_state = 8}, + [1661] = {.lex_state = 7}, [1662] = {.lex_state = 8}, - [1663] = {.lex_state = 8}, - [1664] = {.lex_state = 8}, + [1663] = {.lex_state = 7}, + [1664] = {.lex_state = 7}, [1665] = {.lex_state = 8}, [1666] = {.lex_state = 8}, [1667] = {.lex_state = 8}, - [1668] = {.lex_state = 8}, + [1668] = {.lex_state = 7}, [1669] = {.lex_state = 8}, [1670] = {.lex_state = 8}, - [1671] = {.lex_state = 7}, + [1671] = {.lex_state = 8}, [1672] = {.lex_state = 8}, [1673] = {.lex_state = 8}, - [1674] = {.lex_state = 7}, - [1675] = {.lex_state = 8}, - [1676] = {.lex_state = 8}, + [1674] = {.lex_state = 8}, + [1675] = {.lex_state = 7}, + [1676] = {.lex_state = 7}, [1677] = {.lex_state = 8}, [1678] = {.lex_state = 8}, - [1679] = {.lex_state = 8}, + [1679] = {.lex_state = 7}, [1680] = {.lex_state = 8}, [1681] = {.lex_state = 8}, [1682] = {.lex_state = 7}, @@ -11728,53 +11736,53 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1687] = {.lex_state = 8}, [1688] = {.lex_state = 8}, [1689] = {.lex_state = 8}, - [1690] = {.lex_state = 7}, + [1690] = {.lex_state = 8}, [1691] = {.lex_state = 8}, [1692] = {.lex_state = 8}, - [1693] = {.lex_state = 8}, - [1694] = {.lex_state = 8}, - [1695] = {.lex_state = 7}, - [1696] = {.lex_state = 8}, - [1697] = {.lex_state = 7}, - [1698] = {.lex_state = 7}, - [1699] = {.lex_state = 7}, + [1693] = {.lex_state = 7}, + [1694] = {.lex_state = 7}, + [1695] = {.lex_state = 8}, + [1696] = {.lex_state = 7}, + [1697] = {.lex_state = 8}, + [1698] = {.lex_state = 8}, + [1699] = {.lex_state = 8}, [1700] = {.lex_state = 8}, - [1701] = {.lex_state = 8}, - [1702] = {.lex_state = 7}, + [1701] = {.lex_state = 7}, + [1702] = {.lex_state = 8}, [1703] = {.lex_state = 7}, [1704] = {.lex_state = 7}, [1705] = {.lex_state = 8}, [1706] = {.lex_state = 8}, - [1707] = {.lex_state = 8}, + [1707] = {.lex_state = 7}, [1708] = {.lex_state = 8}, - [1709] = {.lex_state = 8}, - [1710] = {.lex_state = 7}, + [1709] = {.lex_state = 7}, + [1710] = {.lex_state = 8}, [1711] = {.lex_state = 7}, - [1712] = {.lex_state = 7}, - [1713] = {.lex_state = 7}, - [1714] = {.lex_state = 7}, - [1715] = {.lex_state = 7}, - [1716] = {.lex_state = 7}, + [1712] = {.lex_state = 8}, + [1713] = {.lex_state = 8}, + [1714] = {.lex_state = 8}, + [1715] = {.lex_state = 8}, + [1716] = {.lex_state = 8}, [1717] = {.lex_state = 7}, - [1718] = {.lex_state = 7}, - [1719] = {.lex_state = 7}, + [1718] = {.lex_state = 8}, + [1719] = {.lex_state = 8}, [1720] = {.lex_state = 7}, - [1721] = {.lex_state = 7}, + [1721] = {.lex_state = 8}, [1722] = {.lex_state = 7}, [1723] = {.lex_state = 8}, - [1724] = {.lex_state = 8}, - [1725] = {.lex_state = 8}, + [1724] = {.lex_state = 7}, + [1725] = {.lex_state = 7}, [1726] = {.lex_state = 8}, [1727] = {.lex_state = 7}, - [1728] = {.lex_state = 8}, + [1728] = {.lex_state = 7}, [1729] = {.lex_state = 8}, [1730] = {.lex_state = 8}, [1731] = {.lex_state = 8}, [1732] = {.lex_state = 8}, - [1733] = {.lex_state = 7}, + [1733] = {.lex_state = 8}, [1734] = {.lex_state = 8}, - [1735] = {.lex_state = 8}, - [1736] = {.lex_state = 8}, + [1735] = {.lex_state = 7}, + [1736] = {.lex_state = 7}, [1737] = {.lex_state = 8}, [1738] = {.lex_state = 8}, [1739] = {.lex_state = 8}, @@ -11782,33 +11790,33 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1741] = {.lex_state = 8}, [1742] = {.lex_state = 8}, [1743] = {.lex_state = 8}, - [1744] = {.lex_state = 8}, + [1744] = {.lex_state = 7}, [1745] = {.lex_state = 8}, [1746] = {.lex_state = 7}, [1747] = {.lex_state = 8}, - [1748] = {.lex_state = 7}, + [1748] = {.lex_state = 8}, [1749] = {.lex_state = 8}, - [1750] = {.lex_state = 8}, - [1751] = {.lex_state = 7}, + [1750] = {.lex_state = 7}, + [1751] = {.lex_state = 8}, [1752] = {.lex_state = 8}, - [1753] = {.lex_state = 8}, + [1753] = {.lex_state = 14}, [1754] = {.lex_state = 8}, [1755] = {.lex_state = 8}, [1756] = {.lex_state = 8}, - [1757] = {.lex_state = 8}, - [1758] = {.lex_state = 8}, + [1757] = {.lex_state = 7}, + [1758] = {.lex_state = 7}, [1759] = {.lex_state = 8}, - [1760] = {.lex_state = 8}, + [1760] = {.lex_state = 7}, [1761] = {.lex_state = 8}, - [1762] = {.lex_state = 8}, + [1762] = {.lex_state = 7}, [1763] = {.lex_state = 8}, [1764] = {.lex_state = 8}, - [1765] = {.lex_state = 8}, + [1765] = {.lex_state = 7}, [1766] = {.lex_state = 8}, [1767] = {.lex_state = 8}, [1768] = {.lex_state = 7}, [1769] = {.lex_state = 8}, - [1770] = {.lex_state = 8}, + [1770] = {.lex_state = 7}, [1771] = {.lex_state = 8}, [1772] = {.lex_state = 8}, [1773] = {.lex_state = 8}, @@ -11816,62 +11824,62 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1775] = {.lex_state = 8}, [1776] = {.lex_state = 8}, [1777] = {.lex_state = 8}, - [1778] = {.lex_state = 8}, + [1778] = {.lex_state = 7}, [1779] = {.lex_state = 8}, [1780] = {.lex_state = 8}, - [1781] = {.lex_state = 8}, - [1782] = {.lex_state = 7}, - [1783] = {.lex_state = 8}, + [1781] = {.lex_state = 7}, + [1782] = {.lex_state = 8}, + [1783] = {.lex_state = 7}, [1784] = {.lex_state = 8}, [1785] = {.lex_state = 8}, - [1786] = {.lex_state = 7}, - [1787] = {.lex_state = 8}, - [1788] = {.lex_state = 8}, + [1786] = {.lex_state = 8}, + [1787] = {.lex_state = 7}, + [1788] = {.lex_state = 7}, [1789] = {.lex_state = 8}, - [1790] = {.lex_state = 8}, - [1791] = {.lex_state = 8}, - [1792] = {.lex_state = 8}, - [1793] = {.lex_state = 7}, - [1794] = {.lex_state = 7}, - [1795] = {.lex_state = 14}, - [1796] = {.lex_state = 7}, + [1790] = {.lex_state = 7}, + [1791] = {.lex_state = 7}, + [1792] = {.lex_state = 7}, + [1793] = {.lex_state = 8}, + [1794] = {.lex_state = 8}, + [1795] = {.lex_state = 7}, + [1796] = {.lex_state = 8}, [1797] = {.lex_state = 7}, - [1798] = {.lex_state = 7}, + [1798] = {.lex_state = 8}, [1799] = {.lex_state = 7}, - [1800] = {.lex_state = 7}, - [1801] = {.lex_state = 7}, + [1800] = {.lex_state = 8}, + [1801] = {.lex_state = 8}, [1802] = {.lex_state = 7}, [1803] = {.lex_state = 7}, [1804] = {.lex_state = 7}, - [1805] = {.lex_state = 7}, - [1806] = {.lex_state = 7}, - [1807] = {.lex_state = 7}, + [1805] = {.lex_state = 8}, + [1806] = {.lex_state = 8}, + [1807] = {.lex_state = 8}, [1808] = {.lex_state = 7}, [1809] = {.lex_state = 7}, - [1810] = {.lex_state = 7}, + [1810] = {.lex_state = 8}, [1811] = {.lex_state = 7}, - [1812] = {.lex_state = 7}, - [1813] = {.lex_state = 7}, - [1814] = {.lex_state = 7}, + [1812] = {.lex_state = 8}, + [1813] = {.lex_state = 8}, + [1814] = {.lex_state = 8}, [1815] = {.lex_state = 7}, [1816] = {.lex_state = 7}, - [1817] = {.lex_state = 7}, - [1818] = {.lex_state = 7}, + [1817] = {.lex_state = 8}, + [1818] = {.lex_state = 8}, [1819] = {.lex_state = 7}, - [1820] = {.lex_state = 7}, + [1820] = {.lex_state = 8}, [1821] = {.lex_state = 7}, - [1822] = {.lex_state = 7}, - [1823] = {.lex_state = 7}, + [1822] = {.lex_state = 8}, + [1823] = {.lex_state = 8}, [1824] = {.lex_state = 7}, [1825] = {.lex_state = 7}, - [1826] = {.lex_state = 7}, - [1827] = {.lex_state = 7}, - [1828] = {.lex_state = 7}, + [1826] = {.lex_state = 8}, + [1827] = {.lex_state = 8}, + [1828] = {.lex_state = 8}, [1829] = {.lex_state = 7}, [1830] = {.lex_state = 7}, - [1831] = {.lex_state = 7}, + [1831] = {.lex_state = 8}, [1832] = {.lex_state = 7}, - [1833] = {.lex_state = 7}, + [1833] = {.lex_state = 8}, [1834] = {.lex_state = 7}, [1835] = {.lex_state = 7}, [1836] = {.lex_state = 7}, @@ -11884,13 +11892,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1843] = {.lex_state = 7}, [1844] = {.lex_state = 7}, [1845] = {.lex_state = 7}, - [1846] = {.lex_state = 14}, - [1847] = {.lex_state = 8}, + [1846] = {.lex_state = 7}, + [1847] = {.lex_state = 7}, [1848] = {.lex_state = 7}, [1849] = {.lex_state = 7}, [1850] = {.lex_state = 7}, [1851] = {.lex_state = 7}, - [1852] = {.lex_state = 7}, + [1852] = {.lex_state = 14}, [1853] = {.lex_state = 7}, [1854] = {.lex_state = 7}, [1855] = {.lex_state = 7}, @@ -11899,21 +11907,21 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1858] = {.lex_state = 7}, [1859] = {.lex_state = 7}, [1860] = {.lex_state = 7}, - [1861] = {.lex_state = 7}, + [1861] = {.lex_state = 8}, [1862] = {.lex_state = 7}, [1863] = {.lex_state = 7}, [1864] = {.lex_state = 7}, - [1865] = {.lex_state = 8}, + [1865] = {.lex_state = 7}, [1866] = {.lex_state = 7}, - [1867] = {.lex_state = 7}, + [1867] = {.lex_state = 8}, [1868] = {.lex_state = 7}, [1869] = {.lex_state = 7}, [1870] = {.lex_state = 7}, - [1871] = {.lex_state = 7}, + [1871] = {.lex_state = 8}, [1872] = {.lex_state = 7}, [1873] = {.lex_state = 7}, [1874] = {.lex_state = 14}, - [1875] = {.lex_state = 8}, + [1875] = {.lex_state = 7}, [1876] = {.lex_state = 14}, [1877] = {.lex_state = 14}, [1878] = {.lex_state = 14}, @@ -11951,81 +11959,81 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1910] = {.lex_state = 16}, [1911] = {.lex_state = 16}, [1912] = {.lex_state = 16}, - [1913] = {.lex_state = 16}, - [1914] = {.lex_state = 27}, - [1915] = {.lex_state = 16}, + [1913] = {.lex_state = 27}, + [1914] = {.lex_state = 16}, + [1915] = {.lex_state = 27}, [1916] = {.lex_state = 27}, - [1917] = {.lex_state = 27}, - [1918] = {.lex_state = 16}, + [1917] = {.lex_state = 16}, + [1918] = {.lex_state = 27}, [1919] = {.lex_state = 16}, - [1920] = {.lex_state = 27}, + [1920] = {.lex_state = 16}, [1921] = {.lex_state = 14}, [1922] = {.lex_state = 14}, [1923] = {.lex_state = 14}, - [1924] = {.lex_state = 14}, + [1924] = {.lex_state = 27}, [1925] = {.lex_state = 14}, - [1926] = {.lex_state = 27}, + [1926] = {.lex_state = 14}, [1927] = {.lex_state = 14}, [1928] = {.lex_state = 14}, [1929] = {.lex_state = 14}, - [1930] = {.lex_state = 14}, + [1930] = {.lex_state = 16}, [1931] = {.lex_state = 14}, [1932] = {.lex_state = 14}, [1933] = {.lex_state = 14}, - [1934] = {.lex_state = 14}, - [1935] = {.lex_state = 16}, - [1936] = {.lex_state = 16}, - [1937] = {.lex_state = 16}, - [1938] = {.lex_state = 14}, + [1934] = {.lex_state = 16}, + [1935] = {.lex_state = 14}, + [1936] = {.lex_state = 14}, + [1937] = {.lex_state = 14}, + [1938] = {.lex_state = 27}, [1939] = {.lex_state = 27}, [1940] = {.lex_state = 14}, [1941] = {.lex_state = 27}, - [1942] = {.lex_state = 16}, + [1942] = {.lex_state = 27}, [1943] = {.lex_state = 27}, - [1944] = {.lex_state = 14}, - [1945] = {.lex_state = 27}, - [1946] = {.lex_state = 27}, + [1944] = {.lex_state = 27}, + [1945] = {.lex_state = 16}, + [1946] = {.lex_state = 14}, [1947] = {.lex_state = 27}, - [1948] = {.lex_state = 27}, + [1948] = {.lex_state = 14}, [1949] = {.lex_state = 14}, [1950] = {.lex_state = 27}, [1951] = {.lex_state = 14}, [1952] = {.lex_state = 14}, - [1953] = {.lex_state = 27}, - [1954] = {.lex_state = 27}, - [1955] = {.lex_state = 16}, + [1953] = {.lex_state = 16}, + [1954] = {.lex_state = 14}, + [1955] = {.lex_state = 27}, [1956] = {.lex_state = 27}, [1957] = {.lex_state = 27}, - [1958] = {.lex_state = 16}, + [1958] = {.lex_state = 27}, [1959] = {.lex_state = 27}, [1960] = {.lex_state = 27}, - [1961] = {.lex_state = 14}, - [1962] = {.lex_state = 27}, + [1961] = {.lex_state = 16}, + [1962] = {.lex_state = 16}, [1963] = {.lex_state = 27}, - [1964] = {.lex_state = 14}, - [1965] = {.lex_state = 27}, + [1964] = {.lex_state = 27}, + [1965] = {.lex_state = 14}, [1966] = {.lex_state = 27}, [1967] = {.lex_state = 27}, [1968] = {.lex_state = 27}, [1969] = {.lex_state = 27}, [1970] = {.lex_state = 27}, [1971] = {.lex_state = 27}, - [1972] = {.lex_state = 27}, + [1972] = {.lex_state = 14}, [1973] = {.lex_state = 27}, - [1974] = {.lex_state = 14}, - [1975] = {.lex_state = 27}, + [1974] = {.lex_state = 27}, + [1975] = {.lex_state = 14}, [1976] = {.lex_state = 27}, - [1977] = {.lex_state = 14}, - [1978] = {.lex_state = 27}, + [1977] = {.lex_state = 27}, + [1978] = {.lex_state = 14}, [1979] = {.lex_state = 27}, - [1980] = {.lex_state = 14}, - [1981] = {.lex_state = 16}, + [1980] = {.lex_state = 27}, + [1981] = {.lex_state = 27}, [1982] = {.lex_state = 14}, [1983] = {.lex_state = 27}, [1984] = {.lex_state = 27}, - [1985] = {.lex_state = 27}, + [1985] = {.lex_state = 16}, [1986] = {.lex_state = 27}, - [1987] = {.lex_state = 14}, + [1987] = {.lex_state = 27}, [1988] = {.lex_state = 27}, [1989] = {.lex_state = 27}, [1990] = {.lex_state = 27}, @@ -12035,21 +12043,21 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1994] = {.lex_state = 27}, [1995] = {.lex_state = 27}, [1996] = {.lex_state = 27}, - [1997] = {.lex_state = 27}, - [1998] = {.lex_state = 14}, - [1999] = {.lex_state = 14}, - [2000] = {.lex_state = 16}, - [2001] = {.lex_state = 27}, - [2002] = {.lex_state = 16}, + [1997] = {.lex_state = 16}, + [1998] = {.lex_state = 27}, + [1999] = {.lex_state = 27}, + [2000] = {.lex_state = 14}, + [2001] = {.lex_state = 14}, + [2002] = {.lex_state = 17}, [2003] = {.lex_state = 16}, - [2004] = {.lex_state = 27}, - [2005] = {.lex_state = 27}, - [2006] = {.lex_state = 16}, - [2007] = {.lex_state = 17}, - [2008] = {.lex_state = 16}, - [2009] = {.lex_state = 16}, + [2004] = {.lex_state = 16}, + [2005] = {.lex_state = 16}, + [2006] = {.lex_state = 27}, + [2007] = {.lex_state = 16}, + [2008] = {.lex_state = 27}, + [2009] = {.lex_state = 27}, [2010] = {.lex_state = 16}, - [2011] = {.lex_state = 27}, + [2011] = {.lex_state = 16}, [2012] = {.lex_state = 16}, [2013] = {.lex_state = 16}, [2014] = {.lex_state = 16}, @@ -12072,64 +12080,64 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2031] = {.lex_state = 14}, [2032] = {.lex_state = 14}, [2033] = {.lex_state = 14}, - [2034] = {.lex_state = 16}, - [2035] = {.lex_state = 14}, - [2036] = {.lex_state = 14}, - [2037] = {.lex_state = 16}, - [2038] = {.lex_state = 16}, - [2039] = {.lex_state = 27}, - [2040] = {.lex_state = 17}, + [2034] = {.lex_state = 14}, + [2035] = {.lex_state = 27}, + [2036] = {.lex_state = 16}, + [2037] = {.lex_state = 14}, + [2038] = {.lex_state = 23}, + [2039] = {.lex_state = 14}, + [2040] = {.lex_state = 14}, [2041] = {.lex_state = 14}, - [2042] = {.lex_state = 23}, - [2043] = {.lex_state = 14}, + [2042] = {.lex_state = 27}, + [2043] = {.lex_state = 16}, [2044] = {.lex_state = 16}, - [2045] = {.lex_state = 17}, + [2045] = {.lex_state = 14}, [2046] = {.lex_state = 14}, - [2047] = {.lex_state = 27}, - [2048] = {.lex_state = 14}, - [2049] = {.lex_state = 23}, - [2050] = {.lex_state = 21}, + [2047] = {.lex_state = 21}, + [2048] = {.lex_state = 17}, + [2049] = {.lex_state = 21}, + [2050] = {.lex_state = 16}, [2051] = {.lex_state = 14}, [2052] = {.lex_state = 14}, - [2053] = {.lex_state = 27}, + [2053] = {.lex_state = 23}, [2054] = {.lex_state = 14}, - [2055] = {.lex_state = 14}, - [2056] = {.lex_state = 27}, + [2055] = {.lex_state = 16}, + [2056] = {.lex_state = 16}, [2057] = {.lex_state = 14}, - [2058] = {.lex_state = 16}, - [2059] = {.lex_state = 27}, - [2060] = {.lex_state = 14}, + [2058] = {.lex_state = 14}, + [2059] = {.lex_state = 16}, + [2060] = {.lex_state = 27}, [2061] = {.lex_state = 14}, [2062] = {.lex_state = 14}, - [2063] = {.lex_state = 14}, - [2064] = {.lex_state = 21}, + [2063] = {.lex_state = 21}, + [2064] = {.lex_state = 17}, [2065] = {.lex_state = 16}, - [2066] = {.lex_state = 17}, - [2067] = {.lex_state = 17}, - [2068] = {.lex_state = 21}, - [2069] = {.lex_state = 14}, - [2070] = {.lex_state = 16}, - [2071] = {.lex_state = 21}, + [2066] = {.lex_state = 14}, + [2067] = {.lex_state = 16}, + [2068] = {.lex_state = 17}, + [2069] = {.lex_state = 21}, + [2070] = {.lex_state = 14}, + [2071] = {.lex_state = 27}, [2072] = {.lex_state = 16}, - [2073] = {.lex_state = 16}, - [2074] = {.lex_state = 16}, - [2075] = {.lex_state = 14}, + [2073] = {.lex_state = 27}, + [2074] = {.lex_state = 14}, + [2075] = {.lex_state = 17}, [2076] = {.lex_state = 27}, [2077] = {.lex_state = 27}, - [2078] = {.lex_state = 27}, + [2078] = {.lex_state = 16}, [2079] = {.lex_state = 27}, [2080] = {.lex_state = 27}, - [2081] = {.lex_state = 27}, - [2082] = {.lex_state = 27}, + [2081] = {.lex_state = 16}, + [2082] = {.lex_state = 10}, [2083] = {.lex_state = 27}, [2084] = {.lex_state = 27}, [2085] = {.lex_state = 27}, [2086] = {.lex_state = 27}, - [2087] = {.lex_state = 23}, - [2088] = {.lex_state = 27}, - [2089] = {.lex_state = 14}, + [2087] = {.lex_state = 27}, + [2088] = {.lex_state = 14}, + [2089] = {.lex_state = 27}, [2090] = {.lex_state = 14}, - [2091] = {.lex_state = 27}, + [2091] = {.lex_state = 17}, [2092] = {.lex_state = 27}, [2093] = {.lex_state = 27}, [2094] = {.lex_state = 27}, @@ -12141,84 +12149,84 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2100] = {.lex_state = 27}, [2101] = {.lex_state = 27}, [2102] = {.lex_state = 27}, - [2103] = {.lex_state = 27}, + [2103] = {.lex_state = 14}, [2104] = {.lex_state = 27}, - [2105] = {.lex_state = 23}, + [2105] = {.lex_state = 16}, [2106] = {.lex_state = 27}, - [2107] = {.lex_state = 27}, - [2108] = {.lex_state = 14}, - [2109] = {.lex_state = 14}, + [2107] = {.lex_state = 23}, + [2108] = {.lex_state = 23}, + [2109] = {.lex_state = 27}, [2110] = {.lex_state = 27}, - [2111] = {.lex_state = 23}, + [2111] = {.lex_state = 27}, [2112] = {.lex_state = 27}, - [2113] = {.lex_state = 10}, + [2113] = {.lex_state = 27}, [2114] = {.lex_state = 27}, - [2115] = {.lex_state = 27}, - [2116] = {.lex_state = 14}, - [2117] = {.lex_state = 17}, - [2118] = {.lex_state = 16}, - [2119] = {.lex_state = 16}, - [2120] = {.lex_state = 16}, - [2121] = {.lex_state = 27}, + [2115] = {.lex_state = 23}, + [2116] = {.lex_state = 23}, + [2117] = {.lex_state = 27}, + [2118] = {.lex_state = 27}, + [2119] = {.lex_state = 27}, + [2120] = {.lex_state = 27}, + [2121] = {.lex_state = 16}, [2122] = {.lex_state = 27}, - [2123] = {.lex_state = 23}, - [2124] = {.lex_state = 16}, + [2123] = {.lex_state = 14}, + [2124] = {.lex_state = 14}, [2125] = {.lex_state = 27}, [2126] = {.lex_state = 27}, [2127] = {.lex_state = 27}, - [2128] = {.lex_state = 17}, - [2129] = {.lex_state = 23}, - [2130] = {.lex_state = 17}, - [2131] = {.lex_state = 27}, - [2132] = {.lex_state = 14}, - [2133] = {.lex_state = 14}, - [2134] = {.lex_state = 17}, + [2128] = {.lex_state = 14}, + [2129] = {.lex_state = 14}, + [2130] = {.lex_state = 6}, + [2131] = {.lex_state = 17}, + [2132] = {.lex_state = 17}, + [2133] = {.lex_state = 27}, + [2134] = {.lex_state = 14}, [2135] = {.lex_state = 10}, - [2136] = {.lex_state = 10}, - [2137] = {.lex_state = 6}, - [2138] = {.lex_state = 17}, + [2136] = {.lex_state = 27}, + [2137] = {.lex_state = 27}, + [2138] = {.lex_state = 14}, [2139] = {.lex_state = 14}, - [2140] = {.lex_state = 27}, + [2140] = {.lex_state = 14}, [2141] = {.lex_state = 14}, [2142] = {.lex_state = 14}, - [2143] = {.lex_state = 14}, - [2144] = {.lex_state = 14}, - [2145] = {.lex_state = 14}, - [2146] = {.lex_state = 14}, - [2147] = {.lex_state = 27}, - [2148] = {.lex_state = 14}, - [2149] = {.lex_state = 17}, + [2143] = {.lex_state = 10}, + [2144] = {.lex_state = 23}, + [2145] = {.lex_state = 27}, + [2146] = {.lex_state = 27}, + [2147] = {.lex_state = 17}, + [2148] = {.lex_state = 10}, + [2149] = {.lex_state = 27}, [2150] = {.lex_state = 16}, - [2151] = {.lex_state = 6}, - [2152] = {.lex_state = 10}, + [2151] = {.lex_state = 14}, + [2152] = {.lex_state = 17}, [2153] = {.lex_state = 14}, [2154] = {.lex_state = 14}, - [2155] = {.lex_state = 70}, + [2155] = {.lex_state = 14}, [2156] = {.lex_state = 14}, - [2157] = {.lex_state = 10}, - [2158] = {.lex_state = 14}, - [2159] = {.lex_state = 14}, + [2157] = {.lex_state = 6}, + [2158] = {.lex_state = 70}, + [2159] = {.lex_state = 27}, [2160] = {.lex_state = 14}, [2161] = {.lex_state = 14}, - [2162] = {.lex_state = 6}, + [2162] = {.lex_state = 14}, [2163] = {.lex_state = 14}, [2164] = {.lex_state = 14}, [2165] = {.lex_state = 27}, - [2166] = {.lex_state = 14}, + [2166] = {.lex_state = 17}, [2167] = {.lex_state = 14}, - [2168] = {.lex_state = 27}, - [2169] = {.lex_state = 14}, - [2170] = {.lex_state = 27}, + [2168] = {.lex_state = 14}, + [2169] = {.lex_state = 6}, + [2170] = {.lex_state = 10}, [2171] = {.lex_state = 14}, - [2172] = {.lex_state = 27}, + [2172] = {.lex_state = 14}, [2173] = {.lex_state = 14}, - [2174] = {.lex_state = 27}, + [2174] = {.lex_state = 14}, [2175] = {.lex_state = 14}, - [2176] = {.lex_state = 23}, - [2177] = {.lex_state = 14}, + [2176] = {.lex_state = 14}, + [2177] = {.lex_state = 23}, [2178] = {.lex_state = 14}, [2179] = {.lex_state = 14}, - [2180] = {.lex_state = 14}, + [2180] = {.lex_state = 23}, [2181] = {.lex_state = 14}, [2182] = {.lex_state = 23}, [2183] = {.lex_state = 14}, @@ -12230,559 +12238,559 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2189] = {.lex_state = 14}, [2190] = {.lex_state = 14}, [2191] = {.lex_state = 14}, - [2192] = {.lex_state = 14}, + [2192] = {.lex_state = 23}, [2193] = {.lex_state = 14}, [2194] = {.lex_state = 14}, [2195] = {.lex_state = 14}, [2196] = {.lex_state = 14}, [2197] = {.lex_state = 14}, - [2198] = {.lex_state = 23}, + [2198] = {.lex_state = 14}, [2199] = {.lex_state = 23}, [2200] = {.lex_state = 23}, - [2201] = {.lex_state = 14}, - [2202] = {.lex_state = 14}, + [2201] = {.lex_state = 23}, + [2202] = {.lex_state = 23}, [2203] = {.lex_state = 14}, - [2204] = {.lex_state = 14}, - [2205] = {.lex_state = 14}, + [2204] = {.lex_state = 23}, + [2205] = {.lex_state = 21}, [2206] = {.lex_state = 14}, [2207] = {.lex_state = 14}, [2208] = {.lex_state = 14}, [2209] = {.lex_state = 14}, [2210] = {.lex_state = 14}, - [2211] = {.lex_state = 23}, - [2212] = {.lex_state = 14}, - [2213] = {.lex_state = 21}, - [2214] = {.lex_state = 23}, + [2211] = {.lex_state = 14}, + [2212] = {.lex_state = 10}, + [2213] = {.lex_state = 14}, + [2214] = {.lex_state = 14}, [2215] = {.lex_state = 14}, - [2216] = {.lex_state = 10}, + [2216] = {.lex_state = 14}, [2217] = {.lex_state = 14}, [2218] = {.lex_state = 14}, - [2219] = {.lex_state = 14}, + [2219] = {.lex_state = 23}, [2220] = {.lex_state = 14}, - [2221] = {.lex_state = 23}, - [2222] = {.lex_state = 23}, + [2221] = {.lex_state = 14}, + [2222] = {.lex_state = 14}, [2223] = {.lex_state = 14}, [2224] = {.lex_state = 14}, [2225] = {.lex_state = 14}, - [2226] = {.lex_state = 14}, - [2227] = {.lex_state = 14}, + [2226] = {.lex_state = 23}, + [2227] = {.lex_state = 23}, [2228] = {.lex_state = 14}, - [2229] = {.lex_state = 23}, - [2230] = {.lex_state = 23}, - [2231] = {.lex_state = 23}, - [2232] = {.lex_state = 10}, - [2233] = {.lex_state = 17}, - [2234] = {.lex_state = 27}, - [2235] = {.lex_state = 23}, - [2236] = {.lex_state = 27}, - [2237] = {.lex_state = 23}, - [2238] = {.lex_state = 70}, - [2239] = {.lex_state = 14}, - [2240] = {.lex_state = 14}, + [2229] = {.lex_state = 14}, + [2230] = {.lex_state = 14}, + [2231] = {.lex_state = 14}, + [2232] = {.lex_state = 70}, + [2233] = {.lex_state = 70}, + [2234] = {.lex_state = 70}, + [2235] = {.lex_state = 70}, + [2236] = {.lex_state = 70}, + [2237] = {.lex_state = 70}, + [2238] = {.lex_state = 14}, + [2239] = {.lex_state = 70}, + [2240] = {.lex_state = 70}, [2241] = {.lex_state = 70}, - [2242] = {.lex_state = 70}, - [2243] = {.lex_state = 70}, + [2242] = {.lex_state = 14}, + [2243] = {.lex_state = 17}, [2244] = {.lex_state = 70}, - [2245] = {.lex_state = 70}, + [2245] = {.lex_state = 14}, [2246] = {.lex_state = 70}, [2247] = {.lex_state = 70}, - [2248] = {.lex_state = 70}, - [2249] = {.lex_state = 23}, - [2250] = {.lex_state = 23}, - [2251] = {.lex_state = 14}, + [2248] = {.lex_state = 3}, + [2249] = {.lex_state = 14}, + [2250] = {.lex_state = 70}, + [2251] = {.lex_state = 23}, [2252] = {.lex_state = 70}, - [2253] = {.lex_state = 70}, - [2254] = {.lex_state = 70}, - [2255] = {.lex_state = 14}, - [2256] = {.lex_state = 70}, + [2253] = {.lex_state = 27}, + [2254] = {.lex_state = 23}, + [2255] = {.lex_state = 23}, + [2256] = {.lex_state = 23}, [2257] = {.lex_state = 3}, - [2258] = {.lex_state = 70}, + [2258] = {.lex_state = 27}, [2259] = {.lex_state = 70}, [2260] = {.lex_state = 14}, - [2261] = {.lex_state = 23}, - [2262] = {.lex_state = 23}, + [2261] = {.lex_state = 10}, + [2262] = {.lex_state = 70}, [2263] = {.lex_state = 70}, - [2264] = {.lex_state = 23}, - [2265] = {.lex_state = 23}, - [2266] = {.lex_state = 14}, - [2267] = {.lex_state = 70}, - [2268] = {.lex_state = 70}, - [2269] = {.lex_state = 70}, - [2270] = {.lex_state = 70}, + [2264] = {.lex_state = 70}, + [2265] = {.lex_state = 70}, + [2266] = {.lex_state = 70}, + [2267] = {.lex_state = 14}, + [2268] = {.lex_state = 23}, + [2269] = {.lex_state = 14}, + [2270] = {.lex_state = 23}, [2271] = {.lex_state = 70}, - [2272] = {.lex_state = 14}, + [2272] = {.lex_state = 70}, [2273] = {.lex_state = 70}, [2274] = {.lex_state = 70}, [2275] = {.lex_state = 70}, - [2276] = {.lex_state = 70}, - [2277] = {.lex_state = 70}, + [2276] = {.lex_state = 23}, + [2277] = {.lex_state = 23}, [2278] = {.lex_state = 70}, - [2279] = {.lex_state = 70}, - [2280] = {.lex_state = 70}, - [2281] = {.lex_state = 3}, - [2282] = {.lex_state = 10}, - [2283] = {.lex_state = 14}, - [2284] = {.lex_state = 3}, - [2285] = {.lex_state = 10}, + [2279] = {.lex_state = 3}, + [2280] = {.lex_state = 10}, + [2281] = {.lex_state = 70}, + [2282] = {.lex_state = 70}, + [2283] = {.lex_state = 70}, + [2284] = {.lex_state = 14}, + [2285] = {.lex_state = 14}, [2286] = {.lex_state = 167}, - [2287] = {.lex_state = 14}, + [2287] = {.lex_state = 10}, [2288] = {.lex_state = 14}, [2289] = {.lex_state = 70}, [2290] = {.lex_state = 14}, [2291] = {.lex_state = 14}, - [2292] = {.lex_state = 27}, - [2293] = {.lex_state = 18}, - [2294] = {.lex_state = 27}, - [2295] = {.lex_state = 14}, + [2292] = {.lex_state = 14}, + [2293] = {.lex_state = 14}, + [2294] = {.lex_state = 14}, + [2295] = {.lex_state = 17}, [2296] = {.lex_state = 14}, [2297] = {.lex_state = 14}, - [2298] = {.lex_state = 27}, - [2299] = {.lex_state = 17}, + [2298] = {.lex_state = 14}, + [2299] = {.lex_state = 14}, [2300] = {.lex_state = 27}, - [2301] = {.lex_state = 27}, - [2302] = {.lex_state = 13}, - [2303] = {.lex_state = 27}, - [2304] = {.lex_state = 3}, - [2305] = {.lex_state = 14}, - [2306] = {.lex_state = 27}, + [2301] = {.lex_state = 70}, + [2302] = {.lex_state = 14}, + [2303] = {.lex_state = 14}, + [2304] = {.lex_state = 23}, + [2305] = {.lex_state = 18}, + [2306] = {.lex_state = 70}, [2307] = {.lex_state = 14}, [2308] = {.lex_state = 14}, [2309] = {.lex_state = 14}, - [2310] = {.lex_state = 18}, - [2311] = {.lex_state = 13}, - [2312] = {.lex_state = 14}, - [2313] = {.lex_state = 18}, + [2310] = {.lex_state = 14}, + [2311] = {.lex_state = 14}, + [2312] = {.lex_state = 27}, + [2313] = {.lex_state = 14}, [2314] = {.lex_state = 14}, - [2315] = {.lex_state = 17}, + [2315] = {.lex_state = 14}, [2316] = {.lex_state = 14}, [2317] = {.lex_state = 14}, - [2318] = {.lex_state = 14}, + [2318] = {.lex_state = 17}, [2319] = {.lex_state = 14}, [2320] = {.lex_state = 14}, [2321] = {.lex_state = 14}, [2322] = {.lex_state = 14}, [2323] = {.lex_state = 14}, - [2324] = {.lex_state = 14}, - [2325] = {.lex_state = 18}, - [2326] = {.lex_state = 27}, - [2327] = {.lex_state = 18}, + [2324] = {.lex_state = 3}, + [2325] = {.lex_state = 14}, + [2326] = {.lex_state = 14}, + [2327] = {.lex_state = 27}, [2328] = {.lex_state = 14}, [2329] = {.lex_state = 14}, [2330] = {.lex_state = 14}, [2331] = {.lex_state = 14}, [2332] = {.lex_state = 14}, [2333] = {.lex_state = 14}, - [2334] = {.lex_state = 14}, - [2335] = {.lex_state = 14}, - [2336] = {.lex_state = 27}, - [2337] = {.lex_state = 23}, - [2338] = {.lex_state = 14}, + [2334] = {.lex_state = 3}, + [2335] = {.lex_state = 27}, + [2336] = {.lex_state = 14}, + [2337] = {.lex_state = 14}, + [2338] = {.lex_state = 27}, [2339] = {.lex_state = 14}, - [2340] = {.lex_state = 70}, - [2341] = {.lex_state = 14}, - [2342] = {.lex_state = 3}, - [2343] = {.lex_state = 27}, - [2344] = {.lex_state = 27}, - [2345] = {.lex_state = 27}, - [2346] = {.lex_state = 27}, + [2340] = {.lex_state = 27}, + [2341] = {.lex_state = 27}, + [2342] = {.lex_state = 14}, + [2343] = {.lex_state = 3}, + [2344] = {.lex_state = 17}, + [2345] = {.lex_state = 13}, + [2346] = {.lex_state = 18}, [2347] = {.lex_state = 14}, - [2348] = {.lex_state = 14}, + [2348] = {.lex_state = 18}, [2349] = {.lex_state = 14}, - [2350] = {.lex_state = 14}, + [2350] = {.lex_state = 27}, [2351] = {.lex_state = 14}, - [2352] = {.lex_state = 27}, - [2353] = {.lex_state = 27}, - [2354] = {.lex_state = 14}, - [2355] = {.lex_state = 14}, - [2356] = {.lex_state = 27}, - [2357] = {.lex_state = 14}, + [2352] = {.lex_state = 14}, + [2353] = {.lex_state = 18}, + [2354] = {.lex_state = 13}, + [2355] = {.lex_state = 17}, + [2356] = {.lex_state = 17}, + [2357] = {.lex_state = 17}, [2358] = {.lex_state = 14}, - [2359] = {.lex_state = 14}, - [2360] = {.lex_state = 17}, - [2361] = {.lex_state = 17}, - [2362] = {.lex_state = 17}, - [2363] = {.lex_state = 17}, - [2364] = {.lex_state = 14}, - [2365] = {.lex_state = 70}, - [2366] = {.lex_state = 14}, - [2367] = {.lex_state = 14}, - [2368] = {.lex_state = 14}, + [2359] = {.lex_state = 27}, + [2360] = {.lex_state = 14}, + [2361] = {.lex_state = 27}, + [2362] = {.lex_state = 27}, + [2363] = {.lex_state = 14}, + [2364] = {.lex_state = 27}, + [2365] = {.lex_state = 27}, + [2366] = {.lex_state = 17}, + [2367] = {.lex_state = 27}, + [2368] = {.lex_state = 3}, [2369] = {.lex_state = 14}, - [2370] = {.lex_state = 14}, + [2370] = {.lex_state = 27}, [2371] = {.lex_state = 14}, - [2372] = {.lex_state = 3}, + [2372] = {.lex_state = 14}, [2373] = {.lex_state = 27}, - [2374] = {.lex_state = 3}, + [2374] = {.lex_state = 14}, [2375] = {.lex_state = 14}, [2376] = {.lex_state = 14}, [2377] = {.lex_state = 14}, [2378] = {.lex_state = 14}, [2379] = {.lex_state = 14}, [2380] = {.lex_state = 14}, - [2381] = {.lex_state = 14}, - [2382] = {.lex_state = 14}, - [2383] = {.lex_state = 27}, - [2384] = {.lex_state = 14}, + [2381] = {.lex_state = 18}, + [2382] = {.lex_state = 27}, + [2383] = {.lex_state = 18}, + [2384] = {.lex_state = 27}, [2385] = {.lex_state = 14}, [2386] = {.lex_state = 14}, - [2387] = {.lex_state = 17}, - [2388] = {.lex_state = 18}, - [2389] = {.lex_state = 10}, - [2390] = {.lex_state = 27}, - [2391] = {.lex_state = 27}, - [2392] = {.lex_state = 3}, - [2393] = {.lex_state = 27}, - [2394] = {.lex_state = 10}, - [2395] = {.lex_state = 14}, - [2396] = {.lex_state = 27}, - [2397] = {.lex_state = 10}, - [2398] = {.lex_state = 10}, - [2399] = {.lex_state = 10}, - [2400] = {.lex_state = 14}, - [2401] = {.lex_state = 27}, - [2402] = {.lex_state = 10}, + [2387] = {.lex_state = 14}, + [2388] = {.lex_state = 14}, + [2389] = {.lex_state = 27}, + [2390] = {.lex_state = 10}, + [2391] = {.lex_state = 10}, + [2392] = {.lex_state = 14}, + [2393] = {.lex_state = 14}, + [2394] = {.lex_state = 70}, + [2395] = {.lex_state = 27}, + [2396] = {.lex_state = 6}, + [2397] = {.lex_state = 27}, + [2398] = {.lex_state = 27}, + [2399] = {.lex_state = 27}, + [2400] = {.lex_state = 10}, + [2401] = {.lex_state = 10}, + [2402] = {.lex_state = 70}, [2403] = {.lex_state = 14}, [2404] = {.lex_state = 10}, - [2405] = {.lex_state = 6}, + [2405] = {.lex_state = 27}, [2406] = {.lex_state = 10}, [2407] = {.lex_state = 27}, - [2408] = {.lex_state = 10}, - [2409] = {.lex_state = 10}, + [2408] = {.lex_state = 27}, + [2409] = {.lex_state = 14}, [2410] = {.lex_state = 10}, - [2411] = {.lex_state = 10}, - [2412] = {.lex_state = 10}, - [2413] = {.lex_state = 10}, - [2414] = {.lex_state = 10}, - [2415] = {.lex_state = 14}, - [2416] = {.lex_state = 27}, - [2417] = {.lex_state = 27}, - [2418] = {.lex_state = 27}, + [2411] = {.lex_state = 14}, + [2412] = {.lex_state = 14}, + [2413] = {.lex_state = 27}, + [2414] = {.lex_state = 27}, + [2415] = {.lex_state = 10}, + [2416] = {.lex_state = 10}, + [2417] = {.lex_state = 14}, + [2418] = {.lex_state = 10}, [2419] = {.lex_state = 10}, - [2420] = {.lex_state = 10}, + [2420] = {.lex_state = 14}, [2421] = {.lex_state = 27}, - [2422] = {.lex_state = 6}, - [2423] = {.lex_state = 6}, - [2424] = {.lex_state = 70}, - [2425] = {.lex_state = 27}, + [2422] = {.lex_state = 3}, + [2423] = {.lex_state = 10}, + [2424] = {.lex_state = 10}, + [2425] = {.lex_state = 14}, [2426] = {.lex_state = 27}, - [2427] = {.lex_state = 27}, - [2428] = {.lex_state = 10}, + [2427] = {.lex_state = 14}, + [2428] = {.lex_state = 27}, [2429] = {.lex_state = 27}, [2430] = {.lex_state = 27}, - [2431] = {.lex_state = 10}, - [2432] = {.lex_state = 10}, + [2431] = {.lex_state = 27}, + [2432] = {.lex_state = 27}, [2433] = {.lex_state = 27}, [2434] = {.lex_state = 27}, - [2435] = {.lex_state = 14}, + [2435] = {.lex_state = 27}, [2436] = {.lex_state = 27}, - [2437] = {.lex_state = 10}, - [2438] = {.lex_state = 10}, - [2439] = {.lex_state = 14}, - [2440] = {.lex_state = 27}, - [2441] = {.lex_state = 27}, + [2437] = {.lex_state = 27}, + [2438] = {.lex_state = 6}, + [2439] = {.lex_state = 27}, + [2440] = {.lex_state = 14}, + [2441] = {.lex_state = 10}, [2442] = {.lex_state = 14}, - [2443] = {.lex_state = 14}, - [2444] = {.lex_state = 14}, + [2443] = {.lex_state = 27}, + [2444] = {.lex_state = 10}, [2445] = {.lex_state = 10}, - [2446] = {.lex_state = 14}, + [2446] = {.lex_state = 27}, [2447] = {.lex_state = 27}, - [2448] = {.lex_state = 27}, - [2449] = {.lex_state = 27}, + [2448] = {.lex_state = 6}, + [2449] = {.lex_state = 14}, [2450] = {.lex_state = 10}, - [2451] = {.lex_state = 14}, - [2452] = {.lex_state = 27}, - [2453] = {.lex_state = 27}, - [2454] = {.lex_state = 27}, - [2455] = {.lex_state = 27}, - [2456] = {.lex_state = 27}, - [2457] = {.lex_state = 10}, - [2458] = {.lex_state = 14}, - [2459] = {.lex_state = 10}, - [2460] = {.lex_state = 27}, + [2451] = {.lex_state = 27}, + [2452] = {.lex_state = 14}, + [2453] = {.lex_state = 14}, + [2454] = {.lex_state = 14}, + [2455] = {.lex_state = 6}, + [2456] = {.lex_state = 10}, + [2457] = {.lex_state = 27}, + [2458] = {.lex_state = 10}, + [2459] = {.lex_state = 27}, + [2460] = {.lex_state = 10}, [2461] = {.lex_state = 14}, - [2462] = {.lex_state = 14}, + [2462] = {.lex_state = 27}, [2463] = {.lex_state = 27}, - [2464] = {.lex_state = 27}, - [2465] = {.lex_state = 10}, + [2464] = {.lex_state = 10}, + [2465] = {.lex_state = 14}, [2466] = {.lex_state = 27}, [2467] = {.lex_state = 10}, - [2468] = {.lex_state = 27}, + [2468] = {.lex_state = 14}, [2469] = {.lex_state = 3}, - [2470] = {.lex_state = 14}, + [2470] = {.lex_state = 27}, [2471] = {.lex_state = 27}, [2472] = {.lex_state = 14}, - [2473] = {.lex_state = 27}, - [2474] = {.lex_state = 10}, - [2475] = {.lex_state = 70}, - [2476] = {.lex_state = 14}, - [2477] = {.lex_state = 14}, - [2478] = {.lex_state = 14}, - [2479] = {.lex_state = 14}, - [2480] = {.lex_state = 27}, - [2481] = {.lex_state = 14}, + [2473] = {.lex_state = 14}, + [2474] = {.lex_state = 27}, + [2475] = {.lex_state = 27}, + [2476] = {.lex_state = 10}, + [2477] = {.lex_state = 10}, + [2478] = {.lex_state = 10}, + [2479] = {.lex_state = 27}, + [2480] = {.lex_state = 10}, + [2481] = {.lex_state = 10}, [2482] = {.lex_state = 27}, - [2483] = {.lex_state = 10, .external_lex_state = 3}, + [2483] = {.lex_state = 10}, [2484] = {.lex_state = 10}, - [2485] = {.lex_state = 27}, + [2485] = {.lex_state = 14}, [2486] = {.lex_state = 10}, - [2487] = {.lex_state = 27}, - [2488] = {.lex_state = 14}, - [2489] = {.lex_state = 14}, + [2487] = {.lex_state = 10}, + [2488] = {.lex_state = 10}, + [2489] = {.lex_state = 27}, [2490] = {.lex_state = 10}, - [2491] = {.lex_state = 6}, - [2492] = {.lex_state = 10}, - [2493] = {.lex_state = 14}, - [2494] = {.lex_state = 3}, - [2495] = {.lex_state = 10}, + [2491] = {.lex_state = 14}, + [2492] = {.lex_state = 14}, + [2493] = {.lex_state = 10, .external_lex_state = 3}, + [2494] = {.lex_state = 70}, + [2495] = {.lex_state = 14}, [2496] = {.lex_state = 10, .external_lex_state = 4}, - [2497] = {.lex_state = 70}, - [2498] = {.lex_state = 6}, - [2499] = {.lex_state = 6}, - [2500] = {.lex_state = 70}, - [2501] = {.lex_state = 70}, - [2502] = {.lex_state = 6}, - [2503] = {.lex_state = 6}, - [2504] = {.lex_state = 10}, - [2505] = {.lex_state = 6}, - [2506] = {.lex_state = 70}, - [2507] = {.lex_state = 27}, - [2508] = {.lex_state = 27}, - [2509] = {.lex_state = 6}, - [2510] = {.lex_state = 10, .external_lex_state = 4}, - [2511] = {.lex_state = 14}, - [2512] = {.lex_state = 70}, + [2497] = {.lex_state = 10}, + [2498] = {.lex_state = 10}, + [2499] = {.lex_state = 10}, + [2500] = {.lex_state = 10}, + [2501] = {.lex_state = 14}, + [2502] = {.lex_state = 70}, + [2503] = {.lex_state = 14}, + [2504] = {.lex_state = 14}, + [2505] = {.lex_state = 14}, + [2506] = {.lex_state = 10}, + [2507] = {.lex_state = 14}, + [2508] = {.lex_state = 6}, + [2509] = {.lex_state = 70}, + [2510] = {.lex_state = 6}, + [2511] = {.lex_state = 6}, + [2512] = {.lex_state = 16}, [2513] = {.lex_state = 14}, - [2514] = {.lex_state = 14}, - [2515] = {.lex_state = 14}, - [2516] = {.lex_state = 27}, - [2517] = {.lex_state = 70}, - [2518] = {.lex_state = 10}, - [2519] = {.lex_state = 10}, + [2514] = {.lex_state = 10}, + [2515] = {.lex_state = 10}, + [2516] = {.lex_state = 70}, + [2517] = {.lex_state = 10}, + [2518] = {.lex_state = 6}, + [2519] = {.lex_state = 6}, [2520] = {.lex_state = 10, .external_lex_state = 4}, - [2521] = {.lex_state = 70}, - [2522] = {.lex_state = 6}, - [2523] = {.lex_state = 14}, - [2524] = {.lex_state = 70}, - [2525] = {.lex_state = 70}, - [2526] = {.lex_state = 70}, - [2527] = {.lex_state = 6}, - [2528] = {.lex_state = 6}, - [2529] = {.lex_state = 6}, - [2530] = {.lex_state = 14}, - [2531] = {.lex_state = 70}, - [2532] = {.lex_state = 27}, - [2533] = {.lex_state = 70}, - [2534] = {.lex_state = 70}, - [2535] = {.lex_state = 6}, - [2536] = {.lex_state = 14}, - [2537] = {.lex_state = 6}, - [2538] = {.lex_state = 14}, + [2521] = {.lex_state = 10}, + [2522] = {.lex_state = 27}, + [2523] = {.lex_state = 10}, + [2524] = {.lex_state = 14}, + [2525] = {.lex_state = 17}, + [2526] = {.lex_state = 17}, + [2527] = {.lex_state = 17}, + [2528] = {.lex_state = 17}, + [2529] = {.lex_state = 10, .external_lex_state = 4}, + [2530] = {.lex_state = 70}, + [2531] = {.lex_state = 6}, + [2532] = {.lex_state = 6}, + [2533] = {.lex_state = 14}, + [2534] = {.lex_state = 17}, + [2535] = {.lex_state = 17}, + [2536] = {.lex_state = 17}, + [2537] = {.lex_state = 17}, + [2538] = {.lex_state = 6}, [2539] = {.lex_state = 6}, - [2540] = {.lex_state = 14}, - [2541] = {.lex_state = 14}, + [2540] = {.lex_state = 10}, + [2541] = {.lex_state = 70}, [2542] = {.lex_state = 14}, - [2543] = {.lex_state = 14}, + [2543] = {.lex_state = 70}, [2544] = {.lex_state = 14}, - [2545] = {.lex_state = 14}, + [2545] = {.lex_state = 6}, [2546] = {.lex_state = 10}, - [2547] = {.lex_state = 10}, - [2548] = {.lex_state = 10}, - [2549] = {.lex_state = 27}, - [2550] = {.lex_state = 29}, + [2547] = {.lex_state = 70}, + [2548] = {.lex_state = 6}, + [2549] = {.lex_state = 14}, + [2550] = {.lex_state = 6}, [2551] = {.lex_state = 14}, - [2552] = {.lex_state = 70}, + [2552] = {.lex_state = 29}, [2553] = {.lex_state = 70}, - [2554] = {.lex_state = 70}, - [2555] = {.lex_state = 70}, - [2556] = {.lex_state = 6}, - [2557] = {.lex_state = 14}, + [2554] = {.lex_state = 6}, + [2555] = {.lex_state = 29}, + [2556] = {.lex_state = 70}, + [2557] = {.lex_state = 10}, [2558] = {.lex_state = 14}, - [2559] = {.lex_state = 14}, - [2560] = {.lex_state = 14}, - [2561] = {.lex_state = 14}, - [2562] = {.lex_state = 14}, - [2563] = {.lex_state = 10, .external_lex_state = 4}, - [2564] = {.lex_state = 27}, - [2565] = {.lex_state = 27}, - [2566] = {.lex_state = 14}, - [2567] = {.lex_state = 10}, + [2559] = {.lex_state = 70}, + [2560] = {.lex_state = 70}, + [2561] = {.lex_state = 70}, + [2562] = {.lex_state = 10}, + [2563] = {.lex_state = 70}, + [2564] = {.lex_state = 70}, + [2565] = {.lex_state = 29}, + [2566] = {.lex_state = 27}, + [2567] = {.lex_state = 6}, [2568] = {.lex_state = 70}, - [2569] = {.lex_state = 27}, - [2570] = {.lex_state = 14}, - [2571] = {.lex_state = 14}, - [2572] = {.lex_state = 6}, + [2569] = {.lex_state = 70}, + [2570] = {.lex_state = 27}, + [2571] = {.lex_state = 70}, + [2572] = {.lex_state = 10}, [2573] = {.lex_state = 10}, - [2574] = {.lex_state = 14}, - [2575] = {.lex_state = 27}, - [2576] = {.lex_state = 70}, - [2577] = {.lex_state = 14}, - [2578] = {.lex_state = 6}, - [2579] = {.lex_state = 70}, - [2580] = {.lex_state = 70}, - [2581] = {.lex_state = 27}, + [2574] = {.lex_state = 70}, + [2575] = {.lex_state = 10}, + [2576] = {.lex_state = 10, .external_lex_state = 4}, + [2577] = {.lex_state = 10}, + [2578] = {.lex_state = 14}, + [2579] = {.lex_state = 10}, + [2580] = {.lex_state = 6}, + [2581] = {.lex_state = 10}, [2582] = {.lex_state = 10}, - [2583] = {.lex_state = 10}, - [2584] = {.lex_state = 10, .external_lex_state = 4}, - [2585] = {.lex_state = 10}, - [2586] = {.lex_state = 10}, - [2587] = {.lex_state = 29}, - [2588] = {.lex_state = 6}, - [2589] = {.lex_state = 70}, - [2590] = {.lex_state = 16}, + [2583] = {.lex_state = 14}, + [2584] = {.lex_state = 14}, + [2585] = {.lex_state = 27}, + [2586] = {.lex_state = 3}, + [2587] = {.lex_state = 10}, + [2588] = {.lex_state = 70}, + [2589] = {.lex_state = 14}, + [2590] = {.lex_state = 27}, [2591] = {.lex_state = 10}, - [2592] = {.lex_state = 70}, + [2592] = {.lex_state = 27}, [2593] = {.lex_state = 10}, - [2594] = {.lex_state = 10}, - [2595] = {.lex_state = 10, .external_lex_state = 4}, - [2596] = {.lex_state = 70}, - [2597] = {.lex_state = 6}, - [2598] = {.lex_state = 6}, - [2599] = {.lex_state = 6}, - [2600] = {.lex_state = 6}, - [2601] = {.lex_state = 70}, + [2594] = {.lex_state = 27}, + [2595] = {.lex_state = 10}, + [2596] = {.lex_state = 10}, + [2597] = {.lex_state = 29}, + [2598] = {.lex_state = 3}, + [2599] = {.lex_state = 10, .external_lex_state = 4}, + [2600] = {.lex_state = 10}, + [2601] = {.lex_state = 14}, [2602] = {.lex_state = 10}, - [2603] = {.lex_state = 6}, - [2604] = {.lex_state = 10}, - [2605] = {.lex_state = 27}, - [2606] = {.lex_state = 10}, - [2607] = {.lex_state = 10}, - [2608] = {.lex_state = 10}, + [2603] = {.lex_state = 10, .external_lex_state = 4}, + [2604] = {.lex_state = 70}, + [2605] = {.lex_state = 14}, + [2606] = {.lex_state = 27}, + [2607] = {.lex_state = 3}, + [2608] = {.lex_state = 14}, [2609] = {.lex_state = 10}, - [2610] = {.lex_state = 70}, - [2611] = {.lex_state = 14}, - [2612] = {.lex_state = 10}, - [2613] = {.lex_state = 16}, - [2614] = {.lex_state = 70}, - [2615] = {.lex_state = 10}, + [2610] = {.lex_state = 14}, + [2611] = {.lex_state = 10}, + [2612] = {.lex_state = 16}, + [2613] = {.lex_state = 70}, + [2614] = {.lex_state = 10}, + [2615] = {.lex_state = 14}, [2616] = {.lex_state = 10}, - [2617] = {.lex_state = 10, .external_lex_state = 4}, - [2618] = {.lex_state = 10}, - [2619] = {.lex_state = 10}, - [2620] = {.lex_state = 70}, + [2617] = {.lex_state = 10}, + [2618] = {.lex_state = 70}, + [2619] = {.lex_state = 6}, + [2620] = {.lex_state = 10}, [2621] = {.lex_state = 10}, [2622] = {.lex_state = 70}, - [2623] = {.lex_state = 10, .external_lex_state = 4}, - [2624] = {.lex_state = 70}, - [2625] = {.lex_state = 6}, - [2626] = {.lex_state = 6}, - [2627] = {.lex_state = 6}, + [2623] = {.lex_state = 3}, + [2624] = {.lex_state = 6}, + [2625] = {.lex_state = 10}, + [2626] = {.lex_state = 70}, + [2627] = {.lex_state = 10}, [2628] = {.lex_state = 10}, - [2629] = {.lex_state = 10}, - [2630] = {.lex_state = 10, .external_lex_state = 4}, - [2631] = {.lex_state = 10}, - [2632] = {.lex_state = 27}, + [2629] = {.lex_state = 10, .external_lex_state = 4}, + [2630] = {.lex_state = 14}, + [2631] = {.lex_state = 14}, + [2632] = {.lex_state = 16}, [2633] = {.lex_state = 70}, - [2634] = {.lex_state = 10, .external_lex_state = 4}, + [2634] = {.lex_state = 10}, [2635] = {.lex_state = 70}, - [2636] = {.lex_state = 6}, - [2637] = {.lex_state = 6}, - [2638] = {.lex_state = 10}, - [2639] = {.lex_state = 70}, - [2640] = {.lex_state = 70}, - [2641] = {.lex_state = 10, .external_lex_state = 4}, - [2642] = {.lex_state = 10, .external_lex_state = 4}, - [2643] = {.lex_state = 6}, - [2644] = {.lex_state = 6}, + [2636] = {.lex_state = 10}, + [2637] = {.lex_state = 14}, + [2638] = {.lex_state = 70}, + [2639] = {.lex_state = 10}, + [2640] = {.lex_state = 10}, + [2641] = {.lex_state = 10}, + [2642] = {.lex_state = 10}, + [2643] = {.lex_state = 10}, + [2644] = {.lex_state = 14}, [2645] = {.lex_state = 10}, - [2646] = {.lex_state = 14}, - [2647] = {.lex_state = 14}, - [2648] = {.lex_state = 6}, - [2649] = {.lex_state = 6}, - [2650] = {.lex_state = 6}, - [2651] = {.lex_state = 6}, - [2652] = {.lex_state = 6}, - [2653] = {.lex_state = 6}, - [2654] = {.lex_state = 6}, - [2655] = {.lex_state = 6}, - [2656] = {.lex_state = 6}, - [2657] = {.lex_state = 6}, - [2658] = {.lex_state = 6}, + [2646] = {.lex_state = 70}, + [2647] = {.lex_state = 70}, + [2648] = {.lex_state = 10}, + [2649] = {.lex_state = 70}, + [2650] = {.lex_state = 10}, + [2651] = {.lex_state = 10}, + [2652] = {.lex_state = 10, .external_lex_state = 4}, + [2653] = {.lex_state = 10, .external_lex_state = 4}, + [2654] = {.lex_state = 10}, + [2655] = {.lex_state = 70}, + [2656] = {.lex_state = 10, .external_lex_state = 4}, + [2657] = {.lex_state = 27}, + [2658] = {.lex_state = 70}, [2659] = {.lex_state = 6}, - [2660] = {.lex_state = 14}, - [2661] = {.lex_state = 29}, - [2662] = {.lex_state = 10}, - [2663] = {.lex_state = 3}, - [2664] = {.lex_state = 70}, - [2665] = {.lex_state = 70}, - [2666] = {.lex_state = 17}, - [2667] = {.lex_state = 14}, - [2668] = {.lex_state = 14}, - [2669] = {.lex_state = 14}, - [2670] = {.lex_state = 17}, - [2671] = {.lex_state = 70}, - [2672] = {.lex_state = 70}, - [2673] = {.lex_state = 10}, - [2674] = {.lex_state = 70}, - [2675] = {.lex_state = 10}, - [2676] = {.lex_state = 10}, + [2660] = {.lex_state = 70}, + [2661] = {.lex_state = 6}, + [2662] = {.lex_state = 6}, + [2663] = {.lex_state = 10}, + [2664] = {.lex_state = 6}, + [2665] = {.lex_state = 6}, + [2666] = {.lex_state = 6}, + [2667] = {.lex_state = 70}, + [2668] = {.lex_state = 6}, + [2669] = {.lex_state = 6}, + [2670] = {.lex_state = 70}, + [2671] = {.lex_state = 10}, + [2672] = {.lex_state = 10, .external_lex_state = 4}, + [2673] = {.lex_state = 14}, + [2674] = {.lex_state = 10, .external_lex_state = 4}, + [2675] = {.lex_state = 70}, + [2676] = {.lex_state = 14}, [2677] = {.lex_state = 6}, - [2678] = {.lex_state = 70}, + [2678] = {.lex_state = 6}, [2679] = {.lex_state = 70}, [2680] = {.lex_state = 70}, - [2681] = {.lex_state = 27}, - [2682] = {.lex_state = 17}, - [2683] = {.lex_state = 14}, - [2684] = {.lex_state = 10}, - [2685] = {.lex_state = 14}, + [2681] = {.lex_state = 70}, + [2682] = {.lex_state = 6}, + [2683] = {.lex_state = 70}, + [2684] = {.lex_state = 70}, + [2685] = {.lex_state = 10, .external_lex_state = 4}, [2686] = {.lex_state = 10}, - [2687] = {.lex_state = 10}, - [2688] = {.lex_state = 10, .external_lex_state = 4}, - [2689] = {.lex_state = 70}, - [2690] = {.lex_state = 10}, - [2691] = {.lex_state = 29}, - [2692] = {.lex_state = 70}, - [2693] = {.lex_state = 70}, - [2694] = {.lex_state = 10}, + [2687] = {.lex_state = 6}, + [2688] = {.lex_state = 70}, + [2689] = {.lex_state = 27}, + [2690] = {.lex_state = 6}, + [2691] = {.lex_state = 14}, + [2692] = {.lex_state = 6}, + [2693] = {.lex_state = 6}, + [2694] = {.lex_state = 70}, [2695] = {.lex_state = 10}, - [2696] = {.lex_state = 17}, - [2697] = {.lex_state = 10}, - [2698] = {.lex_state = 70}, - [2699] = {.lex_state = 10}, - [2700] = {.lex_state = 10}, + [2696] = {.lex_state = 6}, + [2697] = {.lex_state = 70}, + [2698] = {.lex_state = 6}, + [2699] = {.lex_state = 14}, + [2700] = {.lex_state = 6}, [2701] = {.lex_state = 10}, - [2702] = {.lex_state = 10}, - [2703] = {.lex_state = 10}, - [2704] = {.lex_state = 10}, - [2705] = {.lex_state = 70}, - [2706] = {.lex_state = 10}, - [2707] = {.lex_state = 3}, - [2708] = {.lex_state = 3}, - [2709] = {.lex_state = 14}, - [2710] = {.lex_state = 16}, - [2711] = {.lex_state = 14}, - [2712] = {.lex_state = 10}, - [2713] = {.lex_state = 3}, - [2714] = {.lex_state = 14}, - [2715] = {.lex_state = 10}, - [2716] = {.lex_state = 17}, - [2717] = {.lex_state = 70}, - [2718] = {.lex_state = 17}, - [2719] = {.lex_state = 14}, - [2720] = {.lex_state = 6}, - [2721] = {.lex_state = 10}, - [2722] = {.lex_state = 10}, - [2723] = {.lex_state = 17}, - [2724] = {.lex_state = 6}, + [2702] = {.lex_state = 27}, + [2703] = {.lex_state = 6}, + [2704] = {.lex_state = 6}, + [2705] = {.lex_state = 14}, + [2706] = {.lex_state = 14}, + [2707] = {.lex_state = 6}, + [2708] = {.lex_state = 6}, + [2709] = {.lex_state = 6}, + [2710] = {.lex_state = 14}, + [2711] = {.lex_state = 70}, + [2712] = {.lex_state = 6}, + [2713] = {.lex_state = 6}, + [2714] = {.lex_state = 6}, + [2715] = {.lex_state = 14}, + [2716] = {.lex_state = 14}, + [2717] = {.lex_state = 14}, + [2718] = {.lex_state = 6}, + [2719] = {.lex_state = 6}, + [2720] = {.lex_state = 70}, + [2721] = {.lex_state = 27}, + [2722] = {.lex_state = 6}, + [2723] = {.lex_state = 27}, + [2724] = {.lex_state = 3}, [2725] = {.lex_state = 6}, - [2726] = {.lex_state = 17}, - [2727] = {.lex_state = 70}, - [2728] = {.lex_state = 6}, - [2729] = {.lex_state = 6}, - [2730] = {.lex_state = 10}, + [2726] = {.lex_state = 10}, + [2727] = {.lex_state = 14}, + [2728] = {.lex_state = 70}, + [2729] = {.lex_state = 70}, + [2730] = {.lex_state = 14}, [2731] = {.lex_state = 70}, - [2732] = {.lex_state = 70}, + [2732] = {.lex_state = 6}, [2733] = {.lex_state = 70}, - [2734] = {.lex_state = 70}, + [2734] = {.lex_state = 14}, [2735] = {.lex_state = 70}, [2736] = {.lex_state = 70}, - [2737] = {.lex_state = 70}, + [2737] = {.lex_state = 14}, [2738] = {.lex_state = 70}, [2739] = {.lex_state = 70}, - [2740] = {.lex_state = 70}, + [2740] = {.lex_state = 14}, [2741] = {.lex_state = 70}, [2742] = {.lex_state = 70}, [2743] = {.lex_state = 70}, - [2744] = {.lex_state = 70}, + [2744] = {.lex_state = 6}, [2745] = {.lex_state = 70}, [2746] = {.lex_state = 70}, [2747] = {.lex_state = 70}, @@ -12790,105 +12798,105 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2749] = {.lex_state = 70}, [2750] = {.lex_state = 70}, [2751] = {.lex_state = 70}, - [2752] = {.lex_state = 70}, - [2753] = {.lex_state = 6}, - [2754] = {.lex_state = 70}, - [2755] = {.lex_state = 70}, - [2756] = {.lex_state = 17}, - [2757] = {.lex_state = 14}, - [2758] = {.lex_state = 70}, + [2752] = {.lex_state = 6}, + [2753] = {.lex_state = 14}, + [2754] = {.lex_state = 6}, + [2755] = {.lex_state = 14}, + [2756] = {.lex_state = 70}, + [2757] = {.lex_state = 70}, + [2758] = {.lex_state = 14}, [2759] = {.lex_state = 70}, [2760] = {.lex_state = 70}, - [2761] = {.lex_state = 17}, + [2761] = {.lex_state = 70}, [2762] = {.lex_state = 70}, [2763] = {.lex_state = 70}, [2764] = {.lex_state = 70}, - [2765] = {.lex_state = 18}, - [2766] = {.lex_state = 17}, + [2765] = {.lex_state = 70}, + [2766] = {.lex_state = 70}, [2767] = {.lex_state = 70}, - [2768] = {.lex_state = 18}, + [2768] = {.lex_state = 70}, [2769] = {.lex_state = 70}, [2770] = {.lex_state = 70}, [2771] = {.lex_state = 70}, - [2772] = {.lex_state = 70}, + [2772] = {.lex_state = 10}, [2773] = {.lex_state = 70}, [2774] = {.lex_state = 70}, [2775] = {.lex_state = 70}, - [2776] = {.lex_state = 70}, - [2777] = {.lex_state = 70}, + [2776] = {.lex_state = 6}, + [2777] = {.lex_state = 18}, [2778] = {.lex_state = 70}, [2779] = {.lex_state = 70}, [2780] = {.lex_state = 70}, [2781] = {.lex_state = 70}, - [2782] = {.lex_state = 14}, + [2782] = {.lex_state = 70}, [2783] = {.lex_state = 70}, - [2784] = {.lex_state = 6}, - [2785] = {.lex_state = 17}, + [2784] = {.lex_state = 70}, + [2785] = {.lex_state = 70}, [2786] = {.lex_state = 70}, - [2787] = {.lex_state = 70}, + [2787] = {.lex_state = 14}, [2788] = {.lex_state = 70}, [2789] = {.lex_state = 70}, [2790] = {.lex_state = 70}, - [2791] = {.lex_state = 70}, + [2791] = {.lex_state = 14}, [2792] = {.lex_state = 70}, - [2793] = {.lex_state = 14}, - [2794] = {.lex_state = 17}, + [2793] = {.lex_state = 70}, + [2794] = {.lex_state = 70}, [2795] = {.lex_state = 70}, [2796] = {.lex_state = 70}, - [2797] = {.lex_state = 17}, - [2798] = {.lex_state = 70}, + [2797] = {.lex_state = 70}, + [2798] = {.lex_state = 14}, [2799] = {.lex_state = 70}, - [2800] = {.lex_state = 17}, - [2801] = {.lex_state = 14}, - [2802] = {.lex_state = 17}, - [2803] = {.lex_state = 17}, + [2800] = {.lex_state = 14}, + [2801] = {.lex_state = 70}, + [2802] = {.lex_state = 70}, + [2803] = {.lex_state = 70}, [2804] = {.lex_state = 70}, [2805] = {.lex_state = 70}, [2806] = {.lex_state = 70}, [2807] = {.lex_state = 70}, - [2808] = {.lex_state = 70}, + [2808] = {.lex_state = 10, .external_lex_state = 4}, [2809] = {.lex_state = 70}, [2810] = {.lex_state = 70}, [2811] = {.lex_state = 70}, - [2812] = {.lex_state = 70}, - [2813] = {.lex_state = 14}, + [2812] = {.lex_state = 14}, + [2813] = {.lex_state = 70}, [2814] = {.lex_state = 70}, [2815] = {.lex_state = 70}, [2816] = {.lex_state = 70}, [2817] = {.lex_state = 70}, [2818] = {.lex_state = 70}, - [2819] = {.lex_state = 14}, + [2819] = {.lex_state = 70}, [2820] = {.lex_state = 70}, [2821] = {.lex_state = 70}, [2822] = {.lex_state = 70}, - [2823] = {.lex_state = 10}, - [2824] = {.lex_state = 14}, + [2823] = {.lex_state = 70}, + [2824] = {.lex_state = 70}, [2825] = {.lex_state = 70}, - [2826] = {.lex_state = 14}, - [2827] = {.lex_state = 18}, + [2826] = {.lex_state = 70}, + [2827] = {.lex_state = 70}, [2828] = {.lex_state = 70}, [2829] = {.lex_state = 70}, [2830] = {.lex_state = 70}, - [2831] = {.lex_state = 70}, + [2831] = {.lex_state = 10}, [2832] = {.lex_state = 70}, - [2833] = {.lex_state = 14}, - [2834] = {.lex_state = 14}, + [2833] = {.lex_state = 70}, + [2834] = {.lex_state = 70}, [2835] = {.lex_state = 70}, - [2836] = {.lex_state = 6}, + [2836] = {.lex_state = 70}, [2837] = {.lex_state = 70}, - [2838] = {.lex_state = 70}, - [2839] = {.lex_state = 70}, - [2840] = {.lex_state = 70}, - [2841] = {.lex_state = 17}, - [2842] = {.lex_state = 70}, - [2843] = {.lex_state = 70}, + [2838] = {.lex_state = 6}, + [2839] = {.lex_state = 14}, + [2840] = {.lex_state = 10}, + [2841] = {.lex_state = 70}, + [2842] = {.lex_state = 14}, + [2843] = {.lex_state = 14}, [2844] = {.lex_state = 70}, - [2845] = {.lex_state = 17}, + [2845] = {.lex_state = 6}, [2846] = {.lex_state = 70}, - [2847] = {.lex_state = 70}, - [2848] = {.lex_state = 70}, + [2847] = {.lex_state = 14}, + [2848] = {.lex_state = 14}, [2849] = {.lex_state = 70}, - [2850] = {.lex_state = 14}, + [2850] = {.lex_state = 70}, [2851] = {.lex_state = 70}, [2852] = {.lex_state = 70}, [2853] = {.lex_state = 70}, @@ -12896,646 +12904,646 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2855] = {.lex_state = 70}, [2856] = {.lex_state = 70}, [2857] = {.lex_state = 70}, - [2858] = {.lex_state = 10, .external_lex_state = 4}, - [2859] = {.lex_state = 70}, - [2860] = {.lex_state = 70}, - [2861] = {.lex_state = 27}, + [2858] = {.lex_state = 70}, + [2859] = {.lex_state = 14}, + [2860] = {.lex_state = 14}, + [2861] = {.lex_state = 70}, [2862] = {.lex_state = 14}, - [2863] = {.lex_state = 70}, + [2863] = {.lex_state = 6}, [2864] = {.lex_state = 70}, - [2865] = {.lex_state = 6}, + [2865] = {.lex_state = 70}, [2866] = {.lex_state = 70}, [2867] = {.lex_state = 70}, - [2868] = {.lex_state = 18}, + [2868] = {.lex_state = 70}, [2869] = {.lex_state = 70}, [2870] = {.lex_state = 70}, - [2871] = {.lex_state = 17}, - [2872] = {.lex_state = 70}, + [2871] = {.lex_state = 70}, + [2872] = {.lex_state = 10}, [2873] = {.lex_state = 70}, - [2874] = {.lex_state = 70}, - [2875] = {.lex_state = 14}, + [2874] = {.lex_state = 18}, + [2875] = {.lex_state = 70}, [2876] = {.lex_state = 70}, - [2877] = {.lex_state = 17}, - [2878] = {.lex_state = 17}, + [2877] = {.lex_state = 70}, + [2878] = {.lex_state = 27}, [2879] = {.lex_state = 70}, [2880] = {.lex_state = 70}, - [2881] = {.lex_state = 6}, - [2882] = {.lex_state = 17}, + [2881] = {.lex_state = 70}, + [2882] = {.lex_state = 70}, [2883] = {.lex_state = 70}, [2884] = {.lex_state = 70}, [2885] = {.lex_state = 70}, [2886] = {.lex_state = 70}, - [2887] = {.lex_state = 10}, + [2887] = {.lex_state = 70}, [2888] = {.lex_state = 70}, [2889] = {.lex_state = 70}, [2890] = {.lex_state = 70}, [2891] = {.lex_state = 70}, [2892] = {.lex_state = 70}, [2893] = {.lex_state = 70}, - [2894] = {.lex_state = 17}, - [2895] = {.lex_state = 17}, + [2894] = {.lex_state = 70}, + [2895] = {.lex_state = 18}, [2896] = {.lex_state = 70}, - [2897] = {.lex_state = 17}, + [2897] = {.lex_state = 70}, [2898] = {.lex_state = 70}, - [2899] = {.lex_state = 17}, + [2899] = {.lex_state = 70}, [2900] = {.lex_state = 70}, [2901] = {.lex_state = 70}, [2902] = {.lex_state = 70}, [2903] = {.lex_state = 70}, [2904] = {.lex_state = 70}, [2905] = {.lex_state = 70}, - [2906] = {.lex_state = 70}, + [2906] = {.lex_state = 6}, [2907] = {.lex_state = 70}, - [2908] = {.lex_state = 6}, + [2908] = {.lex_state = 70}, [2909] = {.lex_state = 70}, [2910] = {.lex_state = 70}, [2911] = {.lex_state = 70}, - [2912] = {.lex_state = 17}, + [2912] = {.lex_state = 70}, [2913] = {.lex_state = 70}, [2914] = {.lex_state = 70}, - [2915] = {.lex_state = 27}, + [2915] = {.lex_state = 70}, [2916] = {.lex_state = 70}, [2917] = {.lex_state = 70}, [2918] = {.lex_state = 70}, - [2919] = {.lex_state = 17}, + [2919] = {.lex_state = 70}, [2920] = {.lex_state = 70}, [2921] = {.lex_state = 70}, - [2922] = {.lex_state = 70}, - [2923] = {.lex_state = 17}, + [2922] = {.lex_state = 17}, + [2923] = {.lex_state = 70}, [2924] = {.lex_state = 70}, [2925] = {.lex_state = 70}, - [2926] = {.lex_state = 17}, + [2926] = {.lex_state = 70}, [2927] = {.lex_state = 70}, [2928] = {.lex_state = 70}, - [2929] = {.lex_state = 10}, + [2929] = {.lex_state = 70}, [2930] = {.lex_state = 70}, - [2931] = {.lex_state = 70}, + [2931] = {.lex_state = 14}, [2932] = {.lex_state = 70}, - [2933] = {.lex_state = 14}, + [2933] = {.lex_state = 70}, [2934] = {.lex_state = 70}, - [2935] = {.lex_state = 14}, + [2935] = {.lex_state = 70}, [2936] = {.lex_state = 70}, [2937] = {.lex_state = 70}, - [2938] = {.lex_state = 70}, - [2939] = {.lex_state = 10}, - [2940] = {.lex_state = 70}, - [2941] = {.lex_state = 70}, - [2942] = {.lex_state = 6}, + [2938] = {.lex_state = 27}, + [2939] = {.lex_state = 17}, + [2940] = {.lex_state = 17}, + [2941] = {.lex_state = 17}, + [2942] = {.lex_state = 17}, [2943] = {.lex_state = 70}, [2944] = {.lex_state = 70}, [2945] = {.lex_state = 70}, - [2946] = {.lex_state = 70}, - [2947] = {.lex_state = 70}, - [2948] = {.lex_state = 70}, + [2946] = {.lex_state = 6}, + [2947] = {.lex_state = 14}, + [2948] = {.lex_state = 6}, [2949] = {.lex_state = 17}, - [2950] = {.lex_state = 70}, + [2950] = {.lex_state = 17}, [2951] = {.lex_state = 70}, - [2952] = {.lex_state = 70}, - [2953] = {.lex_state = 17}, - [2954] = {.lex_state = 70}, - [2955] = {.lex_state = 14}, + [2952] = {.lex_state = 17}, + [2953] = {.lex_state = 70}, + [2954] = {.lex_state = 17}, + [2955] = {.lex_state = 17}, [2956] = {.lex_state = 70}, - [2957] = {.lex_state = 14}, + [2957] = {.lex_state = 70}, [2958] = {.lex_state = 17}, - [2959] = {.lex_state = 70}, + [2959] = {.lex_state = 17}, [2960] = {.lex_state = 70}, - [2961] = {.lex_state = 70}, + [2961] = {.lex_state = 17}, [2962] = {.lex_state = 17}, - [2963] = {.lex_state = 70}, + [2963] = {.lex_state = 17}, [2964] = {.lex_state = 17}, - [2965] = {.lex_state = 70}, + [2965] = {.lex_state = 14}, [2966] = {.lex_state = 70}, [2967] = {.lex_state = 70}, - [2968] = {.lex_state = 14}, - [2969] = {.lex_state = 70}, - [2970] = {.lex_state = 6}, - [2971] = {.lex_state = 17}, - [2972] = {.lex_state = 14}, + [2968] = {.lex_state = 17}, + [2969] = {.lex_state = 17}, + [2970] = {.lex_state = 17}, + [2971] = {.lex_state = 18}, + [2972] = {.lex_state = 17}, [2973] = {.lex_state = 17}, - [2974] = {.lex_state = 17}, + [2974] = {.lex_state = 70}, [2975] = {.lex_state = 70}, - [2976] = {.lex_state = 14}, + [2976] = {.lex_state = 17}, [2977] = {.lex_state = 70}, - [2978] = {.lex_state = 17}, - [2979] = {.lex_state = 6}, + [2978] = {.lex_state = 70}, + [2979] = {.lex_state = 70}, [2980] = {.lex_state = 70}, [2981] = {.lex_state = 70}, - [2982] = {.lex_state = 70}, - [2983] = {.lex_state = 17}, + [2982] = {.lex_state = 6}, + [2983] = {.lex_state = 70}, [2984] = {.lex_state = 70}, - [2985] = {.lex_state = 14}, + [2985] = {.lex_state = 70}, [2986] = {.lex_state = 70}, [2987] = {.lex_state = 70}, [2988] = {.lex_state = 70}, - [2989] = {.lex_state = 70}, - [2990] = {.lex_state = 17}, + [2989] = {.lex_state = 17}, + [2990] = {.lex_state = 70}, [2991] = {.lex_state = 70}, [2992] = {.lex_state = 70}, - [2993] = {.lex_state = 70}, + [2993] = {.lex_state = 17}, [2994] = {.lex_state = 70}, [2995] = {.lex_state = 17}, [2996] = {.lex_state = 70}, [2997] = {.lex_state = 70}, - [2998] = {.lex_state = 17}, + [2998] = {.lex_state = 6}, [2999] = {.lex_state = 70}, [3000] = {.lex_state = 70}, - [3001] = {.lex_state = 70}, - [3002] = {.lex_state = 14}, - [3003] = {.lex_state = 70}, - [3004] = {.lex_state = 70}, - [3005] = {.lex_state = 70}, - [3006] = {.lex_state = 14}, - [3007] = {.lex_state = 70}, - [3008] = {.lex_state = 14}, + [3001] = {.lex_state = 17}, + [3002] = {.lex_state = 70}, + [3003] = {.lex_state = 17}, + [3004] = {.lex_state = 17}, + [3005] = {.lex_state = 17}, + [3006] = {.lex_state = 17}, + [3007] = {.lex_state = 14}, + [3008] = {.lex_state = 17}, [3009] = {.lex_state = 14}, - [3010] = {.lex_state = 70}, - [3011] = {.lex_state = 70}, - [3012] = {.lex_state = 70}, - [3013] = {.lex_state = 6}, + [3010] = {.lex_state = 17}, + [3011] = {.lex_state = 17}, + [3012] = {.lex_state = 14}, + [3013] = {.lex_state = 70}, [3014] = {.lex_state = 70}, [3015] = {.lex_state = 70}, [3016] = {.lex_state = 70}, [3017] = {.lex_state = 70}, - [3018] = {.lex_state = 70}, - [3019] = {.lex_state = 6}, + [3018] = {.lex_state = 17}, + [3019] = {.lex_state = 70}, [3020] = {.lex_state = 70}, - [3021] = {.lex_state = 6}, + [3021] = {.lex_state = 70}, [3022] = {.lex_state = 70}, [3023] = {.lex_state = 70}, [3024] = {.lex_state = 70}, - [3025] = {.lex_state = 6}, - [3026] = {.lex_state = 70}, - [3027] = {.lex_state = 70}, - [3028] = {.lex_state = 14}, - [3029] = {.lex_state = 6}, - [3030] = {.lex_state = 70}, + [3025] = {.lex_state = 17}, + [3026] = {.lex_state = 17}, + [3027] = {.lex_state = 17}, + [3028] = {.lex_state = 70}, + [3029] = {.lex_state = 70}, + [3030] = {.lex_state = 6}, [3031] = {.lex_state = 14}, - [3032] = {.lex_state = 17}, + [3032] = {.lex_state = 14}, [3033] = {.lex_state = 14}, [3034] = {.lex_state = 14}, - [3035] = {.lex_state = 70}, - [3036] = {.lex_state = 14}, + [3035] = {.lex_state = 27}, + [3036] = {.lex_state = 70}, [3037] = {.lex_state = 14}, [3038] = {.lex_state = 70}, - [3039] = {.lex_state = 14}, - [3040] = {.lex_state = 14}, - [3041] = {.lex_state = 10, .external_lex_state = 5}, + [3039] = {.lex_state = 70}, + [3040] = {.lex_state = 70}, + [3041] = {.lex_state = 70}, [3042] = {.lex_state = 14}, - [3043] = {.lex_state = 14}, + [3043] = {.lex_state = 70}, [3044] = {.lex_state = 70}, [3045] = {.lex_state = 14}, - [3046] = {.lex_state = 70}, - [3047] = {.lex_state = 70}, - [3048] = {.lex_state = 27}, - [3049] = {.lex_state = 70}, + [3046] = {.lex_state = 27}, + [3047] = {.lex_state = 27}, + [3048] = {.lex_state = 14}, + [3049] = {.lex_state = 14}, [3050] = {.lex_state = 14}, [3051] = {.lex_state = 14}, - [3052] = {.lex_state = 70}, - [3053] = {.lex_state = 70}, + [3052] = {.lex_state = 14}, + [3053] = {.lex_state = 14}, [3054] = {.lex_state = 70}, [3055] = {.lex_state = 70}, - [3056] = {.lex_state = 70}, + [3056] = {.lex_state = 14}, [3057] = {.lex_state = 70}, - [3058] = {.lex_state = 14}, - [3059] = {.lex_state = 27}, - [3060] = {.lex_state = 70}, - [3061] = {.lex_state = 27}, + [3058] = {.lex_state = 27}, + [3059] = {.lex_state = 70}, + [3060] = {.lex_state = 14}, + [3061] = {.lex_state = 14}, [3062] = {.lex_state = 14}, [3063] = {.lex_state = 14}, - [3064] = {.lex_state = 14}, + [3064] = {.lex_state = 70}, [3065] = {.lex_state = 70}, - [3066] = {.lex_state = 14}, - [3067] = {.lex_state = 14}, + [3066] = {.lex_state = 70}, + [3067] = {.lex_state = 70}, [3068] = {.lex_state = 14}, - [3069] = {.lex_state = 27}, - [3070] = {.lex_state = 70}, - [3071] = {.lex_state = 70}, + [3069] = {.lex_state = 14}, + [3070] = {.lex_state = 14}, + [3071] = {.lex_state = 14}, [3072] = {.lex_state = 14}, [3073] = {.lex_state = 70}, - [3074] = {.lex_state = 70}, - [3075] = {.lex_state = 10}, - [3076] = {.lex_state = 10, .external_lex_state = 5}, + [3074] = {.lex_state = 14}, + [3075] = {.lex_state = 70}, + [3076] = {.lex_state = 70}, [3077] = {.lex_state = 14}, [3078] = {.lex_state = 70}, - [3079] = {.lex_state = 14}, - [3080] = {.lex_state = 70}, - [3081] = {.lex_state = 70}, - [3082] = {.lex_state = 14}, + [3079] = {.lex_state = 70}, + [3080] = {.lex_state = 14}, + [3081] = {.lex_state = 14}, + [3082] = {.lex_state = 70}, [3083] = {.lex_state = 70}, - [3084] = {.lex_state = 70}, - [3085] = {.lex_state = 70}, - [3086] = {.lex_state = 14}, - [3087] = {.lex_state = 70}, + [3084] = {.lex_state = 14}, + [3085] = {.lex_state = 14}, + [3086] = {.lex_state = 70}, + [3087] = {.lex_state = 14}, [3088] = {.lex_state = 70}, [3089] = {.lex_state = 70}, [3090] = {.lex_state = 70}, - [3091] = {.lex_state = 70}, - [3092] = {.lex_state = 14}, + [3091] = {.lex_state = 14}, + [3092] = {.lex_state = 70}, [3093] = {.lex_state = 70}, - [3094] = {.lex_state = 70}, + [3094] = {.lex_state = 14}, [3095] = {.lex_state = 14}, [3096] = {.lex_state = 14}, [3097] = {.lex_state = 70}, - [3098] = {.lex_state = 70}, - [3099] = {.lex_state = 70}, + [3098] = {.lex_state = 18}, + [3099] = {.lex_state = 14}, [3100] = {.lex_state = 70}, - [3101] = {.lex_state = 70}, - [3102] = {.lex_state = 14}, - [3103] = {.lex_state = 70}, - [3104] = {.lex_state = 70}, - [3105] = {.lex_state = 70}, - [3106] = {.lex_state = 70}, + [3101] = {.lex_state = 14}, + [3102] = {.lex_state = 10, .external_lex_state = 5}, + [3103] = {.lex_state = 14}, + [3104] = {.lex_state = 14}, + [3105] = {.lex_state = 14}, + [3106] = {.lex_state = 10, .external_lex_state = 5}, [3107] = {.lex_state = 70}, [3108] = {.lex_state = 70}, - [3109] = {.lex_state = 14}, - [3110] = {.lex_state = 14}, - [3111] = {.lex_state = 14}, - [3112] = {.lex_state = 14}, - [3113] = {.lex_state = 70}, + [3109] = {.lex_state = 10}, + [3110] = {.lex_state = 70}, + [3111] = {.lex_state = 70}, + [3112] = {.lex_state = 70}, + [3113] = {.lex_state = 10, .external_lex_state = 5}, [3114] = {.lex_state = 70}, [3115] = {.lex_state = 70}, [3116] = {.lex_state = 70}, [3117] = {.lex_state = 70}, - [3118] = {.lex_state = 14}, + [3118] = {.lex_state = 70}, [3119] = {.lex_state = 70}, - [3120] = {.lex_state = 70}, - [3121] = {.lex_state = 70}, - [3122] = {.lex_state = 70}, - [3123] = {.lex_state = 70}, + [3120] = {.lex_state = 14}, + [3121] = {.lex_state = 14}, + [3122] = {.lex_state = 14}, + [3123] = {.lex_state = 70, .external_lex_state = 6}, [3124] = {.lex_state = 14}, - [3125] = {.lex_state = 14}, - [3126] = {.lex_state = 14}, + [3125] = {.lex_state = 27}, + [3126] = {.lex_state = 70}, [3127] = {.lex_state = 70}, - [3128] = {.lex_state = 70}, + [3128] = {.lex_state = 14}, [3129] = {.lex_state = 70}, - [3130] = {.lex_state = 14}, - [3131] = {.lex_state = 70, .external_lex_state = 6}, - [3132] = {.lex_state = 14}, - [3133] = {.lex_state = 14}, - [3134] = {.lex_state = 14}, + [3130] = {.lex_state = 70}, + [3131] = {.lex_state = 70}, + [3132] = {.lex_state = 70}, + [3133] = {.lex_state = 70}, + [3134] = {.lex_state = 70}, [3135] = {.lex_state = 14}, [3136] = {.lex_state = 70}, - [3137] = {.lex_state = 70}, + [3137] = {.lex_state = 27}, [3138] = {.lex_state = 70}, - [3139] = {.lex_state = 14}, - [3140] = {.lex_state = 14}, + [3139] = {.lex_state = 70}, + [3140] = {.lex_state = 70}, [3141] = {.lex_state = 70}, - [3142] = {.lex_state = 14}, - [3143] = {.lex_state = 14}, + [3142] = {.lex_state = 70}, + [3143] = {.lex_state = 70}, [3144] = {.lex_state = 70}, - [3145] = {.lex_state = 14}, - [3146] = {.lex_state = 14}, - [3147] = {.lex_state = 14}, - [3148] = {.lex_state = 70}, + [3145] = {.lex_state = 70}, + [3146] = {.lex_state = 70}, + [3147] = {.lex_state = 70}, + [3148] = {.lex_state = 14}, [3149] = {.lex_state = 70}, [3150] = {.lex_state = 70}, [3151] = {.lex_state = 70}, - [3152] = {.lex_state = 6}, - [3153] = {.lex_state = 70}, + [3152] = {.lex_state = 70}, + [3153] = {.lex_state = 70, .external_lex_state = 6}, [3154] = {.lex_state = 70}, [3155] = {.lex_state = 70}, - [3156] = {.lex_state = 70}, - [3157] = {.lex_state = 14}, + [3156] = {.lex_state = 14}, + [3157] = {.lex_state = 70}, [3158] = {.lex_state = 14}, [3159] = {.lex_state = 70}, - [3160] = {.lex_state = 14}, + [3160] = {.lex_state = 70}, [3161] = {.lex_state = 14}, - [3162] = {.lex_state = 70}, + [3162] = {.lex_state = 14}, [3163] = {.lex_state = 70}, - [3164] = {.lex_state = 14}, - [3165] = {.lex_state = 14}, - [3166] = {.lex_state = 27}, - [3167] = {.lex_state = 14}, - [3168] = {.lex_state = 14}, - [3169] = {.lex_state = 70}, - [3170] = {.lex_state = 14}, + [3164] = {.lex_state = 70}, + [3165] = {.lex_state = 70}, + [3166] = {.lex_state = 14}, + [3167] = {.lex_state = 70}, + [3168] = {.lex_state = 70}, + [3169] = {.lex_state = 14}, + [3170] = {.lex_state = 70}, [3171] = {.lex_state = 70}, - [3172] = {.lex_state = 14}, - [3173] = {.lex_state = 14}, + [3172] = {.lex_state = 70}, + [3173] = {.lex_state = 70}, [3174] = {.lex_state = 14}, - [3175] = {.lex_state = 14}, - [3176] = {.lex_state = 14}, + [3175] = {.lex_state = 70}, + [3176] = {.lex_state = 5}, [3177] = {.lex_state = 14}, [3178] = {.lex_state = 14}, [3179] = {.lex_state = 5}, - [3180] = {.lex_state = 14}, - [3181] = {.lex_state = 5}, - [3182] = {.lex_state = 14}, - [3183] = {.lex_state = 14}, + [3180] = {.lex_state = 70}, + [3181] = {.lex_state = 70}, + [3182] = {.lex_state = 70}, + [3183] = {.lex_state = 70}, [3184] = {.lex_state = 70}, - [3185] = {.lex_state = 14}, - [3186] = {.lex_state = 14}, - [3187] = {.lex_state = 14}, + [3185] = {.lex_state = 70}, + [3186] = {.lex_state = 70}, + [3187] = {.lex_state = 70}, [3188] = {.lex_state = 14}, [3189] = {.lex_state = 70}, - [3190] = {.lex_state = 70}, - [3191] = {.lex_state = 14}, - [3192] = {.lex_state = 70}, - [3193] = {.lex_state = 70}, - [3194] = {.lex_state = 18}, + [3190] = {.lex_state = 14}, + [3191] = {.lex_state = 70}, + [3192] = {.lex_state = 14}, + [3193] = {.lex_state = 14}, + [3194] = {.lex_state = 70}, [3195] = {.lex_state = 70}, [3196] = {.lex_state = 70}, [3197] = {.lex_state = 70}, [3198] = {.lex_state = 70}, [3199] = {.lex_state = 14}, - [3200] = {.lex_state = 14}, + [3200] = {.lex_state = 70}, [3201] = {.lex_state = 70}, [3202] = {.lex_state = 70}, [3203] = {.lex_state = 70}, - [3204] = {.lex_state = 14}, - [3205] = {.lex_state = 14}, - [3206] = {.lex_state = 14}, - [3207] = {.lex_state = 70}, - [3208] = {.lex_state = 70}, + [3204] = {.lex_state = 70}, + [3205] = {.lex_state = 70}, + [3206] = {.lex_state = 70}, + [3207] = {.lex_state = 14}, + [3208] = {.lex_state = 14}, [3209] = {.lex_state = 70}, [3210] = {.lex_state = 70}, [3211] = {.lex_state = 70}, - [3212] = {.lex_state = 70}, - [3213] = {.lex_state = 6}, + [3212] = {.lex_state = 14}, + [3213] = {.lex_state = 14}, [3214] = {.lex_state = 70}, - [3215] = {.lex_state = 70}, + [3215] = {.lex_state = 6}, [3216] = {.lex_state = 70}, - [3217] = {.lex_state = 70}, - [3218] = {.lex_state = 70}, + [3217] = {.lex_state = 14}, + [3218] = {.lex_state = 14}, [3219] = {.lex_state = 70}, - [3220] = {.lex_state = 70}, + [3220] = {.lex_state = 6}, [3221] = {.lex_state = 70}, [3222] = {.lex_state = 70}, - [3223] = {.lex_state = 70}, + [3223] = {.lex_state = 14}, [3224] = {.lex_state = 70}, [3225] = {.lex_state = 70}, [3226] = {.lex_state = 70}, - [3227] = {.lex_state = 14}, - [3228] = {.lex_state = 70}, - [3229] = {.lex_state = 70}, + [3227] = {.lex_state = 70}, + [3228] = {.lex_state = 14}, + [3229] = {.lex_state = 14}, [3230] = {.lex_state = 70}, - [3231] = {.lex_state = 70}, - [3232] = {.lex_state = 70}, - [3233] = {.lex_state = 70}, - [3234] = {.lex_state = 70}, + [3231] = {.lex_state = 14}, + [3232] = {.lex_state = 14}, + [3233] = {.lex_state = 14}, + [3234] = {.lex_state = 14}, [3235] = {.lex_state = 14}, - [3236] = {.lex_state = 14}, + [3236] = {.lex_state = 70}, [3237] = {.lex_state = 70}, [3238] = {.lex_state = 14}, - [3239] = {.lex_state = 14}, - [3240] = {.lex_state = 70}, - [3241] = {.lex_state = 70}, + [3239] = {.lex_state = 70}, + [3240] = {.lex_state = 14}, + [3241] = {.lex_state = 14}, [3242] = {.lex_state = 70}, [3243] = {.lex_state = 70}, [3244] = {.lex_state = 70}, [3245] = {.lex_state = 70}, - [3246] = {.lex_state = 14}, + [3246] = {.lex_state = 70}, [3247] = {.lex_state = 14}, [3248] = {.lex_state = 70}, - [3249] = {.lex_state = 14}, - [3250] = {.lex_state = 70}, - [3251] = {.lex_state = 70}, + [3249] = {.lex_state = 70}, + [3250] = {.lex_state = 14}, + [3251] = {.lex_state = 10}, [3252] = {.lex_state = 70}, - [3253] = {.lex_state = 70}, - [3254] = {.lex_state = 14}, - [3255] = {.lex_state = 70}, - [3256] = {.lex_state = 70}, - [3257] = {.lex_state = 70}, + [3253] = {.lex_state = 14}, + [3254] = {.lex_state = 70}, + [3255] = {.lex_state = 14}, + [3256] = {.lex_state = 14}, + [3257] = {.lex_state = 14}, [3258] = {.lex_state = 70}, [3259] = {.lex_state = 70}, - [3260] = {.lex_state = 14}, + [3260] = {.lex_state = 70}, [3261] = {.lex_state = 14}, - [3262] = {.lex_state = 70}, - [3263] = {.lex_state = 70, .external_lex_state = 6}, - [3264] = {.lex_state = 70}, - [3265] = {.lex_state = 10, .external_lex_state = 5}, + [3262] = {.lex_state = 14}, + [3263] = {.lex_state = 14}, + [3264] = {.lex_state = 14}, + [3265] = {.lex_state = 70}, [3266] = {.lex_state = 70}, - [3267] = {.lex_state = 14}, - [3268] = {.lex_state = 27}, + [3267] = {.lex_state = 70}, + [3268] = {.lex_state = 70}, [3269] = {.lex_state = 70}, - [3270] = {.lex_state = 14}, - [3271] = {.lex_state = 70}, + [3270] = {.lex_state = 70}, + [3271] = {.lex_state = 14}, [3272] = {.lex_state = 70}, - [3273] = {.lex_state = 70}, + [3273] = {.lex_state = 14}, [3274] = {.lex_state = 70}, - [3275] = {.lex_state = 70}, - [3276] = {.lex_state = 70}, - [3277] = {.lex_state = 70}, + [3275] = {.lex_state = 14}, + [3276] = {.lex_state = 14}, + [3277] = {.lex_state = 14}, [3278] = {.lex_state = 70}, [3279] = {.lex_state = 70}, [3280] = {.lex_state = 70}, - [3281] = {.lex_state = 14}, - [3282] = {.lex_state = 70}, + [3281] = {.lex_state = 70}, + [3282] = {.lex_state = 14}, [3283] = {.lex_state = 14}, [3284] = {.lex_state = 70}, [3285] = {.lex_state = 14}, - [3286] = {.lex_state = 70}, - [3287] = {.lex_state = 14}, - [3288] = {.lex_state = 70}, - [3289] = {.lex_state = 14}, - [3290] = {.lex_state = 70}, + [3286] = {.lex_state = 14}, + [3287] = {.lex_state = 70}, + [3288] = {.lex_state = 14}, + [3289] = {.lex_state = 70}, + [3290] = {.lex_state = 14}, [3291] = {.lex_state = 14}, - [3292] = {.lex_state = 14}, - [3293] = {.lex_state = 70}, + [3292] = {.lex_state = 70}, + [3293] = {.lex_state = 14}, [3294] = {.lex_state = 14}, - [3295] = {.lex_state = 70}, + [3295] = {.lex_state = 14}, [3296] = {.lex_state = 14}, - [3297] = {.lex_state = 14}, - [3298] = {.lex_state = 70}, + [3297] = {.lex_state = 70}, + [3298] = {.lex_state = 14}, [3299] = {.lex_state = 14}, - [3300] = {.lex_state = 14}, + [3300] = {.lex_state = 70}, [3301] = {.lex_state = 14}, [3302] = {.lex_state = 14}, - [3303] = {.lex_state = 70}, - [3304] = {.lex_state = 14}, + [3303] = {.lex_state = 14}, + [3304] = {.lex_state = 70}, [3305] = {.lex_state = 70}, [3306] = {.lex_state = 14}, - [3307] = {.lex_state = 10}, - [3308] = {.lex_state = 14}, + [3307] = {.lex_state = 14}, + [3308] = {.lex_state = 70}, [3309] = {.lex_state = 70}, - [3310] = {.lex_state = 14}, - [3311] = {.lex_state = 14}, + [3310] = {.lex_state = 70}, + [3311] = {.lex_state = 70}, [3312] = {.lex_state = 70}, - [3313] = {.lex_state = 71}, + [3313] = {.lex_state = 70}, [3314] = {.lex_state = 14}, [3315] = {.lex_state = 14}, [3316] = {.lex_state = 14}, [3317] = {.lex_state = 14}, - [3318] = {.lex_state = 18}, - [3319] = {.lex_state = 70, .external_lex_state = 7}, + [3318] = {.lex_state = 14}, + [3319] = {.lex_state = 70}, [3320] = {.lex_state = 70}, - [3321] = {.lex_state = 70}, - [3322] = {.lex_state = 70}, + [3321] = {.lex_state = 70, .external_lex_state = 7}, + [3322] = {.lex_state = 14}, [3323] = {.lex_state = 70}, - [3324] = {.lex_state = 70}, - [3325] = {.lex_state = 71}, + [3324] = {.lex_state = 71}, + [3325] = {.lex_state = 70}, [3326] = {.lex_state = 70}, - [3327] = {.lex_state = 70}, + [3327] = {.lex_state = 14}, [3328] = {.lex_state = 70}, [3329] = {.lex_state = 70}, - [3330] = {.lex_state = 14}, - [3331] = {.lex_state = 18}, + [3330] = {.lex_state = 70}, + [3331] = {.lex_state = 70}, [3332] = {.lex_state = 70}, - [3333] = {.lex_state = 70, .external_lex_state = 7}, - [3334] = {.lex_state = 70}, - [3335] = {.lex_state = 14}, - [3336] = {.lex_state = 70}, - [3337] = {.lex_state = 71}, - [3338] = {.lex_state = 14}, - [3339] = {.lex_state = 70}, + [3333] = {.lex_state = 70}, + [3334] = {.lex_state = 14}, + [3335] = {.lex_state = 70}, + [3336] = {.lex_state = 18}, + [3337] = {.lex_state = 70}, + [3338] = {.lex_state = 70}, + [3339] = {.lex_state = 14}, [3340] = {.lex_state = 70}, - [3341] = {.lex_state = 70, .external_lex_state = 7}, - [3342] = {.lex_state = 14}, + [3341] = {.lex_state = 70}, + [3342] = {.lex_state = 70}, [3343] = {.lex_state = 70}, [3344] = {.lex_state = 14}, - [3345] = {.lex_state = 71}, + [3345] = {.lex_state = 70}, [3346] = {.lex_state = 70}, - [3347] = {.lex_state = 70}, + [3347] = {.lex_state = 14}, [3348] = {.lex_state = 70}, - [3349] = {.lex_state = 14}, - [3350] = {.lex_state = 70}, - [3351] = {.lex_state = 14}, + [3349] = {.lex_state = 70}, + [3350] = {.lex_state = 14}, + [3351] = {.lex_state = 70}, [3352] = {.lex_state = 14}, [3353] = {.lex_state = 14}, [3354] = {.lex_state = 14}, [3355] = {.lex_state = 14}, [3356] = {.lex_state = 14}, - [3357] = {.lex_state = 70}, + [3357] = {.lex_state = 18}, [3358] = {.lex_state = 70}, [3359] = {.lex_state = 70}, - [3360] = {.lex_state = 14}, + [3360] = {.lex_state = 70}, [3361] = {.lex_state = 70}, [3362] = {.lex_state = 70}, [3363] = {.lex_state = 70}, [3364] = {.lex_state = 70}, [3365] = {.lex_state = 70}, - [3366] = {.lex_state = 18}, - [3367] = {.lex_state = 14}, + [3366] = {.lex_state = 14}, + [3367] = {.lex_state = 70}, [3368] = {.lex_state = 70}, [3369] = {.lex_state = 70}, - [3370] = {.lex_state = 14}, + [3370] = {.lex_state = 70}, [3371] = {.lex_state = 70}, - [3372] = {.lex_state = 70}, + [3372] = {.lex_state = 14}, [3373] = {.lex_state = 70}, [3374] = {.lex_state = 70}, [3375] = {.lex_state = 70}, - [3376] = {.lex_state = 70, .external_lex_state = 8}, - [3377] = {.lex_state = 70}, + [3376] = {.lex_state = 14}, + [3377] = {.lex_state = 70, .external_lex_state = 8}, [3378] = {.lex_state = 70}, - [3379] = {.lex_state = 70}, - [3380] = {.lex_state = 70, .external_lex_state = 9}, - [3381] = {.lex_state = 70}, + [3379] = {.lex_state = 18}, + [3380] = {.lex_state = 70}, + [3381] = {.lex_state = 14}, [3382] = {.lex_state = 70}, - [3383] = {.lex_state = 70}, + [3383] = {.lex_state = 14}, [3384] = {.lex_state = 70}, [3385] = {.lex_state = 70}, - [3386] = {.lex_state = 18}, - [3387] = {.lex_state = 14}, + [3386] = {.lex_state = 70}, + [3387] = {.lex_state = 18}, [3388] = {.lex_state = 70}, - [3389] = {.lex_state = 14}, - [3390] = {.lex_state = 14}, - [3391] = {.lex_state = 70}, - [3392] = {.lex_state = 70}, + [3389] = {.lex_state = 70}, + [3390] = {.lex_state = 70}, + [3391] = {.lex_state = 14}, + [3392] = {.lex_state = 14}, [3393] = {.lex_state = 70}, [3394] = {.lex_state = 70}, - [3395] = {.lex_state = 14}, + [3395] = {.lex_state = 70}, [3396] = {.lex_state = 10}, [3397] = {.lex_state = 70}, [3398] = {.lex_state = 70}, - [3399] = {.lex_state = 14}, + [3399] = {.lex_state = 71}, [3400] = {.lex_state = 70}, [3401] = {.lex_state = 70}, - [3402] = {.lex_state = 165}, - [3403] = {.lex_state = 70}, + [3402] = {.lex_state = 14}, + [3403] = {.lex_state = 14}, [3404] = {.lex_state = 70}, [3405] = {.lex_state = 70}, [3406] = {.lex_state = 70}, - [3407] = {.lex_state = 14}, - [3408] = {.lex_state = 70}, + [3407] = {.lex_state = 70}, + [3408] = {.lex_state = 70, .external_lex_state = 8}, [3409] = {.lex_state = 14}, - [3410] = {.lex_state = 71}, - [3411] = {.lex_state = 70}, - [3412] = {.lex_state = 18}, + [3410] = {.lex_state = 14}, + [3411] = {.lex_state = 14}, + [3412] = {.lex_state = 14}, [3413] = {.lex_state = 70}, - [3414] = {.lex_state = 70}, - [3415] = {.lex_state = 70}, + [3414] = {.lex_state = 14}, + [3415] = {.lex_state = 14}, [3416] = {.lex_state = 70}, - [3417] = {.lex_state = 70}, + [3417] = {.lex_state = 71}, [3418] = {.lex_state = 70}, - [3419] = {.lex_state = 10}, - [3420] = {.lex_state = 14}, + [3419] = {.lex_state = 70}, + [3420] = {.lex_state = 70}, [3421] = {.lex_state = 70}, [3422] = {.lex_state = 70}, - [3423] = {.lex_state = 71}, + [3423] = {.lex_state = 14}, [3424] = {.lex_state = 70}, - [3425] = {.lex_state = 70}, + [3425] = {.lex_state = 14}, [3426] = {.lex_state = 70}, [3427] = {.lex_state = 14}, [3428] = {.lex_state = 70}, - [3429] = {.lex_state = 70, .external_lex_state = 9}, + [3429] = {.lex_state = 70}, [3430] = {.lex_state = 70}, [3431] = {.lex_state = 70}, [3432] = {.lex_state = 70}, [3433] = {.lex_state = 70}, - [3434] = {.lex_state = 14}, - [3435] = {.lex_state = 18}, - [3436] = {.lex_state = 14}, - [3437] = {.lex_state = 70}, + [3434] = {.lex_state = 70}, + [3435] = {.lex_state = 71}, + [3436] = {.lex_state = 71}, + [3437] = {.lex_state = 14}, [3438] = {.lex_state = 70}, - [3439] = {.lex_state = 70}, - [3440] = {.lex_state = 70}, - [3441] = {.lex_state = 70}, - [3442] = {.lex_state = 70}, - [3443] = {.lex_state = 70}, - [3444] = {.lex_state = 14}, + [3439] = {.lex_state = 14}, + [3440] = {.lex_state = 18}, + [3441] = {.lex_state = 14}, + [3442] = {.lex_state = 14}, + [3443] = {.lex_state = 70, .external_lex_state = 8}, + [3444] = {.lex_state = 70}, [3445] = {.lex_state = 14}, - [3446] = {.lex_state = 70}, - [3447] = {.lex_state = 70}, + [3446] = {.lex_state = 14}, + [3447] = {.lex_state = 14}, [3448] = {.lex_state = 14}, - [3449] = {.lex_state = 14}, + [3449] = {.lex_state = 70}, [3450] = {.lex_state = 70}, - [3451] = {.lex_state = 70, .external_lex_state = 9}, - [3452] = {.lex_state = 14}, + [3451] = {.lex_state = 70}, + [3452] = {.lex_state = 70}, [3453] = {.lex_state = 14}, [3454] = {.lex_state = 70}, [3455] = {.lex_state = 70}, - [3456] = {.lex_state = 70}, - [3457] = {.lex_state = 70}, - [3458] = {.lex_state = 14}, - [3459] = {.lex_state = 14}, - [3460] = {.lex_state = 14}, - [3461] = {.lex_state = 70, .external_lex_state = 8}, + [3456] = {.lex_state = 18}, + [3457] = {.lex_state = 18}, + [3458] = {.lex_state = 70}, + [3459] = {.lex_state = 70}, + [3460] = {.lex_state = 70}, + [3461] = {.lex_state = 70}, [3462] = {.lex_state = 70}, [3463] = {.lex_state = 70}, [3464] = {.lex_state = 70}, - [3465] = {.lex_state = 70}, + [3465] = {.lex_state = 18}, [3466] = {.lex_state = 70}, - [3467] = {.lex_state = 70}, - [3468] = {.lex_state = 70}, + [3467] = {.lex_state = 70, .external_lex_state = 7}, + [3468] = {.lex_state = 14}, [3469] = {.lex_state = 70}, - [3470] = {.lex_state = 14}, + [3470] = {.lex_state = 70}, [3471] = {.lex_state = 70}, [3472] = {.lex_state = 70}, - [3473] = {.lex_state = 14}, - [3474] = {.lex_state = 70}, + [3473] = {.lex_state = 70}, + [3474] = {.lex_state = 14}, [3475] = {.lex_state = 70}, [3476] = {.lex_state = 70}, [3477] = {.lex_state = 70}, [3478] = {.lex_state = 70}, - [3479] = {.lex_state = 70}, - [3480] = {.lex_state = 18}, + [3479] = {.lex_state = 70, .external_lex_state = 8}, + [3480] = {.lex_state = 14}, [3481] = {.lex_state = 70}, [3482] = {.lex_state = 70}, [3483] = {.lex_state = 70}, - [3484] = {.lex_state = 14}, - [3485] = {.lex_state = 18}, + [3484] = {.lex_state = 70}, + [3485] = {.lex_state = 70}, [3486] = {.lex_state = 70}, [3487] = {.lex_state = 70}, [3488] = {.lex_state = 70}, - [3489] = {.lex_state = 70, .external_lex_state = 7}, + [3489] = {.lex_state = 70}, [3490] = {.lex_state = 70}, - [3491] = {.lex_state = 70}, - [3492] = {.lex_state = 70}, - [3493] = {.lex_state = 14}, - [3494] = {.lex_state = 70, .external_lex_state = 8}, - [3495] = {.lex_state = 70}, + [3491] = {.lex_state = 14}, + [3492] = {.lex_state = 70, .external_lex_state = 7}, + [3493] = {.lex_state = 70}, + [3494] = {.lex_state = 18}, + [3495] = {.lex_state = 14}, [3496] = {.lex_state = 70}, - [3497] = {.lex_state = 14}, + [3497] = {.lex_state = 70}, [3498] = {.lex_state = 70}, [3499] = {.lex_state = 70}, [3500] = {.lex_state = 70}, @@ -13546,110 +13554,110 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3505] = {.lex_state = 70}, [3506] = {.lex_state = 70}, [3507] = {.lex_state = 70}, - [3508] = {.lex_state = 70}, - [3509] = {.lex_state = 14}, - [3510] = {.lex_state = 18}, - [3511] = {.lex_state = 70}, + [3508] = {.lex_state = 14}, + [3509] = {.lex_state = 70}, + [3510] = {.lex_state = 70}, + [3511] = {.lex_state = 70, .external_lex_state = 8}, [3512] = {.lex_state = 70}, - [3513] = {.lex_state = 70, .external_lex_state = 8}, - [3514] = {.lex_state = 70}, + [3513] = {.lex_state = 70}, + [3514] = {.lex_state = 14}, [3515] = {.lex_state = 70}, [3516] = {.lex_state = 70}, - [3517] = {.lex_state = 70}, - [3518] = {.lex_state = 70}, - [3519] = {.lex_state = 70, .external_lex_state = 8}, - [3520] = {.lex_state = 70}, - [3521] = {.lex_state = 70}, + [3517] = {.lex_state = 14}, + [3518] = {.lex_state = 10}, + [3519] = {.lex_state = 14}, + [3520] = {.lex_state = 71}, + [3521] = {.lex_state = 70, .external_lex_state = 7}, [3522] = {.lex_state = 70}, - [3523] = {.lex_state = 70}, + [3523] = {.lex_state = 14}, [3524] = {.lex_state = 70}, - [3525] = {.lex_state = 70}, + [3525] = {.lex_state = 70, .external_lex_state = 9}, [3526] = {.lex_state = 70}, - [3527] = {.lex_state = 70}, + [3527] = {.lex_state = 70, .external_lex_state = 7}, [3528] = {.lex_state = 70}, [3529] = {.lex_state = 70}, [3530] = {.lex_state = 70}, - [3531] = {.lex_state = 14}, + [3531] = {.lex_state = 70}, [3532] = {.lex_state = 70}, [3533] = {.lex_state = 70}, - [3534] = {.lex_state = 14}, - [3535] = {.lex_state = 18}, + [3534] = {.lex_state = 70}, + [3535] = {.lex_state = 70}, [3536] = {.lex_state = 70}, - [3537] = {.lex_state = 14}, + [3537] = {.lex_state = 70}, [3538] = {.lex_state = 70}, - [3539] = {.lex_state = 18}, - [3540] = {.lex_state = 18}, + [3539] = {.lex_state = 70}, + [3540] = {.lex_state = 70}, [3541] = {.lex_state = 70}, - [3542] = {.lex_state = 70}, - [3543] = {.lex_state = 70}, - [3544] = {.lex_state = 18}, - [3545] = {.lex_state = 18}, + [3542] = {.lex_state = 70, .external_lex_state = 9}, + [3543] = {.lex_state = 18}, + [3544] = {.lex_state = 70}, + [3545] = {.lex_state = 70, .external_lex_state = 9}, [3546] = {.lex_state = 70}, - [3547] = {.lex_state = 14}, - [3548] = {.lex_state = 70}, + [3547] = {.lex_state = 18}, + [3548] = {.lex_state = 18}, [3549] = {.lex_state = 14}, [3550] = {.lex_state = 70, .external_lex_state = 9}, - [3551] = {.lex_state = 14}, + [3551] = {.lex_state = 70, .external_lex_state = 9}, [3552] = {.lex_state = 70}, - [3553] = {.lex_state = 70, .external_lex_state = 9}, + [3553] = {.lex_state = 18}, [3554] = {.lex_state = 18}, - [3555] = {.lex_state = 18}, - [3556] = {.lex_state = 70}, - [3557] = {.lex_state = 14}, - [3558] = {.lex_state = 14}, - [3559] = {.lex_state = 18}, + [3555] = {.lex_state = 165}, + [3556] = {.lex_state = 18}, + [3557] = {.lex_state = 70}, + [3558] = {.lex_state = 70}, + [3559] = {.lex_state = 70}, [3560] = {.lex_state = 14}, - [3561] = {.lex_state = 70, .external_lex_state = 9}, - [3562] = {.lex_state = 14}, - [3563] = {.lex_state = 70}, + [3561] = {.lex_state = 71}, + [3562] = {.lex_state = 70}, + [3563] = {.lex_state = 18}, [3564] = {.lex_state = 14}, - [3565] = {.lex_state = 18}, - [3566] = {.lex_state = 14}, - [3567] = {.lex_state = 70}, + [3565] = {.lex_state = 70}, + [3566] = {.lex_state = 70}, + [3567] = {.lex_state = 18}, [3568] = {.lex_state = 70}, - [3569] = {.lex_state = 14}, + [3569] = {.lex_state = 70}, [3570] = {.lex_state = 70}, - [3571] = {.lex_state = 70}, + [3571] = {.lex_state = 18}, [3572] = {.lex_state = 70}, - [3573] = {.lex_state = 70}, + [3573] = {.lex_state = 18}, [3574] = {.lex_state = 70}, [3575] = {.lex_state = 70}, [3576] = {.lex_state = 70}, - [3577] = {.lex_state = 18}, + [3577] = {.lex_state = 14}, [3578] = {.lex_state = 70}, - [3579] = {.lex_state = 18}, + [3579] = {.lex_state = 70}, [3580] = {.lex_state = 70}, - [3581] = {.lex_state = 70}, - [3582] = {.lex_state = 18}, + [3581] = {.lex_state = 14}, + [3582] = {.lex_state = 70, .external_lex_state = 8}, [3583] = {.lex_state = 70}, [3584] = {.lex_state = 70}, [3585] = {.lex_state = 18}, - [3586] = {.lex_state = 18}, - [3587] = {.lex_state = 14}, - [3588] = {.lex_state = 18}, - [3589] = {.lex_state = 18}, + [3586] = {.lex_state = 70}, + [3587] = {.lex_state = 18}, + [3588] = {.lex_state = 70}, + [3589] = {.lex_state = 70}, [3590] = {.lex_state = 18}, - [3591] = {.lex_state = 18}, - [3592] = {.lex_state = 18}, - [3593] = {.lex_state = 14}, - [3594] = {.lex_state = 71}, - [3595] = {.lex_state = 14}, - [3596] = {.lex_state = 14}, - [3597] = {.lex_state = 70}, - [3598] = {.lex_state = 70}, - [3599] = {.lex_state = 14}, + [3591] = {.lex_state = 14}, + [3592] = {.lex_state = 70}, + [3593] = {.lex_state = 18}, + [3594] = {.lex_state = 18}, + [3595] = {.lex_state = 18}, + [3596] = {.lex_state = 70}, + [3597] = {.lex_state = 18}, + [3598] = {.lex_state = 18}, + [3599] = {.lex_state = 18}, [3600] = {.lex_state = 14}, - [3601] = {.lex_state = 70, .external_lex_state = 8}, + [3601] = {.lex_state = 14}, [3602] = {.lex_state = 14}, - [3603] = {.lex_state = 14}, + [3603] = {.lex_state = 70}, [3604] = {.lex_state = 14}, - [3605] = {.lex_state = 71}, + [3605] = {.lex_state = 14}, [3606] = {.lex_state = 70}, [3607] = {.lex_state = 14}, - [3608] = {.lex_state = 70}, - [3609] = {.lex_state = 70}, - [3610] = {.lex_state = 70}, - [3611] = {.lex_state = 14}, + [3608] = {.lex_state = 14}, + [3609] = {.lex_state = 14}, + [3610] = {.lex_state = 14}, + [3611] = {.lex_state = 71}, [3612] = {.lex_state = 70}, [3613] = {(TSStateId)(-1)}, [3614] = {(TSStateId)(-1)}, @@ -13814,82 +13822,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__error_sentinel] = ACTIONS(1), }, [1] = { - [sym_source_file] = STATE(3512), - [sym__statement] = STATE(651), - [sym_empty_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_macro_definition] = STATE(652), - [sym_attribute_item] = STATE(652), - [sym_inner_attribute_item] = STATE(652), - [sym_mod_item] = STATE(652), - [sym_foreign_mod_item] = STATE(652), - [sym_struct_item] = STATE(652), - [sym_union_item] = STATE(652), - [sym_enum_item] = STATE(652), - [sym_extern_crate_declaration] = STATE(652), - [sym_const_item] = STATE(652), - [sym_static_item] = STATE(652), - [sym_type_item] = STATE(652), - [sym_function_item] = STATE(652), - [sym_function_signature_item] = STATE(652), - [sym_function_modifiers] = STATE(3452), - [sym_impl_item] = STATE(652), - [sym_trait_item] = STATE(652), - [sym_associated_type] = STATE(652), - [sym_let_declaration] = STATE(652), - [sym_use_declaration] = STATE(652), - [sym_extern_modifier] = STATE(2160), + [sym_source_file] = STATE(3565), + [sym__statement] = STATE(599), + [sym_empty_statement] = STATE(605), + [sym_expression_statement] = STATE(605), + [sym_macro_definition] = STATE(605), + [sym_attribute_item] = STATE(605), + [sym_inner_attribute_item] = STATE(605), + [sym_mod_item] = STATE(605), + [sym_foreign_mod_item] = STATE(605), + [sym_struct_item] = STATE(605), + [sym_union_item] = STATE(605), + [sym_enum_item] = STATE(605), + [sym_extern_crate_declaration] = STATE(605), + [sym_const_item] = STATE(605), + [sym_static_item] = STATE(605), + [sym_type_item] = STATE(605), + [sym_function_item] = STATE(605), + [sym_function_signature_item] = STATE(605), + [sym_function_modifiers] = STATE(3564), + [sym_impl_item] = STATE(605), + [sym_trait_item] = STATE(605), + [sym_associated_type] = STATE(605), + [sym_let_declaration] = STATE(605), + [sym_use_declaration] = STATE(605), + [sym_extern_modifier] = STATE(2138), [sym_visibility_modifier] = STATE(1932), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1845), - [sym_macro_invocation] = STATE(395), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(391), - [sym_match_expression] = STATE(391), - [sym_while_expression] = STATE(391), - [sym_loop_expression] = STATE(391), - [sym_for_expression] = STATE(391), - [sym_const_block] = STATE(391), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3544), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(391), - [sym_async_block] = STATE(391), - [sym_try_block] = STATE(391), - [sym_block] = STATE(391), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1858), + [sym_macro_invocation] = STATE(391), + [sym_scoped_identifier] = STATE(1536), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(387), + [sym_match_expression] = STATE(387), + [sym_while_expression] = STATE(387), + [sym_loop_expression] = STATE(387), + [sym_for_expression] = STATE(387), + [sym_const_block] = STATE(387), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3556), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(387), + [sym_async_block] = STATE(387), + [sym_try_block] = STATE(387), + [sym_block] = STATE(387), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), [sym_line_comment] = STATE(1), [sym_block_comment] = STATE(1), - [aux_sym_source_file_repeat1] = STATE(34), - [aux_sym_function_modifiers_repeat1] = STATE(2206), + [aux_sym_source_file_repeat1] = STATE(8), + [aux_sym_function_modifiers_repeat1] = STATE(2220), [ts_builtin_sym_end] = ACTIONS(7), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), @@ -13968,81 +13976,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(95), }, [2] = { - [sym__statement] = STATE(651), - [sym_empty_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_macro_definition] = STATE(652), - [sym_attribute_item] = STATE(652), - [sym_inner_attribute_item] = STATE(652), - [sym_mod_item] = STATE(652), - [sym_foreign_mod_item] = STATE(652), - [sym_struct_item] = STATE(652), - [sym_union_item] = STATE(652), - [sym_enum_item] = STATE(652), - [sym_extern_crate_declaration] = STATE(652), - [sym_const_item] = STATE(652), - [sym_static_item] = STATE(652), - [sym_type_item] = STATE(652), - [sym_function_item] = STATE(652), - [sym_function_signature_item] = STATE(652), - [sym_function_modifiers] = STATE(3452), - [sym_impl_item] = STATE(652), - [sym_trait_item] = STATE(652), - [sym_associated_type] = STATE(652), - [sym_let_declaration] = STATE(652), - [sym_use_declaration] = STATE(652), - [sym_extern_modifier] = STATE(2160), + [sym__statement] = STATE(599), + [sym_empty_statement] = STATE(605), + [sym_expression_statement] = STATE(605), + [sym_macro_definition] = STATE(605), + [sym_attribute_item] = STATE(605), + [sym_inner_attribute_item] = STATE(605), + [sym_mod_item] = STATE(605), + [sym_foreign_mod_item] = STATE(605), + [sym_struct_item] = STATE(605), + [sym_union_item] = STATE(605), + [sym_enum_item] = STATE(605), + [sym_extern_crate_declaration] = STATE(605), + [sym_const_item] = STATE(605), + [sym_static_item] = STATE(605), + [sym_type_item] = STATE(605), + [sym_function_item] = STATE(605), + [sym_function_signature_item] = STATE(605), + [sym_function_modifiers] = STATE(3564), + [sym_impl_item] = STATE(605), + [sym_trait_item] = STATE(605), + [sym_associated_type] = STATE(605), + [sym_let_declaration] = STATE(605), + [sym_use_declaration] = STATE(605), + [sym_extern_modifier] = STATE(2138), [sym_visibility_modifier] = STATE(1932), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1838), - [sym_macro_invocation] = STATE(395), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(391), - [sym_match_expression] = STATE(391), - [sym_while_expression] = STATE(391), - [sym_loop_expression] = STATE(391), - [sym_for_expression] = STATE(391), - [sym_const_block] = STATE(391), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3544), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(391), - [sym_async_block] = STATE(391), - [sym_try_block] = STATE(391), - [sym_block] = STATE(391), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1746), + [sym_macro_invocation] = STATE(391), + [sym_scoped_identifier] = STATE(1536), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(387), + [sym_match_expression] = STATE(387), + [sym_while_expression] = STATE(387), + [sym_loop_expression] = STATE(387), + [sym_for_expression] = STATE(387), + [sym_const_block] = STATE(387), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3556), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(387), + [sym_async_block] = STATE(387), + [sym_try_block] = STATE(387), + [sym_block] = STATE(387), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), [sym_line_comment] = STATE(2), [sym_block_comment] = STATE(2), - [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(2206), + [aux_sym_source_file_repeat1] = STATE(4), + [aux_sym_function_modifiers_repeat1] = STATE(2220), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -14120,81 +14128,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(95), }, [3] = { - [sym__statement] = STATE(651), - [sym_empty_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_macro_definition] = STATE(652), - [sym_attribute_item] = STATE(652), - [sym_inner_attribute_item] = STATE(652), - [sym_mod_item] = STATE(652), - [sym_foreign_mod_item] = STATE(652), - [sym_struct_item] = STATE(652), - [sym_union_item] = STATE(652), - [sym_enum_item] = STATE(652), - [sym_extern_crate_declaration] = STATE(652), - [sym_const_item] = STATE(652), - [sym_static_item] = STATE(652), - [sym_type_item] = STATE(652), - [sym_function_item] = STATE(652), - [sym_function_signature_item] = STATE(652), - [sym_function_modifiers] = STATE(3452), - [sym_impl_item] = STATE(652), - [sym_trait_item] = STATE(652), - [sym_associated_type] = STATE(652), - [sym_let_declaration] = STATE(652), - [sym_use_declaration] = STATE(652), - [sym_extern_modifier] = STATE(2160), + [sym__statement] = STATE(599), + [sym_empty_statement] = STATE(605), + [sym_expression_statement] = STATE(605), + [sym_macro_definition] = STATE(605), + [sym_attribute_item] = STATE(605), + [sym_inner_attribute_item] = STATE(605), + [sym_mod_item] = STATE(605), + [sym_foreign_mod_item] = STATE(605), + [sym_struct_item] = STATE(605), + [sym_union_item] = STATE(605), + [sym_enum_item] = STATE(605), + [sym_extern_crate_declaration] = STATE(605), + [sym_const_item] = STATE(605), + [sym_static_item] = STATE(605), + [sym_type_item] = STATE(605), + [sym_function_item] = STATE(605), + [sym_function_signature_item] = STATE(605), + [sym_function_modifiers] = STATE(3564), + [sym_impl_item] = STATE(605), + [sym_trait_item] = STATE(605), + [sym_associated_type] = STATE(605), + [sym_let_declaration] = STATE(605), + [sym_use_declaration] = STATE(605), + [sym_extern_modifier] = STATE(2138), [sym_visibility_modifier] = STATE(1932), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1837), - [sym_macro_invocation] = STATE(395), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(391), - [sym_match_expression] = STATE(391), - [sym_while_expression] = STATE(391), - [sym_loop_expression] = STATE(391), - [sym_for_expression] = STATE(391), - [sym_const_block] = STATE(391), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3544), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(391), - [sym_async_block] = STATE(391), - [sym_try_block] = STATE(391), - [sym_block] = STATE(391), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1824), + [sym_macro_invocation] = STATE(391), + [sym_scoped_identifier] = STATE(1536), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(387), + [sym_match_expression] = STATE(387), + [sym_while_expression] = STATE(387), + [sym_loop_expression] = STATE(387), + [sym_for_expression] = STATE(387), + [sym_const_block] = STATE(387), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3556), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(387), + [sym_async_block] = STATE(387), + [sym_try_block] = STATE(387), + [sym_block] = STATE(387), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), [sym_line_comment] = STATE(3), [sym_block_comment] = STATE(3), - [aux_sym_source_file_repeat1] = STATE(2), - [aux_sym_function_modifiers_repeat1] = STATE(2206), + [aux_sym_source_file_repeat1] = STATE(23), + [aux_sym_function_modifiers_repeat1] = STATE(2220), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -14272,88 +14280,240 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(95), }, [4] = { - [sym__statement] = STATE(651), - [sym_empty_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_macro_definition] = STATE(652), - [sym_attribute_item] = STATE(652), - [sym_inner_attribute_item] = STATE(652), - [sym_mod_item] = STATE(652), - [sym_foreign_mod_item] = STATE(652), - [sym_struct_item] = STATE(652), - [sym_union_item] = STATE(652), - [sym_enum_item] = STATE(652), - [sym_extern_crate_declaration] = STATE(652), - [sym_const_item] = STATE(652), - [sym_static_item] = STATE(652), - [sym_type_item] = STATE(652), - [sym_function_item] = STATE(652), - [sym_function_signature_item] = STATE(652), - [sym_function_modifiers] = STATE(3452), - [sym_impl_item] = STATE(652), - [sym_trait_item] = STATE(652), - [sym_associated_type] = STATE(652), - [sym_let_declaration] = STATE(652), - [sym_use_declaration] = STATE(652), - [sym_extern_modifier] = STATE(2160), + [sym__statement] = STATE(599), + [sym_empty_statement] = STATE(605), + [sym_expression_statement] = STATE(605), + [sym_macro_definition] = STATE(605), + [sym_attribute_item] = STATE(605), + [sym_inner_attribute_item] = STATE(605), + [sym_mod_item] = STATE(605), + [sym_foreign_mod_item] = STATE(605), + [sym_struct_item] = STATE(605), + [sym_union_item] = STATE(605), + [sym_enum_item] = STATE(605), + [sym_extern_crate_declaration] = STATE(605), + [sym_const_item] = STATE(605), + [sym_static_item] = STATE(605), + [sym_type_item] = STATE(605), + [sym_function_item] = STATE(605), + [sym_function_signature_item] = STATE(605), + [sym_function_modifiers] = STATE(3564), + [sym_impl_item] = STATE(605), + [sym_trait_item] = STATE(605), + [sym_associated_type] = STATE(605), + [sym_let_declaration] = STATE(605), + [sym_use_declaration] = STATE(605), + [sym_extern_modifier] = STATE(2138), [sym_visibility_modifier] = STATE(1932), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1845), - [sym_macro_invocation] = STATE(395), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(391), - [sym_match_expression] = STATE(391), - [sym_while_expression] = STATE(391), - [sym_loop_expression] = STATE(391), - [sym_for_expression] = STATE(391), - [sym_const_block] = STATE(391), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3544), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(391), - [sym_async_block] = STATE(391), - [sym_try_block] = STATE(391), - [sym_block] = STATE(391), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1858), + [sym_macro_invocation] = STATE(403), + [sym_scoped_identifier] = STATE(1536), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(387), + [sym_match_expression] = STATE(387), + [sym_while_expression] = STATE(387), + [sym_loop_expression] = STATE(387), + [sym_for_expression] = STATE(387), + [sym_const_block] = STATE(387), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3556), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(387), + [sym_async_block] = STATE(387), + [sym_try_block] = STATE(387), + [sym_block] = STATE(387), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), [sym_line_comment] = STATE(4), [sym_block_comment] = STATE(4), - [aux_sym_source_file_repeat1] = STATE(7), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [ts_builtin_sym_end] = ACTIONS(123), + [aux_sym_source_file_repeat1] = STATE(4), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(123), + [anon_sym_SEMI] = ACTIONS(126), + [anon_sym_macro_rules_BANG] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(132), + [anon_sym_LBRACK] = ACTIONS(135), + [anon_sym_LBRACE] = ACTIONS(138), + [anon_sym_RBRACE] = ACTIONS(141), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_u8] = ACTIONS(146), + [anon_sym_i8] = ACTIONS(146), + [anon_sym_u16] = ACTIONS(146), + [anon_sym_i16] = ACTIONS(146), + [anon_sym_u32] = ACTIONS(146), + [anon_sym_i32] = ACTIONS(146), + [anon_sym_u64] = ACTIONS(146), + [anon_sym_i64] = ACTIONS(146), + [anon_sym_u128] = ACTIONS(146), + [anon_sym_i128] = ACTIONS(146), + [anon_sym_isize] = ACTIONS(146), + [anon_sym_usize] = ACTIONS(146), + [anon_sym_f32] = ACTIONS(146), + [anon_sym_f64] = ACTIONS(146), + [anon_sym_bool] = ACTIONS(146), + [anon_sym_str] = ACTIONS(146), + [anon_sym_char] = ACTIONS(146), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_AMP] = ACTIONS(149), + [anon_sym_PIPE] = ACTIONS(152), + [anon_sym_LT] = ACTIONS(155), + [anon_sym_DOT_DOT] = ACTIONS(158), + [anon_sym_COLON_COLON] = ACTIONS(161), + [anon_sym_POUND] = ACTIONS(164), + [anon_sym_SQUOTE] = ACTIONS(167), + [anon_sym_async] = ACTIONS(170), + [anon_sym_break] = ACTIONS(173), + [anon_sym_const] = ACTIONS(176), + [anon_sym_continue] = ACTIONS(179), + [anon_sym_default] = ACTIONS(182), + [anon_sym_enum] = ACTIONS(185), + [anon_sym_fn] = ACTIONS(188), + [anon_sym_for] = ACTIONS(191), + [anon_sym_if] = ACTIONS(194), + [anon_sym_impl] = ACTIONS(197), + [anon_sym_let] = ACTIONS(200), + [anon_sym_loop] = ACTIONS(203), + [anon_sym_match] = ACTIONS(206), + [anon_sym_mod] = ACTIONS(209), + [anon_sym_pub] = ACTIONS(212), + [anon_sym_return] = ACTIONS(215), + [anon_sym_static] = ACTIONS(218), + [anon_sym_struct] = ACTIONS(221), + [anon_sym_trait] = ACTIONS(224), + [anon_sym_type] = ACTIONS(227), + [anon_sym_union] = ACTIONS(230), + [anon_sym_unsafe] = ACTIONS(233), + [anon_sym_use] = ACTIONS(236), + [anon_sym_while] = ACTIONS(239), + [anon_sym_extern] = ACTIONS(242), + [anon_sym_yield] = ACTIONS(245), + [anon_sym_move] = ACTIONS(248), + [anon_sym_try] = ACTIONS(251), + [sym_integer_literal] = ACTIONS(254), + [aux_sym_string_literal_token1] = ACTIONS(257), + [sym_char_literal] = ACTIONS(254), + [anon_sym_true] = ACTIONS(260), + [anon_sym_false] = ACTIONS(260), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(263), + [sym_super] = ACTIONS(266), + [sym_crate] = ACTIONS(269), + [sym_metavariable] = ACTIONS(272), + [sym__raw_string_literal_start] = ACTIONS(275), + [sym_float_literal] = ACTIONS(254), + }, + [5] = { + [sym__statement] = STATE(599), + [sym_empty_statement] = STATE(605), + [sym_expression_statement] = STATE(605), + [sym_macro_definition] = STATE(605), + [sym_attribute_item] = STATE(605), + [sym_inner_attribute_item] = STATE(605), + [sym_mod_item] = STATE(605), + [sym_foreign_mod_item] = STATE(605), + [sym_struct_item] = STATE(605), + [sym_union_item] = STATE(605), + [sym_enum_item] = STATE(605), + [sym_extern_crate_declaration] = STATE(605), + [sym_const_item] = STATE(605), + [sym_static_item] = STATE(605), + [sym_type_item] = STATE(605), + [sym_function_item] = STATE(605), + [sym_function_signature_item] = STATE(605), + [sym_function_modifiers] = STATE(3564), + [sym_impl_item] = STATE(605), + [sym_trait_item] = STATE(605), + [sym_associated_type] = STATE(605), + [sym_let_declaration] = STATE(605), + [sym_use_declaration] = STATE(605), + [sym_extern_modifier] = STATE(2138), + [sym_visibility_modifier] = STATE(1932), + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1707), + [sym_macro_invocation] = STATE(391), + [sym_scoped_identifier] = STATE(1536), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(387), + [sym_match_expression] = STATE(387), + [sym_while_expression] = STATE(387), + [sym_loop_expression] = STATE(387), + [sym_for_expression] = STATE(387), + [sym_const_block] = STATE(387), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3556), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(387), + [sym_async_block] = STATE(387), + [sym_try_block] = STATE(387), + [sym_block] = STATE(387), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), + [sym_line_comment] = STATE(5), + [sym_block_comment] = STATE(5), + [aux_sym_source_file_repeat1] = STATE(11), + [aux_sym_function_modifiers_repeat1] = STATE(2220), [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(278), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -14423,89 +14583,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [5] = { - [sym__statement] = STATE(651), - [sym_empty_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_macro_definition] = STATE(652), - [sym_attribute_item] = STATE(652), - [sym_inner_attribute_item] = STATE(652), - [sym_mod_item] = STATE(652), - [sym_foreign_mod_item] = STATE(652), - [sym_struct_item] = STATE(652), - [sym_union_item] = STATE(652), - [sym_enum_item] = STATE(652), - [sym_extern_crate_declaration] = STATE(652), - [sym_const_item] = STATE(652), - [sym_static_item] = STATE(652), - [sym_type_item] = STATE(652), - [sym_function_item] = STATE(652), - [sym_function_signature_item] = STATE(652), - [sym_function_modifiers] = STATE(3452), - [sym_impl_item] = STATE(652), - [sym_trait_item] = STATE(652), - [sym_associated_type] = STATE(652), - [sym_let_declaration] = STATE(652), - [sym_use_declaration] = STATE(652), - [sym_extern_modifier] = STATE(2160), + [6] = { + [sym__statement] = STATE(599), + [sym_empty_statement] = STATE(605), + [sym_expression_statement] = STATE(605), + [sym_macro_definition] = STATE(605), + [sym_attribute_item] = STATE(605), + [sym_inner_attribute_item] = STATE(605), + [sym_mod_item] = STATE(605), + [sym_foreign_mod_item] = STATE(605), + [sym_struct_item] = STATE(605), + [sym_union_item] = STATE(605), + [sym_enum_item] = STATE(605), + [sym_extern_crate_declaration] = STATE(605), + [sym_const_item] = STATE(605), + [sym_static_item] = STATE(605), + [sym_type_item] = STATE(605), + [sym_function_item] = STATE(605), + [sym_function_signature_item] = STATE(605), + [sym_function_modifiers] = STATE(3564), + [sym_impl_item] = STATE(605), + [sym_trait_item] = STATE(605), + [sym_associated_type] = STATE(605), + [sym_let_declaration] = STATE(605), + [sym_use_declaration] = STATE(605), + [sym_extern_modifier] = STATE(2138), [sym_visibility_modifier] = STATE(1932), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1748), - [sym_macro_invocation] = STATE(395), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(391), - [sym_match_expression] = STATE(391), - [sym_while_expression] = STATE(391), - [sym_loop_expression] = STATE(391), - [sym_for_expression] = STATE(391), - [sym_const_block] = STATE(391), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3544), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(391), - [sym_async_block] = STATE(391), - [sym_try_block] = STATE(391), - [sym_block] = STATE(391), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(5), - [sym_block_comment] = STATE(5), - [aux_sym_source_file_repeat1] = STATE(6), - [aux_sym_function_modifiers_repeat1] = STATE(2206), + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1656), + [sym_macro_invocation] = STATE(391), + [sym_scoped_identifier] = STATE(1536), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(387), + [sym_match_expression] = STATE(387), + [sym_while_expression] = STATE(387), + [sym_loop_expression] = STATE(387), + [sym_for_expression] = STATE(387), + [sym_const_block] = STATE(387), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3556), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(387), + [sym_async_block] = STATE(387), + [sym_try_block] = STATE(387), + [sym_block] = STATE(387), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), + [sym_line_comment] = STATE(6), + [sym_block_comment] = STATE(6), + [aux_sym_source_file_repeat1] = STATE(4), + [aux_sym_function_modifiers_repeat1] = STATE(2220), [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_RBRACE] = ACTIONS(280), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -14575,89 +14735,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [6] = { - [sym__statement] = STATE(651), - [sym_empty_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_macro_definition] = STATE(652), - [sym_attribute_item] = STATE(652), - [sym_inner_attribute_item] = STATE(652), - [sym_mod_item] = STATE(652), - [sym_foreign_mod_item] = STATE(652), - [sym_struct_item] = STATE(652), - [sym_union_item] = STATE(652), - [sym_enum_item] = STATE(652), - [sym_extern_crate_declaration] = STATE(652), - [sym_const_item] = STATE(652), - [sym_static_item] = STATE(652), - [sym_type_item] = STATE(652), - [sym_function_item] = STATE(652), - [sym_function_signature_item] = STATE(652), - [sym_function_modifiers] = STATE(3452), - [sym_impl_item] = STATE(652), - [sym_trait_item] = STATE(652), - [sym_associated_type] = STATE(652), - [sym_let_declaration] = STATE(652), - [sym_use_declaration] = STATE(652), - [sym_extern_modifier] = STATE(2160), + [7] = { + [sym__statement] = STATE(599), + [sym_empty_statement] = STATE(605), + [sym_expression_statement] = STATE(605), + [sym_macro_definition] = STATE(605), + [sym_attribute_item] = STATE(605), + [sym_inner_attribute_item] = STATE(605), + [sym_mod_item] = STATE(605), + [sym_foreign_mod_item] = STATE(605), + [sym_struct_item] = STATE(605), + [sym_union_item] = STATE(605), + [sym_enum_item] = STATE(605), + [sym_extern_crate_declaration] = STATE(605), + [sym_const_item] = STATE(605), + [sym_static_item] = STATE(605), + [sym_type_item] = STATE(605), + [sym_function_item] = STATE(605), + [sym_function_signature_item] = STATE(605), + [sym_function_modifiers] = STATE(3564), + [sym_impl_item] = STATE(605), + [sym_trait_item] = STATE(605), + [sym_associated_type] = STATE(605), + [sym_let_declaration] = STATE(605), + [sym_use_declaration] = STATE(605), + [sym_extern_modifier] = STATE(2138), [sym_visibility_modifier] = STATE(1932), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1660), - [sym_macro_invocation] = STATE(395), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(391), - [sym_match_expression] = STATE(391), - [sym_while_expression] = STATE(391), - [sym_loop_expression] = STATE(391), - [sym_for_expression] = STATE(391), - [sym_const_block] = STATE(391), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3544), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(391), - [sym_async_block] = STATE(391), - [sym_try_block] = STATE(391), - [sym_block] = STATE(391), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(6), - [sym_block_comment] = STATE(6), - [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(2206), + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1722), + [sym_macro_invocation] = STATE(391), + [sym_scoped_identifier] = STATE(1536), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(387), + [sym_match_expression] = STATE(387), + [sym_while_expression] = STATE(387), + [sym_loop_expression] = STATE(387), + [sym_for_expression] = STATE(387), + [sym_const_block] = STATE(387), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3556), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(387), + [sym_async_block] = STATE(387), + [sym_try_block] = STATE(387), + [sym_block] = STATE(387), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), + [sym_line_comment] = STATE(7), + [sym_block_comment] = STATE(7), + [aux_sym_source_file_repeat1] = STATE(17), + [aux_sym_function_modifiers_repeat1] = STATE(2220), [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_RBRACE] = ACTIONS(282), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -14727,83 +14887,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [7] = { - [sym__statement] = STATE(651), - [sym_empty_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_macro_definition] = STATE(652), - [sym_attribute_item] = STATE(652), - [sym_inner_attribute_item] = STATE(652), - [sym_mod_item] = STATE(652), - [sym_foreign_mod_item] = STATE(652), - [sym_struct_item] = STATE(652), - [sym_union_item] = STATE(652), - [sym_enum_item] = STATE(652), - [sym_extern_crate_declaration] = STATE(652), - [sym_const_item] = STATE(652), - [sym_static_item] = STATE(652), - [sym_type_item] = STATE(652), - [sym_function_item] = STATE(652), - [sym_function_signature_item] = STATE(652), - [sym_function_modifiers] = STATE(3452), - [sym_impl_item] = STATE(652), - [sym_trait_item] = STATE(652), - [sym_associated_type] = STATE(652), - [sym_let_declaration] = STATE(652), - [sym_use_declaration] = STATE(652), - [sym_extern_modifier] = STATE(2160), + [8] = { + [sym__statement] = STATE(599), + [sym_empty_statement] = STATE(605), + [sym_expression_statement] = STATE(605), + [sym_macro_definition] = STATE(605), + [sym_attribute_item] = STATE(605), + [sym_inner_attribute_item] = STATE(605), + [sym_mod_item] = STATE(605), + [sym_foreign_mod_item] = STATE(605), + [sym_struct_item] = STATE(605), + [sym_union_item] = STATE(605), + [sym_enum_item] = STATE(605), + [sym_extern_crate_declaration] = STATE(605), + [sym_const_item] = STATE(605), + [sym_static_item] = STATE(605), + [sym_type_item] = STATE(605), + [sym_function_item] = STATE(605), + [sym_function_signature_item] = STATE(605), + [sym_function_modifiers] = STATE(3564), + [sym_impl_item] = STATE(605), + [sym_trait_item] = STATE(605), + [sym_associated_type] = STATE(605), + [sym_let_declaration] = STATE(605), + [sym_use_declaration] = STATE(605), + [sym_extern_modifier] = STATE(2138), [sym_visibility_modifier] = STATE(1932), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1845), - [sym_macro_invocation] = STATE(395), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(391), - [sym_match_expression] = STATE(391), - [sym_while_expression] = STATE(391), - [sym_loop_expression] = STATE(391), - [sym_for_expression] = STATE(391), - [sym_const_block] = STATE(391), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3544), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(391), - [sym_async_block] = STATE(391), - [sym_try_block] = STATE(391), - [sym_block] = STATE(391), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(7), - [sym_block_comment] = STATE(7), - [aux_sym_source_file_repeat1] = STATE(8), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [ts_builtin_sym_end] = ACTIONS(129), + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1858), + [sym_macro_invocation] = STATE(391), + [sym_scoped_identifier] = STATE(1536), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(387), + [sym_match_expression] = STATE(387), + [sym_while_expression] = STATE(387), + [sym_loop_expression] = STATE(387), + [sym_for_expression] = STATE(387), + [sym_const_block] = STATE(387), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3556), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(387), + [sym_async_block] = STATE(387), + [sym_try_block] = STATE(387), + [sym_block] = STATE(387), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), + [sym_line_comment] = STATE(8), + [sym_block_comment] = STATE(8), + [aux_sym_source_file_repeat1] = STATE(33), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [ts_builtin_sym_end] = ACTIONS(284), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -14879,234 +15039,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [8] = { - [sym__statement] = STATE(651), - [sym_empty_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_macro_definition] = STATE(652), - [sym_attribute_item] = STATE(652), - [sym_inner_attribute_item] = STATE(652), - [sym_mod_item] = STATE(652), - [sym_foreign_mod_item] = STATE(652), - [sym_struct_item] = STATE(652), - [sym_union_item] = STATE(652), - [sym_enum_item] = STATE(652), - [sym_extern_crate_declaration] = STATE(652), - [sym_const_item] = STATE(652), - [sym_static_item] = STATE(652), - [sym_type_item] = STATE(652), - [sym_function_item] = STATE(652), - [sym_function_signature_item] = STATE(652), - [sym_function_modifiers] = STATE(3452), - [sym_impl_item] = STATE(652), - [sym_trait_item] = STATE(652), - [sym_associated_type] = STATE(652), - [sym_let_declaration] = STATE(652), - [sym_use_declaration] = STATE(652), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1932), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1845), - [sym_macro_invocation] = STATE(395), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(391), - [sym_match_expression] = STATE(391), - [sym_while_expression] = STATE(391), - [sym_loop_expression] = STATE(391), - [sym_for_expression] = STATE(391), - [sym_const_block] = STATE(391), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3544), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(391), - [sym_async_block] = STATE(391), - [sym_try_block] = STATE(391), - [sym_block] = STATE(391), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(8), - [sym_block_comment] = STATE(8), - [aux_sym_source_file_repeat1] = STATE(8), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [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_if] = ACTIONS(202), - [anon_sym_impl] = ACTIONS(205), - [anon_sym_let] = ACTIONS(208), - [anon_sym_loop] = ACTIONS(211), - [anon_sym_match] = ACTIONS(214), - [anon_sym_mod] = ACTIONS(217), - [anon_sym_pub] = ACTIONS(220), - [anon_sym_return] = ACTIONS(223), - [anon_sym_static] = ACTIONS(226), - [anon_sym_struct] = ACTIONS(229), - [anon_sym_trait] = ACTIONS(232), - [anon_sym_type] = ACTIONS(235), - [anon_sym_union] = ACTIONS(238), - [anon_sym_unsafe] = ACTIONS(241), - [anon_sym_use] = ACTIONS(244), - [anon_sym_while] = ACTIONS(247), - [anon_sym_extern] = ACTIONS(250), - [anon_sym_yield] = ACTIONS(253), - [anon_sym_move] = ACTIONS(256), - [anon_sym_try] = ACTIONS(259), - [sym_integer_literal] = ACTIONS(262), - [aux_sym_string_literal_token1] = ACTIONS(265), - [sym_char_literal] = ACTIONS(262), - [anon_sym_true] = ACTIONS(268), - [anon_sym_false] = ACTIONS(268), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(271), - [sym_super] = ACTIONS(274), - [sym_crate] = ACTIONS(277), - [sym_metavariable] = ACTIONS(280), - [sym__raw_string_literal_start] = ACTIONS(283), - [sym_float_literal] = ACTIONS(262), - }, [9] = { - [sym__statement] = STATE(651), - [sym_empty_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_macro_definition] = STATE(652), - [sym_attribute_item] = STATE(652), - [sym_inner_attribute_item] = STATE(652), - [sym_mod_item] = STATE(652), - [sym_foreign_mod_item] = STATE(652), - [sym_struct_item] = STATE(652), - [sym_union_item] = STATE(652), - [sym_enum_item] = STATE(652), - [sym_extern_crate_declaration] = STATE(652), - [sym_const_item] = STATE(652), - [sym_static_item] = STATE(652), - [sym_type_item] = STATE(652), - [sym_function_item] = STATE(652), - [sym_function_signature_item] = STATE(652), - [sym_function_modifiers] = STATE(3452), - [sym_impl_item] = STATE(652), - [sym_trait_item] = STATE(652), - [sym_associated_type] = STATE(652), - [sym_let_declaration] = STATE(652), - [sym_use_declaration] = STATE(652), - [sym_extern_modifier] = STATE(2160), + [sym__statement] = STATE(599), + [sym_empty_statement] = STATE(605), + [sym_expression_statement] = STATE(605), + [sym_macro_definition] = STATE(605), + [sym_attribute_item] = STATE(605), + [sym_inner_attribute_item] = STATE(605), + [sym_mod_item] = STATE(605), + [sym_foreign_mod_item] = STATE(605), + [sym_struct_item] = STATE(605), + [sym_union_item] = STATE(605), + [sym_enum_item] = STATE(605), + [sym_extern_crate_declaration] = STATE(605), + [sym_const_item] = STATE(605), + [sym_static_item] = STATE(605), + [sym_type_item] = STATE(605), + [sym_function_item] = STATE(605), + [sym_function_signature_item] = STATE(605), + [sym_function_modifiers] = STATE(3564), + [sym_impl_item] = STATE(605), + [sym_trait_item] = STATE(605), + [sym_associated_type] = STATE(605), + [sym_let_declaration] = STATE(605), + [sym_use_declaration] = STATE(605), + [sym_extern_modifier] = STATE(2138), [sym_visibility_modifier] = STATE(1932), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1674), - [sym_macro_invocation] = STATE(395), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(391), - [sym_match_expression] = STATE(391), - [sym_while_expression] = STATE(391), - [sym_loop_expression] = STATE(391), - [sym_for_expression] = STATE(391), - [sym_const_block] = STATE(391), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3544), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(391), - [sym_async_block] = STATE(391), - [sym_try_block] = STATE(391), - [sym_block] = STATE(391), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1650), + [sym_macro_invocation] = STATE(391), + [sym_scoped_identifier] = STATE(1536), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(387), + [sym_match_expression] = STATE(387), + [sym_while_expression] = STATE(387), + [sym_loop_expression] = STATE(387), + [sym_for_expression] = STATE(387), + [sym_const_block] = STATE(387), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3556), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(387), + [sym_async_block] = STATE(387), + [sym_try_block] = STATE(387), + [sym_block] = STATE(387), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), [sym_line_comment] = STATE(9), [sym_block_comment] = STATE(9), - [aux_sym_source_file_repeat1] = STATE(10), - [aux_sym_function_modifiers_repeat1] = STATE(2206), + [aux_sym_source_file_repeat1] = STATE(30), + [aux_sym_function_modifiers_repeat1] = STATE(2220), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -15184,81 +15192,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(95), }, [10] = { - [sym__statement] = STATE(651), - [sym_empty_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_macro_definition] = STATE(652), - [sym_attribute_item] = STATE(652), - [sym_inner_attribute_item] = STATE(652), - [sym_mod_item] = STATE(652), - [sym_foreign_mod_item] = STATE(652), - [sym_struct_item] = STATE(652), - [sym_union_item] = STATE(652), - [sym_enum_item] = STATE(652), - [sym_extern_crate_declaration] = STATE(652), - [sym_const_item] = STATE(652), - [sym_static_item] = STATE(652), - [sym_type_item] = STATE(652), - [sym_function_item] = STATE(652), - [sym_function_signature_item] = STATE(652), - [sym_function_modifiers] = STATE(3452), - [sym_impl_item] = STATE(652), - [sym_trait_item] = STATE(652), - [sym_associated_type] = STATE(652), - [sym_let_declaration] = STATE(652), - [sym_use_declaration] = STATE(652), - [sym_extern_modifier] = STATE(2160), + [sym__statement] = STATE(599), + [sym_empty_statement] = STATE(605), + [sym_expression_statement] = STATE(605), + [sym_macro_definition] = STATE(605), + [sym_attribute_item] = STATE(605), + [sym_inner_attribute_item] = STATE(605), + [sym_mod_item] = STATE(605), + [sym_foreign_mod_item] = STATE(605), + [sym_struct_item] = STATE(605), + [sym_union_item] = STATE(605), + [sym_enum_item] = STATE(605), + [sym_extern_crate_declaration] = STATE(605), + [sym_const_item] = STATE(605), + [sym_static_item] = STATE(605), + [sym_type_item] = STATE(605), + [sym_function_item] = STATE(605), + [sym_function_signature_item] = STATE(605), + [sym_function_modifiers] = STATE(3564), + [sym_impl_item] = STATE(605), + [sym_trait_item] = STATE(605), + [sym_associated_type] = STATE(605), + [sym_let_declaration] = STATE(605), + [sym_use_declaration] = STATE(605), + [sym_extern_modifier] = STATE(2138), [sym_visibility_modifier] = STATE(1932), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1702), - [sym_macro_invocation] = STATE(395), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(391), - [sym_match_expression] = STATE(391), - [sym_while_expression] = STATE(391), - [sym_loop_expression] = STATE(391), - [sym_for_expression] = STATE(391), - [sym_const_block] = STATE(391), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3544), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(391), - [sym_async_block] = STATE(391), - [sym_try_block] = STATE(391), - [sym_block] = STATE(391), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1803), + [sym_macro_invocation] = STATE(391), + [sym_scoped_identifier] = STATE(1536), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(387), + [sym_match_expression] = STATE(387), + [sym_while_expression] = STATE(387), + [sym_loop_expression] = STATE(387), + [sym_for_expression] = STATE(387), + [sym_const_block] = STATE(387), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3556), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(387), + [sym_async_block] = STATE(387), + [sym_try_block] = STATE(387), + [sym_block] = STATE(387), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), [sym_line_comment] = STATE(10), [sym_block_comment] = STATE(10), - [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(2206), + [aux_sym_source_file_repeat1] = STATE(31), + [aux_sym_function_modifiers_repeat1] = STATE(2220), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -15336,81 +15344,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(95), }, [11] = { - [sym__statement] = STATE(651), - [sym_empty_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_macro_definition] = STATE(652), - [sym_attribute_item] = STATE(652), - [sym_inner_attribute_item] = STATE(652), - [sym_mod_item] = STATE(652), - [sym_foreign_mod_item] = STATE(652), - [sym_struct_item] = STATE(652), - [sym_union_item] = STATE(652), - [sym_enum_item] = STATE(652), - [sym_extern_crate_declaration] = STATE(652), - [sym_const_item] = STATE(652), - [sym_static_item] = STATE(652), - [sym_type_item] = STATE(652), - [sym_function_item] = STATE(652), - [sym_function_signature_item] = STATE(652), - [sym_function_modifiers] = STATE(3452), - [sym_impl_item] = STATE(652), - [sym_trait_item] = STATE(652), - [sym_associated_type] = STATE(652), - [sym_let_declaration] = STATE(652), - [sym_use_declaration] = STATE(652), - [sym_extern_modifier] = STATE(2160), + [sym__statement] = STATE(599), + [sym_empty_statement] = STATE(605), + [sym_expression_statement] = STATE(605), + [sym_macro_definition] = STATE(605), + [sym_attribute_item] = STATE(605), + [sym_inner_attribute_item] = STATE(605), + [sym_mod_item] = STATE(605), + [sym_foreign_mod_item] = STATE(605), + [sym_struct_item] = STATE(605), + [sym_union_item] = STATE(605), + [sym_enum_item] = STATE(605), + [sym_extern_crate_declaration] = STATE(605), + [sym_const_item] = STATE(605), + [sym_static_item] = STATE(605), + [sym_type_item] = STATE(605), + [sym_function_item] = STATE(605), + [sym_function_signature_item] = STATE(605), + [sym_function_modifiers] = STATE(3564), + [sym_impl_item] = STATE(605), + [sym_trait_item] = STATE(605), + [sym_associated_type] = STATE(605), + [sym_let_declaration] = STATE(605), + [sym_use_declaration] = STATE(605), + [sym_extern_modifier] = STATE(2138), [sym_visibility_modifier] = STATE(1932), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1794), - [sym_macro_invocation] = STATE(395), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(391), - [sym_match_expression] = STATE(391), - [sym_while_expression] = STATE(391), - [sym_loop_expression] = STATE(391), - [sym_for_expression] = STATE(391), - [sym_const_block] = STATE(391), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3544), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(391), - [sym_async_block] = STATE(391), - [sym_try_block] = STATE(391), - [sym_block] = STATE(391), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1704), + [sym_macro_invocation] = STATE(391), + [sym_scoped_identifier] = STATE(1536), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(387), + [sym_match_expression] = STATE(387), + [sym_while_expression] = STATE(387), + [sym_loop_expression] = STATE(387), + [sym_for_expression] = STATE(387), + [sym_const_block] = STATE(387), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3556), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(387), + [sym_async_block] = STATE(387), + [sym_try_block] = STATE(387), + [sym_block] = STATE(387), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), [sym_line_comment] = STATE(11), [sym_block_comment] = STATE(11), - [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(2206), + [aux_sym_source_file_repeat1] = STATE(4), + [aux_sym_function_modifiers_repeat1] = STATE(2220), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -15488,81 +15496,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(95), }, [12] = { - [sym__statement] = STATE(651), - [sym_empty_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_macro_definition] = STATE(652), - [sym_attribute_item] = STATE(652), - [sym_inner_attribute_item] = STATE(652), - [sym_mod_item] = STATE(652), - [sym_foreign_mod_item] = STATE(652), - [sym_struct_item] = STATE(652), - [sym_union_item] = STATE(652), - [sym_enum_item] = STATE(652), - [sym_extern_crate_declaration] = STATE(652), - [sym_const_item] = STATE(652), - [sym_static_item] = STATE(652), - [sym_type_item] = STATE(652), - [sym_function_item] = STATE(652), - [sym_function_signature_item] = STATE(652), - [sym_function_modifiers] = STATE(3452), - [sym_impl_item] = STATE(652), - [sym_trait_item] = STATE(652), - [sym_associated_type] = STATE(652), - [sym_let_declaration] = STATE(652), - [sym_use_declaration] = STATE(652), - [sym_extern_modifier] = STATE(2160), + [sym__statement] = STATE(599), + [sym_empty_statement] = STATE(605), + [sym_expression_statement] = STATE(605), + [sym_macro_definition] = STATE(605), + [sym_attribute_item] = STATE(605), + [sym_inner_attribute_item] = STATE(605), + [sym_mod_item] = STATE(605), + [sym_foreign_mod_item] = STATE(605), + [sym_struct_item] = STATE(605), + [sym_union_item] = STATE(605), + [sym_enum_item] = STATE(605), + [sym_extern_crate_declaration] = STATE(605), + [sym_const_item] = STATE(605), + [sym_static_item] = STATE(605), + [sym_type_item] = STATE(605), + [sym_function_item] = STATE(605), + [sym_function_signature_item] = STATE(605), + [sym_function_modifiers] = STATE(3564), + [sym_impl_item] = STATE(605), + [sym_trait_item] = STATE(605), + [sym_associated_type] = STATE(605), + [sym_let_declaration] = STATE(605), + [sym_use_declaration] = STATE(605), + [sym_extern_modifier] = STATE(2138), [sym_visibility_modifier] = STATE(1932), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1797), - [sym_macro_invocation] = STATE(395), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(391), - [sym_match_expression] = STATE(391), - [sym_while_expression] = STATE(391), - [sym_loop_expression] = STATE(391), - [sym_for_expression] = STATE(391), - [sym_const_block] = STATE(391), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3544), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(391), - [sym_async_block] = STATE(391), - [sym_try_block] = STATE(391), - [sym_block] = STATE(391), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1791), + [sym_macro_invocation] = STATE(391), + [sym_scoped_identifier] = STATE(1536), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(387), + [sym_match_expression] = STATE(387), + [sym_while_expression] = STATE(387), + [sym_loop_expression] = STATE(387), + [sym_for_expression] = STATE(387), + [sym_const_block] = STATE(387), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3556), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(387), + [sym_async_block] = STATE(387), + [sym_try_block] = STATE(387), + [sym_block] = STATE(387), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), [sym_line_comment] = STATE(12), [sym_block_comment] = STATE(12), - [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(2206), + [aux_sym_source_file_repeat1] = STATE(4), + [aux_sym_function_modifiers_repeat1] = STATE(2220), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -15640,240 +15648,240 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(95), }, [13] = { - [sym__statement] = STATE(651), - [sym_empty_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_macro_definition] = STATE(652), - [sym_attribute_item] = STATE(652), - [sym_inner_attribute_item] = STATE(652), - [sym_mod_item] = STATE(652), - [sym_foreign_mod_item] = STATE(652), - [sym_struct_item] = STATE(652), - [sym_union_item] = STATE(652), - [sym_enum_item] = STATE(652), - [sym_extern_crate_declaration] = STATE(652), - [sym_const_item] = STATE(652), - [sym_static_item] = STATE(652), - [sym_type_item] = STATE(652), - [sym_function_item] = STATE(652), - [sym_function_signature_item] = STATE(652), - [sym_function_modifiers] = STATE(3452), - [sym_impl_item] = STATE(652), - [sym_trait_item] = STATE(652), - [sym_associated_type] = STATE(652), - [sym_let_declaration] = STATE(652), - [sym_use_declaration] = STATE(652), - [sym_extern_modifier] = STATE(2160), + [sym__statement] = STATE(599), + [sym_empty_statement] = STATE(605), + [sym_expression_statement] = STATE(605), + [sym_macro_definition] = STATE(605), + [sym_attribute_item] = STATE(605), + [sym_inner_attribute_item] = STATE(605), + [sym_mod_item] = STATE(605), + [sym_foreign_mod_item] = STATE(605), + [sym_struct_item] = STATE(605), + [sym_union_item] = STATE(605), + [sym_enum_item] = STATE(605), + [sym_extern_crate_declaration] = STATE(605), + [sym_const_item] = STATE(605), + [sym_static_item] = STATE(605), + [sym_type_item] = STATE(605), + [sym_function_item] = STATE(605), + [sym_function_signature_item] = STATE(605), + [sym_function_modifiers] = STATE(3564), + [sym_impl_item] = STATE(605), + [sym_trait_item] = STATE(605), + [sym_associated_type] = STATE(605), + [sym_let_declaration] = STATE(605), + [sym_use_declaration] = STATE(605), + [sym_extern_modifier] = STATE(2138), [sym_visibility_modifier] = STATE(1932), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1845), - [sym_macro_invocation] = STATE(404), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(391), - [sym_match_expression] = STATE(391), - [sym_while_expression] = STATE(391), - [sym_loop_expression] = STATE(391), - [sym_for_expression] = STATE(391), - [sym_const_block] = STATE(391), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3544), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(391), - [sym_async_block] = STATE(391), - [sym_try_block] = STATE(391), - [sym_block] = STATE(391), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1778), + [sym_macro_invocation] = STATE(391), + [sym_scoped_identifier] = STATE(1536), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(387), + [sym_match_expression] = STATE(387), + [sym_while_expression] = STATE(387), + [sym_loop_expression] = STATE(387), + [sym_for_expression] = STATE(387), + [sym_const_block] = STATE(387), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3556), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(387), + [sym_async_block] = STATE(387), + [sym_try_block] = STATE(387), + [sym_block] = STATE(387), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), [sym_line_comment] = STATE(13), [sym_block_comment] = STATE(13), - [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [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_if] = ACTIONS(202), - [anon_sym_impl] = ACTIONS(205), - [anon_sym_let] = ACTIONS(208), - [anon_sym_loop] = ACTIONS(211), - [anon_sym_match] = ACTIONS(214), - [anon_sym_mod] = ACTIONS(217), - [anon_sym_pub] = ACTIONS(220), - [anon_sym_return] = ACTIONS(223), - [anon_sym_static] = ACTIONS(226), - [anon_sym_struct] = ACTIONS(229), - [anon_sym_trait] = ACTIONS(232), - [anon_sym_type] = ACTIONS(235), - [anon_sym_union] = ACTIONS(238), - [anon_sym_unsafe] = ACTIONS(241), - [anon_sym_use] = ACTIONS(244), - [anon_sym_while] = ACTIONS(247), - [anon_sym_extern] = ACTIONS(250), - [anon_sym_yield] = ACTIONS(253), - [anon_sym_move] = ACTIONS(256), - [anon_sym_try] = ACTIONS(259), - [sym_integer_literal] = ACTIONS(262), - [aux_sym_string_literal_token1] = ACTIONS(265), - [sym_char_literal] = ACTIONS(262), - [anon_sym_true] = ACTIONS(268), - [anon_sym_false] = ACTIONS(268), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(271), - [sym_super] = ACTIONS(274), - [sym_crate] = ACTIONS(277), - [sym_metavariable] = ACTIONS(280), - [sym__raw_string_literal_start] = ACTIONS(283), - [sym_float_literal] = ACTIONS(262), + [aux_sym_source_file_repeat1] = STATE(4), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [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(294), + [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_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(119), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(39), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(47), + [anon_sym_enum] = ACTIONS(49), + [anon_sym_fn] = ACTIONS(51), + [anon_sym_for] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), + [anon_sym_impl] = ACTIONS(57), + [anon_sym_let] = ACTIONS(59), + [anon_sym_loop] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_mod] = ACTIONS(65), + [anon_sym_pub] = ACTIONS(67), + [anon_sym_return] = ACTIONS(69), + [anon_sym_static] = ACTIONS(71), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(75), + [anon_sym_type] = ACTIONS(77), + [anon_sym_union] = ACTIONS(79), + [anon_sym_unsafe] = ACTIONS(81), + [anon_sym_use] = ACTIONS(83), + [anon_sym_while] = ACTIONS(85), + [anon_sym_extern] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(107), + [sym_super] = ACTIONS(109), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(113), + [sym__raw_string_literal_start] = ACTIONS(115), + [sym_float_literal] = ACTIONS(95), }, [14] = { - [sym__statement] = STATE(651), - [sym_empty_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_macro_definition] = STATE(652), - [sym_attribute_item] = STATE(652), - [sym_inner_attribute_item] = STATE(652), - [sym_mod_item] = STATE(652), - [sym_foreign_mod_item] = STATE(652), - [sym_struct_item] = STATE(652), - [sym_union_item] = STATE(652), - [sym_enum_item] = STATE(652), - [sym_extern_crate_declaration] = STATE(652), - [sym_const_item] = STATE(652), - [sym_static_item] = STATE(652), - [sym_type_item] = STATE(652), - [sym_function_item] = STATE(652), - [sym_function_signature_item] = STATE(652), - [sym_function_modifiers] = STATE(3452), - [sym_impl_item] = STATE(652), - [sym_trait_item] = STATE(652), - [sym_associated_type] = STATE(652), - [sym_let_declaration] = STATE(652), - [sym_use_declaration] = STATE(652), - [sym_extern_modifier] = STATE(2160), + [sym__statement] = STATE(599), + [sym_empty_statement] = STATE(605), + [sym_expression_statement] = STATE(605), + [sym_macro_definition] = STATE(605), + [sym_attribute_item] = STATE(605), + [sym_inner_attribute_item] = STATE(605), + [sym_mod_item] = STATE(605), + [sym_foreign_mod_item] = STATE(605), + [sym_struct_item] = STATE(605), + [sym_union_item] = STATE(605), + [sym_enum_item] = STATE(605), + [sym_extern_crate_declaration] = STATE(605), + [sym_const_item] = STATE(605), + [sym_static_item] = STATE(605), + [sym_type_item] = STATE(605), + [sym_function_item] = STATE(605), + [sym_function_signature_item] = STATE(605), + [sym_function_modifiers] = STATE(3564), + [sym_impl_item] = STATE(605), + [sym_trait_item] = STATE(605), + [sym_associated_type] = STATE(605), + [sym_let_declaration] = STATE(605), + [sym_use_declaration] = STATE(605), + [sym_extern_modifier] = STATE(2138), [sym_visibility_modifier] = STATE(1932), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1802), - [sym_macro_invocation] = STATE(395), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(391), - [sym_match_expression] = STATE(391), - [sym_while_expression] = STATE(391), - [sym_loop_expression] = STATE(391), - [sym_for_expression] = STATE(391), - [sym_const_block] = STATE(391), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3544), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(391), - [sym_async_block] = STATE(391), - [sym_try_block] = STATE(391), - [sym_block] = STATE(391), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1637), + [sym_macro_invocation] = STATE(391), + [sym_scoped_identifier] = STATE(1536), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(387), + [sym_match_expression] = STATE(387), + [sym_while_expression] = STATE(387), + [sym_loop_expression] = STATE(387), + [sym_for_expression] = STATE(387), + [sym_const_block] = STATE(387), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3556), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(387), + [sym_async_block] = STATE(387), + [sym_try_block] = STATE(387), + [sym_block] = STATE(387), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), [sym_line_comment] = STATE(14), [sym_block_comment] = STATE(14), - [aux_sym_source_file_repeat1] = STATE(15), - [aux_sym_function_modifiers_repeat1] = STATE(2206), + [aux_sym_source_file_repeat1] = STATE(4), + [aux_sym_function_modifiers_repeat1] = STATE(2220), [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(294), + [anon_sym_RBRACE] = ACTIONS(296), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -15944,88 +15952,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(95), }, [15] = { - [sym__statement] = STATE(651), - [sym_empty_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_macro_definition] = STATE(652), - [sym_attribute_item] = STATE(652), - [sym_inner_attribute_item] = STATE(652), - [sym_mod_item] = STATE(652), - [sym_foreign_mod_item] = STATE(652), - [sym_struct_item] = STATE(652), - [sym_union_item] = STATE(652), - [sym_enum_item] = STATE(652), - [sym_extern_crate_declaration] = STATE(652), - [sym_const_item] = STATE(652), - [sym_static_item] = STATE(652), - [sym_type_item] = STATE(652), - [sym_function_item] = STATE(652), - [sym_function_signature_item] = STATE(652), - [sym_function_modifiers] = STATE(3452), - [sym_impl_item] = STATE(652), - [sym_trait_item] = STATE(652), - [sym_associated_type] = STATE(652), - [sym_let_declaration] = STATE(652), - [sym_use_declaration] = STATE(652), - [sym_extern_modifier] = STATE(2160), + [sym__statement] = STATE(599), + [sym_empty_statement] = STATE(605), + [sym_expression_statement] = STATE(605), + [sym_macro_definition] = STATE(605), + [sym_attribute_item] = STATE(605), + [sym_inner_attribute_item] = STATE(605), + [sym_mod_item] = STATE(605), + [sym_foreign_mod_item] = STATE(605), + [sym_struct_item] = STATE(605), + [sym_union_item] = STATE(605), + [sym_enum_item] = STATE(605), + [sym_extern_crate_declaration] = STATE(605), + [sym_const_item] = STATE(605), + [sym_static_item] = STATE(605), + [sym_type_item] = STATE(605), + [sym_function_item] = STATE(605), + [sym_function_signature_item] = STATE(605), + [sym_function_modifiers] = STATE(3564), + [sym_impl_item] = STATE(605), + [sym_trait_item] = STATE(605), + [sym_associated_type] = STATE(605), + [sym_let_declaration] = STATE(605), + [sym_use_declaration] = STATE(605), + [sym_extern_modifier] = STATE(2138), [sym_visibility_modifier] = STATE(1932), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1805), - [sym_macro_invocation] = STATE(395), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(391), - [sym_match_expression] = STATE(391), - [sym_while_expression] = STATE(391), - [sym_loop_expression] = STATE(391), - [sym_for_expression] = STATE(391), - [sym_const_block] = STATE(391), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3544), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(391), - [sym_async_block] = STATE(391), - [sym_try_block] = STATE(391), - [sym_block] = STATE(391), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1728), + [sym_macro_invocation] = STATE(391), + [sym_scoped_identifier] = STATE(1536), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(387), + [sym_match_expression] = STATE(387), + [sym_while_expression] = STATE(387), + [sym_loop_expression] = STATE(387), + [sym_for_expression] = STATE(387), + [sym_const_block] = STATE(387), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3556), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(387), + [sym_async_block] = STATE(387), + [sym_try_block] = STATE(387), + [sym_block] = STATE(387), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), [sym_line_comment] = STATE(15), [sym_block_comment] = STATE(15), - [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(2206), + [aux_sym_source_file_repeat1] = STATE(18), + [aux_sym_function_modifiers_repeat1] = STATE(2220), [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(296), + [anon_sym_RBRACE] = ACTIONS(298), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -16096,88 +16104,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(95), }, [16] = { - [sym__statement] = STATE(651), - [sym_empty_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_macro_definition] = STATE(652), - [sym_attribute_item] = STATE(652), - [sym_inner_attribute_item] = STATE(652), - [sym_mod_item] = STATE(652), - [sym_foreign_mod_item] = STATE(652), - [sym_struct_item] = STATE(652), - [sym_union_item] = STATE(652), - [sym_enum_item] = STATE(652), - [sym_extern_crate_declaration] = STATE(652), - [sym_const_item] = STATE(652), - [sym_static_item] = STATE(652), - [sym_type_item] = STATE(652), - [sym_function_item] = STATE(652), - [sym_function_signature_item] = STATE(652), - [sym_function_modifiers] = STATE(3452), - [sym_impl_item] = STATE(652), - [sym_trait_item] = STATE(652), - [sym_associated_type] = STATE(652), - [sym_let_declaration] = STATE(652), - [sym_use_declaration] = STATE(652), - [sym_extern_modifier] = STATE(2160), + [sym__statement] = STATE(599), + [sym_empty_statement] = STATE(605), + [sym_expression_statement] = STATE(605), + [sym_macro_definition] = STATE(605), + [sym_attribute_item] = STATE(605), + [sym_inner_attribute_item] = STATE(605), + [sym_mod_item] = STATE(605), + [sym_foreign_mod_item] = STATE(605), + [sym_struct_item] = STATE(605), + [sym_union_item] = STATE(605), + [sym_enum_item] = STATE(605), + [sym_extern_crate_declaration] = STATE(605), + [sym_const_item] = STATE(605), + [sym_static_item] = STATE(605), + [sym_type_item] = STATE(605), + [sym_function_item] = STATE(605), + [sym_function_signature_item] = STATE(605), + [sym_function_modifiers] = STATE(3564), + [sym_impl_item] = STATE(605), + [sym_trait_item] = STATE(605), + [sym_associated_type] = STATE(605), + [sym_let_declaration] = STATE(605), + [sym_use_declaration] = STATE(605), + [sym_extern_modifier] = STATE(2138), [sym_visibility_modifier] = STATE(1932), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1810), - [sym_macro_invocation] = STATE(395), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(391), - [sym_match_expression] = STATE(391), - [sym_while_expression] = STATE(391), - [sym_loop_expression] = STATE(391), - [sym_for_expression] = STATE(391), - [sym_const_block] = STATE(391), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3544), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(391), - [sym_async_block] = STATE(391), - [sym_try_block] = STATE(391), - [sym_block] = STATE(391), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1636), + [sym_macro_invocation] = STATE(391), + [sym_scoped_identifier] = STATE(1536), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(387), + [sym_match_expression] = STATE(387), + [sym_while_expression] = STATE(387), + [sym_loop_expression] = STATE(387), + [sym_for_expression] = STATE(387), + [sym_const_block] = STATE(387), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3556), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(387), + [sym_async_block] = STATE(387), + [sym_try_block] = STATE(387), + [sym_block] = STATE(387), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), [sym_line_comment] = STATE(16), [sym_block_comment] = STATE(16), - [aux_sym_source_file_repeat1] = STATE(17), - [aux_sym_function_modifiers_repeat1] = STATE(2206), + [aux_sym_source_file_repeat1] = STATE(13), + [aux_sym_function_modifiers_repeat1] = STATE(2220), [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(298), + [anon_sym_RBRACE] = ACTIONS(300), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -16248,88 +16256,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(95), }, [17] = { - [sym__statement] = STATE(651), - [sym_empty_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_macro_definition] = STATE(652), - [sym_attribute_item] = STATE(652), - [sym_inner_attribute_item] = STATE(652), - [sym_mod_item] = STATE(652), - [sym_foreign_mod_item] = STATE(652), - [sym_struct_item] = STATE(652), - [sym_union_item] = STATE(652), - [sym_enum_item] = STATE(652), - [sym_extern_crate_declaration] = STATE(652), - [sym_const_item] = STATE(652), - [sym_static_item] = STATE(652), - [sym_type_item] = STATE(652), - [sym_function_item] = STATE(652), - [sym_function_signature_item] = STATE(652), - [sym_function_modifiers] = STATE(3452), - [sym_impl_item] = STATE(652), - [sym_trait_item] = STATE(652), - [sym_associated_type] = STATE(652), - [sym_let_declaration] = STATE(652), - [sym_use_declaration] = STATE(652), - [sym_extern_modifier] = STATE(2160), + [sym__statement] = STATE(599), + [sym_empty_statement] = STATE(605), + [sym_expression_statement] = STATE(605), + [sym_macro_definition] = STATE(605), + [sym_attribute_item] = STATE(605), + [sym_inner_attribute_item] = STATE(605), + [sym_mod_item] = STATE(605), + [sym_foreign_mod_item] = STATE(605), + [sym_struct_item] = STATE(605), + [sym_union_item] = STATE(605), + [sym_enum_item] = STATE(605), + [sym_extern_crate_declaration] = STATE(605), + [sym_const_item] = STATE(605), + [sym_static_item] = STATE(605), + [sym_type_item] = STATE(605), + [sym_function_item] = STATE(605), + [sym_function_signature_item] = STATE(605), + [sym_function_modifiers] = STATE(3564), + [sym_impl_item] = STATE(605), + [sym_trait_item] = STATE(605), + [sym_associated_type] = STATE(605), + [sym_let_declaration] = STATE(605), + [sym_use_declaration] = STATE(605), + [sym_extern_modifier] = STATE(2138), [sym_visibility_modifier] = STATE(1932), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1816), - [sym_macro_invocation] = STATE(395), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(391), - [sym_match_expression] = STATE(391), - [sym_while_expression] = STATE(391), - [sym_loop_expression] = STATE(391), - [sym_for_expression] = STATE(391), - [sym_const_block] = STATE(391), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3544), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(391), - [sym_async_block] = STATE(391), - [sym_try_block] = STATE(391), - [sym_block] = STATE(391), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1709), + [sym_macro_invocation] = STATE(391), + [sym_scoped_identifier] = STATE(1536), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(387), + [sym_match_expression] = STATE(387), + [sym_while_expression] = STATE(387), + [sym_loop_expression] = STATE(387), + [sym_for_expression] = STATE(387), + [sym_const_block] = STATE(387), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3556), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(387), + [sym_async_block] = STATE(387), + [sym_try_block] = STATE(387), + [sym_block] = STATE(387), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), [sym_line_comment] = STATE(17), [sym_block_comment] = STATE(17), - [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(2206), + [aux_sym_source_file_repeat1] = STATE(4), + [aux_sym_function_modifiers_repeat1] = STATE(2220), [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(300), + [anon_sym_RBRACE] = ACTIONS(302), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -16400,88 +16408,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(95), }, [18] = { - [sym__statement] = STATE(651), - [sym_empty_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_macro_definition] = STATE(652), - [sym_attribute_item] = STATE(652), - [sym_inner_attribute_item] = STATE(652), - [sym_mod_item] = STATE(652), - [sym_foreign_mod_item] = STATE(652), - [sym_struct_item] = STATE(652), - [sym_union_item] = STATE(652), - [sym_enum_item] = STATE(652), - [sym_extern_crate_declaration] = STATE(652), - [sym_const_item] = STATE(652), - [sym_static_item] = STATE(652), - [sym_type_item] = STATE(652), - [sym_function_item] = STATE(652), - [sym_function_signature_item] = STATE(652), - [sym_function_modifiers] = STATE(3452), - [sym_impl_item] = STATE(652), - [sym_trait_item] = STATE(652), - [sym_associated_type] = STATE(652), - [sym_let_declaration] = STATE(652), - [sym_use_declaration] = STATE(652), - [sym_extern_modifier] = STATE(2160), + [sym__statement] = STATE(599), + [sym_empty_statement] = STATE(605), + [sym_expression_statement] = STATE(605), + [sym_macro_definition] = STATE(605), + [sym_attribute_item] = STATE(605), + [sym_inner_attribute_item] = STATE(605), + [sym_mod_item] = STATE(605), + [sym_foreign_mod_item] = STATE(605), + [sym_struct_item] = STATE(605), + [sym_union_item] = STATE(605), + [sym_enum_item] = STATE(605), + [sym_extern_crate_declaration] = STATE(605), + [sym_const_item] = STATE(605), + [sym_static_item] = STATE(605), + [sym_type_item] = STATE(605), + [sym_function_item] = STATE(605), + [sym_function_signature_item] = STATE(605), + [sym_function_modifiers] = STATE(3564), + [sym_impl_item] = STATE(605), + [sym_trait_item] = STATE(605), + [sym_associated_type] = STATE(605), + [sym_let_declaration] = STATE(605), + [sym_use_declaration] = STATE(605), + [sym_extern_modifier] = STATE(2138), [sym_visibility_modifier] = STATE(1932), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1819), - [sym_macro_invocation] = STATE(395), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(391), - [sym_match_expression] = STATE(391), - [sym_while_expression] = STATE(391), - [sym_loop_expression] = STATE(391), - [sym_for_expression] = STATE(391), - [sym_const_block] = STATE(391), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3544), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(391), - [sym_async_block] = STATE(391), - [sym_try_block] = STATE(391), - [sym_block] = STATE(391), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1724), + [sym_macro_invocation] = STATE(391), + [sym_scoped_identifier] = STATE(1536), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(387), + [sym_match_expression] = STATE(387), + [sym_while_expression] = STATE(387), + [sym_loop_expression] = STATE(387), + [sym_for_expression] = STATE(387), + [sym_const_block] = STATE(387), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3556), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(387), + [sym_async_block] = STATE(387), + [sym_try_block] = STATE(387), + [sym_block] = STATE(387), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), [sym_line_comment] = STATE(18), [sym_block_comment] = STATE(18), - [aux_sym_source_file_repeat1] = STATE(19), - [aux_sym_function_modifiers_repeat1] = STATE(2206), + [aux_sym_source_file_repeat1] = STATE(4), + [aux_sym_function_modifiers_repeat1] = STATE(2220), [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(302), + [anon_sym_RBRACE] = ACTIONS(304), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -16552,88 +16560,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(95), }, [19] = { - [sym__statement] = STATE(651), - [sym_empty_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_macro_definition] = STATE(652), - [sym_attribute_item] = STATE(652), - [sym_inner_attribute_item] = STATE(652), - [sym_mod_item] = STATE(652), - [sym_foreign_mod_item] = STATE(652), - [sym_struct_item] = STATE(652), - [sym_union_item] = STATE(652), - [sym_enum_item] = STATE(652), - [sym_extern_crate_declaration] = STATE(652), - [sym_const_item] = STATE(652), - [sym_static_item] = STATE(652), - [sym_type_item] = STATE(652), - [sym_function_item] = STATE(652), - [sym_function_signature_item] = STATE(652), - [sym_function_modifiers] = STATE(3452), - [sym_impl_item] = STATE(652), - [sym_trait_item] = STATE(652), - [sym_associated_type] = STATE(652), - [sym_let_declaration] = STATE(652), - [sym_use_declaration] = STATE(652), - [sym_extern_modifier] = STATE(2160), + [sym__statement] = STATE(599), + [sym_empty_statement] = STATE(605), + [sym_expression_statement] = STATE(605), + [sym_macro_definition] = STATE(605), + [sym_attribute_item] = STATE(605), + [sym_inner_attribute_item] = STATE(605), + [sym_mod_item] = STATE(605), + [sym_foreign_mod_item] = STATE(605), + [sym_struct_item] = STATE(605), + [sym_union_item] = STATE(605), + [sym_enum_item] = STATE(605), + [sym_extern_crate_declaration] = STATE(605), + [sym_const_item] = STATE(605), + [sym_static_item] = STATE(605), + [sym_type_item] = STATE(605), + [sym_function_item] = STATE(605), + [sym_function_signature_item] = STATE(605), + [sym_function_modifiers] = STATE(3564), + [sym_impl_item] = STATE(605), + [sym_trait_item] = STATE(605), + [sym_associated_type] = STATE(605), + [sym_let_declaration] = STATE(605), + [sym_use_declaration] = STATE(605), + [sym_extern_modifier] = STATE(2138), [sym_visibility_modifier] = STATE(1932), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1820), - [sym_macro_invocation] = STATE(395), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(391), - [sym_match_expression] = STATE(391), - [sym_while_expression] = STATE(391), - [sym_loop_expression] = STATE(391), - [sym_for_expression] = STATE(391), - [sym_const_block] = STATE(391), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3544), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(391), - [sym_async_block] = STATE(391), - [sym_try_block] = STATE(391), - [sym_block] = STATE(391), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1735), + [sym_macro_invocation] = STATE(391), + [sym_scoped_identifier] = STATE(1536), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(387), + [sym_match_expression] = STATE(387), + [sym_while_expression] = STATE(387), + [sym_loop_expression] = STATE(387), + [sym_for_expression] = STATE(387), + [sym_const_block] = STATE(387), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3556), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(387), + [sym_async_block] = STATE(387), + [sym_try_block] = STATE(387), + [sym_block] = STATE(387), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), [sym_line_comment] = STATE(19), [sym_block_comment] = STATE(19), - [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(2206), + [aux_sym_source_file_repeat1] = STATE(4), + [aux_sym_function_modifiers_repeat1] = STATE(2220), [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(304), + [anon_sym_RBRACE] = ACTIONS(306), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -16704,88 +16712,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(95), }, [20] = { - [sym__statement] = STATE(651), - [sym_empty_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_macro_definition] = STATE(652), - [sym_attribute_item] = STATE(652), - [sym_inner_attribute_item] = STATE(652), - [sym_mod_item] = STATE(652), - [sym_foreign_mod_item] = STATE(652), - [sym_struct_item] = STATE(652), - [sym_union_item] = STATE(652), - [sym_enum_item] = STATE(652), - [sym_extern_crate_declaration] = STATE(652), - [sym_const_item] = STATE(652), - [sym_static_item] = STATE(652), - [sym_type_item] = STATE(652), - [sym_function_item] = STATE(652), - [sym_function_signature_item] = STATE(652), - [sym_function_modifiers] = STATE(3452), - [sym_impl_item] = STATE(652), - [sym_trait_item] = STATE(652), - [sym_associated_type] = STATE(652), - [sym_let_declaration] = STATE(652), - [sym_use_declaration] = STATE(652), - [sym_extern_modifier] = STATE(2160), + [sym__statement] = STATE(599), + [sym_empty_statement] = STATE(605), + [sym_expression_statement] = STATE(605), + [sym_macro_definition] = STATE(605), + [sym_attribute_item] = STATE(605), + [sym_inner_attribute_item] = STATE(605), + [sym_mod_item] = STATE(605), + [sym_foreign_mod_item] = STATE(605), + [sym_struct_item] = STATE(605), + [sym_union_item] = STATE(605), + [sym_enum_item] = STATE(605), + [sym_extern_crate_declaration] = STATE(605), + [sym_const_item] = STATE(605), + [sym_static_item] = STATE(605), + [sym_type_item] = STATE(605), + [sym_function_item] = STATE(605), + [sym_function_signature_item] = STATE(605), + [sym_function_modifiers] = STATE(3564), + [sym_impl_item] = STATE(605), + [sym_trait_item] = STATE(605), + [sym_associated_type] = STATE(605), + [sym_let_declaration] = STATE(605), + [sym_use_declaration] = STATE(605), + [sym_extern_modifier] = STATE(2138), [sym_visibility_modifier] = STATE(1932), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1821), - [sym_macro_invocation] = STATE(395), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(391), - [sym_match_expression] = STATE(391), - [sym_while_expression] = STATE(391), - [sym_loop_expression] = STATE(391), - [sym_for_expression] = STATE(391), - [sym_const_block] = STATE(391), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3544), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(391), - [sym_async_block] = STATE(391), - [sym_try_block] = STATE(391), - [sym_block] = STATE(391), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1744), + [sym_macro_invocation] = STATE(391), + [sym_scoped_identifier] = STATE(1536), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(387), + [sym_match_expression] = STATE(387), + [sym_while_expression] = STATE(387), + [sym_loop_expression] = STATE(387), + [sym_for_expression] = STATE(387), + [sym_const_block] = STATE(387), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3556), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(387), + [sym_async_block] = STATE(387), + [sym_try_block] = STATE(387), + [sym_block] = STATE(387), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), [sym_line_comment] = STATE(20), [sym_block_comment] = STATE(20), - [aux_sym_source_file_repeat1] = STATE(21), - [aux_sym_function_modifiers_repeat1] = STATE(2206), + [aux_sym_source_file_repeat1] = STATE(19), + [aux_sym_function_modifiers_repeat1] = STATE(2220), [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(306), + [anon_sym_RBRACE] = ACTIONS(308), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -16856,88 +16864,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(95), }, [21] = { - [sym__statement] = STATE(651), - [sym_empty_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_macro_definition] = STATE(652), - [sym_attribute_item] = STATE(652), - [sym_inner_attribute_item] = STATE(652), - [sym_mod_item] = STATE(652), - [sym_foreign_mod_item] = STATE(652), - [sym_struct_item] = STATE(652), - [sym_union_item] = STATE(652), - [sym_enum_item] = STATE(652), - [sym_extern_crate_declaration] = STATE(652), - [sym_const_item] = STATE(652), - [sym_static_item] = STATE(652), - [sym_type_item] = STATE(652), - [sym_function_item] = STATE(652), - [sym_function_signature_item] = STATE(652), - [sym_function_modifiers] = STATE(3452), - [sym_impl_item] = STATE(652), - [sym_trait_item] = STATE(652), - [sym_associated_type] = STATE(652), - [sym_let_declaration] = STATE(652), - [sym_use_declaration] = STATE(652), - [sym_extern_modifier] = STATE(2160), + [sym__statement] = STATE(599), + [sym_empty_statement] = STATE(605), + [sym_expression_statement] = STATE(605), + [sym_macro_definition] = STATE(605), + [sym_attribute_item] = STATE(605), + [sym_inner_attribute_item] = STATE(605), + [sym_mod_item] = STATE(605), + [sym_foreign_mod_item] = STATE(605), + [sym_struct_item] = STATE(605), + [sym_union_item] = STATE(605), + [sym_enum_item] = STATE(605), + [sym_extern_crate_declaration] = STATE(605), + [sym_const_item] = STATE(605), + [sym_static_item] = STATE(605), + [sym_type_item] = STATE(605), + [sym_function_item] = STATE(605), + [sym_function_signature_item] = STATE(605), + [sym_function_modifiers] = STATE(3564), + [sym_impl_item] = STATE(605), + [sym_trait_item] = STATE(605), + [sym_associated_type] = STATE(605), + [sym_let_declaration] = STATE(605), + [sym_use_declaration] = STATE(605), + [sym_extern_modifier] = STATE(2138), [sym_visibility_modifier] = STATE(1932), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1823), - [sym_macro_invocation] = STATE(395), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(391), - [sym_match_expression] = STATE(391), - [sym_while_expression] = STATE(391), - [sym_loop_expression] = STATE(391), - [sym_for_expression] = STATE(391), - [sym_const_block] = STATE(391), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3544), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(391), - [sym_async_block] = STATE(391), - [sym_try_block] = STATE(391), - [sym_block] = STATE(391), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1790), + [sym_macro_invocation] = STATE(391), + [sym_scoped_identifier] = STATE(1536), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(387), + [sym_match_expression] = STATE(387), + [sym_while_expression] = STATE(387), + [sym_loop_expression] = STATE(387), + [sym_for_expression] = STATE(387), + [sym_const_block] = STATE(387), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3556), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(387), + [sym_async_block] = STATE(387), + [sym_try_block] = STATE(387), + [sym_block] = STATE(387), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), [sym_line_comment] = STATE(21), [sym_block_comment] = STATE(21), - [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(2206), + [aux_sym_source_file_repeat1] = STATE(29), + [aux_sym_function_modifiers_repeat1] = STATE(2220), [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(308), + [anon_sym_RBRACE] = ACTIONS(310), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -17008,88 +17016,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(95), }, [22] = { - [sym__statement] = STATE(651), - [sym_empty_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_macro_definition] = STATE(652), - [sym_attribute_item] = STATE(652), - [sym_inner_attribute_item] = STATE(652), - [sym_mod_item] = STATE(652), - [sym_foreign_mod_item] = STATE(652), - [sym_struct_item] = STATE(652), - [sym_union_item] = STATE(652), - [sym_enum_item] = STATE(652), - [sym_extern_crate_declaration] = STATE(652), - [sym_const_item] = STATE(652), - [sym_static_item] = STATE(652), - [sym_type_item] = STATE(652), - [sym_function_item] = STATE(652), - [sym_function_signature_item] = STATE(652), - [sym_function_modifiers] = STATE(3452), - [sym_impl_item] = STATE(652), - [sym_trait_item] = STATE(652), - [sym_associated_type] = STATE(652), - [sym_let_declaration] = STATE(652), - [sym_use_declaration] = STATE(652), - [sym_extern_modifier] = STATE(2160), + [sym__statement] = STATE(599), + [sym_empty_statement] = STATE(605), + [sym_expression_statement] = STATE(605), + [sym_macro_definition] = STATE(605), + [sym_attribute_item] = STATE(605), + [sym_inner_attribute_item] = STATE(605), + [sym_mod_item] = STATE(605), + [sym_foreign_mod_item] = STATE(605), + [sym_struct_item] = STATE(605), + [sym_union_item] = STATE(605), + [sym_enum_item] = STATE(605), + [sym_extern_crate_declaration] = STATE(605), + [sym_const_item] = STATE(605), + [sym_static_item] = STATE(605), + [sym_type_item] = STATE(605), + [sym_function_item] = STATE(605), + [sym_function_signature_item] = STATE(605), + [sym_function_modifiers] = STATE(3564), + [sym_impl_item] = STATE(605), + [sym_trait_item] = STATE(605), + [sym_associated_type] = STATE(605), + [sym_let_declaration] = STATE(605), + [sym_use_declaration] = STATE(605), + [sym_extern_modifier] = STATE(2138), [sym_visibility_modifier] = STATE(1932), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1824), - [sym_macro_invocation] = STATE(395), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(391), - [sym_match_expression] = STATE(391), - [sym_while_expression] = STATE(391), - [sym_loop_expression] = STATE(391), - [sym_for_expression] = STATE(391), - [sym_const_block] = STATE(391), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3544), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(391), - [sym_async_block] = STATE(391), - [sym_try_block] = STATE(391), - [sym_block] = STATE(391), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1836), + [sym_macro_invocation] = STATE(391), + [sym_scoped_identifier] = STATE(1536), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(387), + [sym_match_expression] = STATE(387), + [sym_while_expression] = STATE(387), + [sym_loop_expression] = STATE(387), + [sym_for_expression] = STATE(387), + [sym_const_block] = STATE(387), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3556), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(387), + [sym_async_block] = STATE(387), + [sym_try_block] = STATE(387), + [sym_block] = STATE(387), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), [sym_line_comment] = STATE(22), [sym_block_comment] = STATE(22), - [aux_sym_source_file_repeat1] = STATE(23), - [aux_sym_function_modifiers_repeat1] = STATE(2206), + [aux_sym_source_file_repeat1] = STATE(4), + [aux_sym_function_modifiers_repeat1] = STATE(2220), [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(310), + [anon_sym_RBRACE] = ACTIONS(312), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -17160,88 +17168,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(95), }, [23] = { - [sym__statement] = STATE(651), - [sym_empty_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_macro_definition] = STATE(652), - [sym_attribute_item] = STATE(652), - [sym_inner_attribute_item] = STATE(652), - [sym_mod_item] = STATE(652), - [sym_foreign_mod_item] = STATE(652), - [sym_struct_item] = STATE(652), - [sym_union_item] = STATE(652), - [sym_enum_item] = STATE(652), - [sym_extern_crate_declaration] = STATE(652), - [sym_const_item] = STATE(652), - [sym_static_item] = STATE(652), - [sym_type_item] = STATE(652), - [sym_function_item] = STATE(652), - [sym_function_signature_item] = STATE(652), - [sym_function_modifiers] = STATE(3452), - [sym_impl_item] = STATE(652), - [sym_trait_item] = STATE(652), - [sym_associated_type] = STATE(652), - [sym_let_declaration] = STATE(652), - [sym_use_declaration] = STATE(652), - [sym_extern_modifier] = STATE(2160), + [sym__statement] = STATE(599), + [sym_empty_statement] = STATE(605), + [sym_expression_statement] = STATE(605), + [sym_macro_definition] = STATE(605), + [sym_attribute_item] = STATE(605), + [sym_inner_attribute_item] = STATE(605), + [sym_mod_item] = STATE(605), + [sym_foreign_mod_item] = STATE(605), + [sym_struct_item] = STATE(605), + [sym_union_item] = STATE(605), + [sym_enum_item] = STATE(605), + [sym_extern_crate_declaration] = STATE(605), + [sym_const_item] = STATE(605), + [sym_static_item] = STATE(605), + [sym_type_item] = STATE(605), + [sym_function_item] = STATE(605), + [sym_function_signature_item] = STATE(605), + [sym_function_modifiers] = STATE(3564), + [sym_impl_item] = STATE(605), + [sym_trait_item] = STATE(605), + [sym_associated_type] = STATE(605), + [sym_let_declaration] = STATE(605), + [sym_use_declaration] = STATE(605), + [sym_extern_modifier] = STATE(2138), [sym_visibility_modifier] = STATE(1932), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1636), - [sym_macro_invocation] = STATE(395), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(391), - [sym_match_expression] = STATE(391), - [sym_while_expression] = STATE(391), - [sym_loop_expression] = STATE(391), - [sym_for_expression] = STATE(391), - [sym_const_block] = STATE(391), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3544), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(391), - [sym_async_block] = STATE(391), - [sym_try_block] = STATE(391), - [sym_block] = STATE(391), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1675), + [sym_macro_invocation] = STATE(391), + [sym_scoped_identifier] = STATE(1536), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(387), + [sym_match_expression] = STATE(387), + [sym_while_expression] = STATE(387), + [sym_loop_expression] = STATE(387), + [sym_for_expression] = STATE(387), + [sym_const_block] = STATE(387), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3556), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(387), + [sym_async_block] = STATE(387), + [sym_try_block] = STATE(387), + [sym_block] = STATE(387), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), [sym_line_comment] = STATE(23), [sym_block_comment] = STATE(23), - [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(2206), + [aux_sym_source_file_repeat1] = STATE(4), + [aux_sym_function_modifiers_repeat1] = STATE(2220), [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(312), + [anon_sym_RBRACE] = ACTIONS(314), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -17312,88 +17320,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(95), }, [24] = { - [sym__statement] = STATE(651), - [sym_empty_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_macro_definition] = STATE(652), - [sym_attribute_item] = STATE(652), - [sym_inner_attribute_item] = STATE(652), - [sym_mod_item] = STATE(652), - [sym_foreign_mod_item] = STATE(652), - [sym_struct_item] = STATE(652), - [sym_union_item] = STATE(652), - [sym_enum_item] = STATE(652), - [sym_extern_crate_declaration] = STATE(652), - [sym_const_item] = STATE(652), - [sym_static_item] = STATE(652), - [sym_type_item] = STATE(652), - [sym_function_item] = STATE(652), - [sym_function_signature_item] = STATE(652), - [sym_function_modifiers] = STATE(3452), - [sym_impl_item] = STATE(652), - [sym_trait_item] = STATE(652), - [sym_associated_type] = STATE(652), - [sym_let_declaration] = STATE(652), - [sym_use_declaration] = STATE(652), - [sym_extern_modifier] = STATE(2160), + [sym__statement] = STATE(599), + [sym_empty_statement] = STATE(605), + [sym_expression_statement] = STATE(605), + [sym_macro_definition] = STATE(605), + [sym_attribute_item] = STATE(605), + [sym_inner_attribute_item] = STATE(605), + [sym_mod_item] = STATE(605), + [sym_foreign_mod_item] = STATE(605), + [sym_struct_item] = STATE(605), + [sym_union_item] = STATE(605), + [sym_enum_item] = STATE(605), + [sym_extern_crate_declaration] = STATE(605), + [sym_const_item] = STATE(605), + [sym_static_item] = STATE(605), + [sym_type_item] = STATE(605), + [sym_function_item] = STATE(605), + [sym_function_signature_item] = STATE(605), + [sym_function_modifiers] = STATE(3564), + [sym_impl_item] = STATE(605), + [sym_trait_item] = STATE(605), + [sym_associated_type] = STATE(605), + [sym_let_declaration] = STATE(605), + [sym_use_declaration] = STATE(605), + [sym_extern_modifier] = STATE(2138), [sym_visibility_modifier] = STATE(1932), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1826), - [sym_macro_invocation] = STATE(395), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(391), - [sym_match_expression] = STATE(391), - [sym_while_expression] = STATE(391), - [sym_loop_expression] = STATE(391), - [sym_for_expression] = STATE(391), - [sym_const_block] = STATE(391), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3544), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(391), - [sym_async_block] = STATE(391), - [sym_try_block] = STATE(391), - [sym_block] = STATE(391), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1829), + [sym_macro_invocation] = STATE(391), + [sym_scoped_identifier] = STATE(1536), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(387), + [sym_match_expression] = STATE(387), + [sym_while_expression] = STATE(387), + [sym_loop_expression] = STATE(387), + [sym_for_expression] = STATE(387), + [sym_const_block] = STATE(387), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3556), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(387), + [sym_async_block] = STATE(387), + [sym_try_block] = STATE(387), + [sym_block] = STATE(387), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), [sym_line_comment] = STATE(24), [sym_block_comment] = STATE(24), - [aux_sym_source_file_repeat1] = STATE(25), - [aux_sym_function_modifiers_repeat1] = STATE(2206), + [aux_sym_source_file_repeat1] = STATE(22), + [aux_sym_function_modifiers_repeat1] = STATE(2220), [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(314), + [anon_sym_RBRACE] = ACTIONS(316), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -17464,88 +17472,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(95), }, [25] = { - [sym__statement] = STATE(651), - [sym_empty_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_macro_definition] = STATE(652), - [sym_attribute_item] = STATE(652), - [sym_inner_attribute_item] = STATE(652), - [sym_mod_item] = STATE(652), - [sym_foreign_mod_item] = STATE(652), - [sym_struct_item] = STATE(652), - [sym_union_item] = STATE(652), - [sym_enum_item] = STATE(652), - [sym_extern_crate_declaration] = STATE(652), - [sym_const_item] = STATE(652), - [sym_static_item] = STATE(652), - [sym_type_item] = STATE(652), - [sym_function_item] = STATE(652), - [sym_function_signature_item] = STATE(652), - [sym_function_modifiers] = STATE(3452), - [sym_impl_item] = STATE(652), - [sym_trait_item] = STATE(652), - [sym_associated_type] = STATE(652), - [sym_let_declaration] = STATE(652), - [sym_use_declaration] = STATE(652), - [sym_extern_modifier] = STATE(2160), + [sym__statement] = STATE(599), + [sym_empty_statement] = STATE(605), + [sym_expression_statement] = STATE(605), + [sym_macro_definition] = STATE(605), + [sym_attribute_item] = STATE(605), + [sym_inner_attribute_item] = STATE(605), + [sym_mod_item] = STATE(605), + [sym_foreign_mod_item] = STATE(605), + [sym_struct_item] = STATE(605), + [sym_union_item] = STATE(605), + [sym_enum_item] = STATE(605), + [sym_extern_crate_declaration] = STATE(605), + [sym_const_item] = STATE(605), + [sym_static_item] = STATE(605), + [sym_type_item] = STATE(605), + [sym_function_item] = STATE(605), + [sym_function_signature_item] = STATE(605), + [sym_function_modifiers] = STATE(3564), + [sym_impl_item] = STATE(605), + [sym_trait_item] = STATE(605), + [sym_associated_type] = STATE(605), + [sym_let_declaration] = STATE(605), + [sym_use_declaration] = STATE(605), + [sym_extern_modifier] = STATE(2138), [sym_visibility_modifier] = STATE(1932), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1827), - [sym_macro_invocation] = STATE(395), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(391), - [sym_match_expression] = STATE(391), - [sym_while_expression] = STATE(391), - [sym_loop_expression] = STATE(391), - [sym_for_expression] = STATE(391), - [sym_const_block] = STATE(391), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3544), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(391), - [sym_async_block] = STATE(391), - [sym_try_block] = STATE(391), - [sym_block] = STATE(391), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1661), + [sym_macro_invocation] = STATE(391), + [sym_scoped_identifier] = STATE(1536), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(387), + [sym_match_expression] = STATE(387), + [sym_while_expression] = STATE(387), + [sym_loop_expression] = STATE(387), + [sym_for_expression] = STATE(387), + [sym_const_block] = STATE(387), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3556), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(387), + [sym_async_block] = STATE(387), + [sym_try_block] = STATE(387), + [sym_block] = STATE(387), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), [sym_line_comment] = STATE(25), [sym_block_comment] = STATE(25), - [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(2206), + [aux_sym_source_file_repeat1] = STATE(6), + [aux_sym_function_modifiers_repeat1] = STATE(2220), [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(316), + [anon_sym_RBRACE] = ACTIONS(318), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -17616,88 +17624,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(95), }, [26] = { - [sym__statement] = STATE(651), - [sym_empty_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_macro_definition] = STATE(652), - [sym_attribute_item] = STATE(652), - [sym_inner_attribute_item] = STATE(652), - [sym_mod_item] = STATE(652), - [sym_foreign_mod_item] = STATE(652), - [sym_struct_item] = STATE(652), - [sym_union_item] = STATE(652), - [sym_enum_item] = STATE(652), - [sym_extern_crate_declaration] = STATE(652), - [sym_const_item] = STATE(652), - [sym_static_item] = STATE(652), - [sym_type_item] = STATE(652), - [sym_function_item] = STATE(652), - [sym_function_signature_item] = STATE(652), - [sym_function_modifiers] = STATE(3452), - [sym_impl_item] = STATE(652), - [sym_trait_item] = STATE(652), - [sym_associated_type] = STATE(652), - [sym_let_declaration] = STATE(652), - [sym_use_declaration] = STATE(652), - [sym_extern_modifier] = STATE(2160), + [sym__statement] = STATE(599), + [sym_empty_statement] = STATE(605), + [sym_expression_statement] = STATE(605), + [sym_macro_definition] = STATE(605), + [sym_attribute_item] = STATE(605), + [sym_inner_attribute_item] = STATE(605), + [sym_mod_item] = STATE(605), + [sym_foreign_mod_item] = STATE(605), + [sym_struct_item] = STATE(605), + [sym_union_item] = STATE(605), + [sym_enum_item] = STATE(605), + [sym_extern_crate_declaration] = STATE(605), + [sym_const_item] = STATE(605), + [sym_static_item] = STATE(605), + [sym_type_item] = STATE(605), + [sym_function_item] = STATE(605), + [sym_function_signature_item] = STATE(605), + [sym_function_modifiers] = STATE(3564), + [sym_impl_item] = STATE(605), + [sym_trait_item] = STATE(605), + [sym_associated_type] = STATE(605), + [sym_let_declaration] = STATE(605), + [sym_use_declaration] = STATE(605), + [sym_extern_modifier] = STATE(2138), [sym_visibility_modifier] = STATE(1932), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1828), - [sym_macro_invocation] = STATE(395), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(391), - [sym_match_expression] = STATE(391), - [sym_while_expression] = STATE(391), - [sym_loop_expression] = STATE(391), - [sym_for_expression] = STATE(391), - [sym_const_block] = STATE(391), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3544), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(391), - [sym_async_block] = STATE(391), - [sym_try_block] = STATE(391), - [sym_block] = STATE(391), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1819), + [sym_macro_invocation] = STATE(391), + [sym_scoped_identifier] = STATE(1536), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(387), + [sym_match_expression] = STATE(387), + [sym_while_expression] = STATE(387), + [sym_loop_expression] = STATE(387), + [sym_for_expression] = STATE(387), + [sym_const_block] = STATE(387), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3556), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(387), + [sym_async_block] = STATE(387), + [sym_try_block] = STATE(387), + [sym_block] = STATE(387), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), [sym_line_comment] = STATE(26), [sym_block_comment] = STATE(26), - [aux_sym_source_file_repeat1] = STATE(27), - [aux_sym_function_modifiers_repeat1] = STATE(2206), + [aux_sym_source_file_repeat1] = STATE(14), + [aux_sym_function_modifiers_repeat1] = STATE(2220), [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(318), + [anon_sym_RBRACE] = ACTIONS(320), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -17768,88 +17776,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(95), }, [27] = { - [sym__statement] = STATE(651), - [sym_empty_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_macro_definition] = STATE(652), - [sym_attribute_item] = STATE(652), - [sym_inner_attribute_item] = STATE(652), - [sym_mod_item] = STATE(652), - [sym_foreign_mod_item] = STATE(652), - [sym_struct_item] = STATE(652), - [sym_union_item] = STATE(652), - [sym_enum_item] = STATE(652), - [sym_extern_crate_declaration] = STATE(652), - [sym_const_item] = STATE(652), - [sym_static_item] = STATE(652), - [sym_type_item] = STATE(652), - [sym_function_item] = STATE(652), - [sym_function_signature_item] = STATE(652), - [sym_function_modifiers] = STATE(3452), - [sym_impl_item] = STATE(652), - [sym_trait_item] = STATE(652), - [sym_associated_type] = STATE(652), - [sym_let_declaration] = STATE(652), - [sym_use_declaration] = STATE(652), - [sym_extern_modifier] = STATE(2160), + [sym__statement] = STATE(599), + [sym_empty_statement] = STATE(605), + [sym_expression_statement] = STATE(605), + [sym_macro_definition] = STATE(605), + [sym_attribute_item] = STATE(605), + [sym_inner_attribute_item] = STATE(605), + [sym_mod_item] = STATE(605), + [sym_foreign_mod_item] = STATE(605), + [sym_struct_item] = STATE(605), + [sym_union_item] = STATE(605), + [sym_enum_item] = STATE(605), + [sym_extern_crate_declaration] = STATE(605), + [sym_const_item] = STATE(605), + [sym_static_item] = STATE(605), + [sym_type_item] = STATE(605), + [sym_function_item] = STATE(605), + [sym_function_signature_item] = STATE(605), + [sym_function_modifiers] = STATE(3564), + [sym_impl_item] = STATE(605), + [sym_trait_item] = STATE(605), + [sym_associated_type] = STATE(605), + [sym_let_declaration] = STATE(605), + [sym_use_declaration] = STATE(605), + [sym_extern_modifier] = STATE(2138), [sym_visibility_modifier] = STATE(1932), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1830), - [sym_macro_invocation] = STATE(395), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(391), - [sym_match_expression] = STATE(391), - [sym_while_expression] = STATE(391), - [sym_loop_expression] = STATE(391), - [sym_for_expression] = STATE(391), - [sym_const_block] = STATE(391), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3544), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(391), - [sym_async_block] = STATE(391), - [sym_try_block] = STATE(391), - [sym_block] = STATE(391), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1858), + [sym_macro_invocation] = STATE(391), + [sym_scoped_identifier] = STATE(1536), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(387), + [sym_match_expression] = STATE(387), + [sym_while_expression] = STATE(387), + [sym_loop_expression] = STATE(387), + [sym_for_expression] = STATE(387), + [sym_const_block] = STATE(387), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3556), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(387), + [sym_async_block] = STATE(387), + [sym_try_block] = STATE(387), + [sym_block] = STATE(387), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), [sym_line_comment] = STATE(27), [sym_block_comment] = STATE(27), - [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(2206), + [aux_sym_source_file_repeat1] = STATE(33), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [ts_builtin_sym_end] = ACTIONS(322), [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(320), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -17920,88 +17928,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(95), }, [28] = { - [sym__statement] = STATE(651), - [sym_empty_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_macro_definition] = STATE(652), - [sym_attribute_item] = STATE(652), - [sym_inner_attribute_item] = STATE(652), - [sym_mod_item] = STATE(652), - [sym_foreign_mod_item] = STATE(652), - [sym_struct_item] = STATE(652), - [sym_union_item] = STATE(652), - [sym_enum_item] = STATE(652), - [sym_extern_crate_declaration] = STATE(652), - [sym_const_item] = STATE(652), - [sym_static_item] = STATE(652), - [sym_type_item] = STATE(652), - [sym_function_item] = STATE(652), - [sym_function_signature_item] = STATE(652), - [sym_function_modifiers] = STATE(3452), - [sym_impl_item] = STATE(652), - [sym_trait_item] = STATE(652), - [sym_associated_type] = STATE(652), - [sym_let_declaration] = STATE(652), - [sym_use_declaration] = STATE(652), - [sym_extern_modifier] = STATE(2160), + [sym__statement] = STATE(599), + [sym_empty_statement] = STATE(605), + [sym_expression_statement] = STATE(605), + [sym_macro_definition] = STATE(605), + [sym_attribute_item] = STATE(605), + [sym_inner_attribute_item] = STATE(605), + [sym_mod_item] = STATE(605), + [sym_foreign_mod_item] = STATE(605), + [sym_struct_item] = STATE(605), + [sym_union_item] = STATE(605), + [sym_enum_item] = STATE(605), + [sym_extern_crate_declaration] = STATE(605), + [sym_const_item] = STATE(605), + [sym_static_item] = STATE(605), + [sym_type_item] = STATE(605), + [sym_function_item] = STATE(605), + [sym_function_signature_item] = STATE(605), + [sym_function_modifiers] = STATE(3564), + [sym_impl_item] = STATE(605), + [sym_trait_item] = STATE(605), + [sym_associated_type] = STATE(605), + [sym_let_declaration] = STATE(605), + [sym_use_declaration] = STATE(605), + [sym_extern_modifier] = STATE(2138), [sym_visibility_modifier] = STATE(1932), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1831), - [sym_macro_invocation] = STATE(395), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(391), - [sym_match_expression] = STATE(391), - [sym_while_expression] = STATE(391), - [sym_loop_expression] = STATE(391), - [sym_for_expression] = STATE(391), - [sym_const_block] = STATE(391), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3544), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(391), - [sym_async_block] = STATE(391), - [sym_try_block] = STATE(391), - [sym_block] = STATE(391), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1757), + [sym_macro_invocation] = STATE(391), + [sym_scoped_identifier] = STATE(1536), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(387), + [sym_match_expression] = STATE(387), + [sym_while_expression] = STATE(387), + [sym_loop_expression] = STATE(387), + [sym_for_expression] = STATE(387), + [sym_const_block] = STATE(387), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3556), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(387), + [sym_async_block] = STATE(387), + [sym_try_block] = STATE(387), + [sym_block] = STATE(387), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), [sym_line_comment] = STATE(28), [sym_block_comment] = STATE(28), - [aux_sym_source_file_repeat1] = STATE(29), - [aux_sym_function_modifiers_repeat1] = STATE(2206), + [aux_sym_source_file_repeat1] = STATE(2), + [aux_sym_function_modifiers_repeat1] = STATE(2220), [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(322), + [anon_sym_RBRACE] = ACTIONS(324), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -18072,88 +18080,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(95), }, [29] = { - [sym__statement] = STATE(651), - [sym_empty_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_macro_definition] = STATE(652), - [sym_attribute_item] = STATE(652), - [sym_inner_attribute_item] = STATE(652), - [sym_mod_item] = STATE(652), - [sym_foreign_mod_item] = STATE(652), - [sym_struct_item] = STATE(652), - [sym_union_item] = STATE(652), - [sym_enum_item] = STATE(652), - [sym_extern_crate_declaration] = STATE(652), - [sym_const_item] = STATE(652), - [sym_static_item] = STATE(652), - [sym_type_item] = STATE(652), - [sym_function_item] = STATE(652), - [sym_function_signature_item] = STATE(652), - [sym_function_modifiers] = STATE(3452), - [sym_impl_item] = STATE(652), - [sym_trait_item] = STATE(652), - [sym_associated_type] = STATE(652), - [sym_let_declaration] = STATE(652), - [sym_use_declaration] = STATE(652), - [sym_extern_modifier] = STATE(2160), + [sym__statement] = STATE(599), + [sym_empty_statement] = STATE(605), + [sym_expression_statement] = STATE(605), + [sym_macro_definition] = STATE(605), + [sym_attribute_item] = STATE(605), + [sym_inner_attribute_item] = STATE(605), + [sym_mod_item] = STATE(605), + [sym_foreign_mod_item] = STATE(605), + [sym_struct_item] = STATE(605), + [sym_union_item] = STATE(605), + [sym_enum_item] = STATE(605), + [sym_extern_crate_declaration] = STATE(605), + [sym_const_item] = STATE(605), + [sym_static_item] = STATE(605), + [sym_type_item] = STATE(605), + [sym_function_item] = STATE(605), + [sym_function_signature_item] = STATE(605), + [sym_function_modifiers] = STATE(3564), + [sym_impl_item] = STATE(605), + [sym_trait_item] = STATE(605), + [sym_associated_type] = STATE(605), + [sym_let_declaration] = STATE(605), + [sym_use_declaration] = STATE(605), + [sym_extern_modifier] = STATE(2138), [sym_visibility_modifier] = STATE(1932), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1832), - [sym_macro_invocation] = STATE(395), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(391), - [sym_match_expression] = STATE(391), - [sym_while_expression] = STATE(391), - [sym_loop_expression] = STATE(391), - [sym_for_expression] = STATE(391), - [sym_const_block] = STATE(391), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3544), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(391), - [sym_async_block] = STATE(391), - [sym_try_block] = STATE(391), - [sym_block] = STATE(391), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1768), + [sym_macro_invocation] = STATE(391), + [sym_scoped_identifier] = STATE(1536), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(387), + [sym_match_expression] = STATE(387), + [sym_while_expression] = STATE(387), + [sym_loop_expression] = STATE(387), + [sym_for_expression] = STATE(387), + [sym_const_block] = STATE(387), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3556), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(387), + [sym_async_block] = STATE(387), + [sym_try_block] = STATE(387), + [sym_block] = STATE(387), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), [sym_line_comment] = STATE(29), [sym_block_comment] = STATE(29), - [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(2206), + [aux_sym_source_file_repeat1] = STATE(4), + [aux_sym_function_modifiers_repeat1] = STATE(2220), [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(324), + [anon_sym_RBRACE] = ACTIONS(326), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -18224,88 +18232,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(95), }, [30] = { - [sym__statement] = STATE(651), - [sym_empty_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_macro_definition] = STATE(652), - [sym_attribute_item] = STATE(652), - [sym_inner_attribute_item] = STATE(652), - [sym_mod_item] = STATE(652), - [sym_foreign_mod_item] = STATE(652), - [sym_struct_item] = STATE(652), - [sym_union_item] = STATE(652), - [sym_enum_item] = STATE(652), - [sym_extern_crate_declaration] = STATE(652), - [sym_const_item] = STATE(652), - [sym_static_item] = STATE(652), - [sym_type_item] = STATE(652), - [sym_function_item] = STATE(652), - [sym_function_signature_item] = STATE(652), - [sym_function_modifiers] = STATE(3452), - [sym_impl_item] = STATE(652), - [sym_trait_item] = STATE(652), - [sym_associated_type] = STATE(652), - [sym_let_declaration] = STATE(652), - [sym_use_declaration] = STATE(652), - [sym_extern_modifier] = STATE(2160), + [sym__statement] = STATE(599), + [sym_empty_statement] = STATE(605), + [sym_expression_statement] = STATE(605), + [sym_macro_definition] = STATE(605), + [sym_attribute_item] = STATE(605), + [sym_inner_attribute_item] = STATE(605), + [sym_mod_item] = STATE(605), + [sym_foreign_mod_item] = STATE(605), + [sym_struct_item] = STATE(605), + [sym_union_item] = STATE(605), + [sym_enum_item] = STATE(605), + [sym_extern_crate_declaration] = STATE(605), + [sym_const_item] = STATE(605), + [sym_static_item] = STATE(605), + [sym_type_item] = STATE(605), + [sym_function_item] = STATE(605), + [sym_function_signature_item] = STATE(605), + [sym_function_modifiers] = STATE(3564), + [sym_impl_item] = STATE(605), + [sym_trait_item] = STATE(605), + [sym_associated_type] = STATE(605), + [sym_let_declaration] = STATE(605), + [sym_use_declaration] = STATE(605), + [sym_extern_modifier] = STATE(2138), [sym_visibility_modifier] = STATE(1932), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1833), - [sym_macro_invocation] = STATE(395), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(391), - [sym_match_expression] = STATE(391), - [sym_while_expression] = STATE(391), - [sym_loop_expression] = STATE(391), - [sym_for_expression] = STATE(391), - [sym_const_block] = STATE(391), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3544), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(391), - [sym_async_block] = STATE(391), - [sym_try_block] = STATE(391), - [sym_block] = STATE(391), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1663), + [sym_macro_invocation] = STATE(391), + [sym_scoped_identifier] = STATE(1536), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(387), + [sym_match_expression] = STATE(387), + [sym_while_expression] = STATE(387), + [sym_loop_expression] = STATE(387), + [sym_for_expression] = STATE(387), + [sym_const_block] = STATE(387), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3556), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(387), + [sym_async_block] = STATE(387), + [sym_try_block] = STATE(387), + [sym_block] = STATE(387), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), [sym_line_comment] = STATE(30), [sym_block_comment] = STATE(30), - [aux_sym_source_file_repeat1] = STATE(31), - [aux_sym_function_modifiers_repeat1] = STATE(2206), + [aux_sym_source_file_repeat1] = STATE(4), + [aux_sym_function_modifiers_repeat1] = STATE(2220), [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(326), + [anon_sym_RBRACE] = ACTIONS(328), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -18376,88 +18384,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(95), }, [31] = { - [sym__statement] = STATE(651), - [sym_empty_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_macro_definition] = STATE(652), - [sym_attribute_item] = STATE(652), - [sym_inner_attribute_item] = STATE(652), - [sym_mod_item] = STATE(652), - [sym_foreign_mod_item] = STATE(652), - [sym_struct_item] = STATE(652), - [sym_union_item] = STATE(652), - [sym_enum_item] = STATE(652), - [sym_extern_crate_declaration] = STATE(652), - [sym_const_item] = STATE(652), - [sym_static_item] = STATE(652), - [sym_type_item] = STATE(652), - [sym_function_item] = STATE(652), - [sym_function_signature_item] = STATE(652), - [sym_function_modifiers] = STATE(3452), - [sym_impl_item] = STATE(652), - [sym_trait_item] = STATE(652), - [sym_associated_type] = STATE(652), - [sym_let_declaration] = STATE(652), - [sym_use_declaration] = STATE(652), - [sym_extern_modifier] = STATE(2160), + [sym__statement] = STATE(599), + [sym_empty_statement] = STATE(605), + [sym_expression_statement] = STATE(605), + [sym_macro_definition] = STATE(605), + [sym_attribute_item] = STATE(605), + [sym_inner_attribute_item] = STATE(605), + [sym_mod_item] = STATE(605), + [sym_foreign_mod_item] = STATE(605), + [sym_struct_item] = STATE(605), + [sym_union_item] = STATE(605), + [sym_enum_item] = STATE(605), + [sym_extern_crate_declaration] = STATE(605), + [sym_const_item] = STATE(605), + [sym_static_item] = STATE(605), + [sym_type_item] = STATE(605), + [sym_function_item] = STATE(605), + [sym_function_signature_item] = STATE(605), + [sym_function_modifiers] = STATE(3564), + [sym_impl_item] = STATE(605), + [sym_trait_item] = STATE(605), + [sym_associated_type] = STATE(605), + [sym_let_declaration] = STATE(605), + [sym_use_declaration] = STATE(605), + [sym_extern_modifier] = STATE(2138), [sym_visibility_modifier] = STATE(1932), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1834), - [sym_macro_invocation] = STATE(395), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(391), - [sym_match_expression] = STATE(391), - [sym_while_expression] = STATE(391), - [sym_loop_expression] = STATE(391), - [sym_for_expression] = STATE(391), - [sym_const_block] = STATE(391), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3544), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(391), - [sym_async_block] = STATE(391), - [sym_try_block] = STATE(391), - [sym_block] = STATE(391), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1676), + [sym_macro_invocation] = STATE(391), + [sym_scoped_identifier] = STATE(1536), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(387), + [sym_match_expression] = STATE(387), + [sym_while_expression] = STATE(387), + [sym_loop_expression] = STATE(387), + [sym_for_expression] = STATE(387), + [sym_const_block] = STATE(387), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3556), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(387), + [sym_async_block] = STATE(387), + [sym_try_block] = STATE(387), + [sym_block] = STATE(387), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), [sym_line_comment] = STATE(31), [sym_block_comment] = STATE(31), - [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(2206), + [aux_sym_source_file_repeat1] = STATE(4), + [aux_sym_function_modifiers_repeat1] = STATE(2220), [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(328), + [anon_sym_RBRACE] = ACTIONS(330), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -18528,386 +18536,386 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(95), }, [32] = { - [sym__statement] = STATE(651), - [sym_empty_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_macro_definition] = STATE(652), - [sym_attribute_item] = STATE(652), - [sym_inner_attribute_item] = STATE(652), - [sym_mod_item] = STATE(652), - [sym_foreign_mod_item] = STATE(652), - [sym_struct_item] = STATE(652), - [sym_union_item] = STATE(652), - [sym_enum_item] = STATE(652), - [sym_extern_crate_declaration] = STATE(652), - [sym_const_item] = STATE(652), - [sym_static_item] = STATE(652), - [sym_type_item] = STATE(652), - [sym_function_item] = STATE(652), - [sym_function_signature_item] = STATE(652), - [sym_function_modifiers] = STATE(3452), - [sym_impl_item] = STATE(652), - [sym_trait_item] = STATE(652), - [sym_associated_type] = STATE(652), - [sym_let_declaration] = STATE(652), - [sym_use_declaration] = STATE(652), - [sym_extern_modifier] = STATE(2160), + [sym__statement] = STATE(599), + [sym_empty_statement] = STATE(605), + [sym_expression_statement] = STATE(605), + [sym_macro_definition] = STATE(605), + [sym_attribute_item] = STATE(605), + [sym_inner_attribute_item] = STATE(605), + [sym_mod_item] = STATE(605), + [sym_foreign_mod_item] = STATE(605), + [sym_struct_item] = STATE(605), + [sym_union_item] = STATE(605), + [sym_enum_item] = STATE(605), + [sym_extern_crate_declaration] = STATE(605), + [sym_const_item] = STATE(605), + [sym_static_item] = STATE(605), + [sym_type_item] = STATE(605), + [sym_function_item] = STATE(605), + [sym_function_signature_item] = STATE(605), + [sym_function_modifiers] = STATE(3564), + [sym_impl_item] = STATE(605), + [sym_trait_item] = STATE(605), + [sym_associated_type] = STATE(605), + [sym_let_declaration] = STATE(605), + [sym_use_declaration] = STATE(605), + [sym_extern_modifier] = STATE(2138), [sym_visibility_modifier] = STATE(1932), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1835), - [sym_macro_invocation] = STATE(395), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(391), - [sym_match_expression] = STATE(391), - [sym_while_expression] = STATE(391), - [sym_loop_expression] = STATE(391), - [sym_for_expression] = STATE(391), - [sym_const_block] = STATE(391), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3544), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(391), - [sym_async_block] = STATE(391), - [sym_try_block] = STATE(391), - [sym_block] = STATE(391), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1792), + [sym_macro_invocation] = STATE(391), + [sym_scoped_identifier] = STATE(1536), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(387), + [sym_match_expression] = STATE(387), + [sym_while_expression] = STATE(387), + [sym_loop_expression] = STATE(387), + [sym_for_expression] = STATE(387), + [sym_const_block] = STATE(387), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3556), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(387), + [sym_async_block] = STATE(387), + [sym_try_block] = STATE(387), + [sym_block] = STATE(387), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), [sym_line_comment] = STATE(32), [sym_block_comment] = STATE(32), + [aux_sym_source_file_repeat1] = STATE(12), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [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(332), + [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_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(119), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(39), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(47), + [anon_sym_enum] = ACTIONS(49), + [anon_sym_fn] = ACTIONS(51), + [anon_sym_for] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), + [anon_sym_impl] = ACTIONS(57), + [anon_sym_let] = ACTIONS(59), + [anon_sym_loop] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_mod] = ACTIONS(65), + [anon_sym_pub] = ACTIONS(67), + [anon_sym_return] = ACTIONS(69), + [anon_sym_static] = ACTIONS(71), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(75), + [anon_sym_type] = ACTIONS(77), + [anon_sym_union] = ACTIONS(79), + [anon_sym_unsafe] = ACTIONS(81), + [anon_sym_use] = ACTIONS(83), + [anon_sym_while] = ACTIONS(85), + [anon_sym_extern] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(107), + [sym_super] = ACTIONS(109), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(113), + [sym__raw_string_literal_start] = ACTIONS(115), + [sym_float_literal] = ACTIONS(95), + }, + [33] = { + [sym__statement] = STATE(599), + [sym_empty_statement] = STATE(605), + [sym_expression_statement] = STATE(605), + [sym_macro_definition] = STATE(605), + [sym_attribute_item] = STATE(605), + [sym_inner_attribute_item] = STATE(605), + [sym_mod_item] = STATE(605), + [sym_foreign_mod_item] = STATE(605), + [sym_struct_item] = STATE(605), + [sym_union_item] = STATE(605), + [sym_enum_item] = STATE(605), + [sym_extern_crate_declaration] = STATE(605), + [sym_const_item] = STATE(605), + [sym_static_item] = STATE(605), + [sym_type_item] = STATE(605), + [sym_function_item] = STATE(605), + [sym_function_signature_item] = STATE(605), + [sym_function_modifiers] = STATE(3564), + [sym_impl_item] = STATE(605), + [sym_trait_item] = STATE(605), + [sym_associated_type] = STATE(605), + [sym_let_declaration] = STATE(605), + [sym_use_declaration] = STATE(605), + [sym_extern_modifier] = STATE(2138), + [sym_visibility_modifier] = STATE(1932), + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1858), + [sym_macro_invocation] = STATE(391), + [sym_scoped_identifier] = STATE(1536), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(387), + [sym_match_expression] = STATE(387), + [sym_while_expression] = STATE(387), + [sym_loop_expression] = STATE(387), + [sym_for_expression] = STATE(387), + [sym_const_block] = STATE(387), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3556), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(387), + [sym_async_block] = STATE(387), + [sym_try_block] = STATE(387), + [sym_block] = STATE(387), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), + [sym_line_comment] = STATE(33), + [sym_block_comment] = STATE(33), [aux_sym_source_file_repeat1] = STATE(33), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [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(330), - [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_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(119), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(39), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_fn] = ACTIONS(51), - [anon_sym_for] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_impl] = ACTIONS(57), - [anon_sym_let] = ACTIONS(59), - [anon_sym_loop] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_mod] = ACTIONS(65), - [anon_sym_pub] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_trait] = ACTIONS(75), - [anon_sym_type] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_unsafe] = ACTIONS(81), - [anon_sym_use] = ACTIONS(83), - [anon_sym_while] = ACTIONS(85), - [anon_sym_extern] = ACTIONS(87), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(93), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [33] = { - [sym__statement] = STATE(651), - [sym_empty_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_macro_definition] = STATE(652), - [sym_attribute_item] = STATE(652), - [sym_inner_attribute_item] = STATE(652), - [sym_mod_item] = STATE(652), - [sym_foreign_mod_item] = STATE(652), - [sym_struct_item] = STATE(652), - [sym_union_item] = STATE(652), - [sym_enum_item] = STATE(652), - [sym_extern_crate_declaration] = STATE(652), - [sym_const_item] = STATE(652), - [sym_static_item] = STATE(652), - [sym_type_item] = STATE(652), - [sym_function_item] = STATE(652), - [sym_function_signature_item] = STATE(652), - [sym_function_modifiers] = STATE(3452), - [sym_impl_item] = STATE(652), - [sym_trait_item] = STATE(652), - [sym_associated_type] = STATE(652), - [sym_let_declaration] = STATE(652), - [sym_use_declaration] = STATE(652), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1932), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1836), - [sym_macro_invocation] = STATE(395), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(391), - [sym_match_expression] = STATE(391), - [sym_while_expression] = STATE(391), - [sym_loop_expression] = STATE(391), - [sym_for_expression] = STATE(391), - [sym_const_block] = STATE(391), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3544), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(391), - [sym_async_block] = STATE(391), - [sym_try_block] = STATE(391), - [sym_block] = STATE(391), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(33), - [sym_block_comment] = STATE(33), - [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [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(332), - [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_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(119), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(39), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_fn] = ACTIONS(51), - [anon_sym_for] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_impl] = ACTIONS(57), - [anon_sym_let] = ACTIONS(59), - [anon_sym_loop] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_mod] = ACTIONS(65), - [anon_sym_pub] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_trait] = ACTIONS(75), - [anon_sym_type] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_unsafe] = ACTIONS(81), - [anon_sym_use] = ACTIONS(83), - [anon_sym_while] = ACTIONS(85), - [anon_sym_extern] = ACTIONS(87), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(93), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [34] = { - [sym__statement] = STATE(651), - [sym_empty_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_macro_definition] = STATE(652), - [sym_attribute_item] = STATE(652), - [sym_inner_attribute_item] = STATE(652), - [sym_mod_item] = STATE(652), - [sym_foreign_mod_item] = STATE(652), - [sym_struct_item] = STATE(652), - [sym_union_item] = STATE(652), - [sym_enum_item] = STATE(652), - [sym_extern_crate_declaration] = STATE(652), - [sym_const_item] = STATE(652), - [sym_static_item] = STATE(652), - [sym_type_item] = STATE(652), - [sym_function_item] = STATE(652), - [sym_function_signature_item] = STATE(652), - [sym_function_modifiers] = STATE(3452), - [sym_impl_item] = STATE(652), - [sym_trait_item] = STATE(652), - [sym_associated_type] = STATE(652), - [sym_let_declaration] = STATE(652), - [sym_use_declaration] = STATE(652), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1932), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1845), - [sym_macro_invocation] = STATE(395), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(391), - [sym_match_expression] = STATE(391), - [sym_while_expression] = STATE(391), - [sym_loop_expression] = STATE(391), - [sym_for_expression] = STATE(391), - [sym_const_block] = STATE(391), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3544), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(391), - [sym_async_block] = STATE(391), - [sym_try_block] = STATE(391), - [sym_block] = STATE(391), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(34), - [sym_block_comment] = STATE(34), - [aux_sym_source_file_repeat1] = STATE(8), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [ts_builtin_sym_end] = ACTIONS(123), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [ts_builtin_sym_end] = ACTIONS(141), + [sym_identifier] = ACTIONS(123), + [anon_sym_SEMI] = ACTIONS(126), + [anon_sym_macro_rules_BANG] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(132), + [anon_sym_LBRACK] = ACTIONS(135), + [anon_sym_LBRACE] = ACTIONS(138), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_u8] = ACTIONS(146), + [anon_sym_i8] = ACTIONS(146), + [anon_sym_u16] = ACTIONS(146), + [anon_sym_i16] = ACTIONS(146), + [anon_sym_u32] = ACTIONS(146), + [anon_sym_i32] = ACTIONS(146), + [anon_sym_u64] = ACTIONS(146), + [anon_sym_i64] = ACTIONS(146), + [anon_sym_u128] = ACTIONS(146), + [anon_sym_i128] = ACTIONS(146), + [anon_sym_isize] = ACTIONS(146), + [anon_sym_usize] = ACTIONS(146), + [anon_sym_f32] = ACTIONS(146), + [anon_sym_f64] = ACTIONS(146), + [anon_sym_bool] = ACTIONS(146), + [anon_sym_str] = ACTIONS(146), + [anon_sym_char] = ACTIONS(146), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_AMP] = ACTIONS(149), + [anon_sym_PIPE] = ACTIONS(152), + [anon_sym_LT] = ACTIONS(155), + [anon_sym_DOT_DOT] = ACTIONS(158), + [anon_sym_COLON_COLON] = ACTIONS(161), + [anon_sym_POUND] = ACTIONS(164), + [anon_sym_SQUOTE] = ACTIONS(167), + [anon_sym_async] = ACTIONS(170), + [anon_sym_break] = ACTIONS(173), + [anon_sym_const] = ACTIONS(176), + [anon_sym_continue] = ACTIONS(179), + [anon_sym_default] = ACTIONS(182), + [anon_sym_enum] = ACTIONS(185), + [anon_sym_fn] = ACTIONS(188), + [anon_sym_for] = ACTIONS(191), + [anon_sym_if] = ACTIONS(194), + [anon_sym_impl] = ACTIONS(197), + [anon_sym_let] = ACTIONS(200), + [anon_sym_loop] = ACTIONS(203), + [anon_sym_match] = ACTIONS(206), + [anon_sym_mod] = ACTIONS(209), + [anon_sym_pub] = ACTIONS(212), + [anon_sym_return] = ACTIONS(215), + [anon_sym_static] = ACTIONS(218), + [anon_sym_struct] = ACTIONS(221), + [anon_sym_trait] = ACTIONS(224), + [anon_sym_type] = ACTIONS(227), + [anon_sym_union] = ACTIONS(230), + [anon_sym_unsafe] = ACTIONS(233), + [anon_sym_use] = ACTIONS(236), + [anon_sym_while] = ACTIONS(239), + [anon_sym_extern] = ACTIONS(242), + [anon_sym_yield] = ACTIONS(245), + [anon_sym_move] = ACTIONS(248), + [anon_sym_try] = ACTIONS(251), + [sym_integer_literal] = ACTIONS(254), + [aux_sym_string_literal_token1] = ACTIONS(257), + [sym_char_literal] = ACTIONS(254), + [anon_sym_true] = ACTIONS(260), + [anon_sym_false] = ACTIONS(260), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(263), + [sym_super] = ACTIONS(266), + [sym_crate] = ACTIONS(269), + [sym_metavariable] = ACTIONS(272), + [sym__raw_string_literal_start] = ACTIONS(275), + [sym_float_literal] = ACTIONS(254), + }, + [34] = { + [sym__statement] = STATE(599), + [sym_empty_statement] = STATE(605), + [sym_expression_statement] = STATE(605), + [sym_macro_definition] = STATE(605), + [sym_attribute_item] = STATE(605), + [sym_inner_attribute_item] = STATE(605), + [sym_mod_item] = STATE(605), + [sym_foreign_mod_item] = STATE(605), + [sym_struct_item] = STATE(605), + [sym_union_item] = STATE(605), + [sym_enum_item] = STATE(605), + [sym_extern_crate_declaration] = STATE(605), + [sym_const_item] = STATE(605), + [sym_static_item] = STATE(605), + [sym_type_item] = STATE(605), + [sym_function_item] = STATE(605), + [sym_function_signature_item] = STATE(605), + [sym_function_modifiers] = STATE(3564), + [sym_impl_item] = STATE(605), + [sym_trait_item] = STATE(605), + [sym_associated_type] = STATE(605), + [sym_let_declaration] = STATE(605), + [sym_use_declaration] = STATE(605), + [sym_extern_modifier] = STATE(2138), + [sym_visibility_modifier] = STATE(1932), + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1858), + [sym_macro_invocation] = STATE(391), + [sym_scoped_identifier] = STATE(1536), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(387), + [sym_match_expression] = STATE(387), + [sym_while_expression] = STATE(387), + [sym_loop_expression] = STATE(387), + [sym_for_expression] = STATE(387), + [sym_const_block] = STATE(387), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3556), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(387), + [sym_async_block] = STATE(387), + [sym_try_block] = STATE(387), + [sym_block] = STATE(387), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), + [sym_line_comment] = STATE(34), + [sym_block_comment] = STATE(34), + [aux_sym_source_file_repeat1] = STATE(27), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [ts_builtin_sym_end] = ACTIONS(284), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -18984,52 +18992,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(95), }, [35] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1483), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1487), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1268), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), [sym_line_comment] = STATE(35), [sym_block_comment] = STATE(35), [sym_identifier] = ACTIONS(334), @@ -19130,64 +19138,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(95), }, [36] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1482), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1485), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1268), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), [sym_line_comment] = STATE(36), [sym_block_comment] = STATE(36), [sym_identifier] = ACTIONS(334), [anon_sym_SEMI] = ACTIONS(368), - [anon_sym_LPAREN] = ACTIONS(368), + [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_RPAREN] = ACTIONS(368), - [anon_sym_LBRACK] = ACTIONS(368), + [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_RBRACK] = ACTIONS(368), [anon_sym_LBRACE] = ACTIONS(338), [anon_sym_RBRACE] = ACTIONS(368), [anon_sym_PLUS] = ACTIONS(370), - [anon_sym_STAR] = ACTIONS(370), + [anon_sym_STAR] = ACTIONS(344), [anon_sym_QMARK] = ACTIONS(368), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -19206,13 +19214,13 @@ 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(370), + [anon_sym_DASH] = ACTIONS(344), [anon_sym_SLASH] = ACTIONS(370), [anon_sym_PERCENT] = ACTIONS(370), [anon_sym_CARET] = ACTIONS(370), [anon_sym_BANG] = ACTIONS(344), - [anon_sym_AMP] = ACTIONS(370), - [anon_sym_PIPE] = ACTIONS(370), + [anon_sym_AMP] = ACTIONS(372), + [anon_sym_PIPE] = ACTIONS(374), [anon_sym_AMP_AMP] = ACTIONS(368), [anon_sym_PIPE_PIPE] = ACTIONS(368), [anon_sym_LT_LT] = ACTIONS(370), @@ -19231,11 +19239,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_EQ] = ACTIONS(368), [anon_sym_BANG_EQ] = ACTIONS(368), [anon_sym_GT] = ACTIONS(370), - [anon_sym_LT] = ACTIONS(370), + [anon_sym_LT] = ACTIONS(376), [anon_sym_GT_EQ] = ACTIONS(368), [anon_sym_LT_EQ] = ACTIONS(368), [anon_sym_DOT] = ACTIONS(370), - [anon_sym_DOT_DOT] = ACTIONS(370), + [anon_sym_DOT_DOT] = ACTIONS(378), [anon_sym_DOT_DOT_DOT] = ACTIONS(368), [anon_sym_DOT_DOT_EQ] = ACTIONS(368), [anon_sym_COMMA] = ACTIONS(368), @@ -19275,65 +19283,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(95), }, [37] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1499), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1490), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1268), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), [sym_line_comment] = STATE(37), [sym_block_comment] = STATE(37), [sym_identifier] = ACTIONS(334), - [anon_sym_SEMI] = ACTIONS(372), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(372), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(372), + [anon_sym_SEMI] = ACTIONS(380), + [anon_sym_LPAREN] = ACTIONS(380), + [anon_sym_RPAREN] = ACTIONS(380), + [anon_sym_LBRACK] = ACTIONS(380), + [anon_sym_RBRACK] = ACTIONS(380), [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_RBRACE] = ACTIONS(372), - [anon_sym_PLUS] = ACTIONS(374), - [anon_sym_STAR] = ACTIONS(344), - [anon_sym_QMARK] = ACTIONS(372), + [anon_sym_RBRACE] = ACTIONS(380), + [anon_sym_PLUS] = ACTIONS(382), + [anon_sym_STAR] = ACTIONS(382), + [anon_sym_QMARK] = ACTIONS(380), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), [anon_sym_u16] = ACTIONS(23), @@ -19351,42 +19359,42 @@ 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(344), - [anon_sym_SLASH] = ACTIONS(374), - [anon_sym_PERCENT] = ACTIONS(374), - [anon_sym_CARET] = ACTIONS(374), + [anon_sym_DASH] = ACTIONS(382), + [anon_sym_SLASH] = ACTIONS(382), + [anon_sym_PERCENT] = ACTIONS(382), + [anon_sym_CARET] = ACTIONS(382), [anon_sym_BANG] = ACTIONS(344), - [anon_sym_AMP] = ACTIONS(376), - [anon_sym_PIPE] = ACTIONS(378), - [anon_sym_AMP_AMP] = ACTIONS(372), - [anon_sym_PIPE_PIPE] = ACTIONS(372), - [anon_sym_LT_LT] = ACTIONS(374), - [anon_sym_GT_GT] = ACTIONS(374), - [anon_sym_PLUS_EQ] = ACTIONS(372), - [anon_sym_DASH_EQ] = ACTIONS(372), - [anon_sym_STAR_EQ] = ACTIONS(372), - [anon_sym_SLASH_EQ] = ACTIONS(372), - [anon_sym_PERCENT_EQ] = ACTIONS(372), - [anon_sym_CARET_EQ] = ACTIONS(372), - [anon_sym_AMP_EQ] = ACTIONS(372), - [anon_sym_PIPE_EQ] = ACTIONS(372), - [anon_sym_LT_LT_EQ] = ACTIONS(372), - [anon_sym_GT_GT_EQ] = ACTIONS(372), - [anon_sym_EQ] = ACTIONS(374), - [anon_sym_EQ_EQ] = ACTIONS(372), - [anon_sym_BANG_EQ] = ACTIONS(372), - [anon_sym_GT] = ACTIONS(374), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_GT_EQ] = ACTIONS(372), - [anon_sym_LT_EQ] = ACTIONS(372), - [anon_sym_DOT] = ACTIONS(374), + [anon_sym_AMP] = ACTIONS(382), + [anon_sym_PIPE] = ACTIONS(382), + [anon_sym_AMP_AMP] = ACTIONS(380), + [anon_sym_PIPE_PIPE] = ACTIONS(380), + [anon_sym_LT_LT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(382), + [anon_sym_PLUS_EQ] = ACTIONS(380), + [anon_sym_DASH_EQ] = ACTIONS(380), + [anon_sym_STAR_EQ] = ACTIONS(380), + [anon_sym_SLASH_EQ] = ACTIONS(380), + [anon_sym_PERCENT_EQ] = ACTIONS(380), + [anon_sym_CARET_EQ] = ACTIONS(380), + [anon_sym_AMP_EQ] = ACTIONS(380), + [anon_sym_PIPE_EQ] = ACTIONS(380), + [anon_sym_LT_LT_EQ] = ACTIONS(380), + [anon_sym_GT_GT_EQ] = ACTIONS(380), + [anon_sym_EQ] = ACTIONS(382), + [anon_sym_EQ_EQ] = ACTIONS(380), + [anon_sym_BANG_EQ] = ACTIONS(380), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT_EQ] = ACTIONS(380), + [anon_sym_LT_EQ] = ACTIONS(380), + [anon_sym_DOT] = ACTIONS(382), [anon_sym_DOT_DOT] = ACTIONS(382), - [anon_sym_DOT_DOT_DOT] = ACTIONS(372), - [anon_sym_DOT_DOT_EQ] = ACTIONS(372), - [anon_sym_COMMA] = ACTIONS(372), + [anon_sym_DOT_DOT_DOT] = ACTIONS(380), + [anon_sym_DOT_DOT_EQ] = ACTIONS(380), + [anon_sym_COMMA] = ACTIONS(380), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(374), + [anon_sym_as] = ACTIONS(382), [anon_sym_async] = ACTIONS(346), [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(348), @@ -19401,7 +19409,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(350), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), - [anon_sym_else] = ACTIONS(374), + [anon_sym_else] = ACTIONS(382), [anon_sym_yield] = ACTIONS(89), [anon_sym_move] = ACTIONS(91), [anon_sym_try] = ACTIONS(366), @@ -19420,57 +19428,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(95), }, [38] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1493), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1489), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1268), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(35), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), [sym_line_comment] = STATE(38), [sym_block_comment] = STATE(38), [sym_identifier] = ACTIONS(334), [anon_sym_SEMI] = ACTIONS(384), - [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(384), [anon_sym_RPAREN] = ACTIONS(384), [anon_sym_LBRACK] = ACTIONS(384), [anon_sym_RBRACK] = ACTIONS(384), @@ -19530,7 +19538,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_EQ] = ACTIONS(384), [anon_sym_COMMA] = ACTIONS(384), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_SQUOTE] = ACTIONS(388), [anon_sym_as] = ACTIONS(386), [anon_sym_async] = ACTIONS(346), [anon_sym_break] = ACTIONS(41), @@ -19565,65 +19573,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(95), }, [39] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1493), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1490), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1268), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), [sym_line_comment] = STATE(39), [sym_block_comment] = STATE(39), [sym_identifier] = ACTIONS(334), - [anon_sym_SEMI] = ACTIONS(384), - [anon_sym_LPAREN] = ACTIONS(384), - [anon_sym_RPAREN] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(384), - [anon_sym_RBRACK] = ACTIONS(384), + [anon_sym_SEMI] = ACTIONS(380), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(380), + [anon_sym_LBRACK] = ACTIONS(380), + [anon_sym_RBRACK] = ACTIONS(380), [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_RBRACE] = ACTIONS(384), - [anon_sym_PLUS] = ACTIONS(386), - [anon_sym_STAR] = ACTIONS(386), - [anon_sym_QMARK] = ACTIONS(384), + [anon_sym_RBRACE] = ACTIONS(380), + [anon_sym_PLUS] = ACTIONS(382), + [anon_sym_STAR] = ACTIONS(382), + [anon_sym_QMARK] = ACTIONS(380), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), [anon_sym_u16] = ACTIONS(23), @@ -19641,42 +19649,42 @@ 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(386), - [anon_sym_SLASH] = ACTIONS(386), - [anon_sym_PERCENT] = ACTIONS(386), - [anon_sym_CARET] = ACTIONS(386), + [anon_sym_DASH] = ACTIONS(382), + [anon_sym_SLASH] = ACTIONS(382), + [anon_sym_PERCENT] = ACTIONS(382), + [anon_sym_CARET] = ACTIONS(382), [anon_sym_BANG] = ACTIONS(344), - [anon_sym_AMP] = ACTIONS(386), - [anon_sym_PIPE] = ACTIONS(386), - [anon_sym_AMP_AMP] = ACTIONS(384), - [anon_sym_PIPE_PIPE] = ACTIONS(384), - [anon_sym_LT_LT] = ACTIONS(386), - [anon_sym_GT_GT] = ACTIONS(386), - [anon_sym_PLUS_EQ] = ACTIONS(384), - [anon_sym_DASH_EQ] = ACTIONS(384), - [anon_sym_STAR_EQ] = ACTIONS(384), - [anon_sym_SLASH_EQ] = ACTIONS(384), - [anon_sym_PERCENT_EQ] = ACTIONS(384), - [anon_sym_CARET_EQ] = ACTIONS(384), - [anon_sym_AMP_EQ] = ACTIONS(384), - [anon_sym_PIPE_EQ] = ACTIONS(384), - [anon_sym_LT_LT_EQ] = ACTIONS(384), - [anon_sym_GT_GT_EQ] = ACTIONS(384), - [anon_sym_EQ] = ACTIONS(386), - [anon_sym_EQ_EQ] = ACTIONS(384), - [anon_sym_BANG_EQ] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(386), - [anon_sym_LT] = ACTIONS(386), - [anon_sym_GT_EQ] = ACTIONS(384), - [anon_sym_LT_EQ] = ACTIONS(384), - [anon_sym_DOT] = ACTIONS(386), - [anon_sym_DOT_DOT] = ACTIONS(386), - [anon_sym_DOT_DOT_DOT] = ACTIONS(384), - [anon_sym_DOT_DOT_EQ] = ACTIONS(384), - [anon_sym_COMMA] = ACTIONS(384), + [anon_sym_AMP] = ACTIONS(382), + [anon_sym_PIPE] = ACTIONS(382), + [anon_sym_AMP_AMP] = ACTIONS(380), + [anon_sym_PIPE_PIPE] = ACTIONS(380), + [anon_sym_LT_LT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(382), + [anon_sym_PLUS_EQ] = ACTIONS(380), + [anon_sym_DASH_EQ] = ACTIONS(380), + [anon_sym_STAR_EQ] = ACTIONS(380), + [anon_sym_SLASH_EQ] = ACTIONS(380), + [anon_sym_PERCENT_EQ] = ACTIONS(380), + [anon_sym_CARET_EQ] = ACTIONS(380), + [anon_sym_AMP_EQ] = ACTIONS(380), + [anon_sym_PIPE_EQ] = ACTIONS(380), + [anon_sym_LT_LT_EQ] = ACTIONS(380), + [anon_sym_GT_GT_EQ] = ACTIONS(380), + [anon_sym_EQ] = ACTIONS(382), + [anon_sym_EQ_EQ] = ACTIONS(380), + [anon_sym_BANG_EQ] = ACTIONS(380), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT_EQ] = ACTIONS(380), + [anon_sym_LT_EQ] = ACTIONS(380), + [anon_sym_DOT] = ACTIONS(382), + [anon_sym_DOT_DOT] = ACTIONS(382), + [anon_sym_DOT_DOT_DOT] = ACTIONS(380), + [anon_sym_DOT_DOT_EQ] = ACTIONS(380), + [anon_sym_COMMA] = ACTIONS(380), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(386), + [anon_sym_as] = ACTIONS(382), [anon_sym_async] = ACTIONS(346), [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(348), @@ -19691,7 +19699,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(350), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), - [anon_sym_else] = ACTIONS(386), + [anon_sym_else] = ACTIONS(382), [anon_sym_yield] = ACTIONS(89), [anon_sym_move] = ACTIONS(91), [anon_sym_try] = ACTIONS(366), @@ -19710,65 +19718,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(95), }, [40] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1482), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1505), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1268), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), [sym_line_comment] = STATE(40), [sym_block_comment] = STATE(40), [sym_identifier] = ACTIONS(334), - [anon_sym_SEMI] = ACTIONS(368), + [anon_sym_SEMI] = ACTIONS(390), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(368), - [anon_sym_LBRACK] = ACTIONS(368), - [anon_sym_RBRACK] = ACTIONS(368), + [anon_sym_RPAREN] = ACTIONS(390), + [anon_sym_LBRACK] = ACTIONS(390), + [anon_sym_RBRACK] = ACTIONS(390), [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_RBRACE] = ACTIONS(368), - [anon_sym_PLUS] = ACTIONS(370), - [anon_sym_STAR] = ACTIONS(370), - [anon_sym_QMARK] = ACTIONS(368), + [anon_sym_RBRACE] = ACTIONS(390), + [anon_sym_PLUS] = ACTIONS(392), + [anon_sym_STAR] = ACTIONS(392), + [anon_sym_QMARK] = ACTIONS(390), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), [anon_sym_u16] = ACTIONS(23), @@ -19786,42 +19794,42 @@ 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(370), - [anon_sym_SLASH] = ACTIONS(370), - [anon_sym_PERCENT] = ACTIONS(370), - [anon_sym_CARET] = ACTIONS(370), + [anon_sym_DASH] = ACTIONS(392), + [anon_sym_SLASH] = ACTIONS(392), + [anon_sym_PERCENT] = ACTIONS(392), + [anon_sym_CARET] = ACTIONS(392), [anon_sym_BANG] = ACTIONS(344), - [anon_sym_AMP] = ACTIONS(370), - [anon_sym_PIPE] = ACTIONS(370), - [anon_sym_AMP_AMP] = ACTIONS(368), - [anon_sym_PIPE_PIPE] = ACTIONS(368), - [anon_sym_LT_LT] = ACTIONS(370), - [anon_sym_GT_GT] = ACTIONS(370), - [anon_sym_PLUS_EQ] = ACTIONS(368), - [anon_sym_DASH_EQ] = ACTIONS(368), - [anon_sym_STAR_EQ] = ACTIONS(368), - [anon_sym_SLASH_EQ] = ACTIONS(368), - [anon_sym_PERCENT_EQ] = ACTIONS(368), - [anon_sym_CARET_EQ] = ACTIONS(368), - [anon_sym_AMP_EQ] = ACTIONS(368), - [anon_sym_PIPE_EQ] = ACTIONS(368), - [anon_sym_LT_LT_EQ] = ACTIONS(368), - [anon_sym_GT_GT_EQ] = ACTIONS(368), - [anon_sym_EQ] = ACTIONS(370), - [anon_sym_EQ_EQ] = ACTIONS(368), - [anon_sym_BANG_EQ] = ACTIONS(368), - [anon_sym_GT] = ACTIONS(370), - [anon_sym_LT] = ACTIONS(370), - [anon_sym_GT_EQ] = ACTIONS(368), - [anon_sym_LT_EQ] = ACTIONS(368), - [anon_sym_DOT] = ACTIONS(370), - [anon_sym_DOT_DOT] = ACTIONS(370), - [anon_sym_DOT_DOT_DOT] = ACTIONS(368), - [anon_sym_DOT_DOT_EQ] = ACTIONS(368), - [anon_sym_COMMA] = ACTIONS(368), + [anon_sym_AMP] = ACTIONS(392), + [anon_sym_PIPE] = ACTIONS(392), + [anon_sym_AMP_AMP] = ACTIONS(390), + [anon_sym_PIPE_PIPE] = ACTIONS(390), + [anon_sym_LT_LT] = ACTIONS(392), + [anon_sym_GT_GT] = ACTIONS(392), + [anon_sym_PLUS_EQ] = ACTIONS(390), + [anon_sym_DASH_EQ] = ACTIONS(390), + [anon_sym_STAR_EQ] = ACTIONS(390), + [anon_sym_SLASH_EQ] = ACTIONS(390), + [anon_sym_PERCENT_EQ] = ACTIONS(390), + [anon_sym_CARET_EQ] = ACTIONS(390), + [anon_sym_AMP_EQ] = ACTIONS(390), + [anon_sym_PIPE_EQ] = ACTIONS(390), + [anon_sym_LT_LT_EQ] = ACTIONS(390), + [anon_sym_GT_GT_EQ] = ACTIONS(390), + [anon_sym_EQ] = ACTIONS(392), + [anon_sym_EQ_EQ] = ACTIONS(390), + [anon_sym_BANG_EQ] = ACTIONS(390), + [anon_sym_GT] = ACTIONS(392), + [anon_sym_LT] = ACTIONS(392), + [anon_sym_GT_EQ] = ACTIONS(390), + [anon_sym_LT_EQ] = ACTIONS(390), + [anon_sym_DOT] = ACTIONS(392), + [anon_sym_DOT_DOT] = ACTIONS(392), + [anon_sym_DOT_DOT_DOT] = ACTIONS(390), + [anon_sym_DOT_DOT_EQ] = ACTIONS(390), + [anon_sym_COMMA] = ACTIONS(390), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(370), + [anon_sym_as] = ACTIONS(392), [anon_sym_async] = ACTIONS(346), [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(348), @@ -19836,7 +19844,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(350), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), - [anon_sym_else] = ACTIONS(370), + [anon_sym_else] = ACTIONS(392), [anon_sym_yield] = ACTIONS(89), [anon_sym_move] = ACTIONS(91), [anon_sym_try] = ACTIONS(366), @@ -19855,65 +19863,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(95), }, [41] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1502), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(35), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1486), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1268), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), [sym_line_comment] = STATE(41), [sym_block_comment] = STATE(41), [sym_identifier] = ACTIONS(334), - [anon_sym_SEMI] = ACTIONS(388), - [anon_sym_LPAREN] = ACTIONS(388), - [anon_sym_RPAREN] = ACTIONS(388), - [anon_sym_LBRACK] = ACTIONS(388), - [anon_sym_RBRACK] = ACTIONS(388), + [anon_sym_SEMI] = ACTIONS(394), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(394), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(394), [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_RBRACE] = ACTIONS(388), - [anon_sym_PLUS] = ACTIONS(390), - [anon_sym_STAR] = ACTIONS(390), - [anon_sym_QMARK] = ACTIONS(388), + [anon_sym_RBRACE] = ACTIONS(394), + [anon_sym_PLUS] = ACTIONS(396), + [anon_sym_STAR] = ACTIONS(344), + [anon_sym_QMARK] = ACTIONS(394), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), [anon_sym_u16] = ACTIONS(23), @@ -19931,42 +19939,42 @@ 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(390), - [anon_sym_SLASH] = ACTIONS(390), - [anon_sym_PERCENT] = ACTIONS(390), - [anon_sym_CARET] = ACTIONS(390), + [anon_sym_DASH] = ACTIONS(344), + [anon_sym_SLASH] = ACTIONS(396), + [anon_sym_PERCENT] = ACTIONS(396), + [anon_sym_CARET] = ACTIONS(396), [anon_sym_BANG] = ACTIONS(344), - [anon_sym_AMP] = ACTIONS(390), - [anon_sym_PIPE] = ACTIONS(390), - [anon_sym_AMP_AMP] = ACTIONS(388), - [anon_sym_PIPE_PIPE] = ACTIONS(388), - [anon_sym_LT_LT] = ACTIONS(390), - [anon_sym_GT_GT] = ACTIONS(390), - [anon_sym_PLUS_EQ] = ACTIONS(388), - [anon_sym_DASH_EQ] = ACTIONS(388), - [anon_sym_STAR_EQ] = ACTIONS(388), - [anon_sym_SLASH_EQ] = ACTIONS(388), - [anon_sym_PERCENT_EQ] = ACTIONS(388), - [anon_sym_CARET_EQ] = ACTIONS(388), - [anon_sym_AMP_EQ] = ACTIONS(388), - [anon_sym_PIPE_EQ] = ACTIONS(388), - [anon_sym_LT_LT_EQ] = ACTIONS(388), - [anon_sym_GT_GT_EQ] = ACTIONS(388), - [anon_sym_EQ] = ACTIONS(390), - [anon_sym_EQ_EQ] = ACTIONS(388), - [anon_sym_BANG_EQ] = ACTIONS(388), - [anon_sym_GT] = ACTIONS(390), - [anon_sym_LT] = ACTIONS(390), - [anon_sym_GT_EQ] = ACTIONS(388), - [anon_sym_LT_EQ] = ACTIONS(388), - [anon_sym_DOT] = ACTIONS(390), - [anon_sym_DOT_DOT] = ACTIONS(390), - [anon_sym_DOT_DOT_DOT] = ACTIONS(388), - [anon_sym_DOT_DOT_EQ] = ACTIONS(388), - [anon_sym_COMMA] = ACTIONS(388), + [anon_sym_AMP] = ACTIONS(372), + [anon_sym_PIPE] = ACTIONS(374), + [anon_sym_AMP_AMP] = ACTIONS(394), + [anon_sym_PIPE_PIPE] = ACTIONS(394), + [anon_sym_LT_LT] = ACTIONS(396), + [anon_sym_GT_GT] = ACTIONS(396), + [anon_sym_PLUS_EQ] = ACTIONS(394), + [anon_sym_DASH_EQ] = ACTIONS(394), + [anon_sym_STAR_EQ] = ACTIONS(394), + [anon_sym_SLASH_EQ] = ACTIONS(394), + [anon_sym_PERCENT_EQ] = ACTIONS(394), + [anon_sym_CARET_EQ] = ACTIONS(394), + [anon_sym_AMP_EQ] = ACTIONS(394), + [anon_sym_PIPE_EQ] = ACTIONS(394), + [anon_sym_LT_LT_EQ] = ACTIONS(394), + [anon_sym_GT_GT_EQ] = ACTIONS(394), + [anon_sym_EQ] = ACTIONS(396), + [anon_sym_EQ_EQ] = ACTIONS(394), + [anon_sym_BANG_EQ] = ACTIONS(394), + [anon_sym_GT] = ACTIONS(396), + [anon_sym_LT] = ACTIONS(376), + [anon_sym_GT_EQ] = ACTIONS(394), + [anon_sym_LT_EQ] = ACTIONS(394), + [anon_sym_DOT] = ACTIONS(396), + [anon_sym_DOT_DOT] = ACTIONS(378), + [anon_sym_DOT_DOT_DOT] = ACTIONS(394), + [anon_sym_DOT_DOT_EQ] = ACTIONS(394), + [anon_sym_COMMA] = ACTIONS(394), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(392), - [anon_sym_as] = ACTIONS(390), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_as] = ACTIONS(396), [anon_sym_async] = ACTIONS(346), [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(348), @@ -19981,7 +19989,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(350), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), - [anon_sym_else] = ACTIONS(390), + [anon_sym_else] = ACTIONS(396), [anon_sym_yield] = ACTIONS(89), [anon_sym_move] = ACTIONS(91), [anon_sym_try] = ACTIONS(366), @@ -20000,65 +20008,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(95), }, [42] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1489), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1505), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1268), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), [sym_line_comment] = STATE(42), [sym_block_comment] = STATE(42), [sym_identifier] = ACTIONS(334), - [anon_sym_SEMI] = ACTIONS(394), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(394), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(394), + [anon_sym_SEMI] = ACTIONS(390), + [anon_sym_LPAREN] = ACTIONS(390), + [anon_sym_RPAREN] = ACTIONS(390), + [anon_sym_LBRACK] = ACTIONS(390), + [anon_sym_RBRACK] = ACTIONS(390), [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_RBRACE] = ACTIONS(394), - [anon_sym_PLUS] = ACTIONS(396), - [anon_sym_STAR] = ACTIONS(344), - [anon_sym_QMARK] = ACTIONS(394), + [anon_sym_RBRACE] = ACTIONS(390), + [anon_sym_PLUS] = ACTIONS(392), + [anon_sym_STAR] = ACTIONS(392), + [anon_sym_QMARK] = ACTIONS(390), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), [anon_sym_u16] = ACTIONS(23), @@ -20076,42 +20084,42 @@ 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(344), - [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_PERCENT] = ACTIONS(396), - [anon_sym_CARET] = ACTIONS(396), + [anon_sym_DASH] = ACTIONS(392), + [anon_sym_SLASH] = ACTIONS(392), + [anon_sym_PERCENT] = ACTIONS(392), + [anon_sym_CARET] = ACTIONS(392), [anon_sym_BANG] = ACTIONS(344), - [anon_sym_AMP] = ACTIONS(376), - [anon_sym_PIPE] = ACTIONS(378), - [anon_sym_AMP_AMP] = ACTIONS(394), - [anon_sym_PIPE_PIPE] = ACTIONS(394), - [anon_sym_LT_LT] = ACTIONS(396), - [anon_sym_GT_GT] = ACTIONS(396), - [anon_sym_PLUS_EQ] = ACTIONS(394), - [anon_sym_DASH_EQ] = ACTIONS(394), - [anon_sym_STAR_EQ] = ACTIONS(394), - [anon_sym_SLASH_EQ] = ACTIONS(394), - [anon_sym_PERCENT_EQ] = ACTIONS(394), - [anon_sym_CARET_EQ] = ACTIONS(394), - [anon_sym_AMP_EQ] = ACTIONS(394), - [anon_sym_PIPE_EQ] = ACTIONS(394), - [anon_sym_LT_LT_EQ] = ACTIONS(394), - [anon_sym_GT_GT_EQ] = ACTIONS(394), - [anon_sym_EQ] = ACTIONS(396), - [anon_sym_EQ_EQ] = ACTIONS(394), - [anon_sym_BANG_EQ] = ACTIONS(394), - [anon_sym_GT] = ACTIONS(396), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_GT_EQ] = ACTIONS(394), - [anon_sym_LT_EQ] = ACTIONS(394), - [anon_sym_DOT] = ACTIONS(396), - [anon_sym_DOT_DOT] = ACTIONS(382), - [anon_sym_DOT_DOT_DOT] = ACTIONS(394), - [anon_sym_DOT_DOT_EQ] = ACTIONS(394), - [anon_sym_COMMA] = ACTIONS(394), + [anon_sym_AMP] = ACTIONS(392), + [anon_sym_PIPE] = ACTIONS(392), + [anon_sym_AMP_AMP] = ACTIONS(390), + [anon_sym_PIPE_PIPE] = ACTIONS(390), + [anon_sym_LT_LT] = ACTIONS(392), + [anon_sym_GT_GT] = ACTIONS(392), + [anon_sym_PLUS_EQ] = ACTIONS(390), + [anon_sym_DASH_EQ] = ACTIONS(390), + [anon_sym_STAR_EQ] = ACTIONS(390), + [anon_sym_SLASH_EQ] = ACTIONS(390), + [anon_sym_PERCENT_EQ] = ACTIONS(390), + [anon_sym_CARET_EQ] = ACTIONS(390), + [anon_sym_AMP_EQ] = ACTIONS(390), + [anon_sym_PIPE_EQ] = ACTIONS(390), + [anon_sym_LT_LT_EQ] = ACTIONS(390), + [anon_sym_GT_GT_EQ] = ACTIONS(390), + [anon_sym_EQ] = ACTIONS(392), + [anon_sym_EQ_EQ] = ACTIONS(390), + [anon_sym_BANG_EQ] = ACTIONS(390), + [anon_sym_GT] = ACTIONS(392), + [anon_sym_LT] = ACTIONS(392), + [anon_sym_GT_EQ] = ACTIONS(390), + [anon_sym_LT_EQ] = ACTIONS(390), + [anon_sym_DOT] = ACTIONS(392), + [anon_sym_DOT_DOT] = ACTIONS(392), + [anon_sym_DOT_DOT_DOT] = ACTIONS(390), + [anon_sym_DOT_DOT_EQ] = ACTIONS(390), + [anon_sym_COMMA] = ACTIONS(390), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(396), + [anon_sym_as] = ACTIONS(392), [anon_sym_async] = ACTIONS(346), [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(348), @@ -20126,7 +20134,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(350), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), - [anon_sym_else] = ACTIONS(396), + [anon_sym_else] = ACTIONS(392), [anon_sym_yield] = ACTIONS(89), [anon_sym_move] = ACTIONS(91), [anon_sym_try] = ACTIONS(366), @@ -20145,52 +20153,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(95), }, [43] = { - [sym_bracketed_type] = STATE(3498), - [sym_generic_function] = STATE(1637), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1604), - [sym__expression] = STATE(1749), - [sym_macro_invocation] = STATE(1641), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3100), - [sym_range_expression] = STATE(1639), - [sym_unary_expression] = STATE(1637), - [sym_try_expression] = STATE(1637), - [sym_reference_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_assignment_expression] = STATE(1637), - [sym_compound_assignment_expr] = STATE(1637), - [sym_type_cast_expression] = STATE(1637), - [sym_return_expression] = STATE(1637), - [sym_yield_expression] = STATE(1637), - [sym_call_expression] = STATE(1637), - [sym_array_expression] = STATE(1637), - [sym_parenthesized_expression] = STATE(1637), - [sym_tuple_expression] = STATE(1637), - [sym_unit_expression] = STATE(1637), - [sym_struct_expression] = STATE(1637), - [sym_if_expression] = STATE(1637), - [sym_match_expression] = STATE(1637), - [sym_while_expression] = STATE(1637), - [sym_loop_expression] = STATE(1637), - [sym_for_expression] = STATE(1637), - [sym_const_block] = STATE(1637), - [sym_closure_expression] = STATE(1637), - [sym_closure_parameters] = STATE(237), - [sym_label] = STATE(3585), - [sym_break_expression] = STATE(1637), - [sym_continue_expression] = STATE(1637), - [sym_index_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_field_expression] = STATE(1620), - [sym_unsafe_block] = STATE(1637), - [sym_async_block] = STATE(1637), - [sym_try_block] = STATE(1637), - [sym_block] = STATE(1637), - [sym__literal] = STATE(1637), - [sym_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_boolean_literal] = STATE(1778), + [sym_bracketed_type] = STATE(3506), + [sym_generic_function] = STATE(1695), + [sym_generic_type_with_turbofish] = STATE(2844), + [sym__expression_except_range] = STATE(1590), + [sym__expression] = STATE(1784), + [sym_macro_invocation] = STATE(1705), + [sym_scoped_identifier] = STATE(1568), + [sym_scoped_type_identifier_in_expression_position] = STATE(3132), + [sym_range_expression] = STATE(1699), + [sym_unary_expression] = STATE(1695), + [sym_try_expression] = STATE(1695), + [sym_reference_expression] = STATE(1695), + [sym_binary_expression] = STATE(1695), + [sym_assignment_expression] = STATE(1695), + [sym_compound_assignment_expr] = STATE(1695), + [sym_type_cast_expression] = STATE(1695), + [sym_return_expression] = STATE(1695), + [sym_yield_expression] = STATE(1695), + [sym_call_expression] = STATE(1695), + [sym_array_expression] = STATE(1695), + [sym_parenthesized_expression] = STATE(1695), + [sym_tuple_expression] = STATE(1695), + [sym_unit_expression] = STATE(1695), + [sym_struct_expression] = STATE(1695), + [sym_if_expression] = STATE(1695), + [sym_match_expression] = STATE(1695), + [sym_while_expression] = STATE(1695), + [sym_loop_expression] = STATE(1695), + [sym_for_expression] = STATE(1695), + [sym_const_block] = STATE(1695), + [sym_closure_expression] = STATE(1695), + [sym_closure_parameters] = STATE(222), + [sym_label] = STATE(3593), + [sym_break_expression] = STATE(1695), + [sym_continue_expression] = STATE(1695), + [sym_index_expression] = STATE(1695), + [sym_await_expression] = STATE(1695), + [sym_field_expression] = STATE(1583), + [sym_unsafe_block] = STATE(1695), + [sym_async_block] = STATE(1695), + [sym_try_block] = STATE(1695), + [sym_block] = STATE(1695), + [sym__literal] = STATE(1695), + [sym_string_literal] = STATE(1801), + [sym_raw_string_literal] = STATE(1801), + [sym_boolean_literal] = STATE(1801), [sym_line_comment] = STATE(43), [sym_block_comment] = STATE(43), [sym_identifier] = ACTIONS(398), @@ -20286,197 +20294,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(442), }, [44] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1710), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3506), + [sym_generic_function] = STATE(1695), + [sym_generic_type_with_turbofish] = STATE(2844), + [sym__expression_except_range] = STATE(1590), + [sym__expression] = STATE(1745), + [sym_macro_invocation] = STATE(1705), + [sym_scoped_identifier] = STATE(1568), + [sym_scoped_type_identifier_in_expression_position] = STATE(3132), + [sym_range_expression] = STATE(1699), + [sym_unary_expression] = STATE(1695), + [sym_try_expression] = STATE(1695), + [sym_reference_expression] = STATE(1695), + [sym_binary_expression] = STATE(1695), + [sym_assignment_expression] = STATE(1695), + [sym_compound_assignment_expr] = STATE(1695), + [sym_type_cast_expression] = STATE(1695), + [sym_return_expression] = STATE(1695), + [sym_yield_expression] = STATE(1695), + [sym_call_expression] = STATE(1695), + [sym_array_expression] = STATE(1695), + [sym_parenthesized_expression] = STATE(1695), + [sym_tuple_expression] = STATE(1695), + [sym_unit_expression] = STATE(1695), + [sym_struct_expression] = STATE(1695), + [sym_if_expression] = STATE(1695), + [sym_match_expression] = STATE(1695), + [sym_while_expression] = STATE(1695), + [sym_loop_expression] = STATE(1695), + [sym_for_expression] = STATE(1695), + [sym_const_block] = STATE(1695), + [sym_closure_expression] = STATE(1695), + [sym_closure_parameters] = STATE(222), + [sym_label] = STATE(3593), + [sym_break_expression] = STATE(1695), + [sym_continue_expression] = STATE(1695), + [sym_index_expression] = STATE(1695), + [sym_await_expression] = STATE(1695), + [sym_field_expression] = STATE(1583), + [sym_unsafe_block] = STATE(1695), + [sym_async_block] = STATE(1695), + [sym_try_block] = STATE(1695), + [sym_block] = STATE(1695), + [sym__literal] = STATE(1695), + [sym_string_literal] = STATE(1801), + [sym_raw_string_literal] = STATE(1801), + [sym_boolean_literal] = STATE(1801), [sym_line_comment] = STATE(44), [sym_block_comment] = STATE(44), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(336), - [anon_sym_LBRACK] = ACTIONS(336), - [anon_sym_LBRACE] = ACTIONS(336), - [anon_sym_COLON] = ACTIONS(340), - [anon_sym_PLUS] = ACTIONS(342), - [anon_sym_STAR] = ACTIONS(342), - [anon_sym_QMARK] = ACTIONS(336), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(342), - [anon_sym_SLASH] = ACTIONS(342), - [anon_sym_PERCENT] = ACTIONS(342), - [anon_sym_CARET] = ACTIONS(342), - [anon_sym_BANG] = ACTIONS(460), - [anon_sym_AMP] = ACTIONS(342), - [anon_sym_PIPE] = ACTIONS(342), - [anon_sym_AMP_AMP] = ACTIONS(336), - [anon_sym_PIPE_PIPE] = ACTIONS(336), - [anon_sym_LT_LT] = ACTIONS(342), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_PLUS_EQ] = ACTIONS(336), - [anon_sym_DASH_EQ] = ACTIONS(336), - [anon_sym_STAR_EQ] = ACTIONS(336), - [anon_sym_SLASH_EQ] = ACTIONS(336), - [anon_sym_PERCENT_EQ] = ACTIONS(336), - [anon_sym_CARET_EQ] = ACTIONS(336), - [anon_sym_AMP_EQ] = ACTIONS(336), - [anon_sym_PIPE_EQ] = ACTIONS(336), - [anon_sym_LT_LT_EQ] = ACTIONS(336), - [anon_sym_GT_GT_EQ] = ACTIONS(336), - [anon_sym_EQ] = ACTIONS(342), - [anon_sym_EQ_EQ] = ACTIONS(336), - [anon_sym_BANG_EQ] = ACTIONS(336), - [anon_sym_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(342), - [anon_sym_GT_EQ] = ACTIONS(336), - [anon_sym_LT_EQ] = ACTIONS(336), - [anon_sym_DOT] = ACTIONS(342), - [anon_sym_DOT_DOT] = ACTIONS(342), - [anon_sym_DOT_DOT_DOT] = ACTIONS(336), - [anon_sym_DOT_DOT_EQ] = ACTIONS(336), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(342), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(464), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(468), - [anon_sym_static] = ACTIONS(470), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(472), - [anon_sym_move] = ACTIONS(474), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [45] = { - [sym_bracketed_type] = STATE(3498), - [sym_generic_function] = STATE(1637), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1604), - [sym__expression] = STATE(1648), - [sym_macro_invocation] = STATE(1641), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3100), - [sym_range_expression] = STATE(1639), - [sym_unary_expression] = STATE(1637), - [sym_try_expression] = STATE(1637), - [sym_reference_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_assignment_expression] = STATE(1637), - [sym_compound_assignment_expr] = STATE(1637), - [sym_type_cast_expression] = STATE(1637), - [sym_return_expression] = STATE(1637), - [sym_yield_expression] = STATE(1637), - [sym_call_expression] = STATE(1637), - [sym_array_expression] = STATE(1637), - [sym_parenthesized_expression] = STATE(1637), - [sym_tuple_expression] = STATE(1637), - [sym_unit_expression] = STATE(1637), - [sym_struct_expression] = STATE(1637), - [sym_if_expression] = STATE(1637), - [sym_match_expression] = STATE(1637), - [sym_while_expression] = STATE(1637), - [sym_loop_expression] = STATE(1637), - [sym_for_expression] = STATE(1637), - [sym_const_block] = STATE(1637), - [sym_closure_expression] = STATE(1637), - [sym_closure_parameters] = STATE(237), - [sym_label] = STATE(3585), - [sym_break_expression] = STATE(1637), - [sym_continue_expression] = STATE(1637), - [sym_index_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_field_expression] = STATE(1620), - [sym_unsafe_block] = STATE(1637), - [sym_async_block] = STATE(1637), - [sym_try_block] = STATE(1637), - [sym_block] = STATE(1637), - [sym__literal] = STATE(1637), - [sym_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_boolean_literal] = STATE(1778), - [sym_line_comment] = STATE(45), - [sym_block_comment] = STATE(45), [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(484), + [anon_sym_LPAREN] = ACTIONS(456), + [anon_sym_LBRACK] = ACTIONS(458), [anon_sym_LBRACE] = ACTIONS(400), [anon_sym_EQ_GT] = ACTIONS(394), [anon_sym_PLUS] = ACTIONS(396), @@ -20504,8 +20372,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(396), [anon_sym_CARET] = ACTIONS(396), [anon_sym_BANG] = ACTIONS(406), - [anon_sym_AMP] = ACTIONS(486), - [anon_sym_PIPE] = ACTIONS(378), + [anon_sym_AMP] = ACTIONS(460), + [anon_sym_PIPE] = ACTIONS(374), [anon_sym_AMP_AMP] = ACTIONS(394), [anon_sym_PIPE_PIPE] = ACTIONS(394), [anon_sym_LT_LT] = ACTIONS(396), @@ -20524,11 +20392,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_EQ] = ACTIONS(394), [anon_sym_BANG_EQ] = ACTIONS(394), [anon_sym_GT] = ACTIONS(396), - [anon_sym_LT] = ACTIONS(380), + [anon_sym_LT] = ACTIONS(376), [anon_sym_GT_EQ] = ACTIONS(394), [anon_sym_LT_EQ] = ACTIONS(394), [anon_sym_DOT] = ACTIONS(396), - [anon_sym_DOT_DOT] = ACTIONS(488), + [anon_sym_DOT_DOT] = ACTIONS(462), [anon_sym_DOT_DOT_DOT] = ACTIONS(394), [anon_sym_DOT_DOT_EQ] = ACTIONS(394), [anon_sym_COLON_COLON] = ACTIONS(408), @@ -20565,63 +20433,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(454), [sym_float_literal] = ACTIONS(442), }, - [46] = { - [sym_bracketed_type] = STATE(3498), - [sym_generic_function] = STATE(1637), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1604), - [sym__expression] = STATE(1649), - [sym_macro_invocation] = STATE(1641), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3100), - [sym_range_expression] = STATE(1639), - [sym_unary_expression] = STATE(1637), - [sym_try_expression] = STATE(1637), - [sym_reference_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_assignment_expression] = STATE(1637), - [sym_compound_assignment_expr] = STATE(1637), - [sym_type_cast_expression] = STATE(1637), - [sym_return_expression] = STATE(1637), - [sym_yield_expression] = STATE(1637), - [sym_call_expression] = STATE(1637), - [sym_array_expression] = STATE(1637), - [sym_parenthesized_expression] = STATE(1637), - [sym_tuple_expression] = STATE(1637), - [sym_unit_expression] = STATE(1637), - [sym_struct_expression] = STATE(1637), - [sym_if_expression] = STATE(1637), - [sym_match_expression] = STATE(1637), - [sym_while_expression] = STATE(1637), - [sym_loop_expression] = STATE(1637), - [sym_for_expression] = STATE(1637), - [sym_const_block] = STATE(1637), - [sym_closure_expression] = STATE(1637), - [sym_closure_parameters] = STATE(237), - [sym_label] = STATE(3585), - [sym_break_expression] = STATE(1637), - [sym_continue_expression] = STATE(1637), - [sym_index_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_field_expression] = STATE(1620), - [sym_unsafe_block] = STATE(1637), - [sym_async_block] = STATE(1637), - [sym_try_block] = STATE(1637), - [sym_block] = STATE(1637), - [sym__literal] = STATE(1637), - [sym_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_boolean_literal] = STATE(1778), - [sym_line_comment] = STATE(46), - [sym_block_comment] = STATE(46), + [45] = { + [sym_bracketed_type] = STATE(3506), + [sym_generic_function] = STATE(1695), + [sym_generic_type_with_turbofish] = STATE(2844), + [sym__expression_except_range] = STATE(1590), + [sym__expression] = STATE(1716), + [sym_macro_invocation] = STATE(1705), + [sym_scoped_identifier] = STATE(1568), + [sym_scoped_type_identifier_in_expression_position] = STATE(3132), + [sym_range_expression] = STATE(1699), + [sym_unary_expression] = STATE(1695), + [sym_try_expression] = STATE(1695), + [sym_reference_expression] = STATE(1695), + [sym_binary_expression] = STATE(1695), + [sym_assignment_expression] = STATE(1695), + [sym_compound_assignment_expr] = STATE(1695), + [sym_type_cast_expression] = STATE(1695), + [sym_return_expression] = STATE(1695), + [sym_yield_expression] = STATE(1695), + [sym_call_expression] = STATE(1695), + [sym_array_expression] = STATE(1695), + [sym_parenthesized_expression] = STATE(1695), + [sym_tuple_expression] = STATE(1695), + [sym_unit_expression] = STATE(1695), + [sym_struct_expression] = STATE(1695), + [sym_if_expression] = STATE(1695), + [sym_match_expression] = STATE(1695), + [sym_while_expression] = STATE(1695), + [sym_loop_expression] = STATE(1695), + [sym_for_expression] = STATE(1695), + [sym_const_block] = STATE(1695), + [sym_closure_expression] = STATE(1695), + [sym_closure_parameters] = STATE(222), + [sym_label] = STATE(3593), + [sym_break_expression] = STATE(1695), + [sym_continue_expression] = STATE(1695), + [sym_index_expression] = STATE(1695), + [sym_await_expression] = STATE(1695), + [sym_field_expression] = STATE(1583), + [sym_unsafe_block] = STATE(1695), + [sym_async_block] = STATE(1695), + [sym_try_block] = STATE(1695), + [sym_block] = STATE(1695), + [sym__literal] = STATE(1695), + [sym_string_literal] = STATE(1801), + [sym_raw_string_literal] = STATE(1801), + [sym_boolean_literal] = STATE(1801), + [sym_line_comment] = STATE(45), + [sym_block_comment] = STATE(45), [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(484), + [anon_sym_LPAREN] = ACTIONS(456), + [anon_sym_LBRACK] = ACTIONS(390), [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_EQ_GT] = ACTIONS(372), - [anon_sym_PLUS] = ACTIONS(374), - [anon_sym_STAR] = ACTIONS(406), - [anon_sym_QMARK] = ACTIONS(372), + [anon_sym_EQ_GT] = ACTIONS(390), + [anon_sym_PLUS] = ACTIONS(392), + [anon_sym_STAR] = ACTIONS(392), + [anon_sym_QMARK] = ACTIONS(390), [anon_sym_u8] = ACTIONS(404), [anon_sym_i8] = ACTIONS(404), [anon_sym_u16] = ACTIONS(404), @@ -20639,41 +20507,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(404), [anon_sym_str] = ACTIONS(404), [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(406), - [anon_sym_SLASH] = ACTIONS(374), - [anon_sym_PERCENT] = ACTIONS(374), - [anon_sym_CARET] = ACTIONS(374), + [anon_sym_DASH] = ACTIONS(392), + [anon_sym_SLASH] = ACTIONS(392), + [anon_sym_PERCENT] = ACTIONS(392), + [anon_sym_CARET] = ACTIONS(392), [anon_sym_BANG] = ACTIONS(406), - [anon_sym_AMP] = ACTIONS(486), - [anon_sym_PIPE] = ACTIONS(378), - [anon_sym_AMP_AMP] = ACTIONS(372), - [anon_sym_PIPE_PIPE] = ACTIONS(372), - [anon_sym_LT_LT] = ACTIONS(374), - [anon_sym_GT_GT] = ACTIONS(374), - [anon_sym_PLUS_EQ] = ACTIONS(372), - [anon_sym_DASH_EQ] = ACTIONS(372), - [anon_sym_STAR_EQ] = ACTIONS(372), - [anon_sym_SLASH_EQ] = ACTIONS(372), - [anon_sym_PERCENT_EQ] = ACTIONS(372), - [anon_sym_CARET_EQ] = ACTIONS(372), - [anon_sym_AMP_EQ] = ACTIONS(372), - [anon_sym_PIPE_EQ] = ACTIONS(372), - [anon_sym_LT_LT_EQ] = ACTIONS(372), - [anon_sym_GT_GT_EQ] = ACTIONS(372), - [anon_sym_EQ] = ACTIONS(374), - [anon_sym_EQ_EQ] = ACTIONS(372), - [anon_sym_BANG_EQ] = ACTIONS(372), - [anon_sym_GT] = ACTIONS(374), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_GT_EQ] = ACTIONS(372), - [anon_sym_LT_EQ] = ACTIONS(372), - [anon_sym_DOT] = ACTIONS(374), - [anon_sym_DOT_DOT] = ACTIONS(488), - [anon_sym_DOT_DOT_DOT] = ACTIONS(372), - [anon_sym_DOT_DOT_EQ] = ACTIONS(372), + [anon_sym_AMP] = ACTIONS(392), + [anon_sym_PIPE] = ACTIONS(392), + [anon_sym_AMP_AMP] = ACTIONS(390), + [anon_sym_PIPE_PIPE] = ACTIONS(390), + [anon_sym_LT_LT] = ACTIONS(392), + [anon_sym_GT_GT] = ACTIONS(392), + [anon_sym_PLUS_EQ] = ACTIONS(390), + [anon_sym_DASH_EQ] = ACTIONS(390), + [anon_sym_STAR_EQ] = ACTIONS(390), + [anon_sym_SLASH_EQ] = ACTIONS(390), + [anon_sym_PERCENT_EQ] = ACTIONS(390), + [anon_sym_CARET_EQ] = ACTIONS(390), + [anon_sym_AMP_EQ] = ACTIONS(390), + [anon_sym_PIPE_EQ] = ACTIONS(390), + [anon_sym_LT_LT_EQ] = ACTIONS(390), + [anon_sym_GT_GT_EQ] = ACTIONS(390), + [anon_sym_EQ] = ACTIONS(392), + [anon_sym_EQ_EQ] = ACTIONS(390), + [anon_sym_BANG_EQ] = ACTIONS(390), + [anon_sym_GT] = ACTIONS(392), + [anon_sym_LT] = ACTIONS(392), + [anon_sym_GT_EQ] = ACTIONS(390), + [anon_sym_LT_EQ] = ACTIONS(390), + [anon_sym_DOT] = ACTIONS(392), + [anon_sym_DOT_DOT] = ACTIONS(392), + [anon_sym_DOT_DOT_DOT] = ACTIONS(390), + [anon_sym_DOT_DOT_EQ] = ACTIONS(390), [anon_sym_COLON_COLON] = ACTIONS(408), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(374), + [anon_sym_as] = ACTIONS(392), [anon_sym_async] = ACTIONS(410), [anon_sym_break] = ACTIONS(412), [anon_sym_const] = ACTIONS(414), @@ -20705,63 +20573,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(454), [sym_float_literal] = ACTIONS(442), }, - [47] = { - [sym_bracketed_type] = STATE(3498), - [sym_generic_function] = STATE(1637), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1604), - [sym__expression] = STATE(1646), - [sym_macro_invocation] = STATE(1641), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3100), - [sym_range_expression] = STATE(1639), - [sym_unary_expression] = STATE(1637), - [sym_try_expression] = STATE(1637), - [sym_reference_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_assignment_expression] = STATE(1637), - [sym_compound_assignment_expr] = STATE(1637), - [sym_type_cast_expression] = STATE(1637), - [sym_return_expression] = STATE(1637), - [sym_yield_expression] = STATE(1637), - [sym_call_expression] = STATE(1637), - [sym_array_expression] = STATE(1637), - [sym_parenthesized_expression] = STATE(1637), - [sym_tuple_expression] = STATE(1637), - [sym_unit_expression] = STATE(1637), - [sym_struct_expression] = STATE(1637), - [sym_if_expression] = STATE(1637), - [sym_match_expression] = STATE(1637), - [sym_while_expression] = STATE(1637), - [sym_loop_expression] = STATE(1637), - [sym_for_expression] = STATE(1637), - [sym_const_block] = STATE(1637), - [sym_closure_expression] = STATE(1637), - [sym_closure_parameters] = STATE(237), + [46] = { + [sym_bracketed_type] = STATE(3506), + [sym_generic_function] = STATE(1695), + [sym_generic_type_with_turbofish] = STATE(2844), + [sym__expression_except_range] = STATE(1590), + [sym__expression] = STATE(1734), + [sym_macro_invocation] = STATE(1705), + [sym_scoped_identifier] = STATE(1568), + [sym_scoped_type_identifier_in_expression_position] = STATE(3132), + [sym_range_expression] = STATE(1699), + [sym_unary_expression] = STATE(1695), + [sym_try_expression] = STATE(1695), + [sym_reference_expression] = STATE(1695), + [sym_binary_expression] = STATE(1695), + [sym_assignment_expression] = STATE(1695), + [sym_compound_assignment_expr] = STATE(1695), + [sym_type_cast_expression] = STATE(1695), + [sym_return_expression] = STATE(1695), + [sym_yield_expression] = STATE(1695), + [sym_call_expression] = STATE(1695), + [sym_array_expression] = STATE(1695), + [sym_parenthesized_expression] = STATE(1695), + [sym_tuple_expression] = STATE(1695), + [sym_unit_expression] = STATE(1695), + [sym_struct_expression] = STATE(1695), + [sym_if_expression] = STATE(1695), + [sym_match_expression] = STATE(1695), + [sym_while_expression] = STATE(1695), + [sym_loop_expression] = STATE(1695), + [sym_for_expression] = STATE(1695), + [sym_const_block] = STATE(1695), + [sym_closure_expression] = STATE(1695), + [sym_closure_parameters] = STATE(222), [sym_label] = STATE(43), - [sym_break_expression] = STATE(1637), - [sym_continue_expression] = STATE(1637), - [sym_index_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_field_expression] = STATE(1620), - [sym_unsafe_block] = STATE(1637), - [sym_async_block] = STATE(1637), - [sym_try_block] = STATE(1637), - [sym_block] = STATE(1637), - [sym__literal] = STATE(1637), - [sym_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_boolean_literal] = STATE(1778), - [sym_line_comment] = STATE(47), - [sym_block_comment] = STATE(47), + [sym_break_expression] = STATE(1695), + [sym_continue_expression] = STATE(1695), + [sym_index_expression] = STATE(1695), + [sym_await_expression] = STATE(1695), + [sym_field_expression] = STATE(1583), + [sym_unsafe_block] = STATE(1695), + [sym_async_block] = STATE(1695), + [sym_try_block] = STATE(1695), + [sym_block] = STATE(1695), + [sym__literal] = STATE(1695), + [sym_string_literal] = STATE(1801), + [sym_raw_string_literal] = STATE(1801), + [sym_boolean_literal] = STATE(1801), + [sym_line_comment] = STATE(46), + [sym_block_comment] = STATE(46), [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(388), - [anon_sym_LBRACK] = ACTIONS(388), + [anon_sym_LPAREN] = ACTIONS(384), + [anon_sym_LBRACK] = ACTIONS(384), [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_EQ_GT] = ACTIONS(388), - [anon_sym_PLUS] = ACTIONS(390), - [anon_sym_STAR] = ACTIONS(390), - [anon_sym_QMARK] = ACTIONS(388), + [anon_sym_EQ_GT] = ACTIONS(384), + [anon_sym_PLUS] = ACTIONS(386), + [anon_sym_STAR] = ACTIONS(386), + [anon_sym_QMARK] = ACTIONS(384), [anon_sym_u8] = ACTIONS(404), [anon_sym_i8] = ACTIONS(404), [anon_sym_u16] = ACTIONS(404), @@ -20779,41 +20647,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(404), [anon_sym_str] = ACTIONS(404), [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(390), - [anon_sym_SLASH] = ACTIONS(390), - [anon_sym_PERCENT] = ACTIONS(390), - [anon_sym_CARET] = ACTIONS(390), + [anon_sym_DASH] = ACTIONS(386), + [anon_sym_SLASH] = ACTIONS(386), + [anon_sym_PERCENT] = ACTIONS(386), + [anon_sym_CARET] = ACTIONS(386), [anon_sym_BANG] = ACTIONS(406), - [anon_sym_AMP] = ACTIONS(390), - [anon_sym_PIPE] = ACTIONS(390), - [anon_sym_AMP_AMP] = ACTIONS(388), - [anon_sym_PIPE_PIPE] = ACTIONS(388), - [anon_sym_LT_LT] = ACTIONS(390), - [anon_sym_GT_GT] = ACTIONS(390), - [anon_sym_PLUS_EQ] = ACTIONS(388), - [anon_sym_DASH_EQ] = ACTIONS(388), - [anon_sym_STAR_EQ] = ACTIONS(388), - [anon_sym_SLASH_EQ] = ACTIONS(388), - [anon_sym_PERCENT_EQ] = ACTIONS(388), - [anon_sym_CARET_EQ] = ACTIONS(388), - [anon_sym_AMP_EQ] = ACTIONS(388), - [anon_sym_PIPE_EQ] = ACTIONS(388), - [anon_sym_LT_LT_EQ] = ACTIONS(388), - [anon_sym_GT_GT_EQ] = ACTIONS(388), - [anon_sym_EQ] = ACTIONS(390), - [anon_sym_EQ_EQ] = ACTIONS(388), - [anon_sym_BANG_EQ] = ACTIONS(388), - [anon_sym_GT] = ACTIONS(390), - [anon_sym_LT] = ACTIONS(390), - [anon_sym_GT_EQ] = ACTIONS(388), - [anon_sym_LT_EQ] = ACTIONS(388), - [anon_sym_DOT] = ACTIONS(390), - [anon_sym_DOT_DOT] = ACTIONS(390), - [anon_sym_DOT_DOT_DOT] = ACTIONS(388), - [anon_sym_DOT_DOT_EQ] = ACTIONS(388), + [anon_sym_AMP] = ACTIONS(386), + [anon_sym_PIPE] = ACTIONS(386), + [anon_sym_AMP_AMP] = ACTIONS(384), + [anon_sym_PIPE_PIPE] = ACTIONS(384), + [anon_sym_LT_LT] = ACTIONS(386), + [anon_sym_GT_GT] = ACTIONS(386), + [anon_sym_PLUS_EQ] = ACTIONS(384), + [anon_sym_DASH_EQ] = ACTIONS(384), + [anon_sym_STAR_EQ] = ACTIONS(384), + [anon_sym_SLASH_EQ] = ACTIONS(384), + [anon_sym_PERCENT_EQ] = ACTIONS(384), + [anon_sym_CARET_EQ] = ACTIONS(384), + [anon_sym_AMP_EQ] = ACTIONS(384), + [anon_sym_PIPE_EQ] = ACTIONS(384), + [anon_sym_LT_LT_EQ] = ACTIONS(384), + [anon_sym_GT_GT_EQ] = ACTIONS(384), + [anon_sym_EQ] = ACTIONS(386), + [anon_sym_EQ_EQ] = ACTIONS(384), + [anon_sym_BANG_EQ] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(386), + [anon_sym_LT] = ACTIONS(386), + [anon_sym_GT_EQ] = ACTIONS(384), + [anon_sym_LT_EQ] = ACTIONS(384), + [anon_sym_DOT] = ACTIONS(386), + [anon_sym_DOT_DOT] = ACTIONS(386), + [anon_sym_DOT_DOT_DOT] = ACTIONS(384), + [anon_sym_DOT_DOT_EQ] = ACTIONS(384), [anon_sym_COLON_COLON] = ACTIONS(408), - [anon_sym_SQUOTE] = ACTIONS(490), - [anon_sym_as] = ACTIONS(390), + [anon_sym_SQUOTE] = ACTIONS(464), + [anon_sym_as] = ACTIONS(386), [anon_sym_async] = ACTIONS(410), [anon_sym_break] = ACTIONS(412), [anon_sym_const] = ACTIONS(414), @@ -20845,63 +20713,203 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(454), [sym_float_literal] = ACTIONS(442), }, + [47] = { + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2731), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1787), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(223), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), + [sym_line_comment] = STATE(47), + [sym_block_comment] = STATE(47), + [sym_identifier] = ACTIONS(466), + [anon_sym_LPAREN] = ACTIONS(336), + [anon_sym_LBRACK] = ACTIONS(336), + [anon_sym_LBRACE] = ACTIONS(336), + [anon_sym_COLON] = ACTIONS(340), + [anon_sym_PLUS] = ACTIONS(342), + [anon_sym_STAR] = ACTIONS(342), + [anon_sym_QMARK] = ACTIONS(336), + [anon_sym_u8] = ACTIONS(468), + [anon_sym_i8] = ACTIONS(468), + [anon_sym_u16] = ACTIONS(468), + [anon_sym_i16] = ACTIONS(468), + [anon_sym_u32] = ACTIONS(468), + [anon_sym_i32] = ACTIONS(468), + [anon_sym_u64] = ACTIONS(468), + [anon_sym_i64] = ACTIONS(468), + [anon_sym_u128] = ACTIONS(468), + [anon_sym_i128] = ACTIONS(468), + [anon_sym_isize] = ACTIONS(468), + [anon_sym_usize] = ACTIONS(468), + [anon_sym_f32] = ACTIONS(468), + [anon_sym_f64] = ACTIONS(468), + [anon_sym_bool] = ACTIONS(468), + [anon_sym_str] = ACTIONS(468), + [anon_sym_char] = ACTIONS(468), + [anon_sym_DASH] = ACTIONS(342), + [anon_sym_SLASH] = ACTIONS(342), + [anon_sym_PERCENT] = ACTIONS(342), + [anon_sym_CARET] = ACTIONS(342), + [anon_sym_BANG] = ACTIONS(470), + [anon_sym_AMP] = ACTIONS(342), + [anon_sym_PIPE] = ACTIONS(342), + [anon_sym_AMP_AMP] = ACTIONS(336), + [anon_sym_PIPE_PIPE] = ACTIONS(336), + [anon_sym_LT_LT] = ACTIONS(342), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_PLUS_EQ] = ACTIONS(336), + [anon_sym_DASH_EQ] = ACTIONS(336), + [anon_sym_STAR_EQ] = ACTIONS(336), + [anon_sym_SLASH_EQ] = ACTIONS(336), + [anon_sym_PERCENT_EQ] = ACTIONS(336), + [anon_sym_CARET_EQ] = ACTIONS(336), + [anon_sym_AMP_EQ] = ACTIONS(336), + [anon_sym_PIPE_EQ] = ACTIONS(336), + [anon_sym_LT_LT_EQ] = ACTIONS(336), + [anon_sym_GT_GT_EQ] = ACTIONS(336), + [anon_sym_EQ] = ACTIONS(342), + [anon_sym_EQ_EQ] = ACTIONS(336), + [anon_sym_BANG_EQ] = ACTIONS(336), + [anon_sym_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(342), + [anon_sym_GT_EQ] = ACTIONS(336), + [anon_sym_LT_EQ] = ACTIONS(336), + [anon_sym_DOT] = ACTIONS(342), + [anon_sym_DOT_DOT] = ACTIONS(342), + [anon_sym_DOT_DOT_DOT] = ACTIONS(336), + [anon_sym_DOT_DOT_EQ] = ACTIONS(336), + [anon_sym_COLON_COLON] = ACTIONS(472), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_as] = ACTIONS(342), + [anon_sym_async] = ACTIONS(346), + [anon_sym_break] = ACTIONS(474), + [anon_sym_const] = ACTIONS(348), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(476), + [anon_sym_for] = ACTIONS(352), + [anon_sym_if] = ACTIONS(354), + [anon_sym_loop] = ACTIONS(356), + [anon_sym_match] = ACTIONS(358), + [anon_sym_return] = ACTIONS(478), + [anon_sym_static] = ACTIONS(480), + [anon_sym_union] = ACTIONS(476), + [anon_sym_unsafe] = ACTIONS(362), + [anon_sym_while] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(482), + [anon_sym_move] = ACTIONS(484), + [anon_sym_try] = ACTIONS(366), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(486), + [sym_super] = ACTIONS(488), + [sym_crate] = ACTIONS(488), + [sym_metavariable] = ACTIONS(490), + [sym__raw_string_literal_start] = ACTIONS(115), + [sym_float_literal] = ACTIONS(95), + }, [48] = { - [sym_bracketed_type] = STATE(3498), - [sym_generic_function] = STATE(1637), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1604), - [sym__expression] = STATE(1645), - [sym_macro_invocation] = STATE(1641), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3100), - [sym_range_expression] = STATE(1639), - [sym_unary_expression] = STATE(1637), - [sym_try_expression] = STATE(1637), - [sym_reference_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_assignment_expression] = STATE(1637), - [sym_compound_assignment_expr] = STATE(1637), - [sym_type_cast_expression] = STATE(1637), - [sym_return_expression] = STATE(1637), - [sym_yield_expression] = STATE(1637), - [sym_call_expression] = STATE(1637), - [sym_array_expression] = STATE(1637), - [sym_parenthesized_expression] = STATE(1637), - [sym_tuple_expression] = STATE(1637), - [sym_unit_expression] = STATE(1637), - [sym_struct_expression] = STATE(1637), - [sym_if_expression] = STATE(1637), - [sym_match_expression] = STATE(1637), - [sym_while_expression] = STATE(1637), - [sym_loop_expression] = STATE(1637), - [sym_for_expression] = STATE(1637), - [sym_const_block] = STATE(1637), - [sym_closure_expression] = STATE(1637), - [sym_closure_parameters] = STATE(237), - [sym_label] = STATE(3585), - [sym_break_expression] = STATE(1637), - [sym_continue_expression] = STATE(1637), - [sym_index_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_field_expression] = STATE(1620), - [sym_unsafe_block] = STATE(1637), - [sym_async_block] = STATE(1637), - [sym_try_block] = STATE(1637), - [sym_block] = STATE(1637), - [sym__literal] = STATE(1637), - [sym_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_boolean_literal] = STATE(1778), + [sym_bracketed_type] = STATE(3506), + [sym_generic_function] = STATE(1695), + [sym_generic_type_with_turbofish] = STATE(2844), + [sym__expression_except_range] = STATE(1590), + [sym__expression] = STATE(1729), + [sym_macro_invocation] = STATE(1705), + [sym_scoped_identifier] = STATE(1568), + [sym_scoped_type_identifier_in_expression_position] = STATE(3132), + [sym_range_expression] = STATE(1699), + [sym_unary_expression] = STATE(1695), + [sym_try_expression] = STATE(1695), + [sym_reference_expression] = STATE(1695), + [sym_binary_expression] = STATE(1695), + [sym_assignment_expression] = STATE(1695), + [sym_compound_assignment_expr] = STATE(1695), + [sym_type_cast_expression] = STATE(1695), + [sym_return_expression] = STATE(1695), + [sym_yield_expression] = STATE(1695), + [sym_call_expression] = STATE(1695), + [sym_array_expression] = STATE(1695), + [sym_parenthesized_expression] = STATE(1695), + [sym_tuple_expression] = STATE(1695), + [sym_unit_expression] = STATE(1695), + [sym_struct_expression] = STATE(1695), + [sym_if_expression] = STATE(1695), + [sym_match_expression] = STATE(1695), + [sym_while_expression] = STATE(1695), + [sym_loop_expression] = STATE(1695), + [sym_for_expression] = STATE(1695), + [sym_const_block] = STATE(1695), + [sym_closure_expression] = STATE(1695), + [sym_closure_parameters] = STATE(222), + [sym_label] = STATE(3593), + [sym_break_expression] = STATE(1695), + [sym_continue_expression] = STATE(1695), + [sym_index_expression] = STATE(1695), + [sym_await_expression] = STATE(1695), + [sym_field_expression] = STATE(1583), + [sym_unsafe_block] = STATE(1695), + [sym_async_block] = STATE(1695), + [sym_try_block] = STATE(1695), + [sym_block] = STATE(1695), + [sym__literal] = STATE(1695), + [sym_string_literal] = STATE(1801), + [sym_raw_string_literal] = STATE(1801), + [sym_boolean_literal] = STATE(1801), [sym_line_comment] = STATE(48), [sym_block_comment] = STATE(48), [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(384), + [anon_sym_LPAREN] = ACTIONS(456), + [anon_sym_LBRACK] = ACTIONS(380), [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_EQ_GT] = ACTIONS(384), - [anon_sym_PLUS] = ACTIONS(386), - [anon_sym_STAR] = ACTIONS(386), - [anon_sym_QMARK] = ACTIONS(384), + [anon_sym_EQ_GT] = ACTIONS(380), + [anon_sym_PLUS] = ACTIONS(382), + [anon_sym_STAR] = ACTIONS(382), + [anon_sym_QMARK] = ACTIONS(380), [anon_sym_u8] = ACTIONS(404), [anon_sym_i8] = ACTIONS(404), [anon_sym_u16] = ACTIONS(404), @@ -20919,41 +20927,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(404), [anon_sym_str] = ACTIONS(404), [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(386), - [anon_sym_SLASH] = ACTIONS(386), - [anon_sym_PERCENT] = ACTIONS(386), - [anon_sym_CARET] = ACTIONS(386), + [anon_sym_DASH] = ACTIONS(382), + [anon_sym_SLASH] = ACTIONS(382), + [anon_sym_PERCENT] = ACTIONS(382), + [anon_sym_CARET] = ACTIONS(382), [anon_sym_BANG] = ACTIONS(406), - [anon_sym_AMP] = ACTIONS(386), - [anon_sym_PIPE] = ACTIONS(386), - [anon_sym_AMP_AMP] = ACTIONS(384), - [anon_sym_PIPE_PIPE] = ACTIONS(384), - [anon_sym_LT_LT] = ACTIONS(386), - [anon_sym_GT_GT] = ACTIONS(386), - [anon_sym_PLUS_EQ] = ACTIONS(384), - [anon_sym_DASH_EQ] = ACTIONS(384), - [anon_sym_STAR_EQ] = ACTIONS(384), - [anon_sym_SLASH_EQ] = ACTIONS(384), - [anon_sym_PERCENT_EQ] = ACTIONS(384), - [anon_sym_CARET_EQ] = ACTIONS(384), - [anon_sym_AMP_EQ] = ACTIONS(384), - [anon_sym_PIPE_EQ] = ACTIONS(384), - [anon_sym_LT_LT_EQ] = ACTIONS(384), - [anon_sym_GT_GT_EQ] = ACTIONS(384), - [anon_sym_EQ] = ACTIONS(386), - [anon_sym_EQ_EQ] = ACTIONS(384), - [anon_sym_BANG_EQ] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(386), - [anon_sym_LT] = ACTIONS(386), - [anon_sym_GT_EQ] = ACTIONS(384), - [anon_sym_LT_EQ] = ACTIONS(384), - [anon_sym_DOT] = ACTIONS(386), - [anon_sym_DOT_DOT] = ACTIONS(386), - [anon_sym_DOT_DOT_DOT] = ACTIONS(384), - [anon_sym_DOT_DOT_EQ] = ACTIONS(384), + [anon_sym_AMP] = ACTIONS(382), + [anon_sym_PIPE] = ACTIONS(382), + [anon_sym_AMP_AMP] = ACTIONS(380), + [anon_sym_PIPE_PIPE] = ACTIONS(380), + [anon_sym_LT_LT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(382), + [anon_sym_PLUS_EQ] = ACTIONS(380), + [anon_sym_DASH_EQ] = ACTIONS(380), + [anon_sym_STAR_EQ] = ACTIONS(380), + [anon_sym_SLASH_EQ] = ACTIONS(380), + [anon_sym_PERCENT_EQ] = ACTIONS(380), + [anon_sym_CARET_EQ] = ACTIONS(380), + [anon_sym_AMP_EQ] = ACTIONS(380), + [anon_sym_PIPE_EQ] = ACTIONS(380), + [anon_sym_LT_LT_EQ] = ACTIONS(380), + [anon_sym_GT_GT_EQ] = ACTIONS(380), + [anon_sym_EQ] = ACTIONS(382), + [anon_sym_EQ_EQ] = ACTIONS(380), + [anon_sym_BANG_EQ] = ACTIONS(380), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT_EQ] = ACTIONS(380), + [anon_sym_LT_EQ] = ACTIONS(380), + [anon_sym_DOT] = ACTIONS(382), + [anon_sym_DOT_DOT] = ACTIONS(382), + [anon_sym_DOT_DOT_DOT] = ACTIONS(380), + [anon_sym_DOT_DOT_EQ] = ACTIONS(380), [anon_sym_COLON_COLON] = ACTIONS(408), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(386), + [anon_sym_as] = ACTIONS(382), [anon_sym_async] = ACTIONS(410), [anon_sym_break] = ACTIONS(412), [anon_sym_const] = ACTIONS(414), @@ -20986,61 +20994,201 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(442), }, [49] = { - [sym_bracketed_type] = STATE(3498), - [sym_generic_function] = STATE(1637), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1604), - [sym__expression] = STATE(1763), - [sym_macro_invocation] = STATE(1641), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3100), - [sym_range_expression] = STATE(1639), - [sym_unary_expression] = STATE(1637), - [sym_try_expression] = STATE(1637), - [sym_reference_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_assignment_expression] = STATE(1637), - [sym_compound_assignment_expr] = STATE(1637), - [sym_type_cast_expression] = STATE(1637), - [sym_return_expression] = STATE(1637), - [sym_yield_expression] = STATE(1637), - [sym_call_expression] = STATE(1637), - [sym_array_expression] = STATE(1637), - [sym_parenthesized_expression] = STATE(1637), - [sym_tuple_expression] = STATE(1637), - [sym_unit_expression] = STATE(1637), - [sym_struct_expression] = STATE(1637), - [sym_if_expression] = STATE(1637), - [sym_match_expression] = STATE(1637), - [sym_while_expression] = STATE(1637), - [sym_loop_expression] = STATE(1637), - [sym_for_expression] = STATE(1637), - [sym_const_block] = STATE(1637), - [sym_closure_expression] = STATE(1637), - [sym_closure_parameters] = STATE(237), - [sym_label] = STATE(3585), - [sym_break_expression] = STATE(1637), - [sym_continue_expression] = STATE(1637), - [sym_index_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_field_expression] = STATE(1620), - [sym_unsafe_block] = STATE(1637), - [sym_async_block] = STATE(1637), - [sym_try_block] = STATE(1637), - [sym_block] = STATE(1637), - [sym__literal] = STATE(1637), - [sym_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_boolean_literal] = STATE(1778), + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2731), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1619), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(236), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), [sym_line_comment] = STATE(49), [sym_block_comment] = STATE(49), + [sym_identifier] = ACTIONS(466), + [anon_sym_LPAREN] = ACTIONS(336), + [anon_sym_LBRACK] = ACTIONS(336), + [anon_sym_LBRACE] = ACTIONS(336), + [anon_sym_COLON] = ACTIONS(340), + [anon_sym_PLUS] = ACTIONS(342), + [anon_sym_STAR] = ACTIONS(342), + [anon_sym_QMARK] = ACTIONS(336), + [anon_sym_u8] = ACTIONS(468), + [anon_sym_i8] = ACTIONS(468), + [anon_sym_u16] = ACTIONS(468), + [anon_sym_i16] = ACTIONS(468), + [anon_sym_u32] = ACTIONS(468), + [anon_sym_i32] = ACTIONS(468), + [anon_sym_u64] = ACTIONS(468), + [anon_sym_i64] = ACTIONS(468), + [anon_sym_u128] = ACTIONS(468), + [anon_sym_i128] = ACTIONS(468), + [anon_sym_isize] = ACTIONS(468), + [anon_sym_usize] = ACTIONS(468), + [anon_sym_f32] = ACTIONS(468), + [anon_sym_f64] = ACTIONS(468), + [anon_sym_bool] = ACTIONS(468), + [anon_sym_str] = ACTIONS(468), + [anon_sym_char] = ACTIONS(468), + [anon_sym_DASH] = ACTIONS(342), + [anon_sym_SLASH] = ACTIONS(342), + [anon_sym_PERCENT] = ACTIONS(342), + [anon_sym_CARET] = ACTIONS(342), + [anon_sym_BANG] = ACTIONS(492), + [anon_sym_AMP] = ACTIONS(342), + [anon_sym_PIPE] = ACTIONS(342), + [anon_sym_AMP_AMP] = ACTIONS(336), + [anon_sym_PIPE_PIPE] = ACTIONS(336), + [anon_sym_LT_LT] = ACTIONS(342), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_PLUS_EQ] = ACTIONS(336), + [anon_sym_DASH_EQ] = ACTIONS(336), + [anon_sym_STAR_EQ] = ACTIONS(336), + [anon_sym_SLASH_EQ] = ACTIONS(336), + [anon_sym_PERCENT_EQ] = ACTIONS(336), + [anon_sym_CARET_EQ] = ACTIONS(336), + [anon_sym_AMP_EQ] = ACTIONS(336), + [anon_sym_PIPE_EQ] = ACTIONS(336), + [anon_sym_LT_LT_EQ] = ACTIONS(336), + [anon_sym_GT_GT_EQ] = ACTIONS(336), + [anon_sym_EQ] = ACTIONS(342), + [anon_sym_EQ_EQ] = ACTIONS(336), + [anon_sym_BANG_EQ] = ACTIONS(336), + [anon_sym_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(342), + [anon_sym_GT_EQ] = ACTIONS(336), + [anon_sym_LT_EQ] = ACTIONS(336), + [anon_sym_DOT] = ACTIONS(342), + [anon_sym_DOT_DOT] = ACTIONS(342), + [anon_sym_DOT_DOT_DOT] = ACTIONS(336), + [anon_sym_DOT_DOT_EQ] = ACTIONS(336), + [anon_sym_COLON_COLON] = ACTIONS(472), + [anon_sym_SQUOTE] = ACTIONS(342), + [anon_sym_as] = ACTIONS(342), + [anon_sym_async] = ACTIONS(346), + [anon_sym_break] = ACTIONS(494), + [anon_sym_const] = ACTIONS(348), + [anon_sym_continue] = ACTIONS(496), + [anon_sym_default] = ACTIONS(476), + [anon_sym_for] = ACTIONS(352), + [anon_sym_if] = ACTIONS(354), + [anon_sym_loop] = ACTIONS(356), + [anon_sym_match] = ACTIONS(358), + [anon_sym_return] = ACTIONS(498), + [anon_sym_static] = ACTIONS(500), + [anon_sym_union] = ACTIONS(476), + [anon_sym_unsafe] = ACTIONS(362), + [anon_sym_while] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(502), + [anon_sym_move] = ACTIONS(504), + [anon_sym_try] = ACTIONS(366), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(486), + [sym_super] = ACTIONS(488), + [sym_crate] = ACTIONS(488), + [sym_metavariable] = ACTIONS(490), + [sym__raw_string_literal_start] = ACTIONS(115), + [sym_float_literal] = ACTIONS(95), + }, + [50] = { + [sym_bracketed_type] = STATE(3506), + [sym_generic_function] = STATE(1695), + [sym_generic_type_with_turbofish] = STATE(2844), + [sym__expression_except_range] = STATE(1590), + [sym__expression] = STATE(1742), + [sym_macro_invocation] = STATE(1705), + [sym_scoped_identifier] = STATE(1568), + [sym_scoped_type_identifier_in_expression_position] = STATE(3132), + [sym_range_expression] = STATE(1699), + [sym_unary_expression] = STATE(1695), + [sym_try_expression] = STATE(1695), + [sym_reference_expression] = STATE(1695), + [sym_binary_expression] = STATE(1695), + [sym_assignment_expression] = STATE(1695), + [sym_compound_assignment_expr] = STATE(1695), + [sym_type_cast_expression] = STATE(1695), + [sym_return_expression] = STATE(1695), + [sym_yield_expression] = STATE(1695), + [sym_call_expression] = STATE(1695), + [sym_array_expression] = STATE(1695), + [sym_parenthesized_expression] = STATE(1695), + [sym_tuple_expression] = STATE(1695), + [sym_unit_expression] = STATE(1695), + [sym_struct_expression] = STATE(1695), + [sym_if_expression] = STATE(1695), + [sym_match_expression] = STATE(1695), + [sym_while_expression] = STATE(1695), + [sym_loop_expression] = STATE(1695), + [sym_for_expression] = STATE(1695), + [sym_const_block] = STATE(1695), + [sym_closure_expression] = STATE(1695), + [sym_closure_parameters] = STATE(222), + [sym_label] = STATE(3593), + [sym_break_expression] = STATE(1695), + [sym_continue_expression] = STATE(1695), + [sym_index_expression] = STATE(1695), + [sym_await_expression] = STATE(1695), + [sym_field_expression] = STATE(1583), + [sym_unsafe_block] = STATE(1695), + [sym_async_block] = STATE(1695), + [sym_try_block] = STATE(1695), + [sym_block] = STATE(1695), + [sym__literal] = STATE(1695), + [sym_string_literal] = STATE(1801), + [sym_raw_string_literal] = STATE(1801), + [sym_boolean_literal] = STATE(1801), + [sym_line_comment] = STATE(50), + [sym_block_comment] = STATE(50), [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(368), + [anon_sym_LPAREN] = ACTIONS(456), + [anon_sym_LBRACK] = ACTIONS(458), [anon_sym_LBRACE] = ACTIONS(400), [anon_sym_EQ_GT] = ACTIONS(368), [anon_sym_PLUS] = ACTIONS(370), - [anon_sym_STAR] = ACTIONS(370), + [anon_sym_STAR] = ACTIONS(406), [anon_sym_QMARK] = ACTIONS(368), [anon_sym_u8] = ACTIONS(404), [anon_sym_i8] = ACTIONS(404), @@ -21059,13 +21207,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(404), [anon_sym_str] = ACTIONS(404), [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(370), + [anon_sym_DASH] = ACTIONS(406), [anon_sym_SLASH] = ACTIONS(370), [anon_sym_PERCENT] = ACTIONS(370), [anon_sym_CARET] = ACTIONS(370), [anon_sym_BANG] = ACTIONS(406), - [anon_sym_AMP] = ACTIONS(370), - [anon_sym_PIPE] = ACTIONS(370), + [anon_sym_AMP] = ACTIONS(460), + [anon_sym_PIPE] = ACTIONS(374), [anon_sym_AMP_AMP] = ACTIONS(368), [anon_sym_PIPE_PIPE] = ACTIONS(368), [anon_sym_LT_LT] = ACTIONS(370), @@ -21084,11 +21232,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_EQ] = ACTIONS(368), [anon_sym_BANG_EQ] = ACTIONS(368), [anon_sym_GT] = ACTIONS(370), - [anon_sym_LT] = ACTIONS(370), + [anon_sym_LT] = ACTIONS(376), [anon_sym_GT_EQ] = ACTIONS(368), [anon_sym_LT_EQ] = ACTIONS(368), [anon_sym_DOT] = ACTIONS(370), - [anon_sym_DOT_DOT] = ACTIONS(370), + [anon_sym_DOT_DOT] = ACTIONS(462), [anon_sym_DOT_DOT_DOT] = ACTIONS(368), [anon_sym_DOT_DOT_EQ] = ACTIONS(368), [anon_sym_COLON_COLON] = ACTIONS(408), @@ -21125,63 +21273,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(454), [sym_float_literal] = ACTIONS(442), }, - [50] = { - [sym_bracketed_type] = STATE(3498), - [sym_generic_function] = STATE(1637), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1604), - [sym__expression] = STATE(1645), - [sym_macro_invocation] = STATE(1641), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3100), - [sym_range_expression] = STATE(1639), - [sym_unary_expression] = STATE(1637), - [sym_try_expression] = STATE(1637), - [sym_reference_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_assignment_expression] = STATE(1637), - [sym_compound_assignment_expr] = STATE(1637), - [sym_type_cast_expression] = STATE(1637), - [sym_return_expression] = STATE(1637), - [sym_yield_expression] = STATE(1637), - [sym_call_expression] = STATE(1637), - [sym_array_expression] = STATE(1637), - [sym_parenthesized_expression] = STATE(1637), - [sym_tuple_expression] = STATE(1637), - [sym_unit_expression] = STATE(1637), - [sym_struct_expression] = STATE(1637), - [sym_if_expression] = STATE(1637), - [sym_match_expression] = STATE(1637), - [sym_while_expression] = STATE(1637), - [sym_loop_expression] = STATE(1637), - [sym_for_expression] = STATE(1637), - [sym_const_block] = STATE(1637), - [sym_closure_expression] = STATE(1637), - [sym_closure_parameters] = STATE(237), - [sym_label] = STATE(3585), - [sym_break_expression] = STATE(1637), - [sym_continue_expression] = STATE(1637), - [sym_index_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_field_expression] = STATE(1620), - [sym_unsafe_block] = STATE(1637), - [sym_async_block] = STATE(1637), - [sym_try_block] = STATE(1637), - [sym_block] = STATE(1637), - [sym__literal] = STATE(1637), - [sym_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_boolean_literal] = STATE(1778), - [sym_line_comment] = STATE(50), - [sym_block_comment] = STATE(50), + [51] = { + [sym_bracketed_type] = STATE(3506), + [sym_generic_function] = STATE(1695), + [sym_generic_type_with_turbofish] = STATE(2844), + [sym__expression_except_range] = STATE(1590), + [sym__expression] = STATE(1716), + [sym_macro_invocation] = STATE(1705), + [sym_scoped_identifier] = STATE(1568), + [sym_scoped_type_identifier_in_expression_position] = STATE(3132), + [sym_range_expression] = STATE(1699), + [sym_unary_expression] = STATE(1695), + [sym_try_expression] = STATE(1695), + [sym_reference_expression] = STATE(1695), + [sym_binary_expression] = STATE(1695), + [sym_assignment_expression] = STATE(1695), + [sym_compound_assignment_expr] = STATE(1695), + [sym_type_cast_expression] = STATE(1695), + [sym_return_expression] = STATE(1695), + [sym_yield_expression] = STATE(1695), + [sym_call_expression] = STATE(1695), + [sym_array_expression] = STATE(1695), + [sym_parenthesized_expression] = STATE(1695), + [sym_tuple_expression] = STATE(1695), + [sym_unit_expression] = STATE(1695), + [sym_struct_expression] = STATE(1695), + [sym_if_expression] = STATE(1695), + [sym_match_expression] = STATE(1695), + [sym_while_expression] = STATE(1695), + [sym_loop_expression] = STATE(1695), + [sym_for_expression] = STATE(1695), + [sym_const_block] = STATE(1695), + [sym_closure_expression] = STATE(1695), + [sym_closure_parameters] = STATE(222), + [sym_label] = STATE(3593), + [sym_break_expression] = STATE(1695), + [sym_continue_expression] = STATE(1695), + [sym_index_expression] = STATE(1695), + [sym_await_expression] = STATE(1695), + [sym_field_expression] = STATE(1583), + [sym_unsafe_block] = STATE(1695), + [sym_async_block] = STATE(1695), + [sym_try_block] = STATE(1695), + [sym_block] = STATE(1695), + [sym__literal] = STATE(1695), + [sym_string_literal] = STATE(1801), + [sym_raw_string_literal] = STATE(1801), + [sym_boolean_literal] = STATE(1801), + [sym_line_comment] = STATE(51), + [sym_block_comment] = STATE(51), [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(384), + [anon_sym_LPAREN] = ACTIONS(390), + [anon_sym_LBRACK] = ACTIONS(390), [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_EQ_GT] = ACTIONS(384), - [anon_sym_PLUS] = ACTIONS(386), - [anon_sym_STAR] = ACTIONS(386), - [anon_sym_QMARK] = ACTIONS(384), + [anon_sym_EQ_GT] = ACTIONS(390), + [anon_sym_PLUS] = ACTIONS(392), + [anon_sym_STAR] = ACTIONS(392), + [anon_sym_QMARK] = ACTIONS(390), [anon_sym_u8] = ACTIONS(404), [anon_sym_i8] = ACTIONS(404), [anon_sym_u16] = ACTIONS(404), @@ -21199,41 +21347,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(404), [anon_sym_str] = ACTIONS(404), [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(386), - [anon_sym_SLASH] = ACTIONS(386), - [anon_sym_PERCENT] = ACTIONS(386), - [anon_sym_CARET] = ACTIONS(386), + [anon_sym_DASH] = ACTIONS(392), + [anon_sym_SLASH] = ACTIONS(392), + [anon_sym_PERCENT] = ACTIONS(392), + [anon_sym_CARET] = ACTIONS(392), [anon_sym_BANG] = ACTIONS(406), - [anon_sym_AMP] = ACTIONS(386), - [anon_sym_PIPE] = ACTIONS(386), - [anon_sym_AMP_AMP] = ACTIONS(384), - [anon_sym_PIPE_PIPE] = ACTIONS(384), - [anon_sym_LT_LT] = ACTIONS(386), - [anon_sym_GT_GT] = ACTIONS(386), - [anon_sym_PLUS_EQ] = ACTIONS(384), - [anon_sym_DASH_EQ] = ACTIONS(384), - [anon_sym_STAR_EQ] = ACTIONS(384), - [anon_sym_SLASH_EQ] = ACTIONS(384), - [anon_sym_PERCENT_EQ] = ACTIONS(384), - [anon_sym_CARET_EQ] = ACTIONS(384), - [anon_sym_AMP_EQ] = ACTIONS(384), - [anon_sym_PIPE_EQ] = ACTIONS(384), - [anon_sym_LT_LT_EQ] = ACTIONS(384), - [anon_sym_GT_GT_EQ] = ACTIONS(384), - [anon_sym_EQ] = ACTIONS(386), - [anon_sym_EQ_EQ] = ACTIONS(384), - [anon_sym_BANG_EQ] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(386), - [anon_sym_LT] = ACTIONS(386), - [anon_sym_GT_EQ] = ACTIONS(384), - [anon_sym_LT_EQ] = ACTIONS(384), - [anon_sym_DOT] = ACTIONS(386), - [anon_sym_DOT_DOT] = ACTIONS(386), - [anon_sym_DOT_DOT_DOT] = ACTIONS(384), - [anon_sym_DOT_DOT_EQ] = ACTIONS(384), + [anon_sym_AMP] = ACTIONS(392), + [anon_sym_PIPE] = ACTIONS(392), + [anon_sym_AMP_AMP] = ACTIONS(390), + [anon_sym_PIPE_PIPE] = ACTIONS(390), + [anon_sym_LT_LT] = ACTIONS(392), + [anon_sym_GT_GT] = ACTIONS(392), + [anon_sym_PLUS_EQ] = ACTIONS(390), + [anon_sym_DASH_EQ] = ACTIONS(390), + [anon_sym_STAR_EQ] = ACTIONS(390), + [anon_sym_SLASH_EQ] = ACTIONS(390), + [anon_sym_PERCENT_EQ] = ACTIONS(390), + [anon_sym_CARET_EQ] = ACTIONS(390), + [anon_sym_AMP_EQ] = ACTIONS(390), + [anon_sym_PIPE_EQ] = ACTIONS(390), + [anon_sym_LT_LT_EQ] = ACTIONS(390), + [anon_sym_GT_GT_EQ] = ACTIONS(390), + [anon_sym_EQ] = ACTIONS(392), + [anon_sym_EQ_EQ] = ACTIONS(390), + [anon_sym_BANG_EQ] = ACTIONS(390), + [anon_sym_GT] = ACTIONS(392), + [anon_sym_LT] = ACTIONS(392), + [anon_sym_GT_EQ] = ACTIONS(390), + [anon_sym_LT_EQ] = ACTIONS(390), + [anon_sym_DOT] = ACTIONS(392), + [anon_sym_DOT_DOT] = ACTIONS(392), + [anon_sym_DOT_DOT_DOT] = ACTIONS(390), + [anon_sym_DOT_DOT_EQ] = ACTIONS(390), [anon_sym_COLON_COLON] = ACTIONS(408), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(386), + [anon_sym_as] = ACTIONS(392), [anon_sym_async] = ACTIONS(410), [anon_sym_break] = ACTIONS(412), [anon_sym_const] = ACTIONS(414), @@ -21265,63 +21413,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(454), [sym_float_literal] = ACTIONS(442), }, - [51] = { - [sym_bracketed_type] = STATE(3498), - [sym_generic_function] = STATE(1637), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1604), - [sym__expression] = STATE(1763), - [sym_macro_invocation] = STATE(1641), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3100), - [sym_range_expression] = STATE(1639), - [sym_unary_expression] = STATE(1637), - [sym_try_expression] = STATE(1637), - [sym_reference_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_assignment_expression] = STATE(1637), - [sym_compound_assignment_expr] = STATE(1637), - [sym_type_cast_expression] = STATE(1637), - [sym_return_expression] = STATE(1637), - [sym_yield_expression] = STATE(1637), - [sym_call_expression] = STATE(1637), - [sym_array_expression] = STATE(1637), - [sym_parenthesized_expression] = STATE(1637), - [sym_tuple_expression] = STATE(1637), - [sym_unit_expression] = STATE(1637), - [sym_struct_expression] = STATE(1637), - [sym_if_expression] = STATE(1637), - [sym_match_expression] = STATE(1637), - [sym_while_expression] = STATE(1637), - [sym_loop_expression] = STATE(1637), - [sym_for_expression] = STATE(1637), - [sym_const_block] = STATE(1637), - [sym_closure_expression] = STATE(1637), - [sym_closure_parameters] = STATE(237), - [sym_label] = STATE(3585), - [sym_break_expression] = STATE(1637), - [sym_continue_expression] = STATE(1637), - [sym_index_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_field_expression] = STATE(1620), - [sym_unsafe_block] = STATE(1637), - [sym_async_block] = STATE(1637), - [sym_try_block] = STATE(1637), - [sym_block] = STATE(1637), - [sym__literal] = STATE(1637), - [sym_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_boolean_literal] = STATE(1778), - [sym_line_comment] = STATE(51), - [sym_block_comment] = STATE(51), + [52] = { + [sym_bracketed_type] = STATE(3506), + [sym_generic_function] = STATE(1695), + [sym_generic_type_with_turbofish] = STATE(2844), + [sym__expression_except_range] = STATE(1590), + [sym__expression] = STATE(1729), + [sym_macro_invocation] = STATE(1705), + [sym_scoped_identifier] = STATE(1568), + [sym_scoped_type_identifier_in_expression_position] = STATE(3132), + [sym_range_expression] = STATE(1699), + [sym_unary_expression] = STATE(1695), + [sym_try_expression] = STATE(1695), + [sym_reference_expression] = STATE(1695), + [sym_binary_expression] = STATE(1695), + [sym_assignment_expression] = STATE(1695), + [sym_compound_assignment_expr] = STATE(1695), + [sym_type_cast_expression] = STATE(1695), + [sym_return_expression] = STATE(1695), + [sym_yield_expression] = STATE(1695), + [sym_call_expression] = STATE(1695), + [sym_array_expression] = STATE(1695), + [sym_parenthesized_expression] = STATE(1695), + [sym_tuple_expression] = STATE(1695), + [sym_unit_expression] = STATE(1695), + [sym_struct_expression] = STATE(1695), + [sym_if_expression] = STATE(1695), + [sym_match_expression] = STATE(1695), + [sym_while_expression] = STATE(1695), + [sym_loop_expression] = STATE(1695), + [sym_for_expression] = STATE(1695), + [sym_const_block] = STATE(1695), + [sym_closure_expression] = STATE(1695), + [sym_closure_parameters] = STATE(222), + [sym_label] = STATE(3593), + [sym_break_expression] = STATE(1695), + [sym_continue_expression] = STATE(1695), + [sym_index_expression] = STATE(1695), + [sym_await_expression] = STATE(1695), + [sym_field_expression] = STATE(1583), + [sym_unsafe_block] = STATE(1695), + [sym_async_block] = STATE(1695), + [sym_try_block] = STATE(1695), + [sym_block] = STATE(1695), + [sym__literal] = STATE(1695), + [sym_string_literal] = STATE(1801), + [sym_raw_string_literal] = STATE(1801), + [sym_boolean_literal] = STATE(1801), + [sym_line_comment] = STATE(52), + [sym_block_comment] = STATE(52), [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_LBRACK] = ACTIONS(368), + [anon_sym_LPAREN] = ACTIONS(380), + [anon_sym_LBRACK] = ACTIONS(380), [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_EQ_GT] = ACTIONS(368), - [anon_sym_PLUS] = ACTIONS(370), - [anon_sym_STAR] = ACTIONS(370), - [anon_sym_QMARK] = ACTIONS(368), + [anon_sym_EQ_GT] = ACTIONS(380), + [anon_sym_PLUS] = ACTIONS(382), + [anon_sym_STAR] = ACTIONS(382), + [anon_sym_QMARK] = ACTIONS(380), [anon_sym_u8] = ACTIONS(404), [anon_sym_i8] = ACTIONS(404), [anon_sym_u16] = ACTIONS(404), @@ -21339,41 +21487,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(404), [anon_sym_str] = ACTIONS(404), [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(370), - [anon_sym_SLASH] = ACTIONS(370), - [anon_sym_PERCENT] = ACTIONS(370), - [anon_sym_CARET] = ACTIONS(370), + [anon_sym_DASH] = ACTIONS(382), + [anon_sym_SLASH] = ACTIONS(382), + [anon_sym_PERCENT] = ACTIONS(382), + [anon_sym_CARET] = ACTIONS(382), [anon_sym_BANG] = ACTIONS(406), - [anon_sym_AMP] = ACTIONS(370), - [anon_sym_PIPE] = ACTIONS(370), - [anon_sym_AMP_AMP] = ACTIONS(368), - [anon_sym_PIPE_PIPE] = ACTIONS(368), - [anon_sym_LT_LT] = ACTIONS(370), - [anon_sym_GT_GT] = ACTIONS(370), - [anon_sym_PLUS_EQ] = ACTIONS(368), - [anon_sym_DASH_EQ] = ACTIONS(368), - [anon_sym_STAR_EQ] = ACTIONS(368), - [anon_sym_SLASH_EQ] = ACTIONS(368), - [anon_sym_PERCENT_EQ] = ACTIONS(368), - [anon_sym_CARET_EQ] = ACTIONS(368), - [anon_sym_AMP_EQ] = ACTIONS(368), - [anon_sym_PIPE_EQ] = ACTIONS(368), - [anon_sym_LT_LT_EQ] = ACTIONS(368), - [anon_sym_GT_GT_EQ] = ACTIONS(368), - [anon_sym_EQ] = ACTIONS(370), - [anon_sym_EQ_EQ] = ACTIONS(368), - [anon_sym_BANG_EQ] = ACTIONS(368), - [anon_sym_GT] = ACTIONS(370), - [anon_sym_LT] = ACTIONS(370), - [anon_sym_GT_EQ] = ACTIONS(368), - [anon_sym_LT_EQ] = ACTIONS(368), - [anon_sym_DOT] = ACTIONS(370), - [anon_sym_DOT_DOT] = ACTIONS(370), - [anon_sym_DOT_DOT_DOT] = ACTIONS(368), - [anon_sym_DOT_DOT_EQ] = ACTIONS(368), + [anon_sym_AMP] = ACTIONS(382), + [anon_sym_PIPE] = ACTIONS(382), + [anon_sym_AMP_AMP] = ACTIONS(380), + [anon_sym_PIPE_PIPE] = ACTIONS(380), + [anon_sym_LT_LT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(382), + [anon_sym_PLUS_EQ] = ACTIONS(380), + [anon_sym_DASH_EQ] = ACTIONS(380), + [anon_sym_STAR_EQ] = ACTIONS(380), + [anon_sym_SLASH_EQ] = ACTIONS(380), + [anon_sym_PERCENT_EQ] = ACTIONS(380), + [anon_sym_CARET_EQ] = ACTIONS(380), + [anon_sym_AMP_EQ] = ACTIONS(380), + [anon_sym_PIPE_EQ] = ACTIONS(380), + [anon_sym_LT_LT_EQ] = ACTIONS(380), + [anon_sym_GT_GT_EQ] = ACTIONS(380), + [anon_sym_EQ] = ACTIONS(382), + [anon_sym_EQ_EQ] = ACTIONS(380), + [anon_sym_BANG_EQ] = ACTIONS(380), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT_EQ] = ACTIONS(380), + [anon_sym_LT_EQ] = ACTIONS(380), + [anon_sym_DOT] = ACTIONS(382), + [anon_sym_DOT_DOT] = ACTIONS(382), + [anon_sym_DOT_DOT_DOT] = ACTIONS(380), + [anon_sym_DOT_DOT_EQ] = ACTIONS(380), [anon_sym_COLON_COLON] = ACTIONS(408), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(370), + [anon_sym_as] = ACTIONS(382), [anon_sym_async] = ACTIONS(410), [anon_sym_break] = ACTIONS(412), [anon_sym_const] = ACTIONS(414), @@ -21405,226 +21553,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(454), [sym_float_literal] = ACTIONS(442), }, - [52] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1625), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(52), - [sym_block_comment] = STATE(52), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(336), - [anon_sym_LBRACK] = ACTIONS(336), - [anon_sym_LBRACE] = ACTIONS(336), - [anon_sym_COLON] = ACTIONS(340), - [anon_sym_PLUS] = ACTIONS(342), - [anon_sym_STAR] = ACTIONS(342), - [anon_sym_QMARK] = ACTIONS(336), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(342), - [anon_sym_SLASH] = ACTIONS(342), - [anon_sym_PERCENT] = ACTIONS(342), - [anon_sym_CARET] = ACTIONS(342), - [anon_sym_BANG] = ACTIONS(492), - [anon_sym_AMP] = ACTIONS(342), - [anon_sym_PIPE] = ACTIONS(342), - [anon_sym_AMP_AMP] = ACTIONS(336), - [anon_sym_PIPE_PIPE] = ACTIONS(336), - [anon_sym_LT_LT] = ACTIONS(342), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_PLUS_EQ] = ACTIONS(336), - [anon_sym_DASH_EQ] = ACTIONS(336), - [anon_sym_STAR_EQ] = ACTIONS(336), - [anon_sym_SLASH_EQ] = ACTIONS(336), - [anon_sym_PERCENT_EQ] = ACTIONS(336), - [anon_sym_CARET_EQ] = ACTIONS(336), - [anon_sym_AMP_EQ] = ACTIONS(336), - [anon_sym_PIPE_EQ] = ACTIONS(336), - [anon_sym_LT_LT_EQ] = ACTIONS(336), - [anon_sym_GT_GT_EQ] = ACTIONS(336), - [anon_sym_EQ] = ACTIONS(342), - [anon_sym_EQ_EQ] = ACTIONS(336), - [anon_sym_BANG_EQ] = ACTIONS(336), - [anon_sym_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(342), - [anon_sym_GT_EQ] = ACTIONS(336), - [anon_sym_LT_EQ] = ACTIONS(336), - [anon_sym_DOT] = ACTIONS(342), - [anon_sym_DOT_DOT] = ACTIONS(342), - [anon_sym_DOT_DOT_DOT] = ACTIONS(336), - [anon_sym_DOT_DOT_EQ] = ACTIONS(336), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(342), - [anon_sym_as] = ACTIONS(342), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, [53] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1575), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2731), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1578), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(236), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), [sym_line_comment] = STATE(53), [sym_block_comment] = STATE(53), - [sym_identifier] = ACTIONS(456), + [sym_identifier] = ACTIONS(466), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), [anon_sym_PLUS] = ACTIONS(396), [anon_sym_STAR] = ACTIONS(492), [anon_sym_QMARK] = ACTIONS(394), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), + [anon_sym_u8] = ACTIONS(468), + [anon_sym_i8] = ACTIONS(468), + [anon_sym_u16] = ACTIONS(468), + [anon_sym_i16] = ACTIONS(468), + [anon_sym_u32] = ACTIONS(468), + [anon_sym_i32] = ACTIONS(468), + [anon_sym_u64] = ACTIONS(468), + [anon_sym_i64] = ACTIONS(468), + [anon_sym_u128] = ACTIONS(468), + [anon_sym_i128] = ACTIONS(468), + [anon_sym_isize] = ACTIONS(468), + [anon_sym_usize] = ACTIONS(468), + [anon_sym_f32] = ACTIONS(468), + [anon_sym_f64] = ACTIONS(468), + [anon_sym_bool] = ACTIONS(468), + [anon_sym_str] = ACTIONS(468), + [anon_sym_char] = ACTIONS(468), [anon_sym_DASH] = ACTIONS(492), [anon_sym_SLASH] = ACTIONS(396), [anon_sym_PERCENT] = ACTIONS(396), [anon_sym_CARET] = ACTIONS(396), [anon_sym_BANG] = ACTIONS(492), [anon_sym_AMP] = ACTIONS(506), - [anon_sym_PIPE] = ACTIONS(378), + [anon_sym_PIPE] = ACTIONS(374), [anon_sym_AMP_AMP] = ACTIONS(394), [anon_sym_PIPE_PIPE] = ACTIONS(394), [anon_sym_LT_LT] = ACTIONS(396), @@ -21643,28 +21651,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_EQ] = ACTIONS(394), [anon_sym_BANG_EQ] = ACTIONS(394), [anon_sym_GT] = ACTIONS(396), - [anon_sym_LT] = ACTIONS(380), + [anon_sym_LT] = ACTIONS(376), [anon_sym_GT_EQ] = ACTIONS(394), [anon_sym_LT_EQ] = ACTIONS(394), [anon_sym_DOT] = ACTIONS(396), [anon_sym_DOT_DOT] = ACTIONS(508), [anon_sym_DOT_DOT_DOT] = ACTIONS(394), [anon_sym_DOT_DOT_EQ] = ACTIONS(394), - [anon_sym_COLON_COLON] = ACTIONS(462), + [anon_sym_COLON_COLON] = ACTIONS(472), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_as] = ACTIONS(396), [anon_sym_async] = ACTIONS(346), [anon_sym_break] = ACTIONS(494), [anon_sym_const] = ACTIONS(348), [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), + [anon_sym_default] = ACTIONS(476), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), [anon_sym_loop] = ACTIONS(356), [anon_sym_match] = ACTIONS(358), [anon_sym_return] = ACTIONS(498), [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), + [anon_sym_union] = ACTIONS(476), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), [anon_sym_yield] = ACTIONS(502), @@ -21677,137 +21685,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), + [sym_self] = ACTIONS(486), + [sym_super] = ACTIONS(488), + [sym_crate] = ACTIONS(488), + [sym_metavariable] = ACTIONS(490), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, [54] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1815), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2731), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1615), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(236), + [sym_label] = STATE(49), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), [sym_line_comment] = STATE(54), [sym_block_comment] = STATE(54), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_PLUS] = ACTIONS(374), - [anon_sym_STAR] = ACTIONS(460), - [anon_sym_QMARK] = ACTIONS(372), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(460), - [anon_sym_SLASH] = ACTIONS(374), - [anon_sym_PERCENT] = ACTIONS(374), - [anon_sym_CARET] = ACTIONS(374), - [anon_sym_BANG] = ACTIONS(460), - [anon_sym_AMP] = ACTIONS(510), - [anon_sym_PIPE] = ACTIONS(378), - [anon_sym_AMP_AMP] = ACTIONS(372), - [anon_sym_PIPE_PIPE] = ACTIONS(372), - [anon_sym_LT_LT] = ACTIONS(374), - [anon_sym_GT_GT] = ACTIONS(374), - [anon_sym_PLUS_EQ] = ACTIONS(372), - [anon_sym_DASH_EQ] = ACTIONS(372), - [anon_sym_STAR_EQ] = ACTIONS(372), - [anon_sym_SLASH_EQ] = ACTIONS(372), - [anon_sym_PERCENT_EQ] = ACTIONS(372), - [anon_sym_CARET_EQ] = ACTIONS(372), - [anon_sym_AMP_EQ] = ACTIONS(372), - [anon_sym_PIPE_EQ] = ACTIONS(372), - [anon_sym_LT_LT_EQ] = ACTIONS(372), - [anon_sym_GT_GT_EQ] = ACTIONS(372), - [anon_sym_EQ] = ACTIONS(374), - [anon_sym_EQ_EQ] = ACTIONS(372), - [anon_sym_BANG_EQ] = ACTIONS(372), - [anon_sym_GT] = ACTIONS(374), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_GT_EQ] = ACTIONS(372), - [anon_sym_LT_EQ] = ACTIONS(372), - [anon_sym_DOT] = ACTIONS(374), - [anon_sym_DOT_DOT] = ACTIONS(512), - [anon_sym_DOT_DOT_DOT] = ACTIONS(372), - [anon_sym_DOT_DOT_EQ] = ACTIONS(372), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(374), + [sym_identifier] = ACTIONS(466), + [anon_sym_LPAREN] = ACTIONS(384), + [anon_sym_LBRACK] = ACTIONS(384), + [anon_sym_LBRACE] = ACTIONS(384), + [anon_sym_PLUS] = ACTIONS(386), + [anon_sym_STAR] = ACTIONS(386), + [anon_sym_QMARK] = ACTIONS(384), + [anon_sym_u8] = ACTIONS(468), + [anon_sym_i8] = ACTIONS(468), + [anon_sym_u16] = ACTIONS(468), + [anon_sym_i16] = ACTIONS(468), + [anon_sym_u32] = ACTIONS(468), + [anon_sym_i32] = ACTIONS(468), + [anon_sym_u64] = ACTIONS(468), + [anon_sym_i64] = ACTIONS(468), + [anon_sym_u128] = ACTIONS(468), + [anon_sym_i128] = ACTIONS(468), + [anon_sym_isize] = ACTIONS(468), + [anon_sym_usize] = ACTIONS(468), + [anon_sym_f32] = ACTIONS(468), + [anon_sym_f64] = ACTIONS(468), + [anon_sym_bool] = ACTIONS(468), + [anon_sym_str] = ACTIONS(468), + [anon_sym_char] = ACTIONS(468), + [anon_sym_DASH] = ACTIONS(386), + [anon_sym_SLASH] = ACTIONS(386), + [anon_sym_PERCENT] = ACTIONS(386), + [anon_sym_CARET] = ACTIONS(386), + [anon_sym_BANG] = ACTIONS(492), + [anon_sym_AMP] = ACTIONS(386), + [anon_sym_PIPE] = ACTIONS(386), + [anon_sym_AMP_AMP] = ACTIONS(384), + [anon_sym_PIPE_PIPE] = ACTIONS(384), + [anon_sym_LT_LT] = ACTIONS(386), + [anon_sym_GT_GT] = ACTIONS(386), + [anon_sym_PLUS_EQ] = ACTIONS(384), + [anon_sym_DASH_EQ] = ACTIONS(384), + [anon_sym_STAR_EQ] = ACTIONS(384), + [anon_sym_SLASH_EQ] = ACTIONS(384), + [anon_sym_PERCENT_EQ] = ACTIONS(384), + [anon_sym_CARET_EQ] = ACTIONS(384), + [anon_sym_AMP_EQ] = ACTIONS(384), + [anon_sym_PIPE_EQ] = ACTIONS(384), + [anon_sym_LT_LT_EQ] = ACTIONS(384), + [anon_sym_GT_GT_EQ] = ACTIONS(384), + [anon_sym_EQ] = ACTIONS(386), + [anon_sym_EQ_EQ] = ACTIONS(384), + [anon_sym_BANG_EQ] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(386), + [anon_sym_LT] = ACTIONS(386), + [anon_sym_GT_EQ] = ACTIONS(384), + [anon_sym_LT_EQ] = ACTIONS(384), + [anon_sym_DOT] = ACTIONS(386), + [anon_sym_DOT_DOT] = ACTIONS(386), + [anon_sym_DOT_DOT_DOT] = ACTIONS(384), + [anon_sym_DOT_DOT_EQ] = ACTIONS(384), + [anon_sym_COLON_COLON] = ACTIONS(472), + [anon_sym_SQUOTE] = ACTIONS(386), + [anon_sym_as] = ACTIONS(386), [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(464), + [anon_sym_break] = ACTIONS(494), [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(466), + [anon_sym_continue] = ACTIONS(496), + [anon_sym_default] = ACTIONS(476), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), [anon_sym_loop] = ACTIONS(356), [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(468), - [anon_sym_static] = ACTIONS(470), - [anon_sym_union] = ACTIONS(466), + [anon_sym_return] = ACTIONS(498), + [anon_sym_static] = ACTIONS(500), + [anon_sym_union] = ACTIONS(476), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(472), - [anon_sym_move] = ACTIONS(474), + [anon_sym_yield] = ACTIONS(502), + [anon_sym_move] = ACTIONS(504), [anon_sym_try] = ACTIONS(366), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -21816,137 +21824,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), + [sym_self] = ACTIONS(486), + [sym_super] = ACTIONS(488), + [sym_crate] = ACTIONS(488), + [sym_metavariable] = ACTIONS(490), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, [55] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1722), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2731), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1602), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(236), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), [sym_line_comment] = STATE(55), [sym_block_comment] = STATE(55), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_LBRACK] = ACTIONS(368), - [anon_sym_LBRACE] = ACTIONS(368), - [anon_sym_PLUS] = ACTIONS(370), - [anon_sym_STAR] = ACTIONS(370), - [anon_sym_QMARK] = ACTIONS(368), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(370), - [anon_sym_SLASH] = ACTIONS(370), - [anon_sym_PERCENT] = ACTIONS(370), - [anon_sym_CARET] = ACTIONS(370), - [anon_sym_BANG] = ACTIONS(460), - [anon_sym_AMP] = ACTIONS(370), - [anon_sym_PIPE] = ACTIONS(370), - [anon_sym_AMP_AMP] = ACTIONS(368), - [anon_sym_PIPE_PIPE] = ACTIONS(368), - [anon_sym_LT_LT] = ACTIONS(370), - [anon_sym_GT_GT] = ACTIONS(370), - [anon_sym_PLUS_EQ] = ACTIONS(368), - [anon_sym_DASH_EQ] = ACTIONS(368), - [anon_sym_STAR_EQ] = ACTIONS(368), - [anon_sym_SLASH_EQ] = ACTIONS(368), - [anon_sym_PERCENT_EQ] = ACTIONS(368), - [anon_sym_CARET_EQ] = ACTIONS(368), - [anon_sym_AMP_EQ] = ACTIONS(368), - [anon_sym_PIPE_EQ] = ACTIONS(368), - [anon_sym_LT_LT_EQ] = ACTIONS(368), - [anon_sym_GT_GT_EQ] = ACTIONS(368), - [anon_sym_EQ] = ACTIONS(370), - [anon_sym_EQ_EQ] = ACTIONS(368), - [anon_sym_BANG_EQ] = ACTIONS(368), - [anon_sym_GT] = ACTIONS(370), - [anon_sym_LT] = ACTIONS(370), - [anon_sym_GT_EQ] = ACTIONS(368), - [anon_sym_LT_EQ] = ACTIONS(368), - [anon_sym_DOT] = ACTIONS(370), - [anon_sym_DOT_DOT] = ACTIONS(370), - [anon_sym_DOT_DOT_DOT] = ACTIONS(368), - [anon_sym_DOT_DOT_EQ] = ACTIONS(368), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(370), + [sym_identifier] = ACTIONS(466), + [anon_sym_LPAREN] = ACTIONS(390), + [anon_sym_LBRACK] = ACTIONS(390), + [anon_sym_LBRACE] = ACTIONS(390), + [anon_sym_PLUS] = ACTIONS(392), + [anon_sym_STAR] = ACTIONS(392), + [anon_sym_QMARK] = ACTIONS(390), + [anon_sym_u8] = ACTIONS(468), + [anon_sym_i8] = ACTIONS(468), + [anon_sym_u16] = ACTIONS(468), + [anon_sym_i16] = ACTIONS(468), + [anon_sym_u32] = ACTIONS(468), + [anon_sym_i32] = ACTIONS(468), + [anon_sym_u64] = ACTIONS(468), + [anon_sym_i64] = ACTIONS(468), + [anon_sym_u128] = ACTIONS(468), + [anon_sym_i128] = ACTIONS(468), + [anon_sym_isize] = ACTIONS(468), + [anon_sym_usize] = ACTIONS(468), + [anon_sym_f32] = ACTIONS(468), + [anon_sym_f64] = ACTIONS(468), + [anon_sym_bool] = ACTIONS(468), + [anon_sym_str] = ACTIONS(468), + [anon_sym_char] = ACTIONS(468), + [anon_sym_DASH] = ACTIONS(392), + [anon_sym_SLASH] = ACTIONS(392), + [anon_sym_PERCENT] = ACTIONS(392), + [anon_sym_CARET] = ACTIONS(392), + [anon_sym_BANG] = ACTIONS(492), + [anon_sym_AMP] = ACTIONS(392), + [anon_sym_PIPE] = ACTIONS(392), + [anon_sym_AMP_AMP] = ACTIONS(390), + [anon_sym_PIPE_PIPE] = ACTIONS(390), + [anon_sym_LT_LT] = ACTIONS(392), + [anon_sym_GT_GT] = ACTIONS(392), + [anon_sym_PLUS_EQ] = ACTIONS(390), + [anon_sym_DASH_EQ] = ACTIONS(390), + [anon_sym_STAR_EQ] = ACTIONS(390), + [anon_sym_SLASH_EQ] = ACTIONS(390), + [anon_sym_PERCENT_EQ] = ACTIONS(390), + [anon_sym_CARET_EQ] = ACTIONS(390), + [anon_sym_AMP_EQ] = ACTIONS(390), + [anon_sym_PIPE_EQ] = ACTIONS(390), + [anon_sym_LT_LT_EQ] = ACTIONS(390), + [anon_sym_GT_GT_EQ] = ACTIONS(390), + [anon_sym_EQ] = ACTIONS(392), + [anon_sym_EQ_EQ] = ACTIONS(390), + [anon_sym_BANG_EQ] = ACTIONS(390), + [anon_sym_GT] = ACTIONS(392), + [anon_sym_LT] = ACTIONS(392), + [anon_sym_GT_EQ] = ACTIONS(390), + [anon_sym_LT_EQ] = ACTIONS(390), + [anon_sym_DOT] = ACTIONS(392), + [anon_sym_DOT_DOT] = ACTIONS(392), + [anon_sym_DOT_DOT_DOT] = ACTIONS(390), + [anon_sym_DOT_DOT_EQ] = ACTIONS(390), + [anon_sym_COLON_COLON] = ACTIONS(472), + [anon_sym_SQUOTE] = ACTIONS(392), + [anon_sym_as] = ACTIONS(392), [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(464), + [anon_sym_break] = ACTIONS(494), [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(466), + [anon_sym_continue] = ACTIONS(496), + [anon_sym_default] = ACTIONS(476), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), [anon_sym_loop] = ACTIONS(356), [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(468), - [anon_sym_static] = ACTIONS(470), - [anon_sym_union] = ACTIONS(466), + [anon_sym_return] = ACTIONS(498), + [anon_sym_static] = ACTIONS(500), + [anon_sym_union] = ACTIONS(476), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(472), - [anon_sym_move] = ACTIONS(474), + [anon_sym_yield] = ACTIONS(502), + [anon_sym_move] = ACTIONS(504), [anon_sym_try] = ACTIONS(366), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -21955,137 +21963,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), + [sym_self] = ACTIONS(486), + [sym_super] = ACTIONS(488), + [sym_crate] = ACTIONS(488), + [sym_metavariable] = ACTIONS(490), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, [56] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1579), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2731), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1795), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(223), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), [sym_line_comment] = STATE(56), [sym_block_comment] = STATE(56), - [sym_identifier] = ACTIONS(456), + [sym_identifier] = ACTIONS(466), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(368), - [anon_sym_LBRACE] = ACTIONS(368), - [anon_sym_PLUS] = ACTIONS(370), - [anon_sym_STAR] = ACTIONS(370), - [anon_sym_QMARK] = ACTIONS(368), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(370), - [anon_sym_SLASH] = ACTIONS(370), - [anon_sym_PERCENT] = ACTIONS(370), - [anon_sym_CARET] = ACTIONS(370), - [anon_sym_BANG] = ACTIONS(492), - [anon_sym_AMP] = ACTIONS(370), - [anon_sym_PIPE] = ACTIONS(370), - [anon_sym_AMP_AMP] = ACTIONS(368), - [anon_sym_PIPE_PIPE] = ACTIONS(368), - [anon_sym_LT_LT] = ACTIONS(370), - [anon_sym_GT_GT] = ACTIONS(370), - [anon_sym_PLUS_EQ] = ACTIONS(368), - [anon_sym_DASH_EQ] = ACTIONS(368), - [anon_sym_STAR_EQ] = ACTIONS(368), - [anon_sym_SLASH_EQ] = ACTIONS(368), - [anon_sym_PERCENT_EQ] = ACTIONS(368), - [anon_sym_CARET_EQ] = ACTIONS(368), - [anon_sym_AMP_EQ] = ACTIONS(368), - [anon_sym_PIPE_EQ] = ACTIONS(368), - [anon_sym_LT_LT_EQ] = ACTIONS(368), - [anon_sym_GT_GT_EQ] = ACTIONS(368), - [anon_sym_EQ] = ACTIONS(370), - [anon_sym_EQ_EQ] = ACTIONS(368), - [anon_sym_BANG_EQ] = ACTIONS(368), - [anon_sym_GT] = ACTIONS(370), - [anon_sym_LT] = ACTIONS(370), - [anon_sym_GT_EQ] = ACTIONS(368), - [anon_sym_LT_EQ] = ACTIONS(368), - [anon_sym_DOT] = ACTIONS(370), - [anon_sym_DOT_DOT] = ACTIONS(370), - [anon_sym_DOT_DOT_DOT] = ACTIONS(368), - [anon_sym_DOT_DOT_EQ] = ACTIONS(368), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(370), - [anon_sym_as] = ACTIONS(370), + [anon_sym_LBRACK] = ACTIONS(390), + [anon_sym_LBRACE] = ACTIONS(390), + [anon_sym_PLUS] = ACTIONS(392), + [anon_sym_STAR] = ACTIONS(392), + [anon_sym_QMARK] = ACTIONS(390), + [anon_sym_u8] = ACTIONS(468), + [anon_sym_i8] = ACTIONS(468), + [anon_sym_u16] = ACTIONS(468), + [anon_sym_i16] = ACTIONS(468), + [anon_sym_u32] = ACTIONS(468), + [anon_sym_i32] = ACTIONS(468), + [anon_sym_u64] = ACTIONS(468), + [anon_sym_i64] = ACTIONS(468), + [anon_sym_u128] = ACTIONS(468), + [anon_sym_i128] = ACTIONS(468), + [anon_sym_isize] = ACTIONS(468), + [anon_sym_usize] = ACTIONS(468), + [anon_sym_f32] = ACTIONS(468), + [anon_sym_f64] = ACTIONS(468), + [anon_sym_bool] = ACTIONS(468), + [anon_sym_str] = ACTIONS(468), + [anon_sym_char] = ACTIONS(468), + [anon_sym_DASH] = ACTIONS(392), + [anon_sym_SLASH] = ACTIONS(392), + [anon_sym_PERCENT] = ACTIONS(392), + [anon_sym_CARET] = ACTIONS(392), + [anon_sym_BANG] = ACTIONS(470), + [anon_sym_AMP] = ACTIONS(392), + [anon_sym_PIPE] = ACTIONS(392), + [anon_sym_AMP_AMP] = ACTIONS(390), + [anon_sym_PIPE_PIPE] = ACTIONS(390), + [anon_sym_LT_LT] = ACTIONS(392), + [anon_sym_GT_GT] = ACTIONS(392), + [anon_sym_PLUS_EQ] = ACTIONS(390), + [anon_sym_DASH_EQ] = ACTIONS(390), + [anon_sym_STAR_EQ] = ACTIONS(390), + [anon_sym_SLASH_EQ] = ACTIONS(390), + [anon_sym_PERCENT_EQ] = ACTIONS(390), + [anon_sym_CARET_EQ] = ACTIONS(390), + [anon_sym_AMP_EQ] = ACTIONS(390), + [anon_sym_PIPE_EQ] = ACTIONS(390), + [anon_sym_LT_LT_EQ] = ACTIONS(390), + [anon_sym_GT_GT_EQ] = ACTIONS(390), + [anon_sym_EQ] = ACTIONS(392), + [anon_sym_EQ_EQ] = ACTIONS(390), + [anon_sym_BANG_EQ] = ACTIONS(390), + [anon_sym_GT] = ACTIONS(392), + [anon_sym_LT] = ACTIONS(392), + [anon_sym_GT_EQ] = ACTIONS(390), + [anon_sym_LT_EQ] = ACTIONS(390), + [anon_sym_DOT] = ACTIONS(392), + [anon_sym_DOT_DOT] = ACTIONS(392), + [anon_sym_DOT_DOT_DOT] = ACTIONS(390), + [anon_sym_DOT_DOT_EQ] = ACTIONS(390), + [anon_sym_COLON_COLON] = ACTIONS(472), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_as] = ACTIONS(392), [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), + [anon_sym_break] = ACTIONS(474), [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(476), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), [anon_sym_loop] = ACTIONS(356), [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), + [anon_sym_return] = ACTIONS(478), + [anon_sym_static] = ACTIONS(480), + [anon_sym_union] = ACTIONS(476), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), + [anon_sym_yield] = ACTIONS(482), + [anon_sym_move] = ACTIONS(484), [anon_sym_try] = ACTIONS(366), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -22094,133 +22102,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), + [sym_self] = ACTIONS(486), + [sym_super] = ACTIONS(488), + [sym_crate] = ACTIONS(488), + [sym_metavariable] = ACTIONS(490), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, [57] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1627), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2731), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1602), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(236), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), [sym_line_comment] = STATE(57), [sym_block_comment] = STATE(57), - [sym_identifier] = ACTIONS(456), + [sym_identifier] = ACTIONS(466), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(384), - [anon_sym_LBRACE] = ACTIONS(384), - [anon_sym_PLUS] = ACTIONS(386), - [anon_sym_STAR] = ACTIONS(386), - [anon_sym_QMARK] = ACTIONS(384), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(386), - [anon_sym_SLASH] = ACTIONS(386), - [anon_sym_PERCENT] = ACTIONS(386), - [anon_sym_CARET] = ACTIONS(386), + [anon_sym_LBRACK] = ACTIONS(390), + [anon_sym_LBRACE] = ACTIONS(390), + [anon_sym_PLUS] = ACTIONS(392), + [anon_sym_STAR] = ACTIONS(392), + [anon_sym_QMARK] = ACTIONS(390), + [anon_sym_u8] = ACTIONS(468), + [anon_sym_i8] = ACTIONS(468), + [anon_sym_u16] = ACTIONS(468), + [anon_sym_i16] = ACTIONS(468), + [anon_sym_u32] = ACTIONS(468), + [anon_sym_i32] = ACTIONS(468), + [anon_sym_u64] = ACTIONS(468), + [anon_sym_i64] = ACTIONS(468), + [anon_sym_u128] = ACTIONS(468), + [anon_sym_i128] = ACTIONS(468), + [anon_sym_isize] = ACTIONS(468), + [anon_sym_usize] = ACTIONS(468), + [anon_sym_f32] = ACTIONS(468), + [anon_sym_f64] = ACTIONS(468), + [anon_sym_bool] = ACTIONS(468), + [anon_sym_str] = ACTIONS(468), + [anon_sym_char] = ACTIONS(468), + [anon_sym_DASH] = ACTIONS(392), + [anon_sym_SLASH] = ACTIONS(392), + [anon_sym_PERCENT] = ACTIONS(392), + [anon_sym_CARET] = ACTIONS(392), [anon_sym_BANG] = ACTIONS(492), - [anon_sym_AMP] = ACTIONS(386), - [anon_sym_PIPE] = ACTIONS(386), - [anon_sym_AMP_AMP] = ACTIONS(384), - [anon_sym_PIPE_PIPE] = ACTIONS(384), - [anon_sym_LT_LT] = ACTIONS(386), - [anon_sym_GT_GT] = ACTIONS(386), - [anon_sym_PLUS_EQ] = ACTIONS(384), - [anon_sym_DASH_EQ] = ACTIONS(384), - [anon_sym_STAR_EQ] = ACTIONS(384), - [anon_sym_SLASH_EQ] = ACTIONS(384), - [anon_sym_PERCENT_EQ] = ACTIONS(384), - [anon_sym_CARET_EQ] = ACTIONS(384), - [anon_sym_AMP_EQ] = ACTIONS(384), - [anon_sym_PIPE_EQ] = ACTIONS(384), - [anon_sym_LT_LT_EQ] = ACTIONS(384), - [anon_sym_GT_GT_EQ] = ACTIONS(384), - [anon_sym_EQ] = ACTIONS(386), - [anon_sym_EQ_EQ] = ACTIONS(384), - [anon_sym_BANG_EQ] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(386), - [anon_sym_LT] = ACTIONS(386), - [anon_sym_GT_EQ] = ACTIONS(384), - [anon_sym_LT_EQ] = ACTIONS(384), - [anon_sym_DOT] = ACTIONS(386), - [anon_sym_DOT_DOT] = ACTIONS(386), - [anon_sym_DOT_DOT_DOT] = ACTIONS(384), - [anon_sym_DOT_DOT_EQ] = ACTIONS(384), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(386), - [anon_sym_as] = ACTIONS(386), + [anon_sym_AMP] = ACTIONS(392), + [anon_sym_PIPE] = ACTIONS(392), + [anon_sym_AMP_AMP] = ACTIONS(390), + [anon_sym_PIPE_PIPE] = ACTIONS(390), + [anon_sym_LT_LT] = ACTIONS(392), + [anon_sym_GT_GT] = ACTIONS(392), + [anon_sym_PLUS_EQ] = ACTIONS(390), + [anon_sym_DASH_EQ] = ACTIONS(390), + [anon_sym_STAR_EQ] = ACTIONS(390), + [anon_sym_SLASH_EQ] = ACTIONS(390), + [anon_sym_PERCENT_EQ] = ACTIONS(390), + [anon_sym_CARET_EQ] = ACTIONS(390), + [anon_sym_AMP_EQ] = ACTIONS(390), + [anon_sym_PIPE_EQ] = ACTIONS(390), + [anon_sym_LT_LT_EQ] = ACTIONS(390), + [anon_sym_GT_GT_EQ] = ACTIONS(390), + [anon_sym_EQ] = ACTIONS(392), + [anon_sym_EQ_EQ] = ACTIONS(390), + [anon_sym_BANG_EQ] = ACTIONS(390), + [anon_sym_GT] = ACTIONS(392), + [anon_sym_LT] = ACTIONS(392), + [anon_sym_GT_EQ] = ACTIONS(390), + [anon_sym_LT_EQ] = ACTIONS(390), + [anon_sym_DOT] = ACTIONS(392), + [anon_sym_DOT_DOT] = ACTIONS(392), + [anon_sym_DOT_DOT_DOT] = ACTIONS(390), + [anon_sym_DOT_DOT_EQ] = ACTIONS(390), + [anon_sym_COLON_COLON] = ACTIONS(472), + [anon_sym_SQUOTE] = ACTIONS(392), + [anon_sym_as] = ACTIONS(392), [anon_sym_async] = ACTIONS(346), [anon_sym_break] = ACTIONS(494), [anon_sym_const] = ACTIONS(348), [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), + [anon_sym_default] = ACTIONS(476), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), [anon_sym_loop] = ACTIONS(356), [anon_sym_match] = ACTIONS(358), [anon_sym_return] = ACTIONS(498), [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), + [anon_sym_union] = ACTIONS(476), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), [anon_sym_yield] = ACTIONS(502), @@ -22233,93 +22241,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), + [sym_self] = ACTIONS(486), + [sym_super] = ACTIONS(488), + [sym_crate] = ACTIONS(488), + [sym_metavariable] = ACTIONS(490), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, [58] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1579), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2731), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1606), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(236), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), [sym_line_comment] = STATE(58), [sym_block_comment] = STATE(58), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_LBRACK] = ACTIONS(368), - [anon_sym_LBRACE] = ACTIONS(368), + [sym_identifier] = ACTIONS(466), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(338), [anon_sym_PLUS] = ACTIONS(370), - [anon_sym_STAR] = ACTIONS(370), + [anon_sym_STAR] = ACTIONS(492), [anon_sym_QMARK] = ACTIONS(368), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(370), + [anon_sym_u8] = ACTIONS(468), + [anon_sym_i8] = ACTIONS(468), + [anon_sym_u16] = ACTIONS(468), + [anon_sym_i16] = ACTIONS(468), + [anon_sym_u32] = ACTIONS(468), + [anon_sym_i32] = ACTIONS(468), + [anon_sym_u64] = ACTIONS(468), + [anon_sym_i64] = ACTIONS(468), + [anon_sym_u128] = ACTIONS(468), + [anon_sym_i128] = ACTIONS(468), + [anon_sym_isize] = ACTIONS(468), + [anon_sym_usize] = ACTIONS(468), + [anon_sym_f32] = ACTIONS(468), + [anon_sym_f64] = ACTIONS(468), + [anon_sym_bool] = ACTIONS(468), + [anon_sym_str] = ACTIONS(468), + [anon_sym_char] = ACTIONS(468), + [anon_sym_DASH] = ACTIONS(492), [anon_sym_SLASH] = ACTIONS(370), [anon_sym_PERCENT] = ACTIONS(370), [anon_sym_CARET] = ACTIONS(370), [anon_sym_BANG] = ACTIONS(492), - [anon_sym_AMP] = ACTIONS(370), - [anon_sym_PIPE] = ACTIONS(370), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_PIPE] = ACTIONS(374), [anon_sym_AMP_AMP] = ACTIONS(368), [anon_sym_PIPE_PIPE] = ACTIONS(368), [anon_sym_LT_LT] = ACTIONS(370), @@ -22338,28 +22346,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_EQ] = ACTIONS(368), [anon_sym_BANG_EQ] = ACTIONS(368), [anon_sym_GT] = ACTIONS(370), - [anon_sym_LT] = ACTIONS(370), + [anon_sym_LT] = ACTIONS(376), [anon_sym_GT_EQ] = ACTIONS(368), [anon_sym_LT_EQ] = ACTIONS(368), [anon_sym_DOT] = ACTIONS(370), - [anon_sym_DOT_DOT] = ACTIONS(370), + [anon_sym_DOT_DOT] = ACTIONS(508), [anon_sym_DOT_DOT_DOT] = ACTIONS(368), [anon_sym_DOT_DOT_EQ] = ACTIONS(368), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(370), + [anon_sym_COLON_COLON] = ACTIONS(472), + [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_as] = ACTIONS(370), [anon_sym_async] = ACTIONS(346), [anon_sym_break] = ACTIONS(494), [anon_sym_const] = ACTIONS(348), [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), + [anon_sym_default] = ACTIONS(476), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), [anon_sym_loop] = ACTIONS(356), [anon_sym_match] = ACTIONS(358), [anon_sym_return] = ACTIONS(498), [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), + [anon_sym_union] = ACTIONS(476), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), [anon_sym_yield] = ACTIONS(502), @@ -22372,137 +22380,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), + [sym_self] = ACTIONS(486), + [sym_super] = ACTIONS(488), + [sym_crate] = ACTIONS(488), + [sym_metavariable] = ACTIONS(490), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, [59] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1577), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2731), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1770), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(223), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), [sym_line_comment] = STATE(59), [sym_block_comment] = STATE(59), - [sym_identifier] = ACTIONS(456), + [sym_identifier] = ACTIONS(466), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_PLUS] = ACTIONS(374), - [anon_sym_STAR] = ACTIONS(492), - [anon_sym_QMARK] = ACTIONS(372), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(492), - [anon_sym_SLASH] = ACTIONS(374), - [anon_sym_PERCENT] = ACTIONS(374), - [anon_sym_CARET] = ACTIONS(374), - [anon_sym_BANG] = ACTIONS(492), - [anon_sym_AMP] = ACTIONS(506), - [anon_sym_PIPE] = ACTIONS(378), - [anon_sym_AMP_AMP] = ACTIONS(372), - [anon_sym_PIPE_PIPE] = ACTIONS(372), - [anon_sym_LT_LT] = ACTIONS(374), - [anon_sym_GT_GT] = ACTIONS(374), - [anon_sym_PLUS_EQ] = ACTIONS(372), - [anon_sym_DASH_EQ] = ACTIONS(372), - [anon_sym_STAR_EQ] = ACTIONS(372), - [anon_sym_SLASH_EQ] = ACTIONS(372), - [anon_sym_PERCENT_EQ] = ACTIONS(372), - [anon_sym_CARET_EQ] = ACTIONS(372), - [anon_sym_AMP_EQ] = ACTIONS(372), - [anon_sym_PIPE_EQ] = ACTIONS(372), - [anon_sym_LT_LT_EQ] = ACTIONS(372), - [anon_sym_GT_GT_EQ] = ACTIONS(372), - [anon_sym_EQ] = ACTIONS(374), - [anon_sym_EQ_EQ] = ACTIONS(372), - [anon_sym_BANG_EQ] = ACTIONS(372), - [anon_sym_GT] = ACTIONS(374), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_GT_EQ] = ACTIONS(372), - [anon_sym_LT_EQ] = ACTIONS(372), - [anon_sym_DOT] = ACTIONS(374), - [anon_sym_DOT_DOT] = ACTIONS(508), - [anon_sym_DOT_DOT_DOT] = ACTIONS(372), - [anon_sym_DOT_DOT_EQ] = ACTIONS(372), - [anon_sym_COLON_COLON] = ACTIONS(462), + [anon_sym_PLUS] = ACTIONS(396), + [anon_sym_STAR] = ACTIONS(470), + [anon_sym_QMARK] = ACTIONS(394), + [anon_sym_u8] = ACTIONS(468), + [anon_sym_i8] = ACTIONS(468), + [anon_sym_u16] = ACTIONS(468), + [anon_sym_i16] = ACTIONS(468), + [anon_sym_u32] = ACTIONS(468), + [anon_sym_i32] = ACTIONS(468), + [anon_sym_u64] = ACTIONS(468), + [anon_sym_i64] = ACTIONS(468), + [anon_sym_u128] = ACTIONS(468), + [anon_sym_i128] = ACTIONS(468), + [anon_sym_isize] = ACTIONS(468), + [anon_sym_usize] = ACTIONS(468), + [anon_sym_f32] = ACTIONS(468), + [anon_sym_f64] = ACTIONS(468), + [anon_sym_bool] = ACTIONS(468), + [anon_sym_str] = ACTIONS(468), + [anon_sym_char] = ACTIONS(468), + [anon_sym_DASH] = ACTIONS(470), + [anon_sym_SLASH] = ACTIONS(396), + [anon_sym_PERCENT] = ACTIONS(396), + [anon_sym_CARET] = ACTIONS(396), + [anon_sym_BANG] = ACTIONS(470), + [anon_sym_AMP] = ACTIONS(510), + [anon_sym_PIPE] = ACTIONS(374), + [anon_sym_AMP_AMP] = ACTIONS(394), + [anon_sym_PIPE_PIPE] = ACTIONS(394), + [anon_sym_LT_LT] = ACTIONS(396), + [anon_sym_GT_GT] = ACTIONS(396), + [anon_sym_PLUS_EQ] = ACTIONS(394), + [anon_sym_DASH_EQ] = ACTIONS(394), + [anon_sym_STAR_EQ] = ACTIONS(394), + [anon_sym_SLASH_EQ] = ACTIONS(394), + [anon_sym_PERCENT_EQ] = ACTIONS(394), + [anon_sym_CARET_EQ] = ACTIONS(394), + [anon_sym_AMP_EQ] = ACTIONS(394), + [anon_sym_PIPE_EQ] = ACTIONS(394), + [anon_sym_LT_LT_EQ] = ACTIONS(394), + [anon_sym_GT_GT_EQ] = ACTIONS(394), + [anon_sym_EQ] = ACTIONS(396), + [anon_sym_EQ_EQ] = ACTIONS(394), + [anon_sym_BANG_EQ] = ACTIONS(394), + [anon_sym_GT] = ACTIONS(396), + [anon_sym_LT] = ACTIONS(376), + [anon_sym_GT_EQ] = ACTIONS(394), + [anon_sym_LT_EQ] = ACTIONS(394), + [anon_sym_DOT] = ACTIONS(396), + [anon_sym_DOT_DOT] = ACTIONS(512), + [anon_sym_DOT_DOT_DOT] = ACTIONS(394), + [anon_sym_DOT_DOT_EQ] = ACTIONS(394), + [anon_sym_COLON_COLON] = ACTIONS(472), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(374), + [anon_sym_as] = ACTIONS(396), [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), + [anon_sym_break] = ACTIONS(474), [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(476), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), [anon_sym_loop] = ACTIONS(356), [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), + [anon_sym_return] = ACTIONS(478), + [anon_sym_static] = ACTIONS(480), + [anon_sym_union] = ACTIONS(476), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), + [anon_sym_yield] = ACTIONS(482), + [anon_sym_move] = ACTIONS(484), [anon_sym_try] = ACTIONS(366), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -22511,137 +22519,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), + [sym_self] = ACTIONS(486), + [sym_super] = ACTIONS(488), + [sym_crate] = ACTIONS(488), + [sym_metavariable] = ACTIONS(490), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, [60] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1811), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2731), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1795), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(223), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), [sym_line_comment] = STATE(60), [sym_block_comment] = STATE(60), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(384), - [anon_sym_LBRACE] = ACTIONS(384), - [anon_sym_PLUS] = ACTIONS(386), - [anon_sym_STAR] = ACTIONS(386), - [anon_sym_QMARK] = ACTIONS(384), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(386), - [anon_sym_SLASH] = ACTIONS(386), - [anon_sym_PERCENT] = ACTIONS(386), - [anon_sym_CARET] = ACTIONS(386), - [anon_sym_BANG] = ACTIONS(460), - [anon_sym_AMP] = ACTIONS(386), - [anon_sym_PIPE] = ACTIONS(386), - [anon_sym_AMP_AMP] = ACTIONS(384), - [anon_sym_PIPE_PIPE] = ACTIONS(384), - [anon_sym_LT_LT] = ACTIONS(386), - [anon_sym_GT_GT] = ACTIONS(386), - [anon_sym_PLUS_EQ] = ACTIONS(384), - [anon_sym_DASH_EQ] = ACTIONS(384), - [anon_sym_STAR_EQ] = ACTIONS(384), - [anon_sym_SLASH_EQ] = ACTIONS(384), - [anon_sym_PERCENT_EQ] = ACTIONS(384), - [anon_sym_CARET_EQ] = ACTIONS(384), - [anon_sym_AMP_EQ] = ACTIONS(384), - [anon_sym_PIPE_EQ] = ACTIONS(384), - [anon_sym_LT_LT_EQ] = ACTIONS(384), - [anon_sym_GT_GT_EQ] = ACTIONS(384), - [anon_sym_EQ] = ACTIONS(386), - [anon_sym_EQ_EQ] = ACTIONS(384), - [anon_sym_BANG_EQ] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(386), - [anon_sym_LT] = ACTIONS(386), - [anon_sym_GT_EQ] = ACTIONS(384), - [anon_sym_LT_EQ] = ACTIONS(384), - [anon_sym_DOT] = ACTIONS(386), - [anon_sym_DOT_DOT] = ACTIONS(386), - [anon_sym_DOT_DOT_DOT] = ACTIONS(384), - [anon_sym_DOT_DOT_EQ] = ACTIONS(384), - [anon_sym_COLON_COLON] = ACTIONS(462), + [sym_identifier] = ACTIONS(466), + [anon_sym_LPAREN] = ACTIONS(390), + [anon_sym_LBRACK] = ACTIONS(390), + [anon_sym_LBRACE] = ACTIONS(390), + [anon_sym_PLUS] = ACTIONS(392), + [anon_sym_STAR] = ACTIONS(392), + [anon_sym_QMARK] = ACTIONS(390), + [anon_sym_u8] = ACTIONS(468), + [anon_sym_i8] = ACTIONS(468), + [anon_sym_u16] = ACTIONS(468), + [anon_sym_i16] = ACTIONS(468), + [anon_sym_u32] = ACTIONS(468), + [anon_sym_i32] = ACTIONS(468), + [anon_sym_u64] = ACTIONS(468), + [anon_sym_i64] = ACTIONS(468), + [anon_sym_u128] = ACTIONS(468), + [anon_sym_i128] = ACTIONS(468), + [anon_sym_isize] = ACTIONS(468), + [anon_sym_usize] = ACTIONS(468), + [anon_sym_f32] = ACTIONS(468), + [anon_sym_f64] = ACTIONS(468), + [anon_sym_bool] = ACTIONS(468), + [anon_sym_str] = ACTIONS(468), + [anon_sym_char] = ACTIONS(468), + [anon_sym_DASH] = ACTIONS(392), + [anon_sym_SLASH] = ACTIONS(392), + [anon_sym_PERCENT] = ACTIONS(392), + [anon_sym_CARET] = ACTIONS(392), + [anon_sym_BANG] = ACTIONS(470), + [anon_sym_AMP] = ACTIONS(392), + [anon_sym_PIPE] = ACTIONS(392), + [anon_sym_AMP_AMP] = ACTIONS(390), + [anon_sym_PIPE_PIPE] = ACTIONS(390), + [anon_sym_LT_LT] = ACTIONS(392), + [anon_sym_GT_GT] = ACTIONS(392), + [anon_sym_PLUS_EQ] = ACTIONS(390), + [anon_sym_DASH_EQ] = ACTIONS(390), + [anon_sym_STAR_EQ] = ACTIONS(390), + [anon_sym_SLASH_EQ] = ACTIONS(390), + [anon_sym_PERCENT_EQ] = ACTIONS(390), + [anon_sym_CARET_EQ] = ACTIONS(390), + [anon_sym_AMP_EQ] = ACTIONS(390), + [anon_sym_PIPE_EQ] = ACTIONS(390), + [anon_sym_LT_LT_EQ] = ACTIONS(390), + [anon_sym_GT_GT_EQ] = ACTIONS(390), + [anon_sym_EQ] = ACTIONS(392), + [anon_sym_EQ_EQ] = ACTIONS(390), + [anon_sym_BANG_EQ] = ACTIONS(390), + [anon_sym_GT] = ACTIONS(392), + [anon_sym_LT] = ACTIONS(392), + [anon_sym_GT_EQ] = ACTIONS(390), + [anon_sym_LT_EQ] = ACTIONS(390), + [anon_sym_DOT] = ACTIONS(392), + [anon_sym_DOT_DOT] = ACTIONS(392), + [anon_sym_DOT_DOT_DOT] = ACTIONS(390), + [anon_sym_DOT_DOT_EQ] = ACTIONS(390), + [anon_sym_COLON_COLON] = ACTIONS(472), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(386), + [anon_sym_as] = ACTIONS(392), [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(464), + [anon_sym_break] = ACTIONS(474), [anon_sym_const] = ACTIONS(348), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(466), + [anon_sym_default] = ACTIONS(476), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), [anon_sym_loop] = ACTIONS(356), [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(468), - [anon_sym_static] = ACTIONS(470), - [anon_sym_union] = ACTIONS(466), + [anon_sym_return] = ACTIONS(478), + [anon_sym_static] = ACTIONS(480), + [anon_sym_union] = ACTIONS(476), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(472), - [anon_sym_move] = ACTIONS(474), + [anon_sym_yield] = ACTIONS(482), + [anon_sym_move] = ACTIONS(484), [anon_sym_try] = ACTIONS(366), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -22650,137 +22658,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), + [sym_self] = ACTIONS(486), + [sym_super] = ACTIONS(488), + [sym_crate] = ACTIONS(488), + [sym_metavariable] = ACTIONS(490), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, [61] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1722), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2731), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1620), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(236), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), [sym_line_comment] = STATE(61), [sym_block_comment] = STATE(61), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(368), - [anon_sym_LBRACE] = ACTIONS(368), - [anon_sym_PLUS] = ACTIONS(370), - [anon_sym_STAR] = ACTIONS(370), - [anon_sym_QMARK] = ACTIONS(368), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(370), - [anon_sym_SLASH] = ACTIONS(370), - [anon_sym_PERCENT] = ACTIONS(370), - [anon_sym_CARET] = ACTIONS(370), - [anon_sym_BANG] = ACTIONS(460), - [anon_sym_AMP] = ACTIONS(370), - [anon_sym_PIPE] = ACTIONS(370), - [anon_sym_AMP_AMP] = ACTIONS(368), - [anon_sym_PIPE_PIPE] = ACTIONS(368), - [anon_sym_LT_LT] = ACTIONS(370), - [anon_sym_GT_GT] = ACTIONS(370), - [anon_sym_PLUS_EQ] = ACTIONS(368), - [anon_sym_DASH_EQ] = ACTIONS(368), - [anon_sym_STAR_EQ] = ACTIONS(368), - [anon_sym_SLASH_EQ] = ACTIONS(368), - [anon_sym_PERCENT_EQ] = ACTIONS(368), - [anon_sym_CARET_EQ] = ACTIONS(368), - [anon_sym_AMP_EQ] = ACTIONS(368), - [anon_sym_PIPE_EQ] = ACTIONS(368), - [anon_sym_LT_LT_EQ] = ACTIONS(368), - [anon_sym_GT_GT_EQ] = ACTIONS(368), - [anon_sym_EQ] = ACTIONS(370), - [anon_sym_EQ_EQ] = ACTIONS(368), - [anon_sym_BANG_EQ] = ACTIONS(368), - [anon_sym_GT] = ACTIONS(370), - [anon_sym_LT] = ACTIONS(370), - [anon_sym_GT_EQ] = ACTIONS(368), - [anon_sym_LT_EQ] = ACTIONS(368), - [anon_sym_DOT] = ACTIONS(370), - [anon_sym_DOT_DOT] = ACTIONS(370), - [anon_sym_DOT_DOT_DOT] = ACTIONS(368), - [anon_sym_DOT_DOT_EQ] = ACTIONS(368), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(370), + [sym_identifier] = ACTIONS(466), + [anon_sym_LPAREN] = ACTIONS(380), + [anon_sym_LBRACK] = ACTIONS(380), + [anon_sym_LBRACE] = ACTIONS(380), + [anon_sym_PLUS] = ACTIONS(382), + [anon_sym_STAR] = ACTIONS(382), + [anon_sym_QMARK] = ACTIONS(380), + [anon_sym_u8] = ACTIONS(468), + [anon_sym_i8] = ACTIONS(468), + [anon_sym_u16] = ACTIONS(468), + [anon_sym_i16] = ACTIONS(468), + [anon_sym_u32] = ACTIONS(468), + [anon_sym_i32] = ACTIONS(468), + [anon_sym_u64] = ACTIONS(468), + [anon_sym_i64] = ACTIONS(468), + [anon_sym_u128] = ACTIONS(468), + [anon_sym_i128] = ACTIONS(468), + [anon_sym_isize] = ACTIONS(468), + [anon_sym_usize] = ACTIONS(468), + [anon_sym_f32] = ACTIONS(468), + [anon_sym_f64] = ACTIONS(468), + [anon_sym_bool] = ACTIONS(468), + [anon_sym_str] = ACTIONS(468), + [anon_sym_char] = ACTIONS(468), + [anon_sym_DASH] = ACTIONS(382), + [anon_sym_SLASH] = ACTIONS(382), + [anon_sym_PERCENT] = ACTIONS(382), + [anon_sym_CARET] = ACTIONS(382), + [anon_sym_BANG] = ACTIONS(492), + [anon_sym_AMP] = ACTIONS(382), + [anon_sym_PIPE] = ACTIONS(382), + [anon_sym_AMP_AMP] = ACTIONS(380), + [anon_sym_PIPE_PIPE] = ACTIONS(380), + [anon_sym_LT_LT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(382), + [anon_sym_PLUS_EQ] = ACTIONS(380), + [anon_sym_DASH_EQ] = ACTIONS(380), + [anon_sym_STAR_EQ] = ACTIONS(380), + [anon_sym_SLASH_EQ] = ACTIONS(380), + [anon_sym_PERCENT_EQ] = ACTIONS(380), + [anon_sym_CARET_EQ] = ACTIONS(380), + [anon_sym_AMP_EQ] = ACTIONS(380), + [anon_sym_PIPE_EQ] = ACTIONS(380), + [anon_sym_LT_LT_EQ] = ACTIONS(380), + [anon_sym_GT_GT_EQ] = ACTIONS(380), + [anon_sym_EQ] = ACTIONS(382), + [anon_sym_EQ_EQ] = ACTIONS(380), + [anon_sym_BANG_EQ] = ACTIONS(380), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT_EQ] = ACTIONS(380), + [anon_sym_LT_EQ] = ACTIONS(380), + [anon_sym_DOT] = ACTIONS(382), + [anon_sym_DOT_DOT] = ACTIONS(382), + [anon_sym_DOT_DOT_DOT] = ACTIONS(380), + [anon_sym_DOT_DOT_EQ] = ACTIONS(380), + [anon_sym_COLON_COLON] = ACTIONS(472), + [anon_sym_SQUOTE] = ACTIONS(382), + [anon_sym_as] = ACTIONS(382), [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(464), + [anon_sym_break] = ACTIONS(494), [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(466), + [anon_sym_continue] = ACTIONS(496), + [anon_sym_default] = ACTIONS(476), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), [anon_sym_loop] = ACTIONS(356), [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(468), - [anon_sym_static] = ACTIONS(470), - [anon_sym_union] = ACTIONS(466), + [anon_sym_return] = ACTIONS(498), + [anon_sym_static] = ACTIONS(500), + [anon_sym_union] = ACTIONS(476), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(472), - [anon_sym_move] = ACTIONS(474), + [anon_sym_yield] = ACTIONS(502), + [anon_sym_move] = ACTIONS(504), [anon_sym_try] = ACTIONS(366), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -22789,137 +22797,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), + [sym_self] = ACTIONS(486), + [sym_super] = ACTIONS(488), + [sym_crate] = ACTIONS(488), + [sym_metavariable] = ACTIONS(490), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, [62] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1811), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2731), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1740), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(223), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), [sym_line_comment] = STATE(62), [sym_block_comment] = STATE(62), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(384), - [anon_sym_LBRACE] = ACTIONS(384), - [anon_sym_PLUS] = ACTIONS(386), - [anon_sym_STAR] = ACTIONS(386), - [anon_sym_QMARK] = ACTIONS(384), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(386), - [anon_sym_SLASH] = ACTIONS(386), - [anon_sym_PERCENT] = ACTIONS(386), - [anon_sym_CARET] = ACTIONS(386), - [anon_sym_BANG] = ACTIONS(460), - [anon_sym_AMP] = ACTIONS(386), - [anon_sym_PIPE] = ACTIONS(386), - [anon_sym_AMP_AMP] = ACTIONS(384), - [anon_sym_PIPE_PIPE] = ACTIONS(384), - [anon_sym_LT_LT] = ACTIONS(386), - [anon_sym_GT_GT] = ACTIONS(386), - [anon_sym_PLUS_EQ] = ACTIONS(384), - [anon_sym_DASH_EQ] = ACTIONS(384), - [anon_sym_STAR_EQ] = ACTIONS(384), - [anon_sym_SLASH_EQ] = ACTIONS(384), - [anon_sym_PERCENT_EQ] = ACTIONS(384), - [anon_sym_CARET_EQ] = ACTIONS(384), - [anon_sym_AMP_EQ] = ACTIONS(384), - [anon_sym_PIPE_EQ] = ACTIONS(384), - [anon_sym_LT_LT_EQ] = ACTIONS(384), - [anon_sym_GT_GT_EQ] = ACTIONS(384), - [anon_sym_EQ] = ACTIONS(386), - [anon_sym_EQ_EQ] = ACTIONS(384), - [anon_sym_BANG_EQ] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(386), - [anon_sym_LT] = ACTIONS(386), - [anon_sym_GT_EQ] = ACTIONS(384), - [anon_sym_LT_EQ] = ACTIONS(384), - [anon_sym_DOT] = ACTIONS(386), - [anon_sym_DOT_DOT] = ACTIONS(386), - [anon_sym_DOT_DOT_DOT] = ACTIONS(384), - [anon_sym_DOT_DOT_EQ] = ACTIONS(384), - [anon_sym_COLON_COLON] = ACTIONS(462), + [sym_identifier] = ACTIONS(466), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(380), + [anon_sym_LBRACE] = ACTIONS(380), + [anon_sym_PLUS] = ACTIONS(382), + [anon_sym_STAR] = ACTIONS(382), + [anon_sym_QMARK] = ACTIONS(380), + [anon_sym_u8] = ACTIONS(468), + [anon_sym_i8] = ACTIONS(468), + [anon_sym_u16] = ACTIONS(468), + [anon_sym_i16] = ACTIONS(468), + [anon_sym_u32] = ACTIONS(468), + [anon_sym_i32] = ACTIONS(468), + [anon_sym_u64] = ACTIONS(468), + [anon_sym_i64] = ACTIONS(468), + [anon_sym_u128] = ACTIONS(468), + [anon_sym_i128] = ACTIONS(468), + [anon_sym_isize] = ACTIONS(468), + [anon_sym_usize] = ACTIONS(468), + [anon_sym_f32] = ACTIONS(468), + [anon_sym_f64] = ACTIONS(468), + [anon_sym_bool] = ACTIONS(468), + [anon_sym_str] = ACTIONS(468), + [anon_sym_char] = ACTIONS(468), + [anon_sym_DASH] = ACTIONS(382), + [anon_sym_SLASH] = ACTIONS(382), + [anon_sym_PERCENT] = ACTIONS(382), + [anon_sym_CARET] = ACTIONS(382), + [anon_sym_BANG] = ACTIONS(470), + [anon_sym_AMP] = ACTIONS(382), + [anon_sym_PIPE] = ACTIONS(382), + [anon_sym_AMP_AMP] = ACTIONS(380), + [anon_sym_PIPE_PIPE] = ACTIONS(380), + [anon_sym_LT_LT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(382), + [anon_sym_PLUS_EQ] = ACTIONS(380), + [anon_sym_DASH_EQ] = ACTIONS(380), + [anon_sym_STAR_EQ] = ACTIONS(380), + [anon_sym_SLASH_EQ] = ACTIONS(380), + [anon_sym_PERCENT_EQ] = ACTIONS(380), + [anon_sym_CARET_EQ] = ACTIONS(380), + [anon_sym_AMP_EQ] = ACTIONS(380), + [anon_sym_PIPE_EQ] = ACTIONS(380), + [anon_sym_LT_LT_EQ] = ACTIONS(380), + [anon_sym_GT_GT_EQ] = ACTIONS(380), + [anon_sym_EQ] = ACTIONS(382), + [anon_sym_EQ_EQ] = ACTIONS(380), + [anon_sym_BANG_EQ] = ACTIONS(380), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT_EQ] = ACTIONS(380), + [anon_sym_LT_EQ] = ACTIONS(380), + [anon_sym_DOT] = ACTIONS(382), + [anon_sym_DOT_DOT] = ACTIONS(382), + [anon_sym_DOT_DOT_DOT] = ACTIONS(380), + [anon_sym_DOT_DOT_EQ] = ACTIONS(380), + [anon_sym_COLON_COLON] = ACTIONS(472), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(386), + [anon_sym_as] = ACTIONS(382), [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(464), + [anon_sym_break] = ACTIONS(474), [anon_sym_const] = ACTIONS(348), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(466), + [anon_sym_default] = ACTIONS(476), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), [anon_sym_loop] = ACTIONS(356), [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(468), - [anon_sym_static] = ACTIONS(470), - [anon_sym_union] = ACTIONS(466), + [anon_sym_return] = ACTIONS(478), + [anon_sym_static] = ACTIONS(480), + [anon_sym_union] = ACTIONS(476), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(472), - [anon_sym_move] = ACTIONS(474), + [anon_sym_yield] = ACTIONS(482), + [anon_sym_move] = ACTIONS(484), [anon_sym_try] = ACTIONS(366), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -22928,137 +22936,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), + [sym_self] = ACTIONS(486), + [sym_super] = ACTIONS(488), + [sym_crate] = ACTIONS(488), + [sym_metavariable] = ACTIONS(490), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, [63] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1627), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2731), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1740), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(223), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), [sym_line_comment] = STATE(63), [sym_block_comment] = STATE(63), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(384), - [anon_sym_LBRACE] = ACTIONS(384), - [anon_sym_PLUS] = ACTIONS(386), - [anon_sym_STAR] = ACTIONS(386), - [anon_sym_QMARK] = ACTIONS(384), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(386), - [anon_sym_SLASH] = ACTIONS(386), - [anon_sym_PERCENT] = ACTIONS(386), - [anon_sym_CARET] = ACTIONS(386), - [anon_sym_BANG] = ACTIONS(492), - [anon_sym_AMP] = ACTIONS(386), - [anon_sym_PIPE] = ACTIONS(386), - [anon_sym_AMP_AMP] = ACTIONS(384), - [anon_sym_PIPE_PIPE] = ACTIONS(384), - [anon_sym_LT_LT] = ACTIONS(386), - [anon_sym_GT_GT] = ACTIONS(386), - [anon_sym_PLUS_EQ] = ACTIONS(384), - [anon_sym_DASH_EQ] = ACTIONS(384), - [anon_sym_STAR_EQ] = ACTIONS(384), - [anon_sym_SLASH_EQ] = ACTIONS(384), - [anon_sym_PERCENT_EQ] = ACTIONS(384), - [anon_sym_CARET_EQ] = ACTIONS(384), - [anon_sym_AMP_EQ] = ACTIONS(384), - [anon_sym_PIPE_EQ] = ACTIONS(384), - [anon_sym_LT_LT_EQ] = ACTIONS(384), - [anon_sym_GT_GT_EQ] = ACTIONS(384), - [anon_sym_EQ] = ACTIONS(386), - [anon_sym_EQ_EQ] = ACTIONS(384), - [anon_sym_BANG_EQ] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(386), - [anon_sym_LT] = ACTIONS(386), - [anon_sym_GT_EQ] = ACTIONS(384), - [anon_sym_LT_EQ] = ACTIONS(384), - [anon_sym_DOT] = ACTIONS(386), - [anon_sym_DOT_DOT] = ACTIONS(386), - [anon_sym_DOT_DOT_DOT] = ACTIONS(384), - [anon_sym_DOT_DOT_EQ] = ACTIONS(384), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(386), - [anon_sym_as] = ACTIONS(386), + [sym_identifier] = ACTIONS(466), + [anon_sym_LPAREN] = ACTIONS(380), + [anon_sym_LBRACK] = ACTIONS(380), + [anon_sym_LBRACE] = ACTIONS(380), + [anon_sym_PLUS] = ACTIONS(382), + [anon_sym_STAR] = ACTIONS(382), + [anon_sym_QMARK] = ACTIONS(380), + [anon_sym_u8] = ACTIONS(468), + [anon_sym_i8] = ACTIONS(468), + [anon_sym_u16] = ACTIONS(468), + [anon_sym_i16] = ACTIONS(468), + [anon_sym_u32] = ACTIONS(468), + [anon_sym_i32] = ACTIONS(468), + [anon_sym_u64] = ACTIONS(468), + [anon_sym_i64] = ACTIONS(468), + [anon_sym_u128] = ACTIONS(468), + [anon_sym_i128] = ACTIONS(468), + [anon_sym_isize] = ACTIONS(468), + [anon_sym_usize] = ACTIONS(468), + [anon_sym_f32] = ACTIONS(468), + [anon_sym_f64] = ACTIONS(468), + [anon_sym_bool] = ACTIONS(468), + [anon_sym_str] = ACTIONS(468), + [anon_sym_char] = ACTIONS(468), + [anon_sym_DASH] = ACTIONS(382), + [anon_sym_SLASH] = ACTIONS(382), + [anon_sym_PERCENT] = ACTIONS(382), + [anon_sym_CARET] = ACTIONS(382), + [anon_sym_BANG] = ACTIONS(470), + [anon_sym_AMP] = ACTIONS(382), + [anon_sym_PIPE] = ACTIONS(382), + [anon_sym_AMP_AMP] = ACTIONS(380), + [anon_sym_PIPE_PIPE] = ACTIONS(380), + [anon_sym_LT_LT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(382), + [anon_sym_PLUS_EQ] = ACTIONS(380), + [anon_sym_DASH_EQ] = ACTIONS(380), + [anon_sym_STAR_EQ] = ACTIONS(380), + [anon_sym_SLASH_EQ] = ACTIONS(380), + [anon_sym_PERCENT_EQ] = ACTIONS(380), + [anon_sym_CARET_EQ] = ACTIONS(380), + [anon_sym_AMP_EQ] = ACTIONS(380), + [anon_sym_PIPE_EQ] = ACTIONS(380), + [anon_sym_LT_LT_EQ] = ACTIONS(380), + [anon_sym_GT_GT_EQ] = ACTIONS(380), + [anon_sym_EQ] = ACTIONS(382), + [anon_sym_EQ_EQ] = ACTIONS(380), + [anon_sym_BANG_EQ] = ACTIONS(380), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT_EQ] = ACTIONS(380), + [anon_sym_LT_EQ] = ACTIONS(380), + [anon_sym_DOT] = ACTIONS(382), + [anon_sym_DOT_DOT] = ACTIONS(382), + [anon_sym_DOT_DOT_DOT] = ACTIONS(380), + [anon_sym_DOT_DOT_EQ] = ACTIONS(380), + [anon_sym_COLON_COLON] = ACTIONS(472), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_as] = ACTIONS(382), [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), + [anon_sym_break] = ACTIONS(474), [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(476), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), [anon_sym_loop] = ACTIONS(356), [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), + [anon_sym_return] = ACTIONS(478), + [anon_sym_static] = ACTIONS(480), + [anon_sym_union] = ACTIONS(476), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), + [anon_sym_yield] = ACTIONS(482), + [anon_sym_move] = ACTIONS(484), [anon_sym_try] = ACTIONS(366), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -23067,133 +23075,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), + [sym_self] = ACTIONS(486), + [sym_super] = ACTIONS(488), + [sym_crate] = ACTIONS(488), + [sym_metavariable] = ACTIONS(490), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, [64] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1601), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(52), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2731), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1620), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(236), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), [sym_line_comment] = STATE(64), [sym_block_comment] = STATE(64), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(388), - [anon_sym_LBRACK] = ACTIONS(388), - [anon_sym_LBRACE] = ACTIONS(388), - [anon_sym_PLUS] = ACTIONS(390), - [anon_sym_STAR] = ACTIONS(390), - [anon_sym_QMARK] = ACTIONS(388), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(390), - [anon_sym_SLASH] = ACTIONS(390), - [anon_sym_PERCENT] = ACTIONS(390), - [anon_sym_CARET] = ACTIONS(390), + [sym_identifier] = ACTIONS(466), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(380), + [anon_sym_LBRACE] = ACTIONS(380), + [anon_sym_PLUS] = ACTIONS(382), + [anon_sym_STAR] = ACTIONS(382), + [anon_sym_QMARK] = ACTIONS(380), + [anon_sym_u8] = ACTIONS(468), + [anon_sym_i8] = ACTIONS(468), + [anon_sym_u16] = ACTIONS(468), + [anon_sym_i16] = ACTIONS(468), + [anon_sym_u32] = ACTIONS(468), + [anon_sym_i32] = ACTIONS(468), + [anon_sym_u64] = ACTIONS(468), + [anon_sym_i64] = ACTIONS(468), + [anon_sym_u128] = ACTIONS(468), + [anon_sym_i128] = ACTIONS(468), + [anon_sym_isize] = ACTIONS(468), + [anon_sym_usize] = ACTIONS(468), + [anon_sym_f32] = ACTIONS(468), + [anon_sym_f64] = ACTIONS(468), + [anon_sym_bool] = ACTIONS(468), + [anon_sym_str] = ACTIONS(468), + [anon_sym_char] = ACTIONS(468), + [anon_sym_DASH] = ACTIONS(382), + [anon_sym_SLASH] = ACTIONS(382), + [anon_sym_PERCENT] = ACTIONS(382), + [anon_sym_CARET] = ACTIONS(382), [anon_sym_BANG] = ACTIONS(492), - [anon_sym_AMP] = ACTIONS(390), - [anon_sym_PIPE] = ACTIONS(390), - [anon_sym_AMP_AMP] = ACTIONS(388), - [anon_sym_PIPE_PIPE] = ACTIONS(388), - [anon_sym_LT_LT] = ACTIONS(390), - [anon_sym_GT_GT] = ACTIONS(390), - [anon_sym_PLUS_EQ] = ACTIONS(388), - [anon_sym_DASH_EQ] = ACTIONS(388), - [anon_sym_STAR_EQ] = ACTIONS(388), - [anon_sym_SLASH_EQ] = ACTIONS(388), - [anon_sym_PERCENT_EQ] = ACTIONS(388), - [anon_sym_CARET_EQ] = ACTIONS(388), - [anon_sym_AMP_EQ] = ACTIONS(388), - [anon_sym_PIPE_EQ] = ACTIONS(388), - [anon_sym_LT_LT_EQ] = ACTIONS(388), - [anon_sym_GT_GT_EQ] = ACTIONS(388), - [anon_sym_EQ] = ACTIONS(390), - [anon_sym_EQ_EQ] = ACTIONS(388), - [anon_sym_BANG_EQ] = ACTIONS(388), - [anon_sym_GT] = ACTIONS(390), - [anon_sym_LT] = ACTIONS(390), - [anon_sym_GT_EQ] = ACTIONS(388), - [anon_sym_LT_EQ] = ACTIONS(388), - [anon_sym_DOT] = ACTIONS(390), - [anon_sym_DOT_DOT] = ACTIONS(390), - [anon_sym_DOT_DOT_DOT] = ACTIONS(388), - [anon_sym_DOT_DOT_EQ] = ACTIONS(388), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(390), - [anon_sym_as] = ACTIONS(390), + [anon_sym_AMP] = ACTIONS(382), + [anon_sym_PIPE] = ACTIONS(382), + [anon_sym_AMP_AMP] = ACTIONS(380), + [anon_sym_PIPE_PIPE] = ACTIONS(380), + [anon_sym_LT_LT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(382), + [anon_sym_PLUS_EQ] = ACTIONS(380), + [anon_sym_DASH_EQ] = ACTIONS(380), + [anon_sym_STAR_EQ] = ACTIONS(380), + [anon_sym_SLASH_EQ] = ACTIONS(380), + [anon_sym_PERCENT_EQ] = ACTIONS(380), + [anon_sym_CARET_EQ] = ACTIONS(380), + [anon_sym_AMP_EQ] = ACTIONS(380), + [anon_sym_PIPE_EQ] = ACTIONS(380), + [anon_sym_LT_LT_EQ] = ACTIONS(380), + [anon_sym_GT_GT_EQ] = ACTIONS(380), + [anon_sym_EQ] = ACTIONS(382), + [anon_sym_EQ_EQ] = ACTIONS(380), + [anon_sym_BANG_EQ] = ACTIONS(380), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT_EQ] = ACTIONS(380), + [anon_sym_LT_EQ] = ACTIONS(380), + [anon_sym_DOT] = ACTIONS(382), + [anon_sym_DOT_DOT] = ACTIONS(382), + [anon_sym_DOT_DOT_DOT] = ACTIONS(380), + [anon_sym_DOT_DOT_EQ] = ACTIONS(380), + [anon_sym_COLON_COLON] = ACTIONS(472), + [anon_sym_SQUOTE] = ACTIONS(382), + [anon_sym_as] = ACTIONS(382), [anon_sym_async] = ACTIONS(346), [anon_sym_break] = ACTIONS(494), [anon_sym_const] = ACTIONS(348), [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), + [anon_sym_default] = ACTIONS(476), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), [anon_sym_loop] = ACTIONS(356), [anon_sym_match] = ACTIONS(358), [anon_sym_return] = ACTIONS(498), [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), + [anon_sym_union] = ACTIONS(476), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), [anon_sym_yield] = ACTIONS(502), @@ -23206,137 +23214,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), + [sym_self] = ACTIONS(486), + [sym_super] = ACTIONS(488), + [sym_crate] = ACTIONS(488), + [sym_metavariable] = ACTIONS(490), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, [65] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1812), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(44), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2731), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1750), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(223), + [sym_label] = STATE(47), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), [sym_line_comment] = STATE(65), [sym_block_comment] = STATE(65), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(388), - [anon_sym_LBRACK] = ACTIONS(388), - [anon_sym_LBRACE] = ACTIONS(388), - [anon_sym_PLUS] = ACTIONS(390), - [anon_sym_STAR] = ACTIONS(390), - [anon_sym_QMARK] = ACTIONS(388), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(390), - [anon_sym_SLASH] = ACTIONS(390), - [anon_sym_PERCENT] = ACTIONS(390), - [anon_sym_CARET] = ACTIONS(390), - [anon_sym_BANG] = ACTIONS(460), - [anon_sym_AMP] = ACTIONS(390), - [anon_sym_PIPE] = ACTIONS(390), - [anon_sym_AMP_AMP] = ACTIONS(388), - [anon_sym_PIPE_PIPE] = ACTIONS(388), - [anon_sym_LT_LT] = ACTIONS(390), - [anon_sym_GT_GT] = ACTIONS(390), - [anon_sym_PLUS_EQ] = ACTIONS(388), - [anon_sym_DASH_EQ] = ACTIONS(388), - [anon_sym_STAR_EQ] = ACTIONS(388), - [anon_sym_SLASH_EQ] = ACTIONS(388), - [anon_sym_PERCENT_EQ] = ACTIONS(388), - [anon_sym_CARET_EQ] = ACTIONS(388), - [anon_sym_AMP_EQ] = ACTIONS(388), - [anon_sym_PIPE_EQ] = ACTIONS(388), - [anon_sym_LT_LT_EQ] = ACTIONS(388), - [anon_sym_GT_GT_EQ] = ACTIONS(388), - [anon_sym_EQ] = ACTIONS(390), - [anon_sym_EQ_EQ] = ACTIONS(388), - [anon_sym_BANG_EQ] = ACTIONS(388), - [anon_sym_GT] = ACTIONS(390), - [anon_sym_LT] = ACTIONS(390), - [anon_sym_GT_EQ] = ACTIONS(388), - [anon_sym_LT_EQ] = ACTIONS(388), - [anon_sym_DOT] = ACTIONS(390), - [anon_sym_DOT_DOT] = ACTIONS(390), - [anon_sym_DOT_DOT_DOT] = ACTIONS(388), - [anon_sym_DOT_DOT_EQ] = ACTIONS(388), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(392), - [anon_sym_as] = ACTIONS(390), + [sym_identifier] = ACTIONS(466), + [anon_sym_LPAREN] = ACTIONS(384), + [anon_sym_LBRACK] = ACTIONS(384), + [anon_sym_LBRACE] = ACTIONS(384), + [anon_sym_PLUS] = ACTIONS(386), + [anon_sym_STAR] = ACTIONS(386), + [anon_sym_QMARK] = ACTIONS(384), + [anon_sym_u8] = ACTIONS(468), + [anon_sym_i8] = ACTIONS(468), + [anon_sym_u16] = ACTIONS(468), + [anon_sym_i16] = ACTIONS(468), + [anon_sym_u32] = ACTIONS(468), + [anon_sym_i32] = ACTIONS(468), + [anon_sym_u64] = ACTIONS(468), + [anon_sym_i64] = ACTIONS(468), + [anon_sym_u128] = ACTIONS(468), + [anon_sym_i128] = ACTIONS(468), + [anon_sym_isize] = ACTIONS(468), + [anon_sym_usize] = ACTIONS(468), + [anon_sym_f32] = ACTIONS(468), + [anon_sym_f64] = ACTIONS(468), + [anon_sym_bool] = ACTIONS(468), + [anon_sym_str] = ACTIONS(468), + [anon_sym_char] = ACTIONS(468), + [anon_sym_DASH] = ACTIONS(386), + [anon_sym_SLASH] = ACTIONS(386), + [anon_sym_PERCENT] = ACTIONS(386), + [anon_sym_CARET] = ACTIONS(386), + [anon_sym_BANG] = ACTIONS(470), + [anon_sym_AMP] = ACTIONS(386), + [anon_sym_PIPE] = ACTIONS(386), + [anon_sym_AMP_AMP] = ACTIONS(384), + [anon_sym_PIPE_PIPE] = ACTIONS(384), + [anon_sym_LT_LT] = ACTIONS(386), + [anon_sym_GT_GT] = ACTIONS(386), + [anon_sym_PLUS_EQ] = ACTIONS(384), + [anon_sym_DASH_EQ] = ACTIONS(384), + [anon_sym_STAR_EQ] = ACTIONS(384), + [anon_sym_SLASH_EQ] = ACTIONS(384), + [anon_sym_PERCENT_EQ] = ACTIONS(384), + [anon_sym_CARET_EQ] = ACTIONS(384), + [anon_sym_AMP_EQ] = ACTIONS(384), + [anon_sym_PIPE_EQ] = ACTIONS(384), + [anon_sym_LT_LT_EQ] = ACTIONS(384), + [anon_sym_GT_GT_EQ] = ACTIONS(384), + [anon_sym_EQ] = ACTIONS(386), + [anon_sym_EQ_EQ] = ACTIONS(384), + [anon_sym_BANG_EQ] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(386), + [anon_sym_LT] = ACTIONS(386), + [anon_sym_GT_EQ] = ACTIONS(384), + [anon_sym_LT_EQ] = ACTIONS(384), + [anon_sym_DOT] = ACTIONS(386), + [anon_sym_DOT_DOT] = ACTIONS(386), + [anon_sym_DOT_DOT_DOT] = ACTIONS(384), + [anon_sym_DOT_DOT_EQ] = ACTIONS(384), + [anon_sym_COLON_COLON] = ACTIONS(472), + [anon_sym_SQUOTE] = ACTIONS(388), + [anon_sym_as] = ACTIONS(386), [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(464), + [anon_sym_break] = ACTIONS(474), [anon_sym_const] = ACTIONS(348), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(466), + [anon_sym_default] = ACTIONS(476), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), [anon_sym_loop] = ACTIONS(356), [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(468), - [anon_sym_static] = ACTIONS(470), - [anon_sym_union] = ACTIONS(466), + [anon_sym_return] = ACTIONS(478), + [anon_sym_static] = ACTIONS(480), + [anon_sym_union] = ACTIONS(476), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(472), - [anon_sym_move] = ACTIONS(474), + [anon_sym_yield] = ACTIONS(482), + [anon_sym_move] = ACTIONS(484), [anon_sym_try] = ACTIONS(366), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -23345,137 +23353,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), + [sym_self] = ACTIONS(486), + [sym_super] = ACTIONS(488), + [sym_crate] = ACTIONS(488), + [sym_metavariable] = ACTIONS(490), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, [66] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1814), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2731), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1765), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(223), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), [sym_line_comment] = STATE(66), [sym_block_comment] = STATE(66), - [sym_identifier] = ACTIONS(456), + [sym_identifier] = ACTIONS(466), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_PLUS] = ACTIONS(396), - [anon_sym_STAR] = ACTIONS(460), - [anon_sym_QMARK] = ACTIONS(394), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(460), - [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_PERCENT] = ACTIONS(396), - [anon_sym_CARET] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(460), + [anon_sym_PLUS] = ACTIONS(370), + [anon_sym_STAR] = ACTIONS(470), + [anon_sym_QMARK] = ACTIONS(368), + [anon_sym_u8] = ACTIONS(468), + [anon_sym_i8] = ACTIONS(468), + [anon_sym_u16] = ACTIONS(468), + [anon_sym_i16] = ACTIONS(468), + [anon_sym_u32] = ACTIONS(468), + [anon_sym_i32] = ACTIONS(468), + [anon_sym_u64] = ACTIONS(468), + [anon_sym_i64] = ACTIONS(468), + [anon_sym_u128] = ACTIONS(468), + [anon_sym_i128] = ACTIONS(468), + [anon_sym_isize] = ACTIONS(468), + [anon_sym_usize] = ACTIONS(468), + [anon_sym_f32] = ACTIONS(468), + [anon_sym_f64] = ACTIONS(468), + [anon_sym_bool] = ACTIONS(468), + [anon_sym_str] = ACTIONS(468), + [anon_sym_char] = ACTIONS(468), + [anon_sym_DASH] = ACTIONS(470), + [anon_sym_SLASH] = ACTIONS(370), + [anon_sym_PERCENT] = ACTIONS(370), + [anon_sym_CARET] = ACTIONS(370), + [anon_sym_BANG] = ACTIONS(470), [anon_sym_AMP] = ACTIONS(510), - [anon_sym_PIPE] = ACTIONS(378), - [anon_sym_AMP_AMP] = ACTIONS(394), - [anon_sym_PIPE_PIPE] = ACTIONS(394), - [anon_sym_LT_LT] = ACTIONS(396), - [anon_sym_GT_GT] = ACTIONS(396), - [anon_sym_PLUS_EQ] = ACTIONS(394), - [anon_sym_DASH_EQ] = ACTIONS(394), - [anon_sym_STAR_EQ] = ACTIONS(394), - [anon_sym_SLASH_EQ] = ACTIONS(394), - [anon_sym_PERCENT_EQ] = ACTIONS(394), - [anon_sym_CARET_EQ] = ACTIONS(394), - [anon_sym_AMP_EQ] = ACTIONS(394), - [anon_sym_PIPE_EQ] = ACTIONS(394), - [anon_sym_LT_LT_EQ] = ACTIONS(394), - [anon_sym_GT_GT_EQ] = ACTIONS(394), - [anon_sym_EQ] = ACTIONS(396), - [anon_sym_EQ_EQ] = ACTIONS(394), - [anon_sym_BANG_EQ] = ACTIONS(394), - [anon_sym_GT] = ACTIONS(396), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_GT_EQ] = ACTIONS(394), - [anon_sym_LT_EQ] = ACTIONS(394), - [anon_sym_DOT] = ACTIONS(396), + [anon_sym_PIPE] = ACTIONS(374), + [anon_sym_AMP_AMP] = ACTIONS(368), + [anon_sym_PIPE_PIPE] = ACTIONS(368), + [anon_sym_LT_LT] = ACTIONS(370), + [anon_sym_GT_GT] = ACTIONS(370), + [anon_sym_PLUS_EQ] = ACTIONS(368), + [anon_sym_DASH_EQ] = ACTIONS(368), + [anon_sym_STAR_EQ] = ACTIONS(368), + [anon_sym_SLASH_EQ] = ACTIONS(368), + [anon_sym_PERCENT_EQ] = ACTIONS(368), + [anon_sym_CARET_EQ] = ACTIONS(368), + [anon_sym_AMP_EQ] = ACTIONS(368), + [anon_sym_PIPE_EQ] = ACTIONS(368), + [anon_sym_LT_LT_EQ] = ACTIONS(368), + [anon_sym_GT_GT_EQ] = ACTIONS(368), + [anon_sym_EQ] = ACTIONS(370), + [anon_sym_EQ_EQ] = ACTIONS(368), + [anon_sym_BANG_EQ] = ACTIONS(368), + [anon_sym_GT] = ACTIONS(370), + [anon_sym_LT] = ACTIONS(376), + [anon_sym_GT_EQ] = ACTIONS(368), + [anon_sym_LT_EQ] = ACTIONS(368), + [anon_sym_DOT] = ACTIONS(370), [anon_sym_DOT_DOT] = ACTIONS(512), - [anon_sym_DOT_DOT_DOT] = ACTIONS(394), - [anon_sym_DOT_DOT_EQ] = ACTIONS(394), - [anon_sym_COLON_COLON] = ACTIONS(462), + [anon_sym_DOT_DOT_DOT] = ACTIONS(368), + [anon_sym_DOT_DOT_EQ] = ACTIONS(368), + [anon_sym_COLON_COLON] = ACTIONS(472), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(396), + [anon_sym_as] = ACTIONS(370), [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(464), + [anon_sym_break] = ACTIONS(474), [anon_sym_const] = ACTIONS(348), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(466), + [anon_sym_default] = ACTIONS(476), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), [anon_sym_loop] = ACTIONS(356), [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(468), - [anon_sym_static] = ACTIONS(470), - [anon_sym_union] = ACTIONS(466), + [anon_sym_return] = ACTIONS(478), + [anon_sym_static] = ACTIONS(480), + [anon_sym_union] = ACTIONS(476), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(472), - [anon_sym_move] = ACTIONS(474), + [anon_sym_yield] = ACTIONS(482), + [anon_sym_move] = ACTIONS(484), [anon_sym_try] = ACTIONS(366), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -23484,26 +23492,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), + [sym_self] = ACTIONS(486), + [sym_super] = ACTIONS(488), + [sym_crate] = ACTIONS(488), + [sym_metavariable] = ACTIONS(490), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, [67] = { - [sym__token_pattern] = STATE(149), - [sym_token_tree_pattern] = STATE(166), - [sym_token_binding_pattern] = STATE(166), - [sym_token_repetition_pattern] = STATE(166), - [sym__literal] = STATE(166), - [sym_string_literal] = STATE(156), - [sym_raw_string_literal] = STATE(156), - [sym_boolean_literal] = STATE(156), + [sym__token_pattern] = STATE(153), + [sym_token_tree_pattern] = STATE(141), + [sym_token_binding_pattern] = STATE(141), + [sym_token_repetition_pattern] = STATE(141), + [sym__literal] = STATE(141), + [sym_string_literal] = STATE(151), + [sym_raw_string_literal] = STATE(151), + [sym_boolean_literal] = STATE(151), [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(135), + [aux_sym__non_special_token_repeat1] = STATE(134), [sym_identifier] = ACTIONS(514), [anon_sym_SEMI] = ACTIONS(517), [anon_sym_LPAREN] = ACTIONS(520), @@ -23617,18 +23625,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(537), }, [68] = { - [sym__token_pattern] = STATE(149), - [sym_token_tree_pattern] = STATE(166), - [sym_token_binding_pattern] = STATE(166), - [sym_token_repetition_pattern] = STATE(166), - [sym__literal] = STATE(166), - [sym_string_literal] = STATE(156), - [sym_raw_string_literal] = STATE(156), - [sym_boolean_literal] = STATE(156), + [sym__token_pattern] = STATE(153), + [sym_token_tree_pattern] = STATE(141), + [sym_token_binding_pattern] = STATE(141), + [sym_token_repetition_pattern] = STATE(141), + [sym__literal] = STATE(141), + [sym_string_literal] = STATE(151), + [sym_raw_string_literal] = STATE(151), + [sym_boolean_literal] = STATE(151), [sym_line_comment] = STATE(68), [sym_block_comment] = STATE(68), - [aux_sym_token_tree_pattern_repeat1] = STATE(72), - [aux_sym__non_special_token_repeat1] = STATE(135), + [aux_sym_token_tree_pattern_repeat1] = STATE(67), + [aux_sym__non_special_token_repeat1] = STATE(134), [sym_identifier] = ACTIONS(552), [anon_sym_SEMI] = ACTIONS(554), [anon_sym_LPAREN] = ACTIONS(556), @@ -23740,23 +23748,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(568), }, [69] = { - [sym__token_pattern] = STATE(149), - [sym_token_tree_pattern] = STATE(166), - [sym_token_binding_pattern] = STATE(166), - [sym_token_repetition_pattern] = STATE(166), - [sym__literal] = STATE(166), - [sym_string_literal] = STATE(156), - [sym_raw_string_literal] = STATE(156), - [sym_boolean_literal] = STATE(156), + [sym__token_pattern] = STATE(153), + [sym_token_tree_pattern] = STATE(141), + [sym_token_binding_pattern] = STATE(141), + [sym_token_repetition_pattern] = STATE(141), + [sym__literal] = STATE(141), + [sym_string_literal] = STATE(151), + [sym_raw_string_literal] = STATE(151), + [sym_boolean_literal] = STATE(151), [sym_line_comment] = STATE(69), [sym_block_comment] = STATE(69), - [aux_sym_token_tree_pattern_repeat1] = STATE(73), - [aux_sym__non_special_token_repeat1] = STATE(135), + [aux_sym_token_tree_pattern_repeat1] = STATE(71), + [aux_sym__non_special_token_repeat1] = STATE(134), [sym_identifier] = ACTIONS(552), [anon_sym_SEMI] = ACTIONS(554), [anon_sym_LPAREN] = ACTIONS(556), [anon_sym_LBRACK] = ACTIONS(560), - [anon_sym_RBRACK] = ACTIONS(558), + [anon_sym_RBRACK] = ACTIONS(578), [anon_sym_LBRACE] = ACTIONS(562), [anon_sym_EQ_GT] = ACTIONS(554), [anon_sym_COLON] = ACTIONS(564), @@ -23863,22 +23871,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(568), }, [70] = { - [sym__token_pattern] = STATE(149), - [sym_token_tree_pattern] = STATE(166), - [sym_token_binding_pattern] = STATE(166), - [sym_token_repetition_pattern] = STATE(166), - [sym__literal] = STATE(166), - [sym_string_literal] = STATE(156), - [sym_raw_string_literal] = STATE(156), - [sym_boolean_literal] = STATE(156), + [sym__token_pattern] = STATE(153), + [sym_token_tree_pattern] = STATE(141), + [sym_token_binding_pattern] = STATE(141), + [sym_token_repetition_pattern] = STATE(141), + [sym__literal] = STATE(141), + [sym_string_literal] = STATE(151), + [sym_raw_string_literal] = STATE(151), + [sym_boolean_literal] = STATE(151), [sym_line_comment] = STATE(70), [sym_block_comment] = STATE(70), - [aux_sym_token_tree_pattern_repeat1] = STATE(77), - [aux_sym__non_special_token_repeat1] = STATE(135), + [aux_sym_token_tree_pattern_repeat1] = STATE(67), + [aux_sym__non_special_token_repeat1] = STATE(134), [sym_identifier] = ACTIONS(552), [anon_sym_SEMI] = ACTIONS(554), [anon_sym_LPAREN] = ACTIONS(556), - [anon_sym_RPAREN] = ACTIONS(578), + [anon_sym_RPAREN] = ACTIONS(580), [anon_sym_LBRACK] = ACTIONS(560), [anon_sym_LBRACE] = ACTIONS(562), [anon_sym_EQ_GT] = ACTIONS(554), @@ -23986,23 +23994,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(568), }, [71] = { - [sym__token_pattern] = STATE(149), - [sym_token_tree_pattern] = STATE(166), - [sym_token_binding_pattern] = STATE(166), - [sym_token_repetition_pattern] = STATE(166), - [sym__literal] = STATE(166), - [sym_string_literal] = STATE(156), - [sym_raw_string_literal] = STATE(156), - [sym_boolean_literal] = STATE(156), + [sym__token_pattern] = STATE(153), + [sym_token_tree_pattern] = STATE(141), + [sym_token_binding_pattern] = STATE(141), + [sym_token_repetition_pattern] = STATE(141), + [sym__literal] = STATE(141), + [sym_string_literal] = STATE(151), + [sym_raw_string_literal] = STATE(151), + [sym_boolean_literal] = STATE(151), [sym_line_comment] = STATE(71), [sym_block_comment] = STATE(71), - [aux_sym_token_tree_pattern_repeat1] = STATE(78), - [aux_sym__non_special_token_repeat1] = STATE(135), + [aux_sym_token_tree_pattern_repeat1] = STATE(67), + [aux_sym__non_special_token_repeat1] = STATE(134), [sym_identifier] = ACTIONS(552), [anon_sym_SEMI] = ACTIONS(554), [anon_sym_LPAREN] = ACTIONS(556), [anon_sym_LBRACK] = ACTIONS(560), - [anon_sym_RBRACK] = ACTIONS(578), + [anon_sym_RBRACK] = ACTIONS(580), [anon_sym_LBRACE] = ACTIONS(562), [anon_sym_EQ_GT] = ACTIONS(554), [anon_sym_COLON] = ACTIONS(564), @@ -24109,22 +24117,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(568), }, [72] = { - [sym__token_pattern] = STATE(149), - [sym_token_tree_pattern] = STATE(166), - [sym_token_binding_pattern] = STATE(166), - [sym_token_repetition_pattern] = STATE(166), - [sym__literal] = STATE(166), - [sym_string_literal] = STATE(156), - [sym_raw_string_literal] = STATE(156), - [sym_boolean_literal] = STATE(156), + [sym__token_pattern] = STATE(153), + [sym_token_tree_pattern] = STATE(141), + [sym_token_binding_pattern] = STATE(141), + [sym_token_repetition_pattern] = STATE(141), + [sym__literal] = STATE(141), + [sym_string_literal] = STATE(151), + [sym_raw_string_literal] = STATE(151), + [sym_boolean_literal] = STATE(151), [sym_line_comment] = STATE(72), [sym_block_comment] = STATE(72), [aux_sym_token_tree_pattern_repeat1] = STATE(67), - [aux_sym__non_special_token_repeat1] = STATE(135), + [aux_sym__non_special_token_repeat1] = STATE(134), [sym_identifier] = ACTIONS(552), [anon_sym_SEMI] = ACTIONS(554), [anon_sym_LPAREN] = ACTIONS(556), - [anon_sym_RPAREN] = ACTIONS(580), + [anon_sym_RPAREN] = ACTIONS(582), [anon_sym_LBRACK] = ACTIONS(560), [anon_sym_LBRACE] = ACTIONS(562), [anon_sym_EQ_GT] = ACTIONS(554), @@ -24232,24 +24240,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(568), }, [73] = { - [sym__token_pattern] = STATE(149), - [sym_token_tree_pattern] = STATE(166), - [sym_token_binding_pattern] = STATE(166), - [sym_token_repetition_pattern] = STATE(166), - [sym__literal] = STATE(166), - [sym_string_literal] = STATE(156), - [sym_raw_string_literal] = STATE(156), - [sym_boolean_literal] = STATE(156), + [sym__token_pattern] = STATE(153), + [sym_token_tree_pattern] = STATE(141), + [sym_token_binding_pattern] = STATE(141), + [sym_token_repetition_pattern] = STATE(141), + [sym__literal] = STATE(141), + [sym_string_literal] = STATE(151), + [sym_raw_string_literal] = STATE(151), + [sym_boolean_literal] = STATE(151), [sym_line_comment] = STATE(73), [sym_block_comment] = STATE(73), [aux_sym_token_tree_pattern_repeat1] = STATE(67), - [aux_sym__non_special_token_repeat1] = STATE(135), + [aux_sym__non_special_token_repeat1] = STATE(134), [sym_identifier] = ACTIONS(552), [anon_sym_SEMI] = ACTIONS(554), [anon_sym_LPAREN] = ACTIONS(556), [anon_sym_LBRACK] = ACTIONS(560), - [anon_sym_RBRACK] = ACTIONS(580), [anon_sym_LBRACE] = ACTIONS(562), + [anon_sym_RBRACE] = ACTIONS(580), [anon_sym_EQ_GT] = ACTIONS(554), [anon_sym_COLON] = ACTIONS(564), [anon_sym_DOLLAR] = ACTIONS(566), @@ -24355,147 +24363,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(568), }, [74] = { - [sym__token_pattern] = STATE(149), - [sym_token_tree_pattern] = STATE(166), - [sym_token_binding_pattern] = STATE(166), - [sym_token_repetition_pattern] = STATE(166), - [sym__literal] = STATE(166), - [sym_string_literal] = STATE(156), - [sym_raw_string_literal] = STATE(156), - [sym_boolean_literal] = STATE(156), + [sym_delim_token_tree] = STATE(208), + [sym__delim_tokens] = STATE(205), + [sym__non_delim_token] = STATE(208), + [sym__literal] = STATE(207), + [sym_string_literal] = STATE(200), + [sym_raw_string_literal] = STATE(200), + [sym_boolean_literal] = STATE(200), [sym_line_comment] = STATE(74), [sym_block_comment] = STATE(74), - [aux_sym_token_tree_pattern_repeat1] = STATE(67), - [aux_sym__non_special_token_repeat1] = STATE(135), - [sym_identifier] = ACTIONS(552), - [anon_sym_SEMI] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(556), - [anon_sym_LBRACK] = ACTIONS(560), - [anon_sym_LBRACE] = ACTIONS(562), - [anon_sym_RBRACE] = ACTIONS(580), - [anon_sym_EQ_GT] = ACTIONS(554), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_QMARK] = ACTIONS(554), - [anon_sym_u8] = ACTIONS(552), - [anon_sym_i8] = ACTIONS(552), - [anon_sym_u16] = ACTIONS(552), - [anon_sym_i16] = ACTIONS(552), - [anon_sym_u32] = ACTIONS(552), - [anon_sym_i32] = ACTIONS(552), - [anon_sym_u64] = ACTIONS(552), - [anon_sym_i64] = ACTIONS(552), - [anon_sym_u128] = ACTIONS(552), - [anon_sym_i128] = ACTIONS(552), - [anon_sym_isize] = ACTIONS(552), - [anon_sym_usize] = ACTIONS(552), - [anon_sym_f32] = ACTIONS(552), - [anon_sym_f64] = ACTIONS(552), - [anon_sym_bool] = ACTIONS(552), - [anon_sym_str] = ACTIONS(552), - [anon_sym_char] = ACTIONS(552), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_AMP] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_AMP_AMP] = ACTIONS(554), - [anon_sym_PIPE_PIPE] = ACTIONS(554), - [anon_sym_LT_LT] = ACTIONS(564), - [anon_sym_GT_GT] = ACTIONS(564), - [anon_sym_PLUS_EQ] = ACTIONS(554), - [anon_sym_DASH_EQ] = ACTIONS(554), - [anon_sym_STAR_EQ] = ACTIONS(554), - [anon_sym_SLASH_EQ] = ACTIONS(554), - [anon_sym_PERCENT_EQ] = ACTIONS(554), - [anon_sym_CARET_EQ] = ACTIONS(554), - [anon_sym_AMP_EQ] = ACTIONS(554), - [anon_sym_PIPE_EQ] = ACTIONS(554), - [anon_sym_LT_LT_EQ] = ACTIONS(554), - [anon_sym_GT_GT_EQ] = ACTIONS(554), - [anon_sym_EQ] = ACTIONS(564), - [anon_sym_EQ_EQ] = ACTIONS(554), - [anon_sym_BANG_EQ] = ACTIONS(554), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT_EQ] = ACTIONS(554), - [anon_sym_LT_EQ] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(554), - [anon_sym__] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(554), - [anon_sym_DOT_DOT_EQ] = ACTIONS(554), - [anon_sym_COMMA] = ACTIONS(554), - [anon_sym_COLON_COLON] = ACTIONS(554), - [anon_sym_DASH_GT] = ACTIONS(554), - [anon_sym_POUND] = ACTIONS(554), - [anon_sym_SQUOTE] = ACTIONS(552), - [anon_sym_as] = ACTIONS(552), - [anon_sym_async] = ACTIONS(552), - [anon_sym_await] = ACTIONS(552), - [anon_sym_break] = ACTIONS(552), - [anon_sym_const] = ACTIONS(552), - [anon_sym_continue] = ACTIONS(552), - [anon_sym_default] = ACTIONS(552), - [anon_sym_enum] = ACTIONS(552), - [anon_sym_fn] = ACTIONS(552), - [anon_sym_for] = ACTIONS(552), - [anon_sym_if] = ACTIONS(552), - [anon_sym_impl] = ACTIONS(552), - [anon_sym_let] = ACTIONS(552), - [anon_sym_loop] = ACTIONS(552), - [anon_sym_match] = ACTIONS(552), - [anon_sym_mod] = ACTIONS(552), - [anon_sym_pub] = ACTIONS(552), - [anon_sym_return] = ACTIONS(552), - [anon_sym_static] = ACTIONS(552), - [anon_sym_struct] = ACTIONS(552), - [anon_sym_trait] = ACTIONS(552), - [anon_sym_type] = ACTIONS(552), - [anon_sym_union] = ACTIONS(552), - [anon_sym_unsafe] = ACTIONS(552), - [anon_sym_use] = ACTIONS(552), - [anon_sym_where] = ACTIONS(552), - [anon_sym_while] = ACTIONS(552), - [sym_mutable_specifier] = ACTIONS(552), - [sym_integer_literal] = ACTIONS(568), - [aux_sym_string_literal_token1] = ACTIONS(570), - [sym_char_literal] = ACTIONS(568), - [anon_sym_true] = ACTIONS(572), - [anon_sym_false] = ACTIONS(572), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(552), - [sym_super] = ACTIONS(552), - [sym_crate] = ACTIONS(552), - [sym_metavariable] = ACTIONS(574), - [sym__raw_string_literal_start] = ACTIONS(576), - [sym_float_literal] = ACTIONS(568), + [aux_sym__non_special_token_repeat1] = STATE(154), + [aux_sym_delim_token_tree_repeat1] = STATE(74), + [sym_identifier] = ACTIONS(584), + [anon_sym_SEMI] = ACTIONS(587), + [anon_sym_LPAREN] = ACTIONS(590), + [anon_sym_RPAREN] = ACTIONS(593), + [anon_sym_LBRACK] = ACTIONS(595), + [anon_sym_RBRACK] = ACTIONS(593), + [anon_sym_LBRACE] = ACTIONS(598), + [anon_sym_RBRACE] = ACTIONS(593), + [anon_sym_EQ_GT] = ACTIONS(587), + [anon_sym_COLON] = ACTIONS(601), + [anon_sym_DOLLAR] = ACTIONS(604), + [anon_sym_PLUS] = ACTIONS(601), + [anon_sym_STAR] = ACTIONS(601), + [anon_sym_QMARK] = ACTIONS(587), + [anon_sym_u8] = ACTIONS(584), + [anon_sym_i8] = ACTIONS(584), + [anon_sym_u16] = ACTIONS(584), + [anon_sym_i16] = ACTIONS(584), + [anon_sym_u32] = ACTIONS(584), + [anon_sym_i32] = ACTIONS(584), + [anon_sym_u64] = ACTIONS(584), + [anon_sym_i64] = ACTIONS(584), + [anon_sym_u128] = ACTIONS(584), + [anon_sym_i128] = ACTIONS(584), + [anon_sym_isize] = ACTIONS(584), + [anon_sym_usize] = ACTIONS(584), + [anon_sym_f32] = ACTIONS(584), + [anon_sym_f64] = ACTIONS(584), + [anon_sym_bool] = ACTIONS(584), + [anon_sym_str] = ACTIONS(584), + [anon_sym_char] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(601), + [anon_sym_SLASH] = ACTIONS(601), + [anon_sym_PERCENT] = ACTIONS(601), + [anon_sym_CARET] = ACTIONS(601), + [anon_sym_BANG] = ACTIONS(601), + [anon_sym_AMP] = ACTIONS(601), + [anon_sym_PIPE] = ACTIONS(601), + [anon_sym_AMP_AMP] = ACTIONS(587), + [anon_sym_PIPE_PIPE] = ACTIONS(587), + [anon_sym_LT_LT] = ACTIONS(601), + [anon_sym_GT_GT] = ACTIONS(601), + [anon_sym_PLUS_EQ] = ACTIONS(587), + [anon_sym_DASH_EQ] = ACTIONS(587), + [anon_sym_STAR_EQ] = ACTIONS(587), + [anon_sym_SLASH_EQ] = ACTIONS(587), + [anon_sym_PERCENT_EQ] = ACTIONS(587), + [anon_sym_CARET_EQ] = ACTIONS(587), + [anon_sym_AMP_EQ] = ACTIONS(587), + [anon_sym_PIPE_EQ] = ACTIONS(587), + [anon_sym_LT_LT_EQ] = ACTIONS(587), + [anon_sym_GT_GT_EQ] = ACTIONS(587), + [anon_sym_EQ] = ACTIONS(601), + [anon_sym_EQ_EQ] = ACTIONS(587), + [anon_sym_BANG_EQ] = ACTIONS(587), + [anon_sym_GT] = ACTIONS(601), + [anon_sym_LT] = ACTIONS(601), + [anon_sym_GT_EQ] = ACTIONS(587), + [anon_sym_LT_EQ] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(587), + [anon_sym__] = ACTIONS(601), + [anon_sym_DOT] = ACTIONS(601), + [anon_sym_DOT_DOT] = ACTIONS(601), + [anon_sym_DOT_DOT_DOT] = ACTIONS(587), + [anon_sym_DOT_DOT_EQ] = ACTIONS(587), + [anon_sym_COMMA] = ACTIONS(587), + [anon_sym_COLON_COLON] = ACTIONS(587), + [anon_sym_DASH_GT] = ACTIONS(587), + [anon_sym_POUND] = ACTIONS(587), + [anon_sym_SQUOTE] = ACTIONS(584), + [anon_sym_as] = ACTIONS(584), + [anon_sym_async] = ACTIONS(584), + [anon_sym_await] = ACTIONS(584), + [anon_sym_break] = ACTIONS(584), + [anon_sym_const] = ACTIONS(584), + [anon_sym_continue] = ACTIONS(584), + [anon_sym_default] = ACTIONS(584), + [anon_sym_enum] = ACTIONS(584), + [anon_sym_fn] = ACTIONS(584), + [anon_sym_for] = ACTIONS(584), + [anon_sym_if] = ACTIONS(584), + [anon_sym_impl] = ACTIONS(584), + [anon_sym_let] = ACTIONS(584), + [anon_sym_loop] = ACTIONS(584), + [anon_sym_match] = ACTIONS(584), + [anon_sym_mod] = ACTIONS(584), + [anon_sym_pub] = ACTIONS(584), + [anon_sym_return] = ACTIONS(584), + [anon_sym_static] = ACTIONS(584), + [anon_sym_struct] = ACTIONS(584), + [anon_sym_trait] = ACTIONS(584), + [anon_sym_type] = ACTIONS(584), + [anon_sym_union] = ACTIONS(584), + [anon_sym_unsafe] = ACTIONS(584), + [anon_sym_use] = ACTIONS(584), + [anon_sym_where] = ACTIONS(584), + [anon_sym_while] = ACTIONS(584), + [sym_mutable_specifier] = ACTIONS(584), + [sym_integer_literal] = ACTIONS(607), + [aux_sym_string_literal_token1] = ACTIONS(610), + [sym_char_literal] = ACTIONS(607), + [anon_sym_true] = ACTIONS(613), + [anon_sym_false] = ACTIONS(613), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(584), + [sym_super] = ACTIONS(584), + [sym_crate] = ACTIONS(584), + [sym__raw_string_literal_start] = ACTIONS(616), + [sym_float_literal] = ACTIONS(607), }, [75] = { - [sym__token_pattern] = STATE(149), - [sym_token_tree_pattern] = STATE(166), - [sym_token_binding_pattern] = STATE(166), - [sym_token_repetition_pattern] = STATE(166), - [sym__literal] = STATE(166), - [sym_string_literal] = STATE(156), - [sym_raw_string_literal] = STATE(156), - [sym_boolean_literal] = STATE(156), + [sym__token_pattern] = STATE(153), + [sym_token_tree_pattern] = STATE(141), + [sym_token_binding_pattern] = STATE(141), + [sym_token_repetition_pattern] = STATE(141), + [sym__literal] = STATE(141), + [sym_string_literal] = STATE(151), + [sym_raw_string_literal] = STATE(151), + [sym_boolean_literal] = STATE(151), [sym_line_comment] = STATE(75), [sym_block_comment] = STATE(75), - [aux_sym_token_tree_pattern_repeat1] = STATE(79), - [aux_sym__non_special_token_repeat1] = STATE(135), + [aux_sym_token_tree_pattern_repeat1] = STATE(67), + [aux_sym__non_special_token_repeat1] = STATE(134), [sym_identifier] = ACTIONS(552), [anon_sym_SEMI] = ACTIONS(554), [anon_sym_LPAREN] = ACTIONS(556), [anon_sym_LBRACK] = ACTIONS(560), + [anon_sym_RBRACK] = ACTIONS(558), [anon_sym_LBRACE] = ACTIONS(562), - [anon_sym_RBRACE] = ACTIONS(578), [anon_sym_EQ_GT] = ACTIONS(554), [anon_sym_COLON] = ACTIONS(564), [anon_sym_DOLLAR] = ACTIONS(566), @@ -24601,24 +24609,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(568), }, [76] = { - [sym__token_pattern] = STATE(149), - [sym_token_tree_pattern] = STATE(166), - [sym_token_binding_pattern] = STATE(166), - [sym_token_repetition_pattern] = STATE(166), - [sym__literal] = STATE(166), - [sym_string_literal] = STATE(156), - [sym_raw_string_literal] = STATE(156), - [sym_boolean_literal] = STATE(156), + [sym__token_pattern] = STATE(153), + [sym_token_tree_pattern] = STATE(141), + [sym_token_binding_pattern] = STATE(141), + [sym_token_repetition_pattern] = STATE(141), + [sym__literal] = STATE(141), + [sym_string_literal] = STATE(151), + [sym_raw_string_literal] = STATE(151), + [sym_boolean_literal] = STATE(151), [sym_line_comment] = STATE(76), [sym_block_comment] = STATE(76), - [aux_sym_token_tree_pattern_repeat1] = STATE(74), - [aux_sym__non_special_token_repeat1] = STATE(135), + [aux_sym_token_tree_pattern_repeat1] = STATE(72), + [aux_sym__non_special_token_repeat1] = STATE(134), [sym_identifier] = ACTIONS(552), [anon_sym_SEMI] = ACTIONS(554), [anon_sym_LPAREN] = ACTIONS(556), + [anon_sym_RPAREN] = ACTIONS(619), [anon_sym_LBRACK] = ACTIONS(560), [anon_sym_LBRACE] = ACTIONS(562), - [anon_sym_RBRACE] = ACTIONS(558), [anon_sym_EQ_GT] = ACTIONS(554), [anon_sym_COLON] = ACTIONS(564), [anon_sym_DOLLAR] = ACTIONS(566), @@ -24724,24 +24732,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(568), }, [77] = { - [sym__token_pattern] = STATE(149), - [sym_token_tree_pattern] = STATE(166), - [sym_token_binding_pattern] = STATE(166), - [sym_token_repetition_pattern] = STATE(166), - [sym__literal] = STATE(166), - [sym_string_literal] = STATE(156), - [sym_raw_string_literal] = STATE(156), - [sym_boolean_literal] = STATE(156), + [sym__token_pattern] = STATE(153), + [sym_token_tree_pattern] = STATE(141), + [sym_token_binding_pattern] = STATE(141), + [sym_token_repetition_pattern] = STATE(141), + [sym__literal] = STATE(141), + [sym_string_literal] = STATE(151), + [sym_raw_string_literal] = STATE(151), + [sym_boolean_literal] = STATE(151), [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(135), + [aux_sym__non_special_token_repeat1] = STATE(134), [sym_identifier] = ACTIONS(552), [anon_sym_SEMI] = ACTIONS(554), [anon_sym_LPAREN] = ACTIONS(556), - [anon_sym_RPAREN] = ACTIONS(582), [anon_sym_LBRACK] = ACTIONS(560), [anon_sym_LBRACE] = ACTIONS(562), + [anon_sym_RBRACE] = ACTIONS(558), [anon_sym_EQ_GT] = ACTIONS(554), [anon_sym_COLON] = ACTIONS(564), [anon_sym_DOLLAR] = ACTIONS(566), @@ -24847,147 +24855,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(568), }, [78] = { - [sym__token_pattern] = STATE(149), - [sym_token_tree_pattern] = STATE(166), - [sym_token_binding_pattern] = STATE(166), - [sym_token_repetition_pattern] = STATE(166), - [sym__literal] = STATE(166), - [sym_string_literal] = STATE(156), - [sym_raw_string_literal] = STATE(156), - [sym_boolean_literal] = STATE(156), + [sym_token_tree] = STATE(165), + [sym_token_repetition] = STATE(165), + [sym__literal] = STATE(165), + [sym_string_literal] = STATE(151), + [sym_raw_string_literal] = STATE(151), + [sym_boolean_literal] = STATE(151), [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(135), - [sym_identifier] = ACTIONS(552), - [anon_sym_SEMI] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(556), - [anon_sym_LBRACK] = ACTIONS(560), - [anon_sym_RBRACK] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(562), - [anon_sym_EQ_GT] = ACTIONS(554), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_QMARK] = ACTIONS(554), - [anon_sym_u8] = ACTIONS(552), - [anon_sym_i8] = ACTIONS(552), - [anon_sym_u16] = ACTIONS(552), - [anon_sym_i16] = ACTIONS(552), - [anon_sym_u32] = ACTIONS(552), - [anon_sym_i32] = ACTIONS(552), - [anon_sym_u64] = ACTIONS(552), - [anon_sym_i64] = ACTIONS(552), - [anon_sym_u128] = ACTIONS(552), - [anon_sym_i128] = ACTIONS(552), - [anon_sym_isize] = ACTIONS(552), - [anon_sym_usize] = ACTIONS(552), - [anon_sym_f32] = ACTIONS(552), - [anon_sym_f64] = ACTIONS(552), - [anon_sym_bool] = ACTIONS(552), - [anon_sym_str] = ACTIONS(552), - [anon_sym_char] = ACTIONS(552), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_AMP] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_AMP_AMP] = ACTIONS(554), - [anon_sym_PIPE_PIPE] = ACTIONS(554), - [anon_sym_LT_LT] = ACTIONS(564), - [anon_sym_GT_GT] = ACTIONS(564), - [anon_sym_PLUS_EQ] = ACTIONS(554), - [anon_sym_DASH_EQ] = ACTIONS(554), - [anon_sym_STAR_EQ] = ACTIONS(554), - [anon_sym_SLASH_EQ] = ACTIONS(554), - [anon_sym_PERCENT_EQ] = ACTIONS(554), - [anon_sym_CARET_EQ] = ACTIONS(554), - [anon_sym_AMP_EQ] = ACTIONS(554), - [anon_sym_PIPE_EQ] = ACTIONS(554), - [anon_sym_LT_LT_EQ] = ACTIONS(554), - [anon_sym_GT_GT_EQ] = ACTIONS(554), - [anon_sym_EQ] = ACTIONS(564), - [anon_sym_EQ_EQ] = ACTIONS(554), - [anon_sym_BANG_EQ] = ACTIONS(554), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT_EQ] = ACTIONS(554), - [anon_sym_LT_EQ] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(554), - [anon_sym__] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(554), - [anon_sym_DOT_DOT_EQ] = ACTIONS(554), - [anon_sym_COMMA] = ACTIONS(554), - [anon_sym_COLON_COLON] = ACTIONS(554), - [anon_sym_DASH_GT] = ACTIONS(554), - [anon_sym_POUND] = ACTIONS(554), - [anon_sym_SQUOTE] = ACTIONS(552), - [anon_sym_as] = ACTIONS(552), - [anon_sym_async] = ACTIONS(552), - [anon_sym_await] = ACTIONS(552), - [anon_sym_break] = ACTIONS(552), - [anon_sym_const] = ACTIONS(552), - [anon_sym_continue] = ACTIONS(552), - [anon_sym_default] = ACTIONS(552), - [anon_sym_enum] = ACTIONS(552), - [anon_sym_fn] = ACTIONS(552), - [anon_sym_for] = ACTIONS(552), - [anon_sym_if] = ACTIONS(552), - [anon_sym_impl] = ACTIONS(552), - [anon_sym_let] = ACTIONS(552), - [anon_sym_loop] = ACTIONS(552), - [anon_sym_match] = ACTIONS(552), - [anon_sym_mod] = ACTIONS(552), - [anon_sym_pub] = ACTIONS(552), - [anon_sym_return] = ACTIONS(552), - [anon_sym_static] = ACTIONS(552), - [anon_sym_struct] = ACTIONS(552), - [anon_sym_trait] = ACTIONS(552), - [anon_sym_type] = ACTIONS(552), - [anon_sym_union] = ACTIONS(552), - [anon_sym_unsafe] = ACTIONS(552), - [anon_sym_use] = ACTIONS(552), - [anon_sym_where] = ACTIONS(552), - [anon_sym_while] = ACTIONS(552), - [sym_mutable_specifier] = ACTIONS(552), - [sym_integer_literal] = ACTIONS(568), - [aux_sym_string_literal_token1] = ACTIONS(570), - [sym_char_literal] = ACTIONS(568), - [anon_sym_true] = ACTIONS(572), - [anon_sym_false] = ACTIONS(572), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(552), - [sym_super] = ACTIONS(552), - [sym_crate] = ACTIONS(552), - [sym_metavariable] = ACTIONS(574), - [sym__raw_string_literal_start] = ACTIONS(576), - [sym_float_literal] = ACTIONS(568), + [aux_sym_token_tree_repeat1] = STATE(78), + [aux_sym__non_special_token_repeat1] = STATE(136), + [sym_identifier] = ACTIONS(621), + [anon_sym_SEMI] = ACTIONS(624), + [anon_sym_LPAREN] = ACTIONS(627), + [anon_sym_RPAREN] = ACTIONS(630), + [anon_sym_LBRACK] = ACTIONS(632), + [anon_sym_RBRACK] = ACTIONS(630), + [anon_sym_LBRACE] = ACTIONS(635), + [anon_sym_RBRACE] = ACTIONS(630), + [anon_sym_EQ_GT] = ACTIONS(624), + [anon_sym_COLON] = ACTIONS(638), + [anon_sym_DOLLAR] = ACTIONS(641), + [anon_sym_PLUS] = ACTIONS(638), + [anon_sym_STAR] = ACTIONS(638), + [anon_sym_QMARK] = ACTIONS(624), + [anon_sym_u8] = ACTIONS(621), + [anon_sym_i8] = ACTIONS(621), + [anon_sym_u16] = ACTIONS(621), + [anon_sym_i16] = ACTIONS(621), + [anon_sym_u32] = ACTIONS(621), + [anon_sym_i32] = ACTIONS(621), + [anon_sym_u64] = ACTIONS(621), + [anon_sym_i64] = ACTIONS(621), + [anon_sym_u128] = ACTIONS(621), + [anon_sym_i128] = ACTIONS(621), + [anon_sym_isize] = ACTIONS(621), + [anon_sym_usize] = ACTIONS(621), + [anon_sym_f32] = ACTIONS(621), + [anon_sym_f64] = ACTIONS(621), + [anon_sym_bool] = ACTIONS(621), + [anon_sym_str] = ACTIONS(621), + [anon_sym_char] = ACTIONS(621), + [anon_sym_DASH] = ACTIONS(638), + [anon_sym_SLASH] = ACTIONS(638), + [anon_sym_PERCENT] = ACTIONS(638), + [anon_sym_CARET] = ACTIONS(638), + [anon_sym_BANG] = ACTIONS(638), + [anon_sym_AMP] = ACTIONS(638), + [anon_sym_PIPE] = ACTIONS(638), + [anon_sym_AMP_AMP] = ACTIONS(624), + [anon_sym_PIPE_PIPE] = ACTIONS(624), + [anon_sym_LT_LT] = ACTIONS(638), + [anon_sym_GT_GT] = ACTIONS(638), + [anon_sym_PLUS_EQ] = ACTIONS(624), + [anon_sym_DASH_EQ] = ACTIONS(624), + [anon_sym_STAR_EQ] = ACTIONS(624), + [anon_sym_SLASH_EQ] = ACTIONS(624), + [anon_sym_PERCENT_EQ] = ACTIONS(624), + [anon_sym_CARET_EQ] = ACTIONS(624), + [anon_sym_AMP_EQ] = ACTIONS(624), + [anon_sym_PIPE_EQ] = ACTIONS(624), + [anon_sym_LT_LT_EQ] = ACTIONS(624), + [anon_sym_GT_GT_EQ] = ACTIONS(624), + [anon_sym_EQ] = ACTIONS(638), + [anon_sym_EQ_EQ] = ACTIONS(624), + [anon_sym_BANG_EQ] = ACTIONS(624), + [anon_sym_GT] = ACTIONS(638), + [anon_sym_LT] = ACTIONS(638), + [anon_sym_GT_EQ] = ACTIONS(624), + [anon_sym_LT_EQ] = ACTIONS(624), + [anon_sym_AT] = ACTIONS(624), + [anon_sym__] = ACTIONS(638), + [anon_sym_DOT] = ACTIONS(638), + [anon_sym_DOT_DOT] = ACTIONS(638), + [anon_sym_DOT_DOT_DOT] = ACTIONS(624), + [anon_sym_DOT_DOT_EQ] = ACTIONS(624), + [anon_sym_COMMA] = ACTIONS(624), + [anon_sym_COLON_COLON] = ACTIONS(624), + [anon_sym_DASH_GT] = ACTIONS(624), + [anon_sym_POUND] = ACTIONS(624), + [anon_sym_SQUOTE] = ACTIONS(621), + [anon_sym_as] = ACTIONS(621), + [anon_sym_async] = ACTIONS(621), + [anon_sym_await] = ACTIONS(621), + [anon_sym_break] = ACTIONS(621), + [anon_sym_const] = ACTIONS(621), + [anon_sym_continue] = ACTIONS(621), + [anon_sym_default] = ACTIONS(621), + [anon_sym_enum] = ACTIONS(621), + [anon_sym_fn] = ACTIONS(621), + [anon_sym_for] = ACTIONS(621), + [anon_sym_if] = ACTIONS(621), + [anon_sym_impl] = ACTIONS(621), + [anon_sym_let] = ACTIONS(621), + [anon_sym_loop] = ACTIONS(621), + [anon_sym_match] = ACTIONS(621), + [anon_sym_mod] = ACTIONS(621), + [anon_sym_pub] = ACTIONS(621), + [anon_sym_return] = ACTIONS(621), + [anon_sym_static] = ACTIONS(621), + [anon_sym_struct] = ACTIONS(621), + [anon_sym_trait] = ACTIONS(621), + [anon_sym_type] = ACTIONS(621), + [anon_sym_union] = ACTIONS(621), + [anon_sym_unsafe] = ACTIONS(621), + [anon_sym_use] = ACTIONS(621), + [anon_sym_where] = ACTIONS(621), + [anon_sym_while] = ACTIONS(621), + [sym_mutable_specifier] = ACTIONS(621), + [sym_integer_literal] = ACTIONS(644), + [aux_sym_string_literal_token1] = ACTIONS(647), + [sym_char_literal] = ACTIONS(644), + [anon_sym_true] = ACTIONS(650), + [anon_sym_false] = ACTIONS(650), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(621), + [sym_super] = ACTIONS(621), + [sym_crate] = ACTIONS(621), + [sym_metavariable] = ACTIONS(653), + [sym__raw_string_literal_start] = ACTIONS(656), + [sym_float_literal] = ACTIONS(644), }, [79] = { - [sym__token_pattern] = STATE(149), - [sym_token_tree_pattern] = STATE(166), - [sym_token_binding_pattern] = STATE(166), - [sym_token_repetition_pattern] = STATE(166), - [sym__literal] = STATE(166), - [sym_string_literal] = STATE(156), - [sym_raw_string_literal] = STATE(156), - [sym_boolean_literal] = STATE(156), + [sym__token_pattern] = STATE(153), + [sym_token_tree_pattern] = STATE(141), + [sym_token_binding_pattern] = STATE(141), + [sym_token_repetition_pattern] = STATE(141), + [sym__literal] = STATE(141), + [sym_string_literal] = STATE(151), + [sym_raw_string_literal] = STATE(151), + [sym_boolean_literal] = STATE(151), [sym_line_comment] = STATE(79), [sym_block_comment] = STATE(79), - [aux_sym_token_tree_pattern_repeat1] = STATE(67), - [aux_sym__non_special_token_repeat1] = STATE(135), + [aux_sym_token_tree_pattern_repeat1] = STATE(68), + [aux_sym__non_special_token_repeat1] = STATE(134), [sym_identifier] = ACTIONS(552), [anon_sym_SEMI] = ACTIONS(554), [anon_sym_LPAREN] = ACTIONS(556), + [anon_sym_RPAREN] = ACTIONS(659), [anon_sym_LBRACK] = ACTIONS(560), [anon_sym_LBRACE] = ACTIONS(562), - [anon_sym_RBRACE] = ACTIONS(582), [anon_sym_EQ_GT] = ACTIONS(554), [anon_sym_COLON] = ACTIONS(564), [anon_sym_DOLLAR] = ACTIONS(566), @@ -25093,24 +25101,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(568), }, [80] = { - [sym__token_pattern] = STATE(149), - [sym_token_tree_pattern] = STATE(166), - [sym_token_binding_pattern] = STATE(166), - [sym_token_repetition_pattern] = STATE(166), - [sym__literal] = STATE(166), - [sym_string_literal] = STATE(156), - [sym_raw_string_literal] = STATE(156), - [sym_boolean_literal] = STATE(156), + [sym__token_pattern] = STATE(153), + [sym_token_tree_pattern] = STATE(141), + [sym_token_binding_pattern] = STATE(141), + [sym_token_repetition_pattern] = STATE(141), + [sym__literal] = STATE(141), + [sym_string_literal] = STATE(151), + [sym_raw_string_literal] = STATE(151), + [sym_boolean_literal] = STATE(151), [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(135), + [aux_sym_token_tree_pattern_repeat1] = STATE(77), + [aux_sym__non_special_token_repeat1] = STATE(134), [sym_identifier] = ACTIONS(552), [anon_sym_SEMI] = ACTIONS(554), [anon_sym_LPAREN] = ACTIONS(556), - [anon_sym_RPAREN] = ACTIONS(584), [anon_sym_LBRACK] = ACTIONS(560), [anon_sym_LBRACE] = ACTIONS(562), + [anon_sym_RBRACE] = ACTIONS(659), [anon_sym_EQ_GT] = ACTIONS(554), [anon_sym_COLON] = ACTIONS(564), [anon_sym_DOLLAR] = ACTIONS(566), @@ -25216,22 +25224,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(568), }, [81] = { - [sym__token_pattern] = STATE(149), - [sym_token_tree_pattern] = STATE(166), - [sym_token_binding_pattern] = STATE(166), - [sym_token_repetition_pattern] = STATE(166), - [sym__literal] = STATE(166), - [sym_string_literal] = STATE(156), - [sym_raw_string_literal] = STATE(156), - [sym_boolean_literal] = STATE(156), + [sym__token_pattern] = STATE(153), + [sym_token_tree_pattern] = STATE(141), + [sym_token_binding_pattern] = STATE(141), + [sym_token_repetition_pattern] = STATE(141), + [sym__literal] = STATE(141), + [sym_string_literal] = STATE(151), + [sym_raw_string_literal] = STATE(151), + [sym_boolean_literal] = STATE(151), [sym_line_comment] = STATE(81), [sym_block_comment] = STATE(81), - [aux_sym_token_tree_pattern_repeat1] = STATE(80), - [aux_sym__non_special_token_repeat1] = STATE(135), + [aux_sym_token_tree_pattern_repeat1] = STATE(70), + [aux_sym__non_special_token_repeat1] = STATE(134), [sym_identifier] = ACTIONS(552), [anon_sym_SEMI] = ACTIONS(554), [anon_sym_LPAREN] = ACTIONS(556), - [anon_sym_RPAREN] = ACTIONS(586), + [anon_sym_RPAREN] = ACTIONS(578), [anon_sym_LBRACK] = ACTIONS(560), [anon_sym_LBRACE] = ACTIONS(562), [anon_sym_EQ_GT] = ACTIONS(554), @@ -25339,654 +25347,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(568), }, [82] = { - [sym_token_tree] = STATE(157), - [sym_token_repetition] = STATE(157), - [sym__literal] = STATE(157), - [sym_string_literal] = STATE(156), - [sym_raw_string_literal] = STATE(156), - [sym_boolean_literal] = STATE(156), + [sym__token_pattern] = STATE(153), + [sym_token_tree_pattern] = STATE(141), + [sym_token_binding_pattern] = STATE(141), + [sym_token_repetition_pattern] = STATE(141), + [sym__literal] = STATE(141), + [sym_string_literal] = STATE(151), + [sym_raw_string_literal] = STATE(151), + [sym_boolean_literal] = STATE(151), [sym_line_comment] = STATE(82), [sym_block_comment] = STATE(82), - [aux_sym_token_tree_repeat1] = STATE(82), - [aux_sym__non_special_token_repeat1] = STATE(136), - [sym_identifier] = ACTIONS(588), - [anon_sym_SEMI] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_RPAREN] = ACTIONS(597), - [anon_sym_LBRACK] = ACTIONS(599), - [anon_sym_RBRACK] = ACTIONS(597), - [anon_sym_LBRACE] = ACTIONS(602), - [anon_sym_RBRACE] = ACTIONS(597), - [anon_sym_EQ_GT] = ACTIONS(591), - [anon_sym_COLON] = ACTIONS(605), - [anon_sym_DOLLAR] = ACTIONS(608), - [anon_sym_PLUS] = ACTIONS(605), - [anon_sym_STAR] = ACTIONS(605), - [anon_sym_QMARK] = ACTIONS(591), - [anon_sym_u8] = ACTIONS(588), - [anon_sym_i8] = ACTIONS(588), - [anon_sym_u16] = ACTIONS(588), - [anon_sym_i16] = ACTIONS(588), - [anon_sym_u32] = ACTIONS(588), - [anon_sym_i32] = ACTIONS(588), - [anon_sym_u64] = ACTIONS(588), - [anon_sym_i64] = ACTIONS(588), - [anon_sym_u128] = ACTIONS(588), - [anon_sym_i128] = ACTIONS(588), - [anon_sym_isize] = ACTIONS(588), - [anon_sym_usize] = ACTIONS(588), - [anon_sym_f32] = ACTIONS(588), - [anon_sym_f64] = ACTIONS(588), - [anon_sym_bool] = ACTIONS(588), - [anon_sym_str] = ACTIONS(588), - [anon_sym_char] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(605), - [anon_sym_SLASH] = ACTIONS(605), - [anon_sym_PERCENT] = ACTIONS(605), - [anon_sym_CARET] = ACTIONS(605), - [anon_sym_BANG] = ACTIONS(605), - [anon_sym_AMP] = ACTIONS(605), - [anon_sym_PIPE] = ACTIONS(605), - [anon_sym_AMP_AMP] = ACTIONS(591), - [anon_sym_PIPE_PIPE] = ACTIONS(591), - [anon_sym_LT_LT] = ACTIONS(605), - [anon_sym_GT_GT] = ACTIONS(605), - [anon_sym_PLUS_EQ] = ACTIONS(591), - [anon_sym_DASH_EQ] = ACTIONS(591), - [anon_sym_STAR_EQ] = ACTIONS(591), - [anon_sym_SLASH_EQ] = ACTIONS(591), - [anon_sym_PERCENT_EQ] = ACTIONS(591), - [anon_sym_CARET_EQ] = ACTIONS(591), - [anon_sym_AMP_EQ] = ACTIONS(591), - [anon_sym_PIPE_EQ] = ACTIONS(591), - [anon_sym_LT_LT_EQ] = ACTIONS(591), - [anon_sym_GT_GT_EQ] = ACTIONS(591), - [anon_sym_EQ] = ACTIONS(605), - [anon_sym_EQ_EQ] = ACTIONS(591), - [anon_sym_BANG_EQ] = ACTIONS(591), - [anon_sym_GT] = ACTIONS(605), - [anon_sym_LT] = ACTIONS(605), - [anon_sym_GT_EQ] = ACTIONS(591), - [anon_sym_LT_EQ] = ACTIONS(591), - [anon_sym_AT] = ACTIONS(591), - [anon_sym__] = ACTIONS(605), - [anon_sym_DOT] = ACTIONS(605), - [anon_sym_DOT_DOT] = ACTIONS(605), - [anon_sym_DOT_DOT_DOT] = ACTIONS(591), - [anon_sym_DOT_DOT_EQ] = ACTIONS(591), - [anon_sym_COMMA] = ACTIONS(591), - [anon_sym_COLON_COLON] = ACTIONS(591), - [anon_sym_DASH_GT] = ACTIONS(591), - [anon_sym_POUND] = ACTIONS(591), - [anon_sym_SQUOTE] = ACTIONS(588), - [anon_sym_as] = ACTIONS(588), - [anon_sym_async] = ACTIONS(588), - [anon_sym_await] = ACTIONS(588), - [anon_sym_break] = ACTIONS(588), - [anon_sym_const] = ACTIONS(588), - [anon_sym_continue] = ACTIONS(588), - [anon_sym_default] = ACTIONS(588), - [anon_sym_enum] = ACTIONS(588), - [anon_sym_fn] = ACTIONS(588), - [anon_sym_for] = ACTIONS(588), - [anon_sym_if] = ACTIONS(588), - [anon_sym_impl] = ACTIONS(588), - [anon_sym_let] = ACTIONS(588), - [anon_sym_loop] = ACTIONS(588), - [anon_sym_match] = ACTIONS(588), - [anon_sym_mod] = ACTIONS(588), - [anon_sym_pub] = ACTIONS(588), - [anon_sym_return] = ACTIONS(588), - [anon_sym_static] = ACTIONS(588), - [anon_sym_struct] = ACTIONS(588), - [anon_sym_trait] = ACTIONS(588), - [anon_sym_type] = ACTIONS(588), - [anon_sym_union] = ACTIONS(588), - [anon_sym_unsafe] = ACTIONS(588), - [anon_sym_use] = ACTIONS(588), - [anon_sym_where] = ACTIONS(588), - [anon_sym_while] = ACTIONS(588), - [sym_mutable_specifier] = ACTIONS(588), - [sym_integer_literal] = ACTIONS(611), - [aux_sym_string_literal_token1] = ACTIONS(614), - [sym_char_literal] = ACTIONS(611), - [anon_sym_true] = ACTIONS(617), - [anon_sym_false] = ACTIONS(617), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(588), - [sym_super] = ACTIONS(588), - [sym_crate] = ACTIONS(588), - [sym_metavariable] = ACTIONS(620), - [sym__raw_string_literal_start] = ACTIONS(623), - [sym_float_literal] = ACTIONS(611), - }, - [83] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), - [sym_line_comment] = STATE(83), - [sym_block_comment] = STATE(83), - [aux_sym__non_special_token_repeat1] = STATE(160), - [aux_sym_delim_token_tree_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(626), - [anon_sym_SEMI] = ACTIONS(629), - [anon_sym_LPAREN] = ACTIONS(632), - [anon_sym_RPAREN] = ACTIONS(635), - [anon_sym_LBRACK] = ACTIONS(637), - [anon_sym_RBRACK] = ACTIONS(635), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_RBRACE] = ACTIONS(635), - [anon_sym_EQ_GT] = ACTIONS(629), - [anon_sym_COLON] = ACTIONS(643), - [anon_sym_DOLLAR] = ACTIONS(646), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_STAR] = ACTIONS(643), - [anon_sym_QMARK] = ACTIONS(629), - [anon_sym_u8] = ACTIONS(626), - [anon_sym_i8] = ACTIONS(626), - [anon_sym_u16] = ACTIONS(626), - [anon_sym_i16] = ACTIONS(626), - [anon_sym_u32] = ACTIONS(626), - [anon_sym_i32] = ACTIONS(626), - [anon_sym_u64] = ACTIONS(626), - [anon_sym_i64] = ACTIONS(626), - [anon_sym_u128] = ACTIONS(626), - [anon_sym_i128] = ACTIONS(626), - [anon_sym_isize] = ACTIONS(626), - [anon_sym_usize] = ACTIONS(626), - [anon_sym_f32] = ACTIONS(626), - [anon_sym_f64] = ACTIONS(626), - [anon_sym_bool] = ACTIONS(626), - [anon_sym_str] = ACTIONS(626), - [anon_sym_char] = ACTIONS(626), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_SLASH] = ACTIONS(643), - [anon_sym_PERCENT] = ACTIONS(643), - [anon_sym_CARET] = ACTIONS(643), - [anon_sym_BANG] = ACTIONS(643), - [anon_sym_AMP] = ACTIONS(643), - [anon_sym_PIPE] = ACTIONS(643), - [anon_sym_AMP_AMP] = ACTIONS(629), - [anon_sym_PIPE_PIPE] = ACTIONS(629), - [anon_sym_LT_LT] = ACTIONS(643), - [anon_sym_GT_GT] = ACTIONS(643), - [anon_sym_PLUS_EQ] = ACTIONS(629), - [anon_sym_DASH_EQ] = ACTIONS(629), - [anon_sym_STAR_EQ] = ACTIONS(629), - [anon_sym_SLASH_EQ] = ACTIONS(629), - [anon_sym_PERCENT_EQ] = ACTIONS(629), - [anon_sym_CARET_EQ] = ACTIONS(629), - [anon_sym_AMP_EQ] = ACTIONS(629), - [anon_sym_PIPE_EQ] = ACTIONS(629), - [anon_sym_LT_LT_EQ] = ACTIONS(629), - [anon_sym_GT_GT_EQ] = ACTIONS(629), - [anon_sym_EQ] = ACTIONS(643), - [anon_sym_EQ_EQ] = ACTIONS(629), - [anon_sym_BANG_EQ] = ACTIONS(629), - [anon_sym_GT] = ACTIONS(643), - [anon_sym_LT] = ACTIONS(643), - [anon_sym_GT_EQ] = ACTIONS(629), - [anon_sym_LT_EQ] = ACTIONS(629), - [anon_sym_AT] = ACTIONS(629), - [anon_sym__] = ACTIONS(643), - [anon_sym_DOT] = ACTIONS(643), - [anon_sym_DOT_DOT] = ACTIONS(643), - [anon_sym_DOT_DOT_DOT] = ACTIONS(629), - [anon_sym_DOT_DOT_EQ] = ACTIONS(629), - [anon_sym_COMMA] = ACTIONS(629), - [anon_sym_COLON_COLON] = ACTIONS(629), - [anon_sym_DASH_GT] = ACTIONS(629), - [anon_sym_POUND] = ACTIONS(629), - [anon_sym_SQUOTE] = ACTIONS(626), - [anon_sym_as] = ACTIONS(626), - [anon_sym_async] = ACTIONS(626), - [anon_sym_await] = ACTIONS(626), - [anon_sym_break] = ACTIONS(626), - [anon_sym_const] = ACTIONS(626), - [anon_sym_continue] = ACTIONS(626), - [anon_sym_default] = ACTIONS(626), - [anon_sym_enum] = ACTIONS(626), - [anon_sym_fn] = ACTIONS(626), - [anon_sym_for] = ACTIONS(626), - [anon_sym_if] = ACTIONS(626), - [anon_sym_impl] = ACTIONS(626), - [anon_sym_let] = ACTIONS(626), - [anon_sym_loop] = ACTIONS(626), - [anon_sym_match] = ACTIONS(626), - [anon_sym_mod] = ACTIONS(626), - [anon_sym_pub] = ACTIONS(626), - [anon_sym_return] = ACTIONS(626), - [anon_sym_static] = ACTIONS(626), - [anon_sym_struct] = ACTIONS(626), - [anon_sym_trait] = ACTIONS(626), - [anon_sym_type] = ACTIONS(626), - [anon_sym_union] = ACTIONS(626), - [anon_sym_unsafe] = ACTIONS(626), - [anon_sym_use] = ACTIONS(626), - [anon_sym_where] = ACTIONS(626), - [anon_sym_while] = ACTIONS(626), - [sym_mutable_specifier] = ACTIONS(626), - [sym_integer_literal] = ACTIONS(649), - [aux_sym_string_literal_token1] = ACTIONS(652), - [sym_char_literal] = ACTIONS(649), - [anon_sym_true] = ACTIONS(655), - [anon_sym_false] = ACTIONS(655), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(626), - [sym_super] = ACTIONS(626), - [sym_crate] = ACTIONS(626), - [sym__raw_string_literal_start] = ACTIONS(658), - [sym_float_literal] = ACTIONS(649), - }, - [84] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), - [sym_line_comment] = STATE(84), - [sym_block_comment] = STATE(84), - [aux_sym__non_special_token_repeat1] = STATE(160), - [aux_sym_delim_token_tree_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(661), - [anon_sym_SEMI] = ACTIONS(663), - [anon_sym_LPAREN] = ACTIONS(665), - [anon_sym_RPAREN] = ACTIONS(667), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(671), - [anon_sym_EQ_GT] = ACTIONS(663), - [anon_sym_COLON] = ACTIONS(673), - [anon_sym_DOLLAR] = ACTIONS(675), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_STAR] = ACTIONS(673), - [anon_sym_QMARK] = ACTIONS(663), - [anon_sym_u8] = ACTIONS(661), - [anon_sym_i8] = ACTIONS(661), - [anon_sym_u16] = ACTIONS(661), - [anon_sym_i16] = ACTIONS(661), - [anon_sym_u32] = ACTIONS(661), - [anon_sym_i32] = ACTIONS(661), - [anon_sym_u64] = ACTIONS(661), - [anon_sym_i64] = ACTIONS(661), - [anon_sym_u128] = ACTIONS(661), - [anon_sym_i128] = ACTIONS(661), - [anon_sym_isize] = ACTIONS(661), - [anon_sym_usize] = ACTIONS(661), - [anon_sym_f32] = ACTIONS(661), - [anon_sym_f64] = ACTIONS(661), - [anon_sym_bool] = ACTIONS(661), - [anon_sym_str] = ACTIONS(661), - [anon_sym_char] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_SLASH] = ACTIONS(673), - [anon_sym_PERCENT] = ACTIONS(673), - [anon_sym_CARET] = ACTIONS(673), - [anon_sym_BANG] = ACTIONS(673), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE] = ACTIONS(673), - [anon_sym_AMP_AMP] = ACTIONS(663), - [anon_sym_PIPE_PIPE] = ACTIONS(663), - [anon_sym_LT_LT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(673), - [anon_sym_PLUS_EQ] = ACTIONS(663), - [anon_sym_DASH_EQ] = ACTIONS(663), - [anon_sym_STAR_EQ] = ACTIONS(663), - [anon_sym_SLASH_EQ] = ACTIONS(663), - [anon_sym_PERCENT_EQ] = ACTIONS(663), - [anon_sym_CARET_EQ] = ACTIONS(663), - [anon_sym_AMP_EQ] = ACTIONS(663), - [anon_sym_PIPE_EQ] = ACTIONS(663), - [anon_sym_LT_LT_EQ] = ACTIONS(663), - [anon_sym_GT_GT_EQ] = ACTIONS(663), - [anon_sym_EQ] = ACTIONS(673), - [anon_sym_EQ_EQ] = ACTIONS(663), - [anon_sym_BANG_EQ] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_GT_EQ] = ACTIONS(663), - [anon_sym_LT_EQ] = ACTIONS(663), - [anon_sym_AT] = ACTIONS(663), - [anon_sym__] = ACTIONS(673), - [anon_sym_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(663), - [anon_sym_COLON_COLON] = ACTIONS(663), - [anon_sym_DASH_GT] = ACTIONS(663), - [anon_sym_POUND] = ACTIONS(663), - [anon_sym_SQUOTE] = ACTIONS(661), - [anon_sym_as] = ACTIONS(661), - [anon_sym_async] = ACTIONS(661), - [anon_sym_await] = ACTIONS(661), - [anon_sym_break] = ACTIONS(661), - [anon_sym_const] = ACTIONS(661), - [anon_sym_continue] = ACTIONS(661), - [anon_sym_default] = ACTIONS(661), - [anon_sym_enum] = ACTIONS(661), - [anon_sym_fn] = ACTIONS(661), - [anon_sym_for] = ACTIONS(661), - [anon_sym_if] = ACTIONS(661), - [anon_sym_impl] = ACTIONS(661), - [anon_sym_let] = ACTIONS(661), - [anon_sym_loop] = ACTIONS(661), - [anon_sym_match] = ACTIONS(661), - [anon_sym_mod] = ACTIONS(661), - [anon_sym_pub] = ACTIONS(661), - [anon_sym_return] = ACTIONS(661), - [anon_sym_static] = ACTIONS(661), - [anon_sym_struct] = ACTIONS(661), - [anon_sym_trait] = ACTIONS(661), - [anon_sym_type] = ACTIONS(661), - [anon_sym_union] = ACTIONS(661), - [anon_sym_unsafe] = ACTIONS(661), - [anon_sym_use] = ACTIONS(661), - [anon_sym_where] = ACTIONS(661), - [anon_sym_while] = ACTIONS(661), - [sym_mutable_specifier] = ACTIONS(661), - [sym_integer_literal] = ACTIONS(677), - [aux_sym_string_literal_token1] = ACTIONS(679), - [sym_char_literal] = ACTIONS(677), - [anon_sym_true] = ACTIONS(681), - [anon_sym_false] = ACTIONS(681), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_crate] = ACTIONS(661), - [sym__raw_string_literal_start] = ACTIONS(683), - [sym_float_literal] = ACTIONS(677), - }, - [85] = { - [sym_token_tree] = STATE(157), - [sym_token_repetition] = STATE(157), - [sym__literal] = STATE(157), - [sym_string_literal] = STATE(156), - [sym_raw_string_literal] = STATE(156), - [sym_boolean_literal] = STATE(156), - [sym_line_comment] = STATE(85), - [sym_block_comment] = STATE(85), - [aux_sym_token_tree_repeat1] = STATE(82), - [aux_sym__non_special_token_repeat1] = STATE(136), - [sym_identifier] = ACTIONS(685), - [anon_sym_SEMI] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_RPAREN] = ACTIONS(689), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_EQ_GT] = ACTIONS(554), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(695), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_QMARK] = ACTIONS(554), - [anon_sym_u8] = ACTIONS(685), - [anon_sym_i8] = ACTIONS(685), - [anon_sym_u16] = ACTIONS(685), - [anon_sym_i16] = ACTIONS(685), - [anon_sym_u32] = ACTIONS(685), - [anon_sym_i32] = ACTIONS(685), - [anon_sym_u64] = ACTIONS(685), - [anon_sym_i64] = ACTIONS(685), - [anon_sym_u128] = ACTIONS(685), - [anon_sym_i128] = ACTIONS(685), - [anon_sym_isize] = ACTIONS(685), - [anon_sym_usize] = ACTIONS(685), - [anon_sym_f32] = ACTIONS(685), - [anon_sym_f64] = ACTIONS(685), - [anon_sym_bool] = ACTIONS(685), - [anon_sym_str] = ACTIONS(685), - [anon_sym_char] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_AMP] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_AMP_AMP] = ACTIONS(554), - [anon_sym_PIPE_PIPE] = ACTIONS(554), - [anon_sym_LT_LT] = ACTIONS(564), - [anon_sym_GT_GT] = ACTIONS(564), - [anon_sym_PLUS_EQ] = ACTIONS(554), - [anon_sym_DASH_EQ] = ACTIONS(554), - [anon_sym_STAR_EQ] = ACTIONS(554), - [anon_sym_SLASH_EQ] = ACTIONS(554), - [anon_sym_PERCENT_EQ] = ACTIONS(554), - [anon_sym_CARET_EQ] = ACTIONS(554), - [anon_sym_AMP_EQ] = ACTIONS(554), - [anon_sym_PIPE_EQ] = ACTIONS(554), - [anon_sym_LT_LT_EQ] = ACTIONS(554), - [anon_sym_GT_GT_EQ] = ACTIONS(554), - [anon_sym_EQ] = ACTIONS(564), - [anon_sym_EQ_EQ] = ACTIONS(554), - [anon_sym_BANG_EQ] = ACTIONS(554), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT_EQ] = ACTIONS(554), - [anon_sym_LT_EQ] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(554), - [anon_sym__] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(554), - [anon_sym_DOT_DOT_EQ] = ACTIONS(554), - [anon_sym_COMMA] = ACTIONS(554), - [anon_sym_COLON_COLON] = ACTIONS(554), - [anon_sym_DASH_GT] = ACTIONS(554), - [anon_sym_POUND] = ACTIONS(554), - [anon_sym_SQUOTE] = ACTIONS(685), - [anon_sym_as] = ACTIONS(685), - [anon_sym_async] = ACTIONS(685), - [anon_sym_await] = ACTIONS(685), - [anon_sym_break] = ACTIONS(685), - [anon_sym_const] = ACTIONS(685), - [anon_sym_continue] = ACTIONS(685), - [anon_sym_default] = ACTIONS(685), - [anon_sym_enum] = ACTIONS(685), - [anon_sym_fn] = ACTIONS(685), - [anon_sym_for] = ACTIONS(685), - [anon_sym_if] = ACTIONS(685), - [anon_sym_impl] = ACTIONS(685), - [anon_sym_let] = ACTIONS(685), - [anon_sym_loop] = ACTIONS(685), - [anon_sym_match] = ACTIONS(685), - [anon_sym_mod] = ACTIONS(685), - [anon_sym_pub] = ACTIONS(685), - [anon_sym_return] = ACTIONS(685), - [anon_sym_static] = ACTIONS(685), - [anon_sym_struct] = ACTIONS(685), - [anon_sym_trait] = ACTIONS(685), - [anon_sym_type] = ACTIONS(685), - [anon_sym_union] = ACTIONS(685), - [anon_sym_unsafe] = ACTIONS(685), - [anon_sym_use] = ACTIONS(685), - [anon_sym_where] = ACTIONS(685), - [anon_sym_while] = ACTIONS(685), - [sym_mutable_specifier] = ACTIONS(685), - [sym_integer_literal] = ACTIONS(568), - [aux_sym_string_literal_token1] = ACTIONS(570), - [sym_char_literal] = ACTIONS(568), - [anon_sym_true] = ACTIONS(572), - [anon_sym_false] = ACTIONS(572), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(685), - [sym_super] = ACTIONS(685), - [sym_crate] = ACTIONS(685), - [sym_metavariable] = ACTIONS(697), - [sym__raw_string_literal_start] = ACTIONS(576), - [sym_float_literal] = ACTIONS(568), - }, - [86] = { - [sym_token_tree] = STATE(157), - [sym_token_repetition] = STATE(157), - [sym__literal] = STATE(157), - [sym_string_literal] = STATE(156), - [sym_raw_string_literal] = STATE(156), - [sym_boolean_literal] = STATE(156), - [sym_line_comment] = STATE(86), - [sym_block_comment] = STATE(86), - [aux_sym_token_tree_repeat1] = STATE(82), - [aux_sym__non_special_token_repeat1] = STATE(136), - [sym_identifier] = ACTIONS(685), - [anon_sym_SEMI] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_RBRACK] = ACTIONS(689), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_EQ_GT] = ACTIONS(554), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(695), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_QMARK] = ACTIONS(554), - [anon_sym_u8] = ACTIONS(685), - [anon_sym_i8] = ACTIONS(685), - [anon_sym_u16] = ACTIONS(685), - [anon_sym_i16] = ACTIONS(685), - [anon_sym_u32] = ACTIONS(685), - [anon_sym_i32] = ACTIONS(685), - [anon_sym_u64] = ACTIONS(685), - [anon_sym_i64] = ACTIONS(685), - [anon_sym_u128] = ACTIONS(685), - [anon_sym_i128] = ACTIONS(685), - [anon_sym_isize] = ACTIONS(685), - [anon_sym_usize] = ACTIONS(685), - [anon_sym_f32] = ACTIONS(685), - [anon_sym_f64] = ACTIONS(685), - [anon_sym_bool] = ACTIONS(685), - [anon_sym_str] = ACTIONS(685), - [anon_sym_char] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_AMP] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_AMP_AMP] = ACTIONS(554), - [anon_sym_PIPE_PIPE] = ACTIONS(554), - [anon_sym_LT_LT] = ACTIONS(564), - [anon_sym_GT_GT] = ACTIONS(564), - [anon_sym_PLUS_EQ] = ACTIONS(554), - [anon_sym_DASH_EQ] = ACTIONS(554), - [anon_sym_STAR_EQ] = ACTIONS(554), - [anon_sym_SLASH_EQ] = ACTIONS(554), - [anon_sym_PERCENT_EQ] = ACTIONS(554), - [anon_sym_CARET_EQ] = ACTIONS(554), - [anon_sym_AMP_EQ] = ACTIONS(554), - [anon_sym_PIPE_EQ] = ACTIONS(554), - [anon_sym_LT_LT_EQ] = ACTIONS(554), - [anon_sym_GT_GT_EQ] = ACTIONS(554), - [anon_sym_EQ] = ACTIONS(564), - [anon_sym_EQ_EQ] = ACTIONS(554), - [anon_sym_BANG_EQ] = ACTIONS(554), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT_EQ] = ACTIONS(554), - [anon_sym_LT_EQ] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(554), - [anon_sym__] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(554), - [anon_sym_DOT_DOT_EQ] = ACTIONS(554), - [anon_sym_COMMA] = ACTIONS(554), - [anon_sym_COLON_COLON] = ACTIONS(554), - [anon_sym_DASH_GT] = ACTIONS(554), - [anon_sym_POUND] = ACTIONS(554), - [anon_sym_SQUOTE] = ACTIONS(685), - [anon_sym_as] = ACTIONS(685), - [anon_sym_async] = ACTIONS(685), - [anon_sym_await] = ACTIONS(685), - [anon_sym_break] = ACTIONS(685), - [anon_sym_const] = ACTIONS(685), - [anon_sym_continue] = ACTIONS(685), - [anon_sym_default] = ACTIONS(685), - [anon_sym_enum] = ACTIONS(685), - [anon_sym_fn] = ACTIONS(685), - [anon_sym_for] = ACTIONS(685), - [anon_sym_if] = ACTIONS(685), - [anon_sym_impl] = ACTIONS(685), - [anon_sym_let] = ACTIONS(685), - [anon_sym_loop] = ACTIONS(685), - [anon_sym_match] = ACTIONS(685), - [anon_sym_mod] = ACTIONS(685), - [anon_sym_pub] = ACTIONS(685), - [anon_sym_return] = ACTIONS(685), - [anon_sym_static] = ACTIONS(685), - [anon_sym_struct] = ACTIONS(685), - [anon_sym_trait] = ACTIONS(685), - [anon_sym_type] = ACTIONS(685), - [anon_sym_union] = ACTIONS(685), - [anon_sym_unsafe] = ACTIONS(685), - [anon_sym_use] = ACTIONS(685), - [anon_sym_where] = ACTIONS(685), - [anon_sym_while] = ACTIONS(685), - [sym_mutable_specifier] = ACTIONS(685), - [sym_integer_literal] = ACTIONS(568), - [aux_sym_string_literal_token1] = ACTIONS(570), - [sym_char_literal] = ACTIONS(568), - [anon_sym_true] = ACTIONS(572), - [anon_sym_false] = ACTIONS(572), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(685), - [sym_super] = ACTIONS(685), - [sym_crate] = ACTIONS(685), - [sym_metavariable] = ACTIONS(697), - [sym__raw_string_literal_start] = ACTIONS(576), - [sym_float_literal] = ACTIONS(568), - }, - [87] = { - [sym_token_tree] = STATE(157), - [sym_token_repetition] = STATE(157), - [sym__literal] = STATE(157), - [sym_string_literal] = STATE(156), - [sym_raw_string_literal] = STATE(156), - [sym_boolean_literal] = STATE(156), - [sym_line_comment] = STATE(87), - [sym_block_comment] = STATE(87), - [aux_sym_token_tree_repeat1] = STATE(82), - [aux_sym__non_special_token_repeat1] = STATE(136), - [sym_identifier] = ACTIONS(685), + [aux_sym_token_tree_pattern_repeat1] = STATE(75), + [aux_sym__non_special_token_repeat1] = STATE(134), + [sym_identifier] = ACTIONS(552), [anon_sym_SEMI] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(689), + [anon_sym_LPAREN] = ACTIONS(556), + [anon_sym_LBRACK] = ACTIONS(560), + [anon_sym_RBRACK] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(562), [anon_sym_EQ_GT] = ACTIONS(554), [anon_sym_COLON] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(695), + [anon_sym_DOLLAR] = ACTIONS(566), [anon_sym_PLUS] = ACTIONS(564), [anon_sym_STAR] = ACTIONS(564), [anon_sym_QMARK] = ACTIONS(554), - [anon_sym_u8] = ACTIONS(685), - [anon_sym_i8] = ACTIONS(685), - [anon_sym_u16] = ACTIONS(685), - [anon_sym_i16] = ACTIONS(685), - [anon_sym_u32] = ACTIONS(685), - [anon_sym_i32] = ACTIONS(685), - [anon_sym_u64] = ACTIONS(685), - [anon_sym_i64] = ACTIONS(685), - [anon_sym_u128] = ACTIONS(685), - [anon_sym_i128] = ACTIONS(685), - [anon_sym_isize] = ACTIONS(685), - [anon_sym_usize] = ACTIONS(685), - [anon_sym_f32] = ACTIONS(685), - [anon_sym_f64] = ACTIONS(685), - [anon_sym_bool] = ACTIONS(685), - [anon_sym_str] = ACTIONS(685), - [anon_sym_char] = ACTIONS(685), + [anon_sym_u8] = ACTIONS(552), + [anon_sym_i8] = ACTIONS(552), + [anon_sym_u16] = ACTIONS(552), + [anon_sym_i16] = ACTIONS(552), + [anon_sym_u32] = ACTIONS(552), + [anon_sym_i32] = ACTIONS(552), + [anon_sym_u64] = ACTIONS(552), + [anon_sym_i64] = ACTIONS(552), + [anon_sym_u128] = ACTIONS(552), + [anon_sym_i128] = ACTIONS(552), + [anon_sym_isize] = ACTIONS(552), + [anon_sym_usize] = ACTIONS(552), + [anon_sym_f32] = ACTIONS(552), + [anon_sym_f64] = ACTIONS(552), + [anon_sym_bool] = ACTIONS(552), + [anon_sym_str] = ACTIONS(552), + [anon_sym_char] = ACTIONS(552), [anon_sym_DASH] = ACTIONS(564), [anon_sym_SLASH] = ACTIONS(564), [anon_sym_PERCENT] = ACTIONS(564), @@ -26025,35 +25426,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(554), [anon_sym_DASH_GT] = ACTIONS(554), [anon_sym_POUND] = ACTIONS(554), - [anon_sym_SQUOTE] = ACTIONS(685), - [anon_sym_as] = ACTIONS(685), - [anon_sym_async] = ACTIONS(685), - [anon_sym_await] = ACTIONS(685), - [anon_sym_break] = ACTIONS(685), - [anon_sym_const] = ACTIONS(685), - [anon_sym_continue] = ACTIONS(685), - [anon_sym_default] = ACTIONS(685), - [anon_sym_enum] = ACTIONS(685), - [anon_sym_fn] = ACTIONS(685), - [anon_sym_for] = ACTIONS(685), - [anon_sym_if] = ACTIONS(685), - [anon_sym_impl] = ACTIONS(685), - [anon_sym_let] = ACTIONS(685), - [anon_sym_loop] = ACTIONS(685), - [anon_sym_match] = ACTIONS(685), - [anon_sym_mod] = ACTIONS(685), - [anon_sym_pub] = ACTIONS(685), - [anon_sym_return] = ACTIONS(685), - [anon_sym_static] = ACTIONS(685), - [anon_sym_struct] = ACTIONS(685), - [anon_sym_trait] = ACTIONS(685), - [anon_sym_type] = ACTIONS(685), - [anon_sym_union] = ACTIONS(685), - [anon_sym_unsafe] = ACTIONS(685), - [anon_sym_use] = ACTIONS(685), - [anon_sym_where] = ACTIONS(685), - [anon_sym_while] = ACTIONS(685), - [sym_mutable_specifier] = ACTIONS(685), + [anon_sym_SQUOTE] = ACTIONS(552), + [anon_sym_as] = ACTIONS(552), + [anon_sym_async] = ACTIONS(552), + [anon_sym_await] = ACTIONS(552), + [anon_sym_break] = ACTIONS(552), + [anon_sym_const] = ACTIONS(552), + [anon_sym_continue] = ACTIONS(552), + [anon_sym_default] = ACTIONS(552), + [anon_sym_enum] = ACTIONS(552), + [anon_sym_fn] = ACTIONS(552), + [anon_sym_for] = ACTIONS(552), + [anon_sym_if] = ACTIONS(552), + [anon_sym_impl] = ACTIONS(552), + [anon_sym_let] = ACTIONS(552), + [anon_sym_loop] = ACTIONS(552), + [anon_sym_match] = ACTIONS(552), + [anon_sym_mod] = ACTIONS(552), + [anon_sym_pub] = ACTIONS(552), + [anon_sym_return] = ACTIONS(552), + [anon_sym_static] = ACTIONS(552), + [anon_sym_struct] = ACTIONS(552), + [anon_sym_trait] = ACTIONS(552), + [anon_sym_type] = ACTIONS(552), + [anon_sym_union] = ACTIONS(552), + [anon_sym_unsafe] = ACTIONS(552), + [anon_sym_use] = ACTIONS(552), + [anon_sym_where] = ACTIONS(552), + [anon_sym_while] = ACTIONS(552), + [sym_mutable_specifier] = ACTIONS(552), [sym_integer_literal] = ACTIONS(568), [aux_sym_string_literal_token1] = ACTIONS(570), [sym_char_literal] = ACTIONS(568), @@ -26061,53 +25462,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(572), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(685), - [sym_super] = ACTIONS(685), - [sym_crate] = ACTIONS(685), - [sym_metavariable] = ACTIONS(697), + [sym_self] = ACTIONS(552), + [sym_super] = ACTIONS(552), + [sym_crate] = ACTIONS(552), + [sym_metavariable] = ACTIONS(574), [sym__raw_string_literal_start] = ACTIONS(576), [sym_float_literal] = ACTIONS(568), }, - [88] = { - [sym_token_tree] = STATE(157), - [sym_token_repetition] = STATE(157), - [sym__literal] = STATE(157), - [sym_string_literal] = STATE(156), - [sym_raw_string_literal] = STATE(156), - [sym_boolean_literal] = STATE(156), - [sym_line_comment] = STATE(88), - [sym_block_comment] = STATE(88), - [aux_sym_token_tree_repeat1] = STATE(90), - [aux_sym__non_special_token_repeat1] = STATE(136), - [sym_identifier] = ACTIONS(685), + [83] = { + [sym__token_pattern] = STATE(153), + [sym_token_tree_pattern] = STATE(141), + [sym_token_binding_pattern] = STATE(141), + [sym_token_repetition_pattern] = STATE(141), + [sym__literal] = STATE(141), + [sym_string_literal] = STATE(151), + [sym_raw_string_literal] = STATE(151), + [sym_boolean_literal] = STATE(151), + [sym_line_comment] = STATE(83), + [sym_block_comment] = STATE(83), + [aux_sym_token_tree_pattern_repeat1] = STATE(73), + [aux_sym__non_special_token_repeat1] = STATE(134), + [sym_identifier] = ACTIONS(552), [anon_sym_SEMI] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_RPAREN] = ACTIONS(699), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), + [anon_sym_LPAREN] = ACTIONS(556), + [anon_sym_LBRACK] = ACTIONS(560), + [anon_sym_LBRACE] = ACTIONS(562), + [anon_sym_RBRACE] = ACTIONS(578), [anon_sym_EQ_GT] = ACTIONS(554), [anon_sym_COLON] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(695), + [anon_sym_DOLLAR] = ACTIONS(566), [anon_sym_PLUS] = ACTIONS(564), [anon_sym_STAR] = ACTIONS(564), [anon_sym_QMARK] = ACTIONS(554), - [anon_sym_u8] = ACTIONS(685), - [anon_sym_i8] = ACTIONS(685), - [anon_sym_u16] = ACTIONS(685), - [anon_sym_i16] = ACTIONS(685), - [anon_sym_u32] = ACTIONS(685), - [anon_sym_i32] = ACTIONS(685), - [anon_sym_u64] = ACTIONS(685), - [anon_sym_i64] = ACTIONS(685), - [anon_sym_u128] = ACTIONS(685), - [anon_sym_i128] = ACTIONS(685), - [anon_sym_isize] = ACTIONS(685), - [anon_sym_usize] = ACTIONS(685), - [anon_sym_f32] = ACTIONS(685), - [anon_sym_f64] = ACTIONS(685), - [anon_sym_bool] = ACTIONS(685), - [anon_sym_str] = ACTIONS(685), - [anon_sym_char] = ACTIONS(685), + [anon_sym_u8] = ACTIONS(552), + [anon_sym_i8] = ACTIONS(552), + [anon_sym_u16] = ACTIONS(552), + [anon_sym_i16] = ACTIONS(552), + [anon_sym_u32] = ACTIONS(552), + [anon_sym_i32] = ACTIONS(552), + [anon_sym_u64] = ACTIONS(552), + [anon_sym_i64] = ACTIONS(552), + [anon_sym_u128] = ACTIONS(552), + [anon_sym_i128] = ACTIONS(552), + [anon_sym_isize] = ACTIONS(552), + [anon_sym_usize] = ACTIONS(552), + [anon_sym_f32] = ACTIONS(552), + [anon_sym_f64] = ACTIONS(552), + [anon_sym_bool] = ACTIONS(552), + [anon_sym_str] = ACTIONS(552), + [anon_sym_char] = ACTIONS(552), [anon_sym_DASH] = ACTIONS(564), [anon_sym_SLASH] = ACTIONS(564), [anon_sym_PERCENT] = ACTIONS(564), @@ -26146,35 +25549,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(554), [anon_sym_DASH_GT] = ACTIONS(554), [anon_sym_POUND] = ACTIONS(554), - [anon_sym_SQUOTE] = ACTIONS(685), - [anon_sym_as] = ACTIONS(685), - [anon_sym_async] = ACTIONS(685), - [anon_sym_await] = ACTIONS(685), - [anon_sym_break] = ACTIONS(685), - [anon_sym_const] = ACTIONS(685), - [anon_sym_continue] = ACTIONS(685), - [anon_sym_default] = ACTIONS(685), - [anon_sym_enum] = ACTIONS(685), - [anon_sym_fn] = ACTIONS(685), - [anon_sym_for] = ACTIONS(685), - [anon_sym_if] = ACTIONS(685), - [anon_sym_impl] = ACTIONS(685), - [anon_sym_let] = ACTIONS(685), - [anon_sym_loop] = ACTIONS(685), - [anon_sym_match] = ACTIONS(685), - [anon_sym_mod] = ACTIONS(685), - [anon_sym_pub] = ACTIONS(685), - [anon_sym_return] = ACTIONS(685), - [anon_sym_static] = ACTIONS(685), - [anon_sym_struct] = ACTIONS(685), - [anon_sym_trait] = ACTIONS(685), - [anon_sym_type] = ACTIONS(685), - [anon_sym_union] = ACTIONS(685), - [anon_sym_unsafe] = ACTIONS(685), - [anon_sym_use] = ACTIONS(685), - [anon_sym_where] = ACTIONS(685), - [anon_sym_while] = ACTIONS(685), - [sym_mutable_specifier] = ACTIONS(685), + [anon_sym_SQUOTE] = ACTIONS(552), + [anon_sym_as] = ACTIONS(552), + [anon_sym_async] = ACTIONS(552), + [anon_sym_await] = ACTIONS(552), + [anon_sym_break] = ACTIONS(552), + [anon_sym_const] = ACTIONS(552), + [anon_sym_continue] = ACTIONS(552), + [anon_sym_default] = ACTIONS(552), + [anon_sym_enum] = ACTIONS(552), + [anon_sym_fn] = ACTIONS(552), + [anon_sym_for] = ACTIONS(552), + [anon_sym_if] = ACTIONS(552), + [anon_sym_impl] = ACTIONS(552), + [anon_sym_let] = ACTIONS(552), + [anon_sym_loop] = ACTIONS(552), + [anon_sym_match] = ACTIONS(552), + [anon_sym_mod] = ACTIONS(552), + [anon_sym_pub] = ACTIONS(552), + [anon_sym_return] = ACTIONS(552), + [anon_sym_static] = ACTIONS(552), + [anon_sym_struct] = ACTIONS(552), + [anon_sym_trait] = ACTIONS(552), + [anon_sym_type] = ACTIONS(552), + [anon_sym_union] = ACTIONS(552), + [anon_sym_unsafe] = ACTIONS(552), + [anon_sym_use] = ACTIONS(552), + [anon_sym_where] = ACTIONS(552), + [anon_sym_while] = ACTIONS(552), + [sym_mutable_specifier] = ACTIONS(552), [sym_integer_literal] = ACTIONS(568), [aux_sym_string_literal_token1] = ACTIONS(570), [sym_char_literal] = ACTIONS(568), @@ -26182,30 +25585,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(572), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(685), - [sym_super] = ACTIONS(685), - [sym_crate] = ACTIONS(685), - [sym_metavariable] = ACTIONS(697), + [sym_self] = ACTIONS(552), + [sym_super] = ACTIONS(552), + [sym_crate] = ACTIONS(552), + [sym_metavariable] = ACTIONS(574), [sym__raw_string_literal_start] = ACTIONS(576), [sym_float_literal] = ACTIONS(568), }, - [89] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), - [sym_line_comment] = STATE(89), - [sym_block_comment] = STATE(89), - [aux_sym__non_special_token_repeat1] = STATE(160), - [aux_sym_delim_token_tree_repeat1] = STATE(83), + [84] = { + [sym_delim_token_tree] = STATE(208), + [sym__delim_tokens] = STATE(205), + [sym__non_delim_token] = STATE(208), + [sym__literal] = STATE(207), + [sym_string_literal] = STATE(200), + [sym_raw_string_literal] = STATE(200), + [sym_boolean_literal] = STATE(200), + [sym_line_comment] = STATE(84), + [sym_block_comment] = STATE(84), + [aux_sym__non_special_token_repeat1] = STATE(154), + [aux_sym_delim_token_tree_repeat1] = STATE(91), [sym_identifier] = ACTIONS(661), [anon_sym_SEMI] = ACTIONS(663), [anon_sym_LPAREN] = ACTIONS(665), + [anon_sym_RPAREN] = ACTIONS(667), [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_RBRACK] = ACTIONS(701), [anon_sym_LBRACE] = ACTIONS(671), [anon_sym_EQ_GT] = ACTIONS(663), [anon_sym_COLON] = ACTIONS(673), @@ -26310,143 +25713,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(683), [sym_float_literal] = ACTIONS(677), }, - [90] = { - [sym_token_tree] = STATE(157), - [sym_token_repetition] = STATE(157), - [sym__literal] = STATE(157), - [sym_string_literal] = STATE(156), - [sym_raw_string_literal] = STATE(156), - [sym_boolean_literal] = STATE(156), - [sym_line_comment] = STATE(90), - [sym_block_comment] = STATE(90), - [aux_sym_token_tree_repeat1] = STATE(82), - [aux_sym__non_special_token_repeat1] = STATE(136), - [sym_identifier] = ACTIONS(685), - [anon_sym_SEMI] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_RPAREN] = ACTIONS(703), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_EQ_GT] = ACTIONS(554), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(695), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_QMARK] = ACTIONS(554), - [anon_sym_u8] = ACTIONS(685), - [anon_sym_i8] = ACTIONS(685), - [anon_sym_u16] = ACTIONS(685), - [anon_sym_i16] = ACTIONS(685), - [anon_sym_u32] = ACTIONS(685), - [anon_sym_i32] = ACTIONS(685), - [anon_sym_u64] = ACTIONS(685), - [anon_sym_i64] = ACTIONS(685), - [anon_sym_u128] = ACTIONS(685), - [anon_sym_i128] = ACTIONS(685), - [anon_sym_isize] = ACTIONS(685), - [anon_sym_usize] = ACTIONS(685), - [anon_sym_f32] = ACTIONS(685), - [anon_sym_f64] = ACTIONS(685), - [anon_sym_bool] = ACTIONS(685), - [anon_sym_str] = ACTIONS(685), - [anon_sym_char] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_AMP] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_AMP_AMP] = ACTIONS(554), - [anon_sym_PIPE_PIPE] = ACTIONS(554), - [anon_sym_LT_LT] = ACTIONS(564), - [anon_sym_GT_GT] = ACTIONS(564), - [anon_sym_PLUS_EQ] = ACTIONS(554), - [anon_sym_DASH_EQ] = ACTIONS(554), - [anon_sym_STAR_EQ] = ACTIONS(554), - [anon_sym_SLASH_EQ] = ACTIONS(554), - [anon_sym_PERCENT_EQ] = ACTIONS(554), - [anon_sym_CARET_EQ] = ACTIONS(554), - [anon_sym_AMP_EQ] = ACTIONS(554), - [anon_sym_PIPE_EQ] = ACTIONS(554), - [anon_sym_LT_LT_EQ] = ACTIONS(554), - [anon_sym_GT_GT_EQ] = ACTIONS(554), - [anon_sym_EQ] = ACTIONS(564), - [anon_sym_EQ_EQ] = ACTIONS(554), - [anon_sym_BANG_EQ] = ACTIONS(554), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT_EQ] = ACTIONS(554), - [anon_sym_LT_EQ] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(554), - [anon_sym__] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(554), - [anon_sym_DOT_DOT_EQ] = ACTIONS(554), - [anon_sym_COMMA] = ACTIONS(554), - [anon_sym_COLON_COLON] = ACTIONS(554), - [anon_sym_DASH_GT] = ACTIONS(554), - [anon_sym_POUND] = ACTIONS(554), - [anon_sym_SQUOTE] = ACTIONS(685), - [anon_sym_as] = ACTIONS(685), - [anon_sym_async] = ACTIONS(685), - [anon_sym_await] = ACTIONS(685), - [anon_sym_break] = ACTIONS(685), - [anon_sym_const] = ACTIONS(685), - [anon_sym_continue] = ACTIONS(685), - [anon_sym_default] = ACTIONS(685), - [anon_sym_enum] = ACTIONS(685), - [anon_sym_fn] = ACTIONS(685), - [anon_sym_for] = ACTIONS(685), - [anon_sym_if] = ACTIONS(685), - [anon_sym_impl] = ACTIONS(685), - [anon_sym_let] = ACTIONS(685), - [anon_sym_loop] = ACTIONS(685), - [anon_sym_match] = ACTIONS(685), - [anon_sym_mod] = ACTIONS(685), - [anon_sym_pub] = ACTIONS(685), - [anon_sym_return] = ACTIONS(685), - [anon_sym_static] = ACTIONS(685), - [anon_sym_struct] = ACTIONS(685), - [anon_sym_trait] = ACTIONS(685), - [anon_sym_type] = ACTIONS(685), - [anon_sym_union] = ACTIONS(685), - [anon_sym_unsafe] = ACTIONS(685), - [anon_sym_use] = ACTIONS(685), - [anon_sym_where] = ACTIONS(685), - [anon_sym_while] = ACTIONS(685), - [sym_mutable_specifier] = ACTIONS(685), - [sym_integer_literal] = ACTIONS(568), - [aux_sym_string_literal_token1] = ACTIONS(570), - [sym_char_literal] = ACTIONS(568), - [anon_sym_true] = ACTIONS(572), - [anon_sym_false] = ACTIONS(572), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(685), - [sym_super] = ACTIONS(685), - [sym_crate] = ACTIONS(685), - [sym_metavariable] = ACTIONS(697), - [sym__raw_string_literal_start] = ACTIONS(576), - [sym_float_literal] = ACTIONS(568), - }, - [91] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), - [sym_line_comment] = STATE(91), - [sym_block_comment] = STATE(91), - [aux_sym__non_special_token_repeat1] = STATE(160), - [aux_sym_delim_token_tree_repeat1] = STATE(94), + [85] = { + [sym_delim_token_tree] = STATE(208), + [sym__delim_tokens] = STATE(205), + [sym__non_delim_token] = STATE(208), + [sym__literal] = STATE(207), + [sym_string_literal] = STATE(200), + [sym_raw_string_literal] = STATE(200), + [sym_boolean_literal] = STATE(200), + [sym_line_comment] = STATE(85), + [sym_block_comment] = STATE(85), + [aux_sym__non_special_token_repeat1] = STATE(154), + [aux_sym_delim_token_tree_repeat1] = STATE(74), [sym_identifier] = ACTIONS(661), [anon_sym_SEMI] = ACTIONS(663), [anon_sym_LPAREN] = ACTIONS(665), - [anon_sym_RPAREN] = ACTIONS(705), + [anon_sym_RPAREN] = ACTIONS(685), [anon_sym_LBRACK] = ACTIONS(669), [anon_sym_LBRACE] = ACTIONS(671), [anon_sym_EQ_GT] = ACTIONS(663), @@ -26552,23 +25834,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(683), [sym_float_literal] = ACTIONS(677), }, - [92] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), - [sym_line_comment] = STATE(92), - [sym_block_comment] = STATE(92), - [aux_sym__non_special_token_repeat1] = STATE(160), - [aux_sym_delim_token_tree_repeat1] = STATE(95), + [86] = { + [sym_delim_token_tree] = STATE(208), + [sym__delim_tokens] = STATE(205), + [sym__non_delim_token] = STATE(208), + [sym__literal] = STATE(207), + [sym_string_literal] = STATE(200), + [sym_raw_string_literal] = STATE(200), + [sym_boolean_literal] = STATE(200), + [sym_line_comment] = STATE(86), + [sym_block_comment] = STATE(86), + [aux_sym__non_special_token_repeat1] = STATE(154), + [aux_sym_delim_token_tree_repeat1] = STATE(74), [sym_identifier] = ACTIONS(661), [anon_sym_SEMI] = ACTIONS(663), [anon_sym_LPAREN] = ACTIONS(665), [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_RBRACK] = ACTIONS(705), + [anon_sym_RBRACK] = ACTIONS(687), [anon_sym_LBRACE] = ACTIONS(671), [anon_sym_EQ_GT] = ACTIONS(663), [anon_sym_COLON] = ACTIONS(673), @@ -26673,24 +25955,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(683), [sym_float_literal] = ACTIONS(677), }, - [93] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), - [sym_line_comment] = STATE(93), - [sym_block_comment] = STATE(93), - [aux_sym__non_special_token_repeat1] = STATE(160), - [aux_sym_delim_token_tree_repeat1] = STATE(96), + [87] = { + [sym_delim_token_tree] = STATE(208), + [sym__delim_tokens] = STATE(205), + [sym__non_delim_token] = STATE(208), + [sym__literal] = STATE(207), + [sym_string_literal] = STATE(200), + [sym_raw_string_literal] = STATE(200), + [sym_boolean_literal] = STATE(200), + [sym_line_comment] = STATE(87), + [sym_block_comment] = STATE(87), + [aux_sym__non_special_token_repeat1] = STATE(154), + [aux_sym_delim_token_tree_repeat1] = STATE(74), [sym_identifier] = ACTIONS(661), [anon_sym_SEMI] = ACTIONS(663), [anon_sym_LPAREN] = ACTIONS(665), + [anon_sym_RPAREN] = ACTIONS(687), [anon_sym_LBRACK] = ACTIONS(669), [anon_sym_LBRACE] = ACTIONS(671), - [anon_sym_RBRACE] = ACTIONS(705), [anon_sym_EQ_GT] = ACTIONS(663), [anon_sym_COLON] = ACTIONS(673), [anon_sym_DOLLAR] = ACTIONS(675), @@ -26794,24 +26076,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(683), [sym_float_literal] = ACTIONS(677), }, - [94] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), - [sym_line_comment] = STATE(94), - [sym_block_comment] = STATE(94), - [aux_sym__non_special_token_repeat1] = STATE(160), - [aux_sym_delim_token_tree_repeat1] = STATE(83), + [88] = { + [sym_delim_token_tree] = STATE(208), + [sym__delim_tokens] = STATE(205), + [sym__non_delim_token] = STATE(208), + [sym__literal] = STATE(207), + [sym_string_literal] = STATE(200), + [sym_raw_string_literal] = STATE(200), + [sym_boolean_literal] = STATE(200), + [sym_line_comment] = STATE(88), + [sym_block_comment] = STATE(88), + [aux_sym__non_special_token_repeat1] = STATE(154), + [aux_sym_delim_token_tree_repeat1] = STATE(100), [sym_identifier] = ACTIONS(661), [anon_sym_SEMI] = ACTIONS(663), [anon_sym_LPAREN] = ACTIONS(665), - [anon_sym_RPAREN] = ACTIONS(707), [anon_sym_LBRACK] = ACTIONS(669), [anon_sym_LBRACE] = ACTIONS(671), + [anon_sym_RBRACE] = ACTIONS(689), [anon_sym_EQ_GT] = ACTIONS(663), [anon_sym_COLON] = ACTIONS(673), [anon_sym_DOLLAR] = ACTIONS(675), @@ -26915,24 +26197,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(683), [sym_float_literal] = ACTIONS(677), }, - [95] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), - [sym_line_comment] = STATE(95), - [sym_block_comment] = STATE(95), - [aux_sym__non_special_token_repeat1] = STATE(160), - [aux_sym_delim_token_tree_repeat1] = STATE(83), + [89] = { + [sym_delim_token_tree] = STATE(208), + [sym__delim_tokens] = STATE(205), + [sym__non_delim_token] = STATE(208), + [sym__literal] = STATE(207), + [sym_string_literal] = STATE(200), + [sym_raw_string_literal] = STATE(200), + [sym_boolean_literal] = STATE(200), + [sym_line_comment] = STATE(89), + [sym_block_comment] = STATE(89), + [aux_sym__non_special_token_repeat1] = STATE(154), + [aux_sym_delim_token_tree_repeat1] = STATE(111), [sym_identifier] = ACTIONS(661), [anon_sym_SEMI] = ACTIONS(663), [anon_sym_LPAREN] = ACTIONS(665), [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_RBRACK] = ACTIONS(707), [anon_sym_LBRACE] = ACTIONS(671), + [anon_sym_RBRACE] = ACTIONS(691), [anon_sym_EQ_GT] = ACTIONS(663), [anon_sym_COLON] = ACTIONS(673), [anon_sym_DOLLAR] = ACTIONS(675), @@ -27036,66 +26318,187 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(683), [sym_float_literal] = ACTIONS(677), }, - [96] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), - [sym_line_comment] = STATE(96), - [sym_block_comment] = STATE(96), - [aux_sym__non_special_token_repeat1] = STATE(160), - [aux_sym_delim_token_tree_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(661), - [anon_sym_SEMI] = ACTIONS(663), - [anon_sym_LPAREN] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(671), - [anon_sym_RBRACE] = ACTIONS(707), - [anon_sym_EQ_GT] = ACTIONS(663), - [anon_sym_COLON] = ACTIONS(673), - [anon_sym_DOLLAR] = ACTIONS(675), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_STAR] = ACTIONS(673), - [anon_sym_QMARK] = ACTIONS(663), - [anon_sym_u8] = ACTIONS(661), - [anon_sym_i8] = ACTIONS(661), - [anon_sym_u16] = ACTIONS(661), - [anon_sym_i16] = ACTIONS(661), - [anon_sym_u32] = ACTIONS(661), - [anon_sym_i32] = ACTIONS(661), - [anon_sym_u64] = ACTIONS(661), - [anon_sym_i64] = ACTIONS(661), - [anon_sym_u128] = ACTIONS(661), - [anon_sym_i128] = ACTIONS(661), - [anon_sym_isize] = ACTIONS(661), - [anon_sym_usize] = ACTIONS(661), - [anon_sym_f32] = ACTIONS(661), - [anon_sym_f64] = ACTIONS(661), - [anon_sym_bool] = ACTIONS(661), - [anon_sym_str] = ACTIONS(661), - [anon_sym_char] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_SLASH] = ACTIONS(673), - [anon_sym_PERCENT] = ACTIONS(673), - [anon_sym_CARET] = ACTIONS(673), - [anon_sym_BANG] = ACTIONS(673), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE] = ACTIONS(673), - [anon_sym_AMP_AMP] = ACTIONS(663), - [anon_sym_PIPE_PIPE] = ACTIONS(663), - [anon_sym_LT_LT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(673), - [anon_sym_PLUS_EQ] = ACTIONS(663), - [anon_sym_DASH_EQ] = ACTIONS(663), - [anon_sym_STAR_EQ] = ACTIONS(663), - [anon_sym_SLASH_EQ] = ACTIONS(663), - [anon_sym_PERCENT_EQ] = ACTIONS(663), - [anon_sym_CARET_EQ] = ACTIONS(663), - [anon_sym_AMP_EQ] = ACTIONS(663), - [anon_sym_PIPE_EQ] = ACTIONS(663), + [90] = { + [sym_token_tree] = STATE(165), + [sym_token_repetition] = STATE(165), + [sym__literal] = STATE(165), + [sym_string_literal] = STATE(151), + [sym_raw_string_literal] = STATE(151), + [sym_boolean_literal] = STATE(151), + [sym_line_comment] = STATE(90), + [sym_block_comment] = STATE(90), + [aux_sym_token_tree_repeat1] = STATE(78), + [aux_sym__non_special_token_repeat1] = STATE(136), + [sym_identifier] = ACTIONS(693), + [anon_sym_SEMI] = ACTIONS(554), + [anon_sym_LPAREN] = ACTIONS(695), + [anon_sym_RPAREN] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(699), + [anon_sym_LBRACE] = ACTIONS(701), + [anon_sym_EQ_GT] = ACTIONS(554), + [anon_sym_COLON] = ACTIONS(564), + [anon_sym_DOLLAR] = ACTIONS(703), + [anon_sym_PLUS] = ACTIONS(564), + [anon_sym_STAR] = ACTIONS(564), + [anon_sym_QMARK] = ACTIONS(554), + [anon_sym_u8] = ACTIONS(693), + [anon_sym_i8] = ACTIONS(693), + [anon_sym_u16] = ACTIONS(693), + [anon_sym_i16] = ACTIONS(693), + [anon_sym_u32] = ACTIONS(693), + [anon_sym_i32] = ACTIONS(693), + [anon_sym_u64] = ACTIONS(693), + [anon_sym_i64] = ACTIONS(693), + [anon_sym_u128] = ACTIONS(693), + [anon_sym_i128] = ACTIONS(693), + [anon_sym_isize] = ACTIONS(693), + [anon_sym_usize] = ACTIONS(693), + [anon_sym_f32] = ACTIONS(693), + [anon_sym_f64] = ACTIONS(693), + [anon_sym_bool] = ACTIONS(693), + [anon_sym_str] = ACTIONS(693), + [anon_sym_char] = ACTIONS(693), + [anon_sym_DASH] = ACTIONS(564), + [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_PERCENT] = ACTIONS(564), + [anon_sym_CARET] = ACTIONS(564), + [anon_sym_BANG] = ACTIONS(564), + [anon_sym_AMP] = ACTIONS(564), + [anon_sym_PIPE] = ACTIONS(564), + [anon_sym_AMP_AMP] = ACTIONS(554), + [anon_sym_PIPE_PIPE] = ACTIONS(554), + [anon_sym_LT_LT] = ACTIONS(564), + [anon_sym_GT_GT] = ACTIONS(564), + [anon_sym_PLUS_EQ] = ACTIONS(554), + [anon_sym_DASH_EQ] = ACTIONS(554), + [anon_sym_STAR_EQ] = ACTIONS(554), + [anon_sym_SLASH_EQ] = ACTIONS(554), + [anon_sym_PERCENT_EQ] = ACTIONS(554), + [anon_sym_CARET_EQ] = ACTIONS(554), + [anon_sym_AMP_EQ] = ACTIONS(554), + [anon_sym_PIPE_EQ] = ACTIONS(554), + [anon_sym_LT_LT_EQ] = ACTIONS(554), + [anon_sym_GT_GT_EQ] = ACTIONS(554), + [anon_sym_EQ] = ACTIONS(564), + [anon_sym_EQ_EQ] = ACTIONS(554), + [anon_sym_BANG_EQ] = ACTIONS(554), + [anon_sym_GT] = ACTIONS(564), + [anon_sym_LT] = ACTIONS(564), + [anon_sym_GT_EQ] = ACTIONS(554), + [anon_sym_LT_EQ] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(554), + [anon_sym__] = ACTIONS(564), + [anon_sym_DOT] = ACTIONS(564), + [anon_sym_DOT_DOT] = ACTIONS(564), + [anon_sym_DOT_DOT_DOT] = ACTIONS(554), + [anon_sym_DOT_DOT_EQ] = ACTIONS(554), + [anon_sym_COMMA] = ACTIONS(554), + [anon_sym_COLON_COLON] = ACTIONS(554), + [anon_sym_DASH_GT] = ACTIONS(554), + [anon_sym_POUND] = ACTIONS(554), + [anon_sym_SQUOTE] = ACTIONS(693), + [anon_sym_as] = ACTIONS(693), + [anon_sym_async] = ACTIONS(693), + [anon_sym_await] = ACTIONS(693), + [anon_sym_break] = ACTIONS(693), + [anon_sym_const] = ACTIONS(693), + [anon_sym_continue] = ACTIONS(693), + [anon_sym_default] = ACTIONS(693), + [anon_sym_enum] = ACTIONS(693), + [anon_sym_fn] = ACTIONS(693), + [anon_sym_for] = ACTIONS(693), + [anon_sym_if] = ACTIONS(693), + [anon_sym_impl] = ACTIONS(693), + [anon_sym_let] = ACTIONS(693), + [anon_sym_loop] = ACTIONS(693), + [anon_sym_match] = ACTIONS(693), + [anon_sym_mod] = ACTIONS(693), + [anon_sym_pub] = ACTIONS(693), + [anon_sym_return] = ACTIONS(693), + [anon_sym_static] = ACTIONS(693), + [anon_sym_struct] = ACTIONS(693), + [anon_sym_trait] = ACTIONS(693), + [anon_sym_type] = ACTIONS(693), + [anon_sym_union] = ACTIONS(693), + [anon_sym_unsafe] = ACTIONS(693), + [anon_sym_use] = ACTIONS(693), + [anon_sym_where] = ACTIONS(693), + [anon_sym_while] = ACTIONS(693), + [sym_mutable_specifier] = ACTIONS(693), + [sym_integer_literal] = ACTIONS(568), + [aux_sym_string_literal_token1] = ACTIONS(570), + [sym_char_literal] = ACTIONS(568), + [anon_sym_true] = ACTIONS(572), + [anon_sym_false] = ACTIONS(572), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(693), + [sym_super] = ACTIONS(693), + [sym_crate] = ACTIONS(693), + [sym_metavariable] = ACTIONS(705), + [sym__raw_string_literal_start] = ACTIONS(576), + [sym_float_literal] = ACTIONS(568), + }, + [91] = { + [sym_delim_token_tree] = STATE(208), + [sym__delim_tokens] = STATE(205), + [sym__non_delim_token] = STATE(208), + [sym__literal] = STATE(207), + [sym_string_literal] = STATE(200), + [sym_raw_string_literal] = STATE(200), + [sym_boolean_literal] = STATE(200), + [sym_line_comment] = STATE(91), + [sym_block_comment] = STATE(91), + [aux_sym__non_special_token_repeat1] = STATE(154), + [aux_sym_delim_token_tree_repeat1] = STATE(74), + [sym_identifier] = ACTIONS(661), + [anon_sym_SEMI] = ACTIONS(663), + [anon_sym_LPAREN] = ACTIONS(665), + [anon_sym_RPAREN] = ACTIONS(707), + [anon_sym_LBRACK] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(671), + [anon_sym_EQ_GT] = ACTIONS(663), + [anon_sym_COLON] = ACTIONS(673), + [anon_sym_DOLLAR] = ACTIONS(675), + [anon_sym_PLUS] = ACTIONS(673), + [anon_sym_STAR] = ACTIONS(673), + [anon_sym_QMARK] = ACTIONS(663), + [anon_sym_u8] = ACTIONS(661), + [anon_sym_i8] = ACTIONS(661), + [anon_sym_u16] = ACTIONS(661), + [anon_sym_i16] = ACTIONS(661), + [anon_sym_u32] = ACTIONS(661), + [anon_sym_i32] = ACTIONS(661), + [anon_sym_u64] = ACTIONS(661), + [anon_sym_i64] = ACTIONS(661), + [anon_sym_u128] = ACTIONS(661), + [anon_sym_i128] = ACTIONS(661), + [anon_sym_isize] = ACTIONS(661), + [anon_sym_usize] = ACTIONS(661), + [anon_sym_f32] = ACTIONS(661), + [anon_sym_f64] = ACTIONS(661), + [anon_sym_bool] = ACTIONS(661), + [anon_sym_str] = ACTIONS(661), + [anon_sym_char] = ACTIONS(661), + [anon_sym_DASH] = ACTIONS(673), + [anon_sym_SLASH] = ACTIONS(673), + [anon_sym_PERCENT] = ACTIONS(673), + [anon_sym_CARET] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(673), + [anon_sym_AMP] = ACTIONS(673), + [anon_sym_PIPE] = ACTIONS(673), + [anon_sym_AMP_AMP] = ACTIONS(663), + [anon_sym_PIPE_PIPE] = ACTIONS(663), + [anon_sym_LT_LT] = ACTIONS(673), + [anon_sym_GT_GT] = ACTIONS(673), + [anon_sym_PLUS_EQ] = ACTIONS(663), + [anon_sym_DASH_EQ] = ACTIONS(663), + [anon_sym_STAR_EQ] = ACTIONS(663), + [anon_sym_SLASH_EQ] = ACTIONS(663), + [anon_sym_PERCENT_EQ] = ACTIONS(663), + [anon_sym_CARET_EQ] = ACTIONS(663), + [anon_sym_AMP_EQ] = ACTIONS(663), + [anon_sym_PIPE_EQ] = ACTIONS(663), [anon_sym_LT_LT_EQ] = ACTIONS(663), [anon_sym_GT_GT_EQ] = ACTIONS(663), [anon_sym_EQ] = ACTIONS(673), @@ -27157,24 +26560,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(683), [sym_float_literal] = ACTIONS(677), }, - [97] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), - [sym_line_comment] = STATE(97), - [sym_block_comment] = STATE(97), - [aux_sym__non_special_token_repeat1] = STATE(160), - [aux_sym_delim_token_tree_repeat1] = STATE(83), + [92] = { + [sym_delim_token_tree] = STATE(208), + [sym__delim_tokens] = STATE(205), + [sym__non_delim_token] = STATE(208), + [sym__literal] = STATE(207), + [sym_string_literal] = STATE(200), + [sym_raw_string_literal] = STATE(200), + [sym_boolean_literal] = STATE(200), + [sym_line_comment] = STATE(92), + [sym_block_comment] = STATE(92), + [aux_sym__non_special_token_repeat1] = STATE(154), + [aux_sym_delim_token_tree_repeat1] = STATE(74), [sym_identifier] = ACTIONS(661), [anon_sym_SEMI] = ACTIONS(663), [anon_sym_LPAREN] = ACTIONS(665), [anon_sym_LBRACK] = ACTIONS(669), + [anon_sym_RBRACK] = ACTIONS(707), [anon_sym_LBRACE] = ACTIONS(671), - [anon_sym_RBRACE] = ACTIONS(701), [anon_sym_EQ_GT] = ACTIONS(663), [anon_sym_COLON] = ACTIONS(673), [anon_sym_DOLLAR] = ACTIONS(675), @@ -27278,24 +26681,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(683), [sym_float_literal] = ACTIONS(677), }, - [98] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), - [sym_line_comment] = STATE(98), - [sym_block_comment] = STATE(98), - [aux_sym__non_special_token_repeat1] = STATE(160), - [aux_sym_delim_token_tree_repeat1] = STATE(97), + [93] = { + [sym_delim_token_tree] = STATE(208), + [sym__delim_tokens] = STATE(205), + [sym__non_delim_token] = STATE(208), + [sym__literal] = STATE(207), + [sym_string_literal] = STATE(200), + [sym_raw_string_literal] = STATE(200), + [sym_boolean_literal] = STATE(200), + [sym_line_comment] = STATE(93), + [sym_block_comment] = STATE(93), + [aux_sym__non_special_token_repeat1] = STATE(154), + [aux_sym_delim_token_tree_repeat1] = STATE(74), [sym_identifier] = ACTIONS(661), [anon_sym_SEMI] = ACTIONS(663), [anon_sym_LPAREN] = ACTIONS(665), [anon_sym_LBRACK] = ACTIONS(669), [anon_sym_LBRACE] = ACTIONS(671), - [anon_sym_RBRACE] = ACTIONS(709), + [anon_sym_RBRACE] = ACTIONS(707), [anon_sym_EQ_GT] = ACTIONS(663), [anon_sym_COLON] = ACTIONS(673), [anon_sym_DOLLAR] = ACTIONS(675), @@ -27399,749 +26802,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(683), [sym_float_literal] = ACTIONS(677), }, - [99] = { - [sym_token_tree] = STATE(157), - [sym_token_repetition] = STATE(157), - [sym__literal] = STATE(157), - [sym_string_literal] = STATE(156), - [sym_raw_string_literal] = STATE(156), - [sym_boolean_literal] = STATE(156), - [sym_line_comment] = STATE(99), - [sym_block_comment] = STATE(99), - [aux_sym_token_tree_repeat1] = STATE(102), - [aux_sym__non_special_token_repeat1] = STATE(136), - [sym_identifier] = ACTIONS(685), - [anon_sym_SEMI] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_RPAREN] = ACTIONS(711), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_EQ_GT] = ACTIONS(554), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(695), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_QMARK] = ACTIONS(554), - [anon_sym_u8] = ACTIONS(685), - [anon_sym_i8] = ACTIONS(685), - [anon_sym_u16] = ACTIONS(685), - [anon_sym_i16] = ACTIONS(685), - [anon_sym_u32] = ACTIONS(685), - [anon_sym_i32] = ACTIONS(685), - [anon_sym_u64] = ACTIONS(685), - [anon_sym_i64] = ACTIONS(685), - [anon_sym_u128] = ACTIONS(685), - [anon_sym_i128] = ACTIONS(685), - [anon_sym_isize] = ACTIONS(685), - [anon_sym_usize] = ACTIONS(685), - [anon_sym_f32] = ACTIONS(685), - [anon_sym_f64] = ACTIONS(685), - [anon_sym_bool] = ACTIONS(685), - [anon_sym_str] = ACTIONS(685), - [anon_sym_char] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_AMP] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_AMP_AMP] = ACTIONS(554), - [anon_sym_PIPE_PIPE] = ACTIONS(554), - [anon_sym_LT_LT] = ACTIONS(564), - [anon_sym_GT_GT] = ACTIONS(564), - [anon_sym_PLUS_EQ] = ACTIONS(554), - [anon_sym_DASH_EQ] = ACTIONS(554), - [anon_sym_STAR_EQ] = ACTIONS(554), - [anon_sym_SLASH_EQ] = ACTIONS(554), - [anon_sym_PERCENT_EQ] = ACTIONS(554), - [anon_sym_CARET_EQ] = ACTIONS(554), - [anon_sym_AMP_EQ] = ACTIONS(554), - [anon_sym_PIPE_EQ] = ACTIONS(554), - [anon_sym_LT_LT_EQ] = ACTIONS(554), - [anon_sym_GT_GT_EQ] = ACTIONS(554), - [anon_sym_EQ] = ACTIONS(564), - [anon_sym_EQ_EQ] = ACTIONS(554), - [anon_sym_BANG_EQ] = ACTIONS(554), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT_EQ] = ACTIONS(554), - [anon_sym_LT_EQ] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(554), - [anon_sym__] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(554), - [anon_sym_DOT_DOT_EQ] = ACTIONS(554), - [anon_sym_COMMA] = ACTIONS(554), - [anon_sym_COLON_COLON] = ACTIONS(554), - [anon_sym_DASH_GT] = ACTIONS(554), - [anon_sym_POUND] = ACTIONS(554), - [anon_sym_SQUOTE] = ACTIONS(685), - [anon_sym_as] = ACTIONS(685), - [anon_sym_async] = ACTIONS(685), - [anon_sym_await] = ACTIONS(685), - [anon_sym_break] = ACTIONS(685), - [anon_sym_const] = ACTIONS(685), - [anon_sym_continue] = ACTIONS(685), - [anon_sym_default] = ACTIONS(685), - [anon_sym_enum] = ACTIONS(685), - [anon_sym_fn] = ACTIONS(685), - [anon_sym_for] = ACTIONS(685), - [anon_sym_if] = ACTIONS(685), - [anon_sym_impl] = ACTIONS(685), - [anon_sym_let] = ACTIONS(685), - [anon_sym_loop] = ACTIONS(685), - [anon_sym_match] = ACTIONS(685), - [anon_sym_mod] = ACTIONS(685), - [anon_sym_pub] = ACTIONS(685), - [anon_sym_return] = ACTIONS(685), - [anon_sym_static] = ACTIONS(685), - [anon_sym_struct] = ACTIONS(685), - [anon_sym_trait] = ACTIONS(685), - [anon_sym_type] = ACTIONS(685), - [anon_sym_union] = ACTIONS(685), - [anon_sym_unsafe] = ACTIONS(685), - [anon_sym_use] = ACTIONS(685), - [anon_sym_where] = ACTIONS(685), - [anon_sym_while] = ACTIONS(685), - [sym_mutable_specifier] = ACTIONS(685), - [sym_integer_literal] = ACTIONS(568), - [aux_sym_string_literal_token1] = ACTIONS(570), - [sym_char_literal] = ACTIONS(568), - [anon_sym_true] = ACTIONS(572), - [anon_sym_false] = ACTIONS(572), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(685), - [sym_super] = ACTIONS(685), - [sym_crate] = ACTIONS(685), - [sym_metavariable] = ACTIONS(697), - [sym__raw_string_literal_start] = ACTIONS(576), - [sym_float_literal] = ACTIONS(568), - }, - [100] = { - [sym_token_tree] = STATE(157), - [sym_token_repetition] = STATE(157), - [sym__literal] = STATE(157), - [sym_string_literal] = STATE(156), - [sym_raw_string_literal] = STATE(156), - [sym_boolean_literal] = STATE(156), - [sym_line_comment] = STATE(100), - [sym_block_comment] = STATE(100), - [aux_sym_token_tree_repeat1] = STATE(103), - [aux_sym__non_special_token_repeat1] = STATE(136), - [sym_identifier] = ACTIONS(685), - [anon_sym_SEMI] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_RBRACK] = ACTIONS(711), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_EQ_GT] = ACTIONS(554), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(695), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_QMARK] = ACTIONS(554), - [anon_sym_u8] = ACTIONS(685), - [anon_sym_i8] = ACTIONS(685), - [anon_sym_u16] = ACTIONS(685), - [anon_sym_i16] = ACTIONS(685), - [anon_sym_u32] = ACTIONS(685), - [anon_sym_i32] = ACTIONS(685), - [anon_sym_u64] = ACTIONS(685), - [anon_sym_i64] = ACTIONS(685), - [anon_sym_u128] = ACTIONS(685), - [anon_sym_i128] = ACTIONS(685), - [anon_sym_isize] = ACTIONS(685), - [anon_sym_usize] = ACTIONS(685), - [anon_sym_f32] = ACTIONS(685), - [anon_sym_f64] = ACTIONS(685), - [anon_sym_bool] = ACTIONS(685), - [anon_sym_str] = ACTIONS(685), - [anon_sym_char] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_AMP] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_AMP_AMP] = ACTIONS(554), - [anon_sym_PIPE_PIPE] = ACTIONS(554), - [anon_sym_LT_LT] = ACTIONS(564), - [anon_sym_GT_GT] = ACTIONS(564), - [anon_sym_PLUS_EQ] = ACTIONS(554), - [anon_sym_DASH_EQ] = ACTIONS(554), - [anon_sym_STAR_EQ] = ACTIONS(554), - [anon_sym_SLASH_EQ] = ACTIONS(554), - [anon_sym_PERCENT_EQ] = ACTIONS(554), - [anon_sym_CARET_EQ] = ACTIONS(554), - [anon_sym_AMP_EQ] = ACTIONS(554), - [anon_sym_PIPE_EQ] = ACTIONS(554), - [anon_sym_LT_LT_EQ] = ACTIONS(554), - [anon_sym_GT_GT_EQ] = ACTIONS(554), - [anon_sym_EQ] = ACTIONS(564), - [anon_sym_EQ_EQ] = ACTIONS(554), - [anon_sym_BANG_EQ] = ACTIONS(554), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT_EQ] = ACTIONS(554), - [anon_sym_LT_EQ] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(554), - [anon_sym__] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(554), - [anon_sym_DOT_DOT_EQ] = ACTIONS(554), - [anon_sym_COMMA] = ACTIONS(554), - [anon_sym_COLON_COLON] = ACTIONS(554), - [anon_sym_DASH_GT] = ACTIONS(554), - [anon_sym_POUND] = ACTIONS(554), - [anon_sym_SQUOTE] = ACTIONS(685), - [anon_sym_as] = ACTIONS(685), - [anon_sym_async] = ACTIONS(685), - [anon_sym_await] = ACTIONS(685), - [anon_sym_break] = ACTIONS(685), - [anon_sym_const] = ACTIONS(685), - [anon_sym_continue] = ACTIONS(685), - [anon_sym_default] = ACTIONS(685), - [anon_sym_enum] = ACTIONS(685), - [anon_sym_fn] = ACTIONS(685), - [anon_sym_for] = ACTIONS(685), - [anon_sym_if] = ACTIONS(685), - [anon_sym_impl] = ACTIONS(685), - [anon_sym_let] = ACTIONS(685), - [anon_sym_loop] = ACTIONS(685), - [anon_sym_match] = ACTIONS(685), - [anon_sym_mod] = ACTIONS(685), - [anon_sym_pub] = ACTIONS(685), - [anon_sym_return] = ACTIONS(685), - [anon_sym_static] = ACTIONS(685), - [anon_sym_struct] = ACTIONS(685), - [anon_sym_trait] = ACTIONS(685), - [anon_sym_type] = ACTIONS(685), - [anon_sym_union] = ACTIONS(685), - [anon_sym_unsafe] = ACTIONS(685), - [anon_sym_use] = ACTIONS(685), - [anon_sym_where] = ACTIONS(685), - [anon_sym_while] = ACTIONS(685), - [sym_mutable_specifier] = ACTIONS(685), - [sym_integer_literal] = ACTIONS(568), - [aux_sym_string_literal_token1] = ACTIONS(570), - [sym_char_literal] = ACTIONS(568), - [anon_sym_true] = ACTIONS(572), - [anon_sym_false] = ACTIONS(572), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(685), - [sym_super] = ACTIONS(685), - [sym_crate] = ACTIONS(685), - [sym_metavariable] = ACTIONS(697), - [sym__raw_string_literal_start] = ACTIONS(576), - [sym_float_literal] = ACTIONS(568), - }, - [101] = { - [sym_token_tree] = STATE(157), - [sym_token_repetition] = STATE(157), - [sym__literal] = STATE(157), - [sym_string_literal] = STATE(156), - [sym_raw_string_literal] = STATE(156), - [sym_boolean_literal] = STATE(156), - [sym_line_comment] = STATE(101), - [sym_block_comment] = STATE(101), - [aux_sym_token_tree_repeat1] = STATE(104), - [aux_sym__non_special_token_repeat1] = STATE(136), - [sym_identifier] = ACTIONS(685), - [anon_sym_SEMI] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(711), - [anon_sym_EQ_GT] = ACTIONS(554), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(695), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_QMARK] = ACTIONS(554), - [anon_sym_u8] = ACTIONS(685), - [anon_sym_i8] = ACTIONS(685), - [anon_sym_u16] = ACTIONS(685), - [anon_sym_i16] = ACTIONS(685), - [anon_sym_u32] = ACTIONS(685), - [anon_sym_i32] = ACTIONS(685), - [anon_sym_u64] = ACTIONS(685), - [anon_sym_i64] = ACTIONS(685), - [anon_sym_u128] = ACTIONS(685), - [anon_sym_i128] = ACTIONS(685), - [anon_sym_isize] = ACTIONS(685), - [anon_sym_usize] = ACTIONS(685), - [anon_sym_f32] = ACTIONS(685), - [anon_sym_f64] = ACTIONS(685), - [anon_sym_bool] = ACTIONS(685), - [anon_sym_str] = ACTIONS(685), - [anon_sym_char] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_AMP] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_AMP_AMP] = ACTIONS(554), - [anon_sym_PIPE_PIPE] = ACTIONS(554), - [anon_sym_LT_LT] = ACTIONS(564), - [anon_sym_GT_GT] = ACTIONS(564), - [anon_sym_PLUS_EQ] = ACTIONS(554), - [anon_sym_DASH_EQ] = ACTIONS(554), - [anon_sym_STAR_EQ] = ACTIONS(554), - [anon_sym_SLASH_EQ] = ACTIONS(554), - [anon_sym_PERCENT_EQ] = ACTIONS(554), - [anon_sym_CARET_EQ] = ACTIONS(554), - [anon_sym_AMP_EQ] = ACTIONS(554), - [anon_sym_PIPE_EQ] = ACTIONS(554), - [anon_sym_LT_LT_EQ] = ACTIONS(554), - [anon_sym_GT_GT_EQ] = ACTIONS(554), - [anon_sym_EQ] = ACTIONS(564), - [anon_sym_EQ_EQ] = ACTIONS(554), - [anon_sym_BANG_EQ] = ACTIONS(554), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT_EQ] = ACTIONS(554), - [anon_sym_LT_EQ] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(554), - [anon_sym__] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(554), - [anon_sym_DOT_DOT_EQ] = ACTIONS(554), - [anon_sym_COMMA] = ACTIONS(554), - [anon_sym_COLON_COLON] = ACTIONS(554), - [anon_sym_DASH_GT] = ACTIONS(554), - [anon_sym_POUND] = ACTIONS(554), - [anon_sym_SQUOTE] = ACTIONS(685), - [anon_sym_as] = ACTIONS(685), - [anon_sym_async] = ACTIONS(685), - [anon_sym_await] = ACTIONS(685), - [anon_sym_break] = ACTIONS(685), - [anon_sym_const] = ACTIONS(685), - [anon_sym_continue] = ACTIONS(685), - [anon_sym_default] = ACTIONS(685), - [anon_sym_enum] = ACTIONS(685), - [anon_sym_fn] = ACTIONS(685), - [anon_sym_for] = ACTIONS(685), - [anon_sym_if] = ACTIONS(685), - [anon_sym_impl] = ACTIONS(685), - [anon_sym_let] = ACTIONS(685), - [anon_sym_loop] = ACTIONS(685), - [anon_sym_match] = ACTIONS(685), - [anon_sym_mod] = ACTIONS(685), - [anon_sym_pub] = ACTIONS(685), - [anon_sym_return] = ACTIONS(685), - [anon_sym_static] = ACTIONS(685), - [anon_sym_struct] = ACTIONS(685), - [anon_sym_trait] = ACTIONS(685), - [anon_sym_type] = ACTIONS(685), - [anon_sym_union] = ACTIONS(685), - [anon_sym_unsafe] = ACTIONS(685), - [anon_sym_use] = ACTIONS(685), - [anon_sym_where] = ACTIONS(685), - [anon_sym_while] = ACTIONS(685), - [sym_mutable_specifier] = ACTIONS(685), - [sym_integer_literal] = ACTIONS(568), - [aux_sym_string_literal_token1] = ACTIONS(570), - [sym_char_literal] = ACTIONS(568), - [anon_sym_true] = ACTIONS(572), - [anon_sym_false] = ACTIONS(572), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(685), - [sym_super] = ACTIONS(685), - [sym_crate] = ACTIONS(685), - [sym_metavariable] = ACTIONS(697), - [sym__raw_string_literal_start] = ACTIONS(576), - [sym_float_literal] = ACTIONS(568), - }, - [102] = { - [sym_token_tree] = STATE(157), - [sym_token_repetition] = STATE(157), - [sym__literal] = STATE(157), - [sym_string_literal] = STATE(156), - [sym_raw_string_literal] = STATE(156), - [sym_boolean_literal] = STATE(156), - [sym_line_comment] = STATE(102), - [sym_block_comment] = STATE(102), - [aux_sym_token_tree_repeat1] = STATE(82), - [aux_sym__non_special_token_repeat1] = STATE(136), - [sym_identifier] = ACTIONS(685), - [anon_sym_SEMI] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_RPAREN] = ACTIONS(713), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_EQ_GT] = ACTIONS(554), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(695), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_QMARK] = ACTIONS(554), - [anon_sym_u8] = ACTIONS(685), - [anon_sym_i8] = ACTIONS(685), - [anon_sym_u16] = ACTIONS(685), - [anon_sym_i16] = ACTIONS(685), - [anon_sym_u32] = ACTIONS(685), - [anon_sym_i32] = ACTIONS(685), - [anon_sym_u64] = ACTIONS(685), - [anon_sym_i64] = ACTIONS(685), - [anon_sym_u128] = ACTIONS(685), - [anon_sym_i128] = ACTIONS(685), - [anon_sym_isize] = ACTIONS(685), - [anon_sym_usize] = ACTIONS(685), - [anon_sym_f32] = ACTIONS(685), - [anon_sym_f64] = ACTIONS(685), - [anon_sym_bool] = ACTIONS(685), - [anon_sym_str] = ACTIONS(685), - [anon_sym_char] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_AMP] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_AMP_AMP] = ACTIONS(554), - [anon_sym_PIPE_PIPE] = ACTIONS(554), - [anon_sym_LT_LT] = ACTIONS(564), - [anon_sym_GT_GT] = ACTIONS(564), - [anon_sym_PLUS_EQ] = ACTIONS(554), - [anon_sym_DASH_EQ] = ACTIONS(554), - [anon_sym_STAR_EQ] = ACTIONS(554), - [anon_sym_SLASH_EQ] = ACTIONS(554), - [anon_sym_PERCENT_EQ] = ACTIONS(554), - [anon_sym_CARET_EQ] = ACTIONS(554), - [anon_sym_AMP_EQ] = ACTIONS(554), - [anon_sym_PIPE_EQ] = ACTIONS(554), - [anon_sym_LT_LT_EQ] = ACTIONS(554), - [anon_sym_GT_GT_EQ] = ACTIONS(554), - [anon_sym_EQ] = ACTIONS(564), - [anon_sym_EQ_EQ] = ACTIONS(554), - [anon_sym_BANG_EQ] = ACTIONS(554), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT_EQ] = ACTIONS(554), - [anon_sym_LT_EQ] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(554), - [anon_sym__] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(554), - [anon_sym_DOT_DOT_EQ] = ACTIONS(554), - [anon_sym_COMMA] = ACTIONS(554), - [anon_sym_COLON_COLON] = ACTIONS(554), - [anon_sym_DASH_GT] = ACTIONS(554), - [anon_sym_POUND] = ACTIONS(554), - [anon_sym_SQUOTE] = ACTIONS(685), - [anon_sym_as] = ACTIONS(685), - [anon_sym_async] = ACTIONS(685), - [anon_sym_await] = ACTIONS(685), - [anon_sym_break] = ACTIONS(685), - [anon_sym_const] = ACTIONS(685), - [anon_sym_continue] = ACTIONS(685), - [anon_sym_default] = ACTIONS(685), - [anon_sym_enum] = ACTIONS(685), - [anon_sym_fn] = ACTIONS(685), - [anon_sym_for] = ACTIONS(685), - [anon_sym_if] = ACTIONS(685), - [anon_sym_impl] = ACTIONS(685), - [anon_sym_let] = ACTIONS(685), - [anon_sym_loop] = ACTIONS(685), - [anon_sym_match] = ACTIONS(685), - [anon_sym_mod] = ACTIONS(685), - [anon_sym_pub] = ACTIONS(685), - [anon_sym_return] = ACTIONS(685), - [anon_sym_static] = ACTIONS(685), - [anon_sym_struct] = ACTIONS(685), - [anon_sym_trait] = ACTIONS(685), - [anon_sym_type] = ACTIONS(685), - [anon_sym_union] = ACTIONS(685), - [anon_sym_unsafe] = ACTIONS(685), - [anon_sym_use] = ACTIONS(685), - [anon_sym_where] = ACTIONS(685), - [anon_sym_while] = ACTIONS(685), - [sym_mutable_specifier] = ACTIONS(685), - [sym_integer_literal] = ACTIONS(568), - [aux_sym_string_literal_token1] = ACTIONS(570), - [sym_char_literal] = ACTIONS(568), - [anon_sym_true] = ACTIONS(572), - [anon_sym_false] = ACTIONS(572), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(685), - [sym_super] = ACTIONS(685), - [sym_crate] = ACTIONS(685), - [sym_metavariable] = ACTIONS(697), - [sym__raw_string_literal_start] = ACTIONS(576), - [sym_float_literal] = ACTIONS(568), - }, - [103] = { - [sym_token_tree] = STATE(157), - [sym_token_repetition] = STATE(157), - [sym__literal] = STATE(157), - [sym_string_literal] = STATE(156), - [sym_raw_string_literal] = STATE(156), - [sym_boolean_literal] = STATE(156), - [sym_line_comment] = STATE(103), - [sym_block_comment] = STATE(103), - [aux_sym_token_tree_repeat1] = STATE(82), - [aux_sym__non_special_token_repeat1] = STATE(136), - [sym_identifier] = ACTIONS(685), - [anon_sym_SEMI] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_RBRACK] = ACTIONS(713), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_EQ_GT] = ACTIONS(554), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(695), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_QMARK] = ACTIONS(554), - [anon_sym_u8] = ACTIONS(685), - [anon_sym_i8] = ACTIONS(685), - [anon_sym_u16] = ACTIONS(685), - [anon_sym_i16] = ACTIONS(685), - [anon_sym_u32] = ACTIONS(685), - [anon_sym_i32] = ACTIONS(685), - [anon_sym_u64] = ACTIONS(685), - [anon_sym_i64] = ACTIONS(685), - [anon_sym_u128] = ACTIONS(685), - [anon_sym_i128] = ACTIONS(685), - [anon_sym_isize] = ACTIONS(685), - [anon_sym_usize] = ACTIONS(685), - [anon_sym_f32] = ACTIONS(685), - [anon_sym_f64] = ACTIONS(685), - [anon_sym_bool] = ACTIONS(685), - [anon_sym_str] = ACTIONS(685), - [anon_sym_char] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_AMP] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_AMP_AMP] = ACTIONS(554), - [anon_sym_PIPE_PIPE] = ACTIONS(554), - [anon_sym_LT_LT] = ACTIONS(564), - [anon_sym_GT_GT] = ACTIONS(564), - [anon_sym_PLUS_EQ] = ACTIONS(554), - [anon_sym_DASH_EQ] = ACTIONS(554), - [anon_sym_STAR_EQ] = ACTIONS(554), - [anon_sym_SLASH_EQ] = ACTIONS(554), - [anon_sym_PERCENT_EQ] = ACTIONS(554), - [anon_sym_CARET_EQ] = ACTIONS(554), - [anon_sym_AMP_EQ] = ACTIONS(554), - [anon_sym_PIPE_EQ] = ACTIONS(554), - [anon_sym_LT_LT_EQ] = ACTIONS(554), - [anon_sym_GT_GT_EQ] = ACTIONS(554), - [anon_sym_EQ] = ACTIONS(564), - [anon_sym_EQ_EQ] = ACTIONS(554), - [anon_sym_BANG_EQ] = ACTIONS(554), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT_EQ] = ACTIONS(554), - [anon_sym_LT_EQ] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(554), - [anon_sym__] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(554), - [anon_sym_DOT_DOT_EQ] = ACTIONS(554), - [anon_sym_COMMA] = ACTIONS(554), - [anon_sym_COLON_COLON] = ACTIONS(554), - [anon_sym_DASH_GT] = ACTIONS(554), - [anon_sym_POUND] = ACTIONS(554), - [anon_sym_SQUOTE] = ACTIONS(685), - [anon_sym_as] = ACTIONS(685), - [anon_sym_async] = ACTIONS(685), - [anon_sym_await] = ACTIONS(685), - [anon_sym_break] = ACTIONS(685), - [anon_sym_const] = ACTIONS(685), - [anon_sym_continue] = ACTIONS(685), - [anon_sym_default] = ACTIONS(685), - [anon_sym_enum] = ACTIONS(685), - [anon_sym_fn] = ACTIONS(685), - [anon_sym_for] = ACTIONS(685), - [anon_sym_if] = ACTIONS(685), - [anon_sym_impl] = ACTIONS(685), - [anon_sym_let] = ACTIONS(685), - [anon_sym_loop] = ACTIONS(685), - [anon_sym_match] = ACTIONS(685), - [anon_sym_mod] = ACTIONS(685), - [anon_sym_pub] = ACTIONS(685), - [anon_sym_return] = ACTIONS(685), - [anon_sym_static] = ACTIONS(685), - [anon_sym_struct] = ACTIONS(685), - [anon_sym_trait] = ACTIONS(685), - [anon_sym_type] = ACTIONS(685), - [anon_sym_union] = ACTIONS(685), - [anon_sym_unsafe] = ACTIONS(685), - [anon_sym_use] = ACTIONS(685), - [anon_sym_where] = ACTIONS(685), - [anon_sym_while] = ACTIONS(685), - [sym_mutable_specifier] = ACTIONS(685), - [sym_integer_literal] = ACTIONS(568), - [aux_sym_string_literal_token1] = ACTIONS(570), - [sym_char_literal] = ACTIONS(568), - [anon_sym_true] = ACTIONS(572), - [anon_sym_false] = ACTIONS(572), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(685), - [sym_super] = ACTIONS(685), - [sym_crate] = ACTIONS(685), - [sym_metavariable] = ACTIONS(697), - [sym__raw_string_literal_start] = ACTIONS(576), - [sym_float_literal] = ACTIONS(568), - }, - [104] = { - [sym_token_tree] = STATE(157), - [sym_token_repetition] = STATE(157), - [sym__literal] = STATE(157), - [sym_string_literal] = STATE(156), - [sym_raw_string_literal] = STATE(156), - [sym_boolean_literal] = STATE(156), - [sym_line_comment] = STATE(104), - [sym_block_comment] = STATE(104), - [aux_sym_token_tree_repeat1] = STATE(82), - [aux_sym__non_special_token_repeat1] = STATE(136), - [sym_identifier] = ACTIONS(685), - [anon_sym_SEMI] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(713), - [anon_sym_EQ_GT] = ACTIONS(554), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(695), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_QMARK] = ACTIONS(554), - [anon_sym_u8] = ACTIONS(685), - [anon_sym_i8] = ACTIONS(685), - [anon_sym_u16] = ACTIONS(685), - [anon_sym_i16] = ACTIONS(685), - [anon_sym_u32] = ACTIONS(685), - [anon_sym_i32] = ACTIONS(685), - [anon_sym_u64] = ACTIONS(685), - [anon_sym_i64] = ACTIONS(685), - [anon_sym_u128] = ACTIONS(685), - [anon_sym_i128] = ACTIONS(685), - [anon_sym_isize] = ACTIONS(685), - [anon_sym_usize] = ACTIONS(685), - [anon_sym_f32] = ACTIONS(685), - [anon_sym_f64] = ACTIONS(685), - [anon_sym_bool] = ACTIONS(685), - [anon_sym_str] = ACTIONS(685), - [anon_sym_char] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_AMP] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_AMP_AMP] = ACTIONS(554), - [anon_sym_PIPE_PIPE] = ACTIONS(554), - [anon_sym_LT_LT] = ACTIONS(564), - [anon_sym_GT_GT] = ACTIONS(564), - [anon_sym_PLUS_EQ] = ACTIONS(554), - [anon_sym_DASH_EQ] = ACTIONS(554), - [anon_sym_STAR_EQ] = ACTIONS(554), - [anon_sym_SLASH_EQ] = ACTIONS(554), - [anon_sym_PERCENT_EQ] = ACTIONS(554), - [anon_sym_CARET_EQ] = ACTIONS(554), - [anon_sym_AMP_EQ] = ACTIONS(554), - [anon_sym_PIPE_EQ] = ACTIONS(554), - [anon_sym_LT_LT_EQ] = ACTIONS(554), - [anon_sym_GT_GT_EQ] = ACTIONS(554), - [anon_sym_EQ] = ACTIONS(564), - [anon_sym_EQ_EQ] = ACTIONS(554), - [anon_sym_BANG_EQ] = ACTIONS(554), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT_EQ] = ACTIONS(554), - [anon_sym_LT_EQ] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(554), - [anon_sym__] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(554), - [anon_sym_DOT_DOT_EQ] = ACTIONS(554), - [anon_sym_COMMA] = ACTIONS(554), - [anon_sym_COLON_COLON] = ACTIONS(554), - [anon_sym_DASH_GT] = ACTIONS(554), - [anon_sym_POUND] = ACTIONS(554), - [anon_sym_SQUOTE] = ACTIONS(685), - [anon_sym_as] = ACTIONS(685), - [anon_sym_async] = ACTIONS(685), - [anon_sym_await] = ACTIONS(685), - [anon_sym_break] = ACTIONS(685), - [anon_sym_const] = ACTIONS(685), - [anon_sym_continue] = ACTIONS(685), - [anon_sym_default] = ACTIONS(685), - [anon_sym_enum] = ACTIONS(685), - [anon_sym_fn] = ACTIONS(685), - [anon_sym_for] = ACTIONS(685), - [anon_sym_if] = ACTIONS(685), - [anon_sym_impl] = ACTIONS(685), - [anon_sym_let] = ACTIONS(685), - [anon_sym_loop] = ACTIONS(685), - [anon_sym_match] = ACTIONS(685), - [anon_sym_mod] = ACTIONS(685), - [anon_sym_pub] = ACTIONS(685), - [anon_sym_return] = ACTIONS(685), - [anon_sym_static] = ACTIONS(685), - [anon_sym_struct] = ACTIONS(685), - [anon_sym_trait] = ACTIONS(685), - [anon_sym_type] = ACTIONS(685), - [anon_sym_union] = ACTIONS(685), - [anon_sym_unsafe] = ACTIONS(685), - [anon_sym_use] = ACTIONS(685), - [anon_sym_where] = ACTIONS(685), - [anon_sym_while] = ACTIONS(685), - [sym_mutable_specifier] = ACTIONS(685), - [sym_integer_literal] = ACTIONS(568), - [aux_sym_string_literal_token1] = ACTIONS(570), - [sym_char_literal] = ACTIONS(568), - [anon_sym_true] = ACTIONS(572), - [anon_sym_false] = ACTIONS(572), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(685), - [sym_super] = ACTIONS(685), - [sym_crate] = ACTIONS(685), - [sym_metavariable] = ACTIONS(697), - [sym__raw_string_literal_start] = ACTIONS(576), - [sym_float_literal] = ACTIONS(568), - }, - [105] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), - [sym_line_comment] = STATE(105), - [sym_block_comment] = STATE(105), - [aux_sym__non_special_token_repeat1] = STATE(160), - [aux_sym_delim_token_tree_repeat1] = STATE(108), + [94] = { + [sym_delim_token_tree] = STATE(208), + [sym__delim_tokens] = STATE(205), + [sym__non_delim_token] = STATE(208), + [sym__literal] = STATE(207), + [sym_string_literal] = STATE(200), + [sym_raw_string_literal] = STATE(200), + [sym_boolean_literal] = STATE(200), + [sym_line_comment] = STATE(94), + [sym_block_comment] = STATE(94), + [aux_sym__non_special_token_repeat1] = STATE(154), + [aux_sym_delim_token_tree_repeat1] = STATE(86), [sym_identifier] = ACTIONS(661), [anon_sym_SEMI] = ACTIONS(663), [anon_sym_LPAREN] = ACTIONS(665), - [anon_sym_RPAREN] = ACTIONS(715), [anon_sym_LBRACK] = ACTIONS(669), + [anon_sym_RBRACK] = ACTIONS(691), [anon_sym_LBRACE] = ACTIONS(671), [anon_sym_EQ_GT] = ACTIONS(663), [anon_sym_COLON] = ACTIONS(673), @@ -28246,23 +26923,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(683), [sym_float_literal] = ACTIONS(677), }, - [106] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), - [sym_line_comment] = STATE(106), - [sym_block_comment] = STATE(106), - [aux_sym__non_special_token_repeat1] = STATE(160), - [aux_sym_delim_token_tree_repeat1] = STATE(109), + [95] = { + [sym_delim_token_tree] = STATE(208), + [sym__delim_tokens] = STATE(205), + [sym__non_delim_token] = STATE(208), + [sym__literal] = STATE(207), + [sym_string_literal] = STATE(200), + [sym_raw_string_literal] = STATE(200), + [sym_boolean_literal] = STATE(200), + [sym_line_comment] = STATE(95), + [sym_block_comment] = STATE(95), + [aux_sym__non_special_token_repeat1] = STATE(154), + [aux_sym_delim_token_tree_repeat1] = STATE(87), [sym_identifier] = ACTIONS(661), [anon_sym_SEMI] = ACTIONS(663), [anon_sym_LPAREN] = ACTIONS(665), + [anon_sym_RPAREN] = ACTIONS(691), [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_RBRACK] = ACTIONS(715), [anon_sym_LBRACE] = ACTIONS(671), [anon_sym_EQ_GT] = ACTIONS(663), [anon_sym_COLON] = ACTIONS(673), @@ -28367,23 +27044,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(683), [sym_float_literal] = ACTIONS(677), }, - [107] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), - [sym_line_comment] = STATE(107), - [sym_block_comment] = STATE(107), - [aux_sym__non_special_token_repeat1] = STATE(160), - [aux_sym_delim_token_tree_repeat1] = STATE(83), + [96] = { + [sym_delim_token_tree] = STATE(208), + [sym__delim_tokens] = STATE(205), + [sym__non_delim_token] = STATE(208), + [sym__literal] = STATE(207), + [sym_string_literal] = STATE(200), + [sym_raw_string_literal] = STATE(200), + [sym_boolean_literal] = STATE(200), + [sym_line_comment] = STATE(96), + [sym_block_comment] = STATE(96), + [aux_sym__non_special_token_repeat1] = STATE(154), + [aux_sym_delim_token_tree_repeat1] = STATE(92), [sym_identifier] = ACTIONS(661), [anon_sym_SEMI] = ACTIONS(663), [anon_sym_LPAREN] = ACTIONS(665), - [anon_sym_RPAREN] = ACTIONS(701), [anon_sym_LBRACK] = ACTIONS(669), + [anon_sym_RBRACK] = ACTIONS(667), [anon_sym_LBRACE] = ACTIONS(671), [anon_sym_EQ_GT] = ACTIONS(663), [anon_sym_COLON] = ACTIONS(673), @@ -28488,24 +27165,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(683), [sym_float_literal] = ACTIONS(677), }, - [108] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), - [sym_line_comment] = STATE(108), - [sym_block_comment] = STATE(108), - [aux_sym__non_special_token_repeat1] = STATE(160), - [aux_sym_delim_token_tree_repeat1] = STATE(83), + [97] = { + [sym_delim_token_tree] = STATE(208), + [sym__delim_tokens] = STATE(205), + [sym__non_delim_token] = STATE(208), + [sym__literal] = STATE(207), + [sym_string_literal] = STATE(200), + [sym_raw_string_literal] = STATE(200), + [sym_boolean_literal] = STATE(200), + [sym_line_comment] = STATE(97), + [sym_block_comment] = STATE(97), + [aux_sym__non_special_token_repeat1] = STATE(154), + [aux_sym_delim_token_tree_repeat1] = STATE(93), [sym_identifier] = ACTIONS(661), [anon_sym_SEMI] = ACTIONS(663), [anon_sym_LPAREN] = ACTIONS(665), - [anon_sym_RPAREN] = ACTIONS(717), [anon_sym_LBRACK] = ACTIONS(669), [anon_sym_LBRACE] = ACTIONS(671), + [anon_sym_RBRACE] = ACTIONS(667), [anon_sym_EQ_GT] = ACTIONS(663), [anon_sym_COLON] = ACTIONS(673), [anon_sym_DOLLAR] = ACTIONS(675), @@ -28609,23 +27286,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(683), [sym_float_literal] = ACTIONS(677), }, - [109] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), - [sym_line_comment] = STATE(109), - [sym_block_comment] = STATE(109), - [aux_sym__non_special_token_repeat1] = STATE(160), - [aux_sym_delim_token_tree_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(661), - [anon_sym_SEMI] = ACTIONS(663), + [98] = { + [sym_delim_token_tree] = STATE(208), + [sym__delim_tokens] = STATE(205), + [sym__non_delim_token] = STATE(208), + [sym__literal] = STATE(207), + [sym_string_literal] = STATE(200), + [sym_raw_string_literal] = STATE(200), + [sym_boolean_literal] = STATE(200), + [sym_line_comment] = STATE(98), + [sym_block_comment] = STATE(98), + [aux_sym__non_special_token_repeat1] = STATE(154), + [aux_sym_delim_token_tree_repeat1] = STATE(74), + [sym_identifier] = ACTIONS(661), + [anon_sym_SEMI] = ACTIONS(663), [anon_sym_LPAREN] = ACTIONS(665), + [anon_sym_RPAREN] = ACTIONS(709), [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_RBRACK] = ACTIONS(717), [anon_sym_LBRACE] = ACTIONS(671), [anon_sym_EQ_GT] = ACTIONS(663), [anon_sym_COLON] = ACTIONS(673), @@ -28730,24 +27407,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(683), [sym_float_literal] = ACTIONS(677), }, - [110] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), - [sym_line_comment] = STATE(110), - [sym_block_comment] = STATE(110), - [aux_sym__non_special_token_repeat1] = STATE(160), - [aux_sym_delim_token_tree_repeat1] = STATE(83), + [99] = { + [sym_delim_token_tree] = STATE(208), + [sym__delim_tokens] = STATE(205), + [sym__non_delim_token] = STATE(208), + [sym__literal] = STATE(207), + [sym_string_literal] = STATE(200), + [sym_raw_string_literal] = STATE(200), + [sym_boolean_literal] = STATE(200), + [sym_line_comment] = STATE(99), + [sym_block_comment] = STATE(99), + [aux_sym__non_special_token_repeat1] = STATE(154), + [aux_sym_delim_token_tree_repeat1] = STATE(74), [sym_identifier] = ACTIONS(661), [anon_sym_SEMI] = ACTIONS(663), [anon_sym_LPAREN] = ACTIONS(665), [anon_sym_LBRACK] = ACTIONS(669), + [anon_sym_RBRACK] = ACTIONS(709), [anon_sym_LBRACE] = ACTIONS(671), - [anon_sym_RBRACE] = ACTIONS(717), [anon_sym_EQ_GT] = ACTIONS(663), [anon_sym_COLON] = ACTIONS(673), [anon_sym_DOLLAR] = ACTIONS(675), @@ -28851,24 +27528,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(683), [sym_float_literal] = ACTIONS(677), }, - [111] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), - [sym_line_comment] = STATE(111), - [sym_block_comment] = STATE(111), - [aux_sym__non_special_token_repeat1] = STATE(160), - [aux_sym_delim_token_tree_repeat1] = STATE(114), + [100] = { + [sym_delim_token_tree] = STATE(208), + [sym__delim_tokens] = STATE(205), + [sym__non_delim_token] = STATE(208), + [sym__literal] = STATE(207), + [sym_string_literal] = STATE(200), + [sym_raw_string_literal] = STATE(200), + [sym_boolean_literal] = STATE(200), + [sym_line_comment] = STATE(100), + [sym_block_comment] = STATE(100), + [aux_sym__non_special_token_repeat1] = STATE(154), + [aux_sym_delim_token_tree_repeat1] = STATE(74), [sym_identifier] = ACTIONS(661), [anon_sym_SEMI] = ACTIONS(663), [anon_sym_LPAREN] = ACTIONS(665), - [anon_sym_RPAREN] = ACTIONS(719), [anon_sym_LBRACK] = ACTIONS(669), [anon_sym_LBRACE] = ACTIONS(671), + [anon_sym_RBRACE] = ACTIONS(709), [anon_sym_EQ_GT] = ACTIONS(663), [anon_sym_COLON] = ACTIONS(673), [anon_sym_DOLLAR] = ACTIONS(675), @@ -28972,23 +27649,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(683), [sym_float_literal] = ACTIONS(677), }, - [112] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), - [sym_line_comment] = STATE(112), - [sym_block_comment] = STATE(112), - [aux_sym__non_special_token_repeat1] = STATE(160), - [aux_sym_delim_token_tree_repeat1] = STATE(115), + [101] = { + [sym_delim_token_tree] = STATE(208), + [sym__delim_tokens] = STATE(205), + [sym__non_delim_token] = STATE(208), + [sym__literal] = STATE(207), + [sym_string_literal] = STATE(200), + [sym_raw_string_literal] = STATE(200), + [sym_boolean_literal] = STATE(200), + [sym_line_comment] = STATE(101), + [sym_block_comment] = STATE(101), + [aux_sym__non_special_token_repeat1] = STATE(154), + [aux_sym_delim_token_tree_repeat1] = STATE(133), [sym_identifier] = ACTIONS(661), [anon_sym_SEMI] = ACTIONS(663), [anon_sym_LPAREN] = ACTIONS(665), [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_RBRACK] = ACTIONS(719), + [anon_sym_RBRACK] = ACTIONS(711), [anon_sym_LBRACE] = ACTIONS(671), [anon_sym_EQ_GT] = ACTIONS(663), [anon_sym_COLON] = ACTIONS(673), @@ -29093,24 +27770,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(683), [sym_float_literal] = ACTIONS(677), }, - [113] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), - [sym_line_comment] = STATE(113), - [sym_block_comment] = STATE(113), - [aux_sym__non_special_token_repeat1] = STATE(160), - [aux_sym_delim_token_tree_repeat1] = STATE(116), + [102] = { + [sym_delim_token_tree] = STATE(208), + [sym__delim_tokens] = STATE(205), + [sym__non_delim_token] = STATE(208), + [sym__literal] = STATE(207), + [sym_string_literal] = STATE(200), + [sym_raw_string_literal] = STATE(200), + [sym_boolean_literal] = STATE(200), + [sym_line_comment] = STATE(102), + [sym_block_comment] = STATE(102), + [aux_sym__non_special_token_repeat1] = STATE(154), + [aux_sym_delim_token_tree_repeat1] = STATE(85), [sym_identifier] = ACTIONS(661), [anon_sym_SEMI] = ACTIONS(663), [anon_sym_LPAREN] = ACTIONS(665), + [anon_sym_RPAREN] = ACTIONS(713), [anon_sym_LBRACK] = ACTIONS(669), [anon_sym_LBRACE] = ACTIONS(671), - [anon_sym_RBRACE] = ACTIONS(719), [anon_sym_EQ_GT] = ACTIONS(663), [anon_sym_COLON] = ACTIONS(673), [anon_sym_DOLLAR] = ACTIONS(675), @@ -29214,22 +27891,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(683), [sym_float_literal] = ACTIONS(677), }, - [114] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), - [sym_line_comment] = STATE(114), - [sym_block_comment] = STATE(114), - [aux_sym__non_special_token_repeat1] = STATE(160), - [aux_sym_delim_token_tree_repeat1] = STATE(83), + [103] = { + [sym_token_tree] = STATE(165), + [sym_token_repetition] = STATE(165), + [sym__literal] = STATE(165), + [sym_string_literal] = STATE(151), + [sym_raw_string_literal] = STATE(151), + [sym_boolean_literal] = STATE(151), + [sym_line_comment] = STATE(103), + [sym_block_comment] = STATE(103), + [aux_sym_token_tree_repeat1] = STATE(78), + [aux_sym__non_special_token_repeat1] = STATE(136), + [sym_identifier] = ACTIONS(693), + [anon_sym_SEMI] = ACTIONS(554), + [anon_sym_LPAREN] = ACTIONS(695), + [anon_sym_RPAREN] = ACTIONS(715), + [anon_sym_LBRACK] = ACTIONS(699), + [anon_sym_LBRACE] = ACTIONS(701), + [anon_sym_EQ_GT] = ACTIONS(554), + [anon_sym_COLON] = ACTIONS(564), + [anon_sym_DOLLAR] = ACTIONS(703), + [anon_sym_PLUS] = ACTIONS(564), + [anon_sym_STAR] = ACTIONS(564), + [anon_sym_QMARK] = ACTIONS(554), + [anon_sym_u8] = ACTIONS(693), + [anon_sym_i8] = ACTIONS(693), + [anon_sym_u16] = ACTIONS(693), + [anon_sym_i16] = ACTIONS(693), + [anon_sym_u32] = ACTIONS(693), + [anon_sym_i32] = ACTIONS(693), + [anon_sym_u64] = ACTIONS(693), + [anon_sym_i64] = ACTIONS(693), + [anon_sym_u128] = ACTIONS(693), + [anon_sym_i128] = ACTIONS(693), + [anon_sym_isize] = ACTIONS(693), + [anon_sym_usize] = ACTIONS(693), + [anon_sym_f32] = ACTIONS(693), + [anon_sym_f64] = ACTIONS(693), + [anon_sym_bool] = ACTIONS(693), + [anon_sym_str] = ACTIONS(693), + [anon_sym_char] = ACTIONS(693), + [anon_sym_DASH] = ACTIONS(564), + [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_PERCENT] = ACTIONS(564), + [anon_sym_CARET] = ACTIONS(564), + [anon_sym_BANG] = ACTIONS(564), + [anon_sym_AMP] = ACTIONS(564), + [anon_sym_PIPE] = ACTIONS(564), + [anon_sym_AMP_AMP] = ACTIONS(554), + [anon_sym_PIPE_PIPE] = ACTIONS(554), + [anon_sym_LT_LT] = ACTIONS(564), + [anon_sym_GT_GT] = ACTIONS(564), + [anon_sym_PLUS_EQ] = ACTIONS(554), + [anon_sym_DASH_EQ] = ACTIONS(554), + [anon_sym_STAR_EQ] = ACTIONS(554), + [anon_sym_SLASH_EQ] = ACTIONS(554), + [anon_sym_PERCENT_EQ] = ACTIONS(554), + [anon_sym_CARET_EQ] = ACTIONS(554), + [anon_sym_AMP_EQ] = ACTIONS(554), + [anon_sym_PIPE_EQ] = ACTIONS(554), + [anon_sym_LT_LT_EQ] = ACTIONS(554), + [anon_sym_GT_GT_EQ] = ACTIONS(554), + [anon_sym_EQ] = ACTIONS(564), + [anon_sym_EQ_EQ] = ACTIONS(554), + [anon_sym_BANG_EQ] = ACTIONS(554), + [anon_sym_GT] = ACTIONS(564), + [anon_sym_LT] = ACTIONS(564), + [anon_sym_GT_EQ] = ACTIONS(554), + [anon_sym_LT_EQ] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(554), + [anon_sym__] = ACTIONS(564), + [anon_sym_DOT] = ACTIONS(564), + [anon_sym_DOT_DOT] = ACTIONS(564), + [anon_sym_DOT_DOT_DOT] = ACTIONS(554), + [anon_sym_DOT_DOT_EQ] = ACTIONS(554), + [anon_sym_COMMA] = ACTIONS(554), + [anon_sym_COLON_COLON] = ACTIONS(554), + [anon_sym_DASH_GT] = ACTIONS(554), + [anon_sym_POUND] = ACTIONS(554), + [anon_sym_SQUOTE] = ACTIONS(693), + [anon_sym_as] = ACTIONS(693), + [anon_sym_async] = ACTIONS(693), + [anon_sym_await] = ACTIONS(693), + [anon_sym_break] = ACTIONS(693), + [anon_sym_const] = ACTIONS(693), + [anon_sym_continue] = ACTIONS(693), + [anon_sym_default] = ACTIONS(693), + [anon_sym_enum] = ACTIONS(693), + [anon_sym_fn] = ACTIONS(693), + [anon_sym_for] = ACTIONS(693), + [anon_sym_if] = ACTIONS(693), + [anon_sym_impl] = ACTIONS(693), + [anon_sym_let] = ACTIONS(693), + [anon_sym_loop] = ACTIONS(693), + [anon_sym_match] = ACTIONS(693), + [anon_sym_mod] = ACTIONS(693), + [anon_sym_pub] = ACTIONS(693), + [anon_sym_return] = ACTIONS(693), + [anon_sym_static] = ACTIONS(693), + [anon_sym_struct] = ACTIONS(693), + [anon_sym_trait] = ACTIONS(693), + [anon_sym_type] = ACTIONS(693), + [anon_sym_union] = ACTIONS(693), + [anon_sym_unsafe] = ACTIONS(693), + [anon_sym_use] = ACTIONS(693), + [anon_sym_where] = ACTIONS(693), + [anon_sym_while] = ACTIONS(693), + [sym_mutable_specifier] = ACTIONS(693), + [sym_integer_literal] = ACTIONS(568), + [aux_sym_string_literal_token1] = ACTIONS(570), + [sym_char_literal] = ACTIONS(568), + [anon_sym_true] = ACTIONS(572), + [anon_sym_false] = ACTIONS(572), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(693), + [sym_super] = ACTIONS(693), + [sym_crate] = ACTIONS(693), + [sym_metavariable] = ACTIONS(705), + [sym__raw_string_literal_start] = ACTIONS(576), + [sym_float_literal] = ACTIONS(568), + }, + [104] = { + [sym_delim_token_tree] = STATE(208), + [sym__delim_tokens] = STATE(205), + [sym__non_delim_token] = STATE(208), + [sym__literal] = STATE(207), + [sym_string_literal] = STATE(200), + [sym_raw_string_literal] = STATE(200), + [sym_boolean_literal] = STATE(200), + [sym_line_comment] = STATE(104), + [sym_block_comment] = STATE(104), + [aux_sym__non_special_token_repeat1] = STATE(154), + [aux_sym_delim_token_tree_repeat1] = STATE(129), [sym_identifier] = ACTIONS(661), [anon_sym_SEMI] = ACTIONS(663), [anon_sym_LPAREN] = ACTIONS(665), - [anon_sym_RPAREN] = ACTIONS(721), + [anon_sym_RPAREN] = ACTIONS(717), [anon_sym_LBRACK] = ACTIONS(669), [anon_sym_LBRACE] = ACTIONS(671), [anon_sym_EQ_GT] = ACTIONS(663), @@ -29335,23 +28133,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(683), [sym_float_literal] = ACTIONS(677), }, - [115] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), - [sym_line_comment] = STATE(115), - [sym_block_comment] = STATE(115), - [aux_sym__non_special_token_repeat1] = STATE(160), - [aux_sym_delim_token_tree_repeat1] = STATE(83), + [105] = { + [sym_delim_token_tree] = STATE(208), + [sym__delim_tokens] = STATE(205), + [sym__non_delim_token] = STATE(208), + [sym__literal] = STATE(207), + [sym_string_literal] = STATE(200), + [sym_raw_string_literal] = STATE(200), + [sym_boolean_literal] = STATE(200), + [sym_line_comment] = STATE(105), + [sym_block_comment] = STATE(105), + [aux_sym__non_special_token_repeat1] = STATE(154), + [aux_sym_delim_token_tree_repeat1] = STATE(117), [sym_identifier] = ACTIONS(661), [anon_sym_SEMI] = ACTIONS(663), [anon_sym_LPAREN] = ACTIONS(665), [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_RBRACK] = ACTIONS(721), + [anon_sym_RBRACK] = ACTIONS(713), [anon_sym_LBRACE] = ACTIONS(671), [anon_sym_EQ_GT] = ACTIONS(663), [anon_sym_COLON] = ACTIONS(673), @@ -29456,24 +28254,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(683), [sym_float_literal] = ACTIONS(677), }, - [116] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), - [sym_line_comment] = STATE(116), - [sym_block_comment] = STATE(116), - [aux_sym__non_special_token_repeat1] = STATE(160), - [aux_sym_delim_token_tree_repeat1] = STATE(83), + [106] = { + [sym_delim_token_tree] = STATE(208), + [sym__delim_tokens] = STATE(205), + [sym__non_delim_token] = STATE(208), + [sym__literal] = STATE(207), + [sym_string_literal] = STATE(200), + [sym_raw_string_literal] = STATE(200), + [sym_boolean_literal] = STATE(200), + [sym_line_comment] = STATE(106), + [sym_block_comment] = STATE(106), + [aux_sym__non_special_token_repeat1] = STATE(154), + [aux_sym_delim_token_tree_repeat1] = STATE(99), [sym_identifier] = ACTIONS(661), [anon_sym_SEMI] = ACTIONS(663), [anon_sym_LPAREN] = ACTIONS(665), [anon_sym_LBRACK] = ACTIONS(669), + [anon_sym_RBRACK] = ACTIONS(689), [anon_sym_LBRACE] = ACTIONS(671), - [anon_sym_RBRACE] = ACTIONS(721), [anon_sym_EQ_GT] = ACTIONS(663), [anon_sym_COLON] = ACTIONS(673), [anon_sym_DOLLAR] = ACTIONS(675), @@ -29577,22 +28375,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(683), [sym_float_literal] = ACTIONS(677), }, - [117] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), - [sym_line_comment] = STATE(117), - [sym_block_comment] = STATE(117), - [aux_sym__non_special_token_repeat1] = STATE(160), - [aux_sym_delim_token_tree_repeat1] = STATE(120), + [107] = { + [sym_delim_token_tree] = STATE(208), + [sym__delim_tokens] = STATE(205), + [sym__non_delim_token] = STATE(208), + [sym__literal] = STATE(207), + [sym_string_literal] = STATE(200), + [sym_raw_string_literal] = STATE(200), + [sym_boolean_literal] = STATE(200), + [sym_line_comment] = STATE(107), + [sym_block_comment] = STATE(107), + [aux_sym__non_special_token_repeat1] = STATE(154), + [aux_sym_delim_token_tree_repeat1] = STATE(131), [sym_identifier] = ACTIONS(661), [anon_sym_SEMI] = ACTIONS(663), [anon_sym_LPAREN] = ACTIONS(665), - [anon_sym_RPAREN] = ACTIONS(723), + [anon_sym_RPAREN] = ACTIONS(711), [anon_sym_LBRACK] = ACTIONS(669), [anon_sym_LBRACE] = ACTIONS(671), [anon_sym_EQ_GT] = ACTIONS(663), @@ -29698,24 +28496,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(683), [sym_float_literal] = ACTIONS(677), }, - [118] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), - [sym_line_comment] = STATE(118), - [sym_block_comment] = STATE(118), - [aux_sym__non_special_token_repeat1] = STATE(160), - [aux_sym_delim_token_tree_repeat1] = STATE(121), + [108] = { + [sym_delim_token_tree] = STATE(208), + [sym__delim_tokens] = STATE(205), + [sym__non_delim_token] = STATE(208), + [sym__literal] = STATE(207), + [sym_string_literal] = STATE(200), + [sym_raw_string_literal] = STATE(200), + [sym_boolean_literal] = STATE(200), + [sym_line_comment] = STATE(108), + [sym_block_comment] = STATE(108), + [aux_sym__non_special_token_repeat1] = STATE(154), + [aux_sym_delim_token_tree_repeat1] = STATE(119), [sym_identifier] = ACTIONS(661), [anon_sym_SEMI] = ACTIONS(663), [anon_sym_LPAREN] = ACTIONS(665), [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_RBRACK] = ACTIONS(723), [anon_sym_LBRACE] = ACTIONS(671), + [anon_sym_RBRACE] = ACTIONS(713), [anon_sym_EQ_GT] = ACTIONS(663), [anon_sym_COLON] = ACTIONS(673), [anon_sym_DOLLAR] = ACTIONS(675), @@ -29819,24 +28617,266 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(683), [sym_float_literal] = ACTIONS(677), }, - [119] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), - [sym_line_comment] = STATE(119), - [sym_block_comment] = STATE(119), - [aux_sym__non_special_token_repeat1] = STATE(160), - [aux_sym_delim_token_tree_repeat1] = STATE(122), + [109] = { + [sym_token_tree] = STATE(165), + [sym_token_repetition] = STATE(165), + [sym__literal] = STATE(165), + [sym_string_literal] = STATE(151), + [sym_raw_string_literal] = STATE(151), + [sym_boolean_literal] = STATE(151), + [sym_line_comment] = STATE(109), + [sym_block_comment] = STATE(109), + [aux_sym_token_tree_repeat1] = STATE(103), + [aux_sym__non_special_token_repeat1] = STATE(136), + [sym_identifier] = ACTIONS(693), + [anon_sym_SEMI] = ACTIONS(554), + [anon_sym_LPAREN] = ACTIONS(695), + [anon_sym_RPAREN] = ACTIONS(719), + [anon_sym_LBRACK] = ACTIONS(699), + [anon_sym_LBRACE] = ACTIONS(701), + [anon_sym_EQ_GT] = ACTIONS(554), + [anon_sym_COLON] = ACTIONS(564), + [anon_sym_DOLLAR] = ACTIONS(703), + [anon_sym_PLUS] = ACTIONS(564), + [anon_sym_STAR] = ACTIONS(564), + [anon_sym_QMARK] = ACTIONS(554), + [anon_sym_u8] = ACTIONS(693), + [anon_sym_i8] = ACTIONS(693), + [anon_sym_u16] = ACTIONS(693), + [anon_sym_i16] = ACTIONS(693), + [anon_sym_u32] = ACTIONS(693), + [anon_sym_i32] = ACTIONS(693), + [anon_sym_u64] = ACTIONS(693), + [anon_sym_i64] = ACTIONS(693), + [anon_sym_u128] = ACTIONS(693), + [anon_sym_i128] = ACTIONS(693), + [anon_sym_isize] = ACTIONS(693), + [anon_sym_usize] = ACTIONS(693), + [anon_sym_f32] = ACTIONS(693), + [anon_sym_f64] = ACTIONS(693), + [anon_sym_bool] = ACTIONS(693), + [anon_sym_str] = ACTIONS(693), + [anon_sym_char] = ACTIONS(693), + [anon_sym_DASH] = ACTIONS(564), + [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_PERCENT] = ACTIONS(564), + [anon_sym_CARET] = ACTIONS(564), + [anon_sym_BANG] = ACTIONS(564), + [anon_sym_AMP] = ACTIONS(564), + [anon_sym_PIPE] = ACTIONS(564), + [anon_sym_AMP_AMP] = ACTIONS(554), + [anon_sym_PIPE_PIPE] = ACTIONS(554), + [anon_sym_LT_LT] = ACTIONS(564), + [anon_sym_GT_GT] = ACTIONS(564), + [anon_sym_PLUS_EQ] = ACTIONS(554), + [anon_sym_DASH_EQ] = ACTIONS(554), + [anon_sym_STAR_EQ] = ACTIONS(554), + [anon_sym_SLASH_EQ] = ACTIONS(554), + [anon_sym_PERCENT_EQ] = ACTIONS(554), + [anon_sym_CARET_EQ] = ACTIONS(554), + [anon_sym_AMP_EQ] = ACTIONS(554), + [anon_sym_PIPE_EQ] = ACTIONS(554), + [anon_sym_LT_LT_EQ] = ACTIONS(554), + [anon_sym_GT_GT_EQ] = ACTIONS(554), + [anon_sym_EQ] = ACTIONS(564), + [anon_sym_EQ_EQ] = ACTIONS(554), + [anon_sym_BANG_EQ] = ACTIONS(554), + [anon_sym_GT] = ACTIONS(564), + [anon_sym_LT] = ACTIONS(564), + [anon_sym_GT_EQ] = ACTIONS(554), + [anon_sym_LT_EQ] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(554), + [anon_sym__] = ACTIONS(564), + [anon_sym_DOT] = ACTIONS(564), + [anon_sym_DOT_DOT] = ACTIONS(564), + [anon_sym_DOT_DOT_DOT] = ACTIONS(554), + [anon_sym_DOT_DOT_EQ] = ACTIONS(554), + [anon_sym_COMMA] = ACTIONS(554), + [anon_sym_COLON_COLON] = ACTIONS(554), + [anon_sym_DASH_GT] = ACTIONS(554), + [anon_sym_POUND] = ACTIONS(554), + [anon_sym_SQUOTE] = ACTIONS(693), + [anon_sym_as] = ACTIONS(693), + [anon_sym_async] = ACTIONS(693), + [anon_sym_await] = ACTIONS(693), + [anon_sym_break] = ACTIONS(693), + [anon_sym_const] = ACTIONS(693), + [anon_sym_continue] = ACTIONS(693), + [anon_sym_default] = ACTIONS(693), + [anon_sym_enum] = ACTIONS(693), + [anon_sym_fn] = ACTIONS(693), + [anon_sym_for] = ACTIONS(693), + [anon_sym_if] = ACTIONS(693), + [anon_sym_impl] = ACTIONS(693), + [anon_sym_let] = ACTIONS(693), + [anon_sym_loop] = ACTIONS(693), + [anon_sym_match] = ACTIONS(693), + [anon_sym_mod] = ACTIONS(693), + [anon_sym_pub] = ACTIONS(693), + [anon_sym_return] = ACTIONS(693), + [anon_sym_static] = ACTIONS(693), + [anon_sym_struct] = ACTIONS(693), + [anon_sym_trait] = ACTIONS(693), + [anon_sym_type] = ACTIONS(693), + [anon_sym_union] = ACTIONS(693), + [anon_sym_unsafe] = ACTIONS(693), + [anon_sym_use] = ACTIONS(693), + [anon_sym_where] = ACTIONS(693), + [anon_sym_while] = ACTIONS(693), + [sym_mutable_specifier] = ACTIONS(693), + [sym_integer_literal] = ACTIONS(568), + [aux_sym_string_literal_token1] = ACTIONS(570), + [sym_char_literal] = ACTIONS(568), + [anon_sym_true] = ACTIONS(572), + [anon_sym_false] = ACTIONS(572), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(693), + [sym_super] = ACTIONS(693), + [sym_crate] = ACTIONS(693), + [sym_metavariable] = ACTIONS(705), + [sym__raw_string_literal_start] = ACTIONS(576), + [sym_float_literal] = ACTIONS(568), + }, + [110] = { + [sym_token_tree] = STATE(165), + [sym_token_repetition] = STATE(165), + [sym__literal] = STATE(165), + [sym_string_literal] = STATE(151), + [sym_raw_string_literal] = STATE(151), + [sym_boolean_literal] = STATE(151), + [sym_line_comment] = STATE(110), + [sym_block_comment] = STATE(110), + [aux_sym_token_tree_repeat1] = STATE(78), + [aux_sym__non_special_token_repeat1] = STATE(136), + [sym_identifier] = ACTIONS(693), + [anon_sym_SEMI] = ACTIONS(554), + [anon_sym_LPAREN] = ACTIONS(695), + [anon_sym_LBRACK] = ACTIONS(699), + [anon_sym_LBRACE] = ACTIONS(701), + [anon_sym_RBRACE] = ACTIONS(721), + [anon_sym_EQ_GT] = ACTIONS(554), + [anon_sym_COLON] = ACTIONS(564), + [anon_sym_DOLLAR] = ACTIONS(703), + [anon_sym_PLUS] = ACTIONS(564), + [anon_sym_STAR] = ACTIONS(564), + [anon_sym_QMARK] = ACTIONS(554), + [anon_sym_u8] = ACTIONS(693), + [anon_sym_i8] = ACTIONS(693), + [anon_sym_u16] = ACTIONS(693), + [anon_sym_i16] = ACTIONS(693), + [anon_sym_u32] = ACTIONS(693), + [anon_sym_i32] = ACTIONS(693), + [anon_sym_u64] = ACTIONS(693), + [anon_sym_i64] = ACTIONS(693), + [anon_sym_u128] = ACTIONS(693), + [anon_sym_i128] = ACTIONS(693), + [anon_sym_isize] = ACTIONS(693), + [anon_sym_usize] = ACTIONS(693), + [anon_sym_f32] = ACTIONS(693), + [anon_sym_f64] = ACTIONS(693), + [anon_sym_bool] = ACTIONS(693), + [anon_sym_str] = ACTIONS(693), + [anon_sym_char] = ACTIONS(693), + [anon_sym_DASH] = ACTIONS(564), + [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_PERCENT] = ACTIONS(564), + [anon_sym_CARET] = ACTIONS(564), + [anon_sym_BANG] = ACTIONS(564), + [anon_sym_AMP] = ACTIONS(564), + [anon_sym_PIPE] = ACTIONS(564), + [anon_sym_AMP_AMP] = ACTIONS(554), + [anon_sym_PIPE_PIPE] = ACTIONS(554), + [anon_sym_LT_LT] = ACTIONS(564), + [anon_sym_GT_GT] = ACTIONS(564), + [anon_sym_PLUS_EQ] = ACTIONS(554), + [anon_sym_DASH_EQ] = ACTIONS(554), + [anon_sym_STAR_EQ] = ACTIONS(554), + [anon_sym_SLASH_EQ] = ACTIONS(554), + [anon_sym_PERCENT_EQ] = ACTIONS(554), + [anon_sym_CARET_EQ] = ACTIONS(554), + [anon_sym_AMP_EQ] = ACTIONS(554), + [anon_sym_PIPE_EQ] = ACTIONS(554), + [anon_sym_LT_LT_EQ] = ACTIONS(554), + [anon_sym_GT_GT_EQ] = ACTIONS(554), + [anon_sym_EQ] = ACTIONS(564), + [anon_sym_EQ_EQ] = ACTIONS(554), + [anon_sym_BANG_EQ] = ACTIONS(554), + [anon_sym_GT] = ACTIONS(564), + [anon_sym_LT] = ACTIONS(564), + [anon_sym_GT_EQ] = ACTIONS(554), + [anon_sym_LT_EQ] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(554), + [anon_sym__] = ACTIONS(564), + [anon_sym_DOT] = ACTIONS(564), + [anon_sym_DOT_DOT] = ACTIONS(564), + [anon_sym_DOT_DOT_DOT] = ACTIONS(554), + [anon_sym_DOT_DOT_EQ] = ACTIONS(554), + [anon_sym_COMMA] = ACTIONS(554), + [anon_sym_COLON_COLON] = ACTIONS(554), + [anon_sym_DASH_GT] = ACTIONS(554), + [anon_sym_POUND] = ACTIONS(554), + [anon_sym_SQUOTE] = ACTIONS(693), + [anon_sym_as] = ACTIONS(693), + [anon_sym_async] = ACTIONS(693), + [anon_sym_await] = ACTIONS(693), + [anon_sym_break] = ACTIONS(693), + [anon_sym_const] = ACTIONS(693), + [anon_sym_continue] = ACTIONS(693), + [anon_sym_default] = ACTIONS(693), + [anon_sym_enum] = ACTIONS(693), + [anon_sym_fn] = ACTIONS(693), + [anon_sym_for] = ACTIONS(693), + [anon_sym_if] = ACTIONS(693), + [anon_sym_impl] = ACTIONS(693), + [anon_sym_let] = ACTIONS(693), + [anon_sym_loop] = ACTIONS(693), + [anon_sym_match] = ACTIONS(693), + [anon_sym_mod] = ACTIONS(693), + [anon_sym_pub] = ACTIONS(693), + [anon_sym_return] = ACTIONS(693), + [anon_sym_static] = ACTIONS(693), + [anon_sym_struct] = ACTIONS(693), + [anon_sym_trait] = ACTIONS(693), + [anon_sym_type] = ACTIONS(693), + [anon_sym_union] = ACTIONS(693), + [anon_sym_unsafe] = ACTIONS(693), + [anon_sym_use] = ACTIONS(693), + [anon_sym_where] = ACTIONS(693), + [anon_sym_while] = ACTIONS(693), + [sym_mutable_specifier] = ACTIONS(693), + [sym_integer_literal] = ACTIONS(568), + [aux_sym_string_literal_token1] = ACTIONS(570), + [sym_char_literal] = ACTIONS(568), + [anon_sym_true] = ACTIONS(572), + [anon_sym_false] = ACTIONS(572), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(693), + [sym_super] = ACTIONS(693), + [sym_crate] = ACTIONS(693), + [sym_metavariable] = ACTIONS(705), + [sym__raw_string_literal_start] = ACTIONS(576), + [sym_float_literal] = ACTIONS(568), + }, + [111] = { + [sym_delim_token_tree] = STATE(208), + [sym__delim_tokens] = STATE(205), + [sym__non_delim_token] = STATE(208), + [sym__literal] = STATE(207), + [sym_string_literal] = STATE(200), + [sym_raw_string_literal] = STATE(200), + [sym_boolean_literal] = STATE(200), + [sym_line_comment] = STATE(111), + [sym_block_comment] = STATE(111), + [aux_sym__non_special_token_repeat1] = STATE(154), + [aux_sym_delim_token_tree_repeat1] = STATE(74), [sym_identifier] = ACTIONS(661), [anon_sym_SEMI] = ACTIONS(663), [anon_sym_LPAREN] = ACTIONS(665), [anon_sym_LBRACK] = ACTIONS(669), [anon_sym_LBRACE] = ACTIONS(671), - [anon_sym_RBRACE] = ACTIONS(723), + [anon_sym_RBRACE] = ACTIONS(687), [anon_sym_EQ_GT] = ACTIONS(663), [anon_sym_COLON] = ACTIONS(673), [anon_sym_DOLLAR] = ACTIONS(675), @@ -29940,23 +28980,628 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(683), [sym_float_literal] = ACTIONS(677), }, - [120] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), - [sym_line_comment] = STATE(120), - [sym_block_comment] = STATE(120), - [aux_sym__non_special_token_repeat1] = STATE(160), - [aux_sym_delim_token_tree_repeat1] = STATE(83), + [112] = { + [sym_token_tree] = STATE(165), + [sym_token_repetition] = STATE(165), + [sym__literal] = STATE(165), + [sym_string_literal] = STATE(151), + [sym_raw_string_literal] = STATE(151), + [sym_boolean_literal] = STATE(151), + [sym_line_comment] = STATE(112), + [sym_block_comment] = STATE(112), + [aux_sym_token_tree_repeat1] = STATE(90), + [aux_sym__non_special_token_repeat1] = STATE(136), + [sym_identifier] = ACTIONS(693), + [anon_sym_SEMI] = ACTIONS(554), + [anon_sym_LPAREN] = ACTIONS(695), + [anon_sym_RPAREN] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(699), + [anon_sym_LBRACE] = ACTIONS(701), + [anon_sym_EQ_GT] = ACTIONS(554), + [anon_sym_COLON] = ACTIONS(564), + [anon_sym_DOLLAR] = ACTIONS(703), + [anon_sym_PLUS] = ACTIONS(564), + [anon_sym_STAR] = ACTIONS(564), + [anon_sym_QMARK] = ACTIONS(554), + [anon_sym_u8] = ACTIONS(693), + [anon_sym_i8] = ACTIONS(693), + [anon_sym_u16] = ACTIONS(693), + [anon_sym_i16] = ACTIONS(693), + [anon_sym_u32] = ACTIONS(693), + [anon_sym_i32] = ACTIONS(693), + [anon_sym_u64] = ACTIONS(693), + [anon_sym_i64] = ACTIONS(693), + [anon_sym_u128] = ACTIONS(693), + [anon_sym_i128] = ACTIONS(693), + [anon_sym_isize] = ACTIONS(693), + [anon_sym_usize] = ACTIONS(693), + [anon_sym_f32] = ACTIONS(693), + [anon_sym_f64] = ACTIONS(693), + [anon_sym_bool] = ACTIONS(693), + [anon_sym_str] = ACTIONS(693), + [anon_sym_char] = ACTIONS(693), + [anon_sym_DASH] = ACTIONS(564), + [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_PERCENT] = ACTIONS(564), + [anon_sym_CARET] = ACTIONS(564), + [anon_sym_BANG] = ACTIONS(564), + [anon_sym_AMP] = ACTIONS(564), + [anon_sym_PIPE] = ACTIONS(564), + [anon_sym_AMP_AMP] = ACTIONS(554), + [anon_sym_PIPE_PIPE] = ACTIONS(554), + [anon_sym_LT_LT] = ACTIONS(564), + [anon_sym_GT_GT] = ACTIONS(564), + [anon_sym_PLUS_EQ] = ACTIONS(554), + [anon_sym_DASH_EQ] = ACTIONS(554), + [anon_sym_STAR_EQ] = ACTIONS(554), + [anon_sym_SLASH_EQ] = ACTIONS(554), + [anon_sym_PERCENT_EQ] = ACTIONS(554), + [anon_sym_CARET_EQ] = ACTIONS(554), + [anon_sym_AMP_EQ] = ACTIONS(554), + [anon_sym_PIPE_EQ] = ACTIONS(554), + [anon_sym_LT_LT_EQ] = ACTIONS(554), + [anon_sym_GT_GT_EQ] = ACTIONS(554), + [anon_sym_EQ] = ACTIONS(564), + [anon_sym_EQ_EQ] = ACTIONS(554), + [anon_sym_BANG_EQ] = ACTIONS(554), + [anon_sym_GT] = ACTIONS(564), + [anon_sym_LT] = ACTIONS(564), + [anon_sym_GT_EQ] = ACTIONS(554), + [anon_sym_LT_EQ] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(554), + [anon_sym__] = ACTIONS(564), + [anon_sym_DOT] = ACTIONS(564), + [anon_sym_DOT_DOT] = ACTIONS(564), + [anon_sym_DOT_DOT_DOT] = ACTIONS(554), + [anon_sym_DOT_DOT_EQ] = ACTIONS(554), + [anon_sym_COMMA] = ACTIONS(554), + [anon_sym_COLON_COLON] = ACTIONS(554), + [anon_sym_DASH_GT] = ACTIONS(554), + [anon_sym_POUND] = ACTIONS(554), + [anon_sym_SQUOTE] = ACTIONS(693), + [anon_sym_as] = ACTIONS(693), + [anon_sym_async] = ACTIONS(693), + [anon_sym_await] = ACTIONS(693), + [anon_sym_break] = ACTIONS(693), + [anon_sym_const] = ACTIONS(693), + [anon_sym_continue] = ACTIONS(693), + [anon_sym_default] = ACTIONS(693), + [anon_sym_enum] = ACTIONS(693), + [anon_sym_fn] = ACTIONS(693), + [anon_sym_for] = ACTIONS(693), + [anon_sym_if] = ACTIONS(693), + [anon_sym_impl] = ACTIONS(693), + [anon_sym_let] = ACTIONS(693), + [anon_sym_loop] = ACTIONS(693), + [anon_sym_match] = ACTIONS(693), + [anon_sym_mod] = ACTIONS(693), + [anon_sym_pub] = ACTIONS(693), + [anon_sym_return] = ACTIONS(693), + [anon_sym_static] = ACTIONS(693), + [anon_sym_struct] = ACTIONS(693), + [anon_sym_trait] = ACTIONS(693), + [anon_sym_type] = ACTIONS(693), + [anon_sym_union] = ACTIONS(693), + [anon_sym_unsafe] = ACTIONS(693), + [anon_sym_use] = ACTIONS(693), + [anon_sym_where] = ACTIONS(693), + [anon_sym_while] = ACTIONS(693), + [sym_mutable_specifier] = ACTIONS(693), + [sym_integer_literal] = ACTIONS(568), + [aux_sym_string_literal_token1] = ACTIONS(570), + [sym_char_literal] = ACTIONS(568), + [anon_sym_true] = ACTIONS(572), + [anon_sym_false] = ACTIONS(572), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(693), + [sym_super] = ACTIONS(693), + [sym_crate] = ACTIONS(693), + [sym_metavariable] = ACTIONS(705), + [sym__raw_string_literal_start] = ACTIONS(576), + [sym_float_literal] = ACTIONS(568), + }, + [113] = { + [sym_token_tree] = STATE(165), + [sym_token_repetition] = STATE(165), + [sym__literal] = STATE(165), + [sym_string_literal] = STATE(151), + [sym_raw_string_literal] = STATE(151), + [sym_boolean_literal] = STATE(151), + [sym_line_comment] = STATE(113), + [sym_block_comment] = STATE(113), + [aux_sym_token_tree_repeat1] = STATE(126), + [aux_sym__non_special_token_repeat1] = STATE(136), + [sym_identifier] = ACTIONS(693), + [anon_sym_SEMI] = ACTIONS(554), + [anon_sym_LPAREN] = ACTIONS(695), + [anon_sym_LBRACK] = ACTIONS(699), + [anon_sym_RBRACK] = ACTIONS(723), + [anon_sym_LBRACE] = ACTIONS(701), + [anon_sym_EQ_GT] = ACTIONS(554), + [anon_sym_COLON] = ACTIONS(564), + [anon_sym_DOLLAR] = ACTIONS(703), + [anon_sym_PLUS] = ACTIONS(564), + [anon_sym_STAR] = ACTIONS(564), + [anon_sym_QMARK] = ACTIONS(554), + [anon_sym_u8] = ACTIONS(693), + [anon_sym_i8] = ACTIONS(693), + [anon_sym_u16] = ACTIONS(693), + [anon_sym_i16] = ACTIONS(693), + [anon_sym_u32] = ACTIONS(693), + [anon_sym_i32] = ACTIONS(693), + [anon_sym_u64] = ACTIONS(693), + [anon_sym_i64] = ACTIONS(693), + [anon_sym_u128] = ACTIONS(693), + [anon_sym_i128] = ACTIONS(693), + [anon_sym_isize] = ACTIONS(693), + [anon_sym_usize] = ACTIONS(693), + [anon_sym_f32] = ACTIONS(693), + [anon_sym_f64] = ACTIONS(693), + [anon_sym_bool] = ACTIONS(693), + [anon_sym_str] = ACTIONS(693), + [anon_sym_char] = ACTIONS(693), + [anon_sym_DASH] = ACTIONS(564), + [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_PERCENT] = ACTIONS(564), + [anon_sym_CARET] = ACTIONS(564), + [anon_sym_BANG] = ACTIONS(564), + [anon_sym_AMP] = ACTIONS(564), + [anon_sym_PIPE] = ACTIONS(564), + [anon_sym_AMP_AMP] = ACTIONS(554), + [anon_sym_PIPE_PIPE] = ACTIONS(554), + [anon_sym_LT_LT] = ACTIONS(564), + [anon_sym_GT_GT] = ACTIONS(564), + [anon_sym_PLUS_EQ] = ACTIONS(554), + [anon_sym_DASH_EQ] = ACTIONS(554), + [anon_sym_STAR_EQ] = ACTIONS(554), + [anon_sym_SLASH_EQ] = ACTIONS(554), + [anon_sym_PERCENT_EQ] = ACTIONS(554), + [anon_sym_CARET_EQ] = ACTIONS(554), + [anon_sym_AMP_EQ] = ACTIONS(554), + [anon_sym_PIPE_EQ] = ACTIONS(554), + [anon_sym_LT_LT_EQ] = ACTIONS(554), + [anon_sym_GT_GT_EQ] = ACTIONS(554), + [anon_sym_EQ] = ACTIONS(564), + [anon_sym_EQ_EQ] = ACTIONS(554), + [anon_sym_BANG_EQ] = ACTIONS(554), + [anon_sym_GT] = ACTIONS(564), + [anon_sym_LT] = ACTIONS(564), + [anon_sym_GT_EQ] = ACTIONS(554), + [anon_sym_LT_EQ] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(554), + [anon_sym__] = ACTIONS(564), + [anon_sym_DOT] = ACTIONS(564), + [anon_sym_DOT_DOT] = ACTIONS(564), + [anon_sym_DOT_DOT_DOT] = ACTIONS(554), + [anon_sym_DOT_DOT_EQ] = ACTIONS(554), + [anon_sym_COMMA] = ACTIONS(554), + [anon_sym_COLON_COLON] = ACTIONS(554), + [anon_sym_DASH_GT] = ACTIONS(554), + [anon_sym_POUND] = ACTIONS(554), + [anon_sym_SQUOTE] = ACTIONS(693), + [anon_sym_as] = ACTIONS(693), + [anon_sym_async] = ACTIONS(693), + [anon_sym_await] = ACTIONS(693), + [anon_sym_break] = ACTIONS(693), + [anon_sym_const] = ACTIONS(693), + [anon_sym_continue] = ACTIONS(693), + [anon_sym_default] = ACTIONS(693), + [anon_sym_enum] = ACTIONS(693), + [anon_sym_fn] = ACTIONS(693), + [anon_sym_for] = ACTIONS(693), + [anon_sym_if] = ACTIONS(693), + [anon_sym_impl] = ACTIONS(693), + [anon_sym_let] = ACTIONS(693), + [anon_sym_loop] = ACTIONS(693), + [anon_sym_match] = ACTIONS(693), + [anon_sym_mod] = ACTIONS(693), + [anon_sym_pub] = ACTIONS(693), + [anon_sym_return] = ACTIONS(693), + [anon_sym_static] = ACTIONS(693), + [anon_sym_struct] = ACTIONS(693), + [anon_sym_trait] = ACTIONS(693), + [anon_sym_type] = ACTIONS(693), + [anon_sym_union] = ACTIONS(693), + [anon_sym_unsafe] = ACTIONS(693), + [anon_sym_use] = ACTIONS(693), + [anon_sym_where] = ACTIONS(693), + [anon_sym_while] = ACTIONS(693), + [sym_mutable_specifier] = ACTIONS(693), + [sym_integer_literal] = ACTIONS(568), + [aux_sym_string_literal_token1] = ACTIONS(570), + [sym_char_literal] = ACTIONS(568), + [anon_sym_true] = ACTIONS(572), + [anon_sym_false] = ACTIONS(572), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(693), + [sym_super] = ACTIONS(693), + [sym_crate] = ACTIONS(693), + [sym_metavariable] = ACTIONS(705), + [sym__raw_string_literal_start] = ACTIONS(576), + [sym_float_literal] = ACTIONS(568), + }, + [114] = { + [sym_token_tree] = STATE(165), + [sym_token_repetition] = STATE(165), + [sym__literal] = STATE(165), + [sym_string_literal] = STATE(151), + [sym_raw_string_literal] = STATE(151), + [sym_boolean_literal] = STATE(151), + [sym_line_comment] = STATE(114), + [sym_block_comment] = STATE(114), + [aux_sym_token_tree_repeat1] = STATE(118), + [aux_sym__non_special_token_repeat1] = STATE(136), + [sym_identifier] = ACTIONS(693), + [anon_sym_SEMI] = ACTIONS(554), + [anon_sym_LPAREN] = ACTIONS(695), + [anon_sym_LBRACK] = ACTIONS(699), + [anon_sym_LBRACE] = ACTIONS(701), + [anon_sym_RBRACE] = ACTIONS(723), + [anon_sym_EQ_GT] = ACTIONS(554), + [anon_sym_COLON] = ACTIONS(564), + [anon_sym_DOLLAR] = ACTIONS(703), + [anon_sym_PLUS] = ACTIONS(564), + [anon_sym_STAR] = ACTIONS(564), + [anon_sym_QMARK] = ACTIONS(554), + [anon_sym_u8] = ACTIONS(693), + [anon_sym_i8] = ACTIONS(693), + [anon_sym_u16] = ACTIONS(693), + [anon_sym_i16] = ACTIONS(693), + [anon_sym_u32] = ACTIONS(693), + [anon_sym_i32] = ACTIONS(693), + [anon_sym_u64] = ACTIONS(693), + [anon_sym_i64] = ACTIONS(693), + [anon_sym_u128] = ACTIONS(693), + [anon_sym_i128] = ACTIONS(693), + [anon_sym_isize] = ACTIONS(693), + [anon_sym_usize] = ACTIONS(693), + [anon_sym_f32] = ACTIONS(693), + [anon_sym_f64] = ACTIONS(693), + [anon_sym_bool] = ACTIONS(693), + [anon_sym_str] = ACTIONS(693), + [anon_sym_char] = ACTIONS(693), + [anon_sym_DASH] = ACTIONS(564), + [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_PERCENT] = ACTIONS(564), + [anon_sym_CARET] = ACTIONS(564), + [anon_sym_BANG] = ACTIONS(564), + [anon_sym_AMP] = ACTIONS(564), + [anon_sym_PIPE] = ACTIONS(564), + [anon_sym_AMP_AMP] = ACTIONS(554), + [anon_sym_PIPE_PIPE] = ACTIONS(554), + [anon_sym_LT_LT] = ACTIONS(564), + [anon_sym_GT_GT] = ACTIONS(564), + [anon_sym_PLUS_EQ] = ACTIONS(554), + [anon_sym_DASH_EQ] = ACTIONS(554), + [anon_sym_STAR_EQ] = ACTIONS(554), + [anon_sym_SLASH_EQ] = ACTIONS(554), + [anon_sym_PERCENT_EQ] = ACTIONS(554), + [anon_sym_CARET_EQ] = ACTIONS(554), + [anon_sym_AMP_EQ] = ACTIONS(554), + [anon_sym_PIPE_EQ] = ACTIONS(554), + [anon_sym_LT_LT_EQ] = ACTIONS(554), + [anon_sym_GT_GT_EQ] = ACTIONS(554), + [anon_sym_EQ] = ACTIONS(564), + [anon_sym_EQ_EQ] = ACTIONS(554), + [anon_sym_BANG_EQ] = ACTIONS(554), + [anon_sym_GT] = ACTIONS(564), + [anon_sym_LT] = ACTIONS(564), + [anon_sym_GT_EQ] = ACTIONS(554), + [anon_sym_LT_EQ] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(554), + [anon_sym__] = ACTIONS(564), + [anon_sym_DOT] = ACTIONS(564), + [anon_sym_DOT_DOT] = ACTIONS(564), + [anon_sym_DOT_DOT_DOT] = ACTIONS(554), + [anon_sym_DOT_DOT_EQ] = ACTIONS(554), + [anon_sym_COMMA] = ACTIONS(554), + [anon_sym_COLON_COLON] = ACTIONS(554), + [anon_sym_DASH_GT] = ACTIONS(554), + [anon_sym_POUND] = ACTIONS(554), + [anon_sym_SQUOTE] = ACTIONS(693), + [anon_sym_as] = ACTIONS(693), + [anon_sym_async] = ACTIONS(693), + [anon_sym_await] = ACTIONS(693), + [anon_sym_break] = ACTIONS(693), + [anon_sym_const] = ACTIONS(693), + [anon_sym_continue] = ACTIONS(693), + [anon_sym_default] = ACTIONS(693), + [anon_sym_enum] = ACTIONS(693), + [anon_sym_fn] = ACTIONS(693), + [anon_sym_for] = ACTIONS(693), + [anon_sym_if] = ACTIONS(693), + [anon_sym_impl] = ACTIONS(693), + [anon_sym_let] = ACTIONS(693), + [anon_sym_loop] = ACTIONS(693), + [anon_sym_match] = ACTIONS(693), + [anon_sym_mod] = ACTIONS(693), + [anon_sym_pub] = ACTIONS(693), + [anon_sym_return] = ACTIONS(693), + [anon_sym_static] = ACTIONS(693), + [anon_sym_struct] = ACTIONS(693), + [anon_sym_trait] = ACTIONS(693), + [anon_sym_type] = ACTIONS(693), + [anon_sym_union] = ACTIONS(693), + [anon_sym_unsafe] = ACTIONS(693), + [anon_sym_use] = ACTIONS(693), + [anon_sym_where] = ACTIONS(693), + [anon_sym_while] = ACTIONS(693), + [sym_mutable_specifier] = ACTIONS(693), + [sym_integer_literal] = ACTIONS(568), + [aux_sym_string_literal_token1] = ACTIONS(570), + [sym_char_literal] = ACTIONS(568), + [anon_sym_true] = ACTIONS(572), + [anon_sym_false] = ACTIONS(572), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(693), + [sym_super] = ACTIONS(693), + [sym_crate] = ACTIONS(693), + [sym_metavariable] = ACTIONS(705), + [sym__raw_string_literal_start] = ACTIONS(576), + [sym_float_literal] = ACTIONS(568), + }, + [115] = { + [sym_token_tree] = STATE(165), + [sym_token_repetition] = STATE(165), + [sym__literal] = STATE(165), + [sym_string_literal] = STATE(151), + [sym_raw_string_literal] = STATE(151), + [sym_boolean_literal] = STATE(151), + [sym_line_comment] = STATE(115), + [sym_block_comment] = STATE(115), + [aux_sym_token_tree_repeat1] = STATE(78), + [aux_sym__non_special_token_repeat1] = STATE(136), + [sym_identifier] = ACTIONS(693), + [anon_sym_SEMI] = ACTIONS(554), + [anon_sym_LPAREN] = ACTIONS(695), + [anon_sym_LBRACK] = ACTIONS(699), + [anon_sym_RBRACK] = ACTIONS(721), + [anon_sym_LBRACE] = ACTIONS(701), + [anon_sym_EQ_GT] = ACTIONS(554), + [anon_sym_COLON] = ACTIONS(564), + [anon_sym_DOLLAR] = ACTIONS(703), + [anon_sym_PLUS] = ACTIONS(564), + [anon_sym_STAR] = ACTIONS(564), + [anon_sym_QMARK] = ACTIONS(554), + [anon_sym_u8] = ACTIONS(693), + [anon_sym_i8] = ACTIONS(693), + [anon_sym_u16] = ACTIONS(693), + [anon_sym_i16] = ACTIONS(693), + [anon_sym_u32] = ACTIONS(693), + [anon_sym_i32] = ACTIONS(693), + [anon_sym_u64] = ACTIONS(693), + [anon_sym_i64] = ACTIONS(693), + [anon_sym_u128] = ACTIONS(693), + [anon_sym_i128] = ACTIONS(693), + [anon_sym_isize] = ACTIONS(693), + [anon_sym_usize] = ACTIONS(693), + [anon_sym_f32] = ACTIONS(693), + [anon_sym_f64] = ACTIONS(693), + [anon_sym_bool] = ACTIONS(693), + [anon_sym_str] = ACTIONS(693), + [anon_sym_char] = ACTIONS(693), + [anon_sym_DASH] = ACTIONS(564), + [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_PERCENT] = ACTIONS(564), + [anon_sym_CARET] = ACTIONS(564), + [anon_sym_BANG] = ACTIONS(564), + [anon_sym_AMP] = ACTIONS(564), + [anon_sym_PIPE] = ACTIONS(564), + [anon_sym_AMP_AMP] = ACTIONS(554), + [anon_sym_PIPE_PIPE] = ACTIONS(554), + [anon_sym_LT_LT] = ACTIONS(564), + [anon_sym_GT_GT] = ACTIONS(564), + [anon_sym_PLUS_EQ] = ACTIONS(554), + [anon_sym_DASH_EQ] = ACTIONS(554), + [anon_sym_STAR_EQ] = ACTIONS(554), + [anon_sym_SLASH_EQ] = ACTIONS(554), + [anon_sym_PERCENT_EQ] = ACTIONS(554), + [anon_sym_CARET_EQ] = ACTIONS(554), + [anon_sym_AMP_EQ] = ACTIONS(554), + [anon_sym_PIPE_EQ] = ACTIONS(554), + [anon_sym_LT_LT_EQ] = ACTIONS(554), + [anon_sym_GT_GT_EQ] = ACTIONS(554), + [anon_sym_EQ] = ACTIONS(564), + [anon_sym_EQ_EQ] = ACTIONS(554), + [anon_sym_BANG_EQ] = ACTIONS(554), + [anon_sym_GT] = ACTIONS(564), + [anon_sym_LT] = ACTIONS(564), + [anon_sym_GT_EQ] = ACTIONS(554), + [anon_sym_LT_EQ] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(554), + [anon_sym__] = ACTIONS(564), + [anon_sym_DOT] = ACTIONS(564), + [anon_sym_DOT_DOT] = ACTIONS(564), + [anon_sym_DOT_DOT_DOT] = ACTIONS(554), + [anon_sym_DOT_DOT_EQ] = ACTIONS(554), + [anon_sym_COMMA] = ACTIONS(554), + [anon_sym_COLON_COLON] = ACTIONS(554), + [anon_sym_DASH_GT] = ACTIONS(554), + [anon_sym_POUND] = ACTIONS(554), + [anon_sym_SQUOTE] = ACTIONS(693), + [anon_sym_as] = ACTIONS(693), + [anon_sym_async] = ACTIONS(693), + [anon_sym_await] = ACTIONS(693), + [anon_sym_break] = ACTIONS(693), + [anon_sym_const] = ACTIONS(693), + [anon_sym_continue] = ACTIONS(693), + [anon_sym_default] = ACTIONS(693), + [anon_sym_enum] = ACTIONS(693), + [anon_sym_fn] = ACTIONS(693), + [anon_sym_for] = ACTIONS(693), + [anon_sym_if] = ACTIONS(693), + [anon_sym_impl] = ACTIONS(693), + [anon_sym_let] = ACTIONS(693), + [anon_sym_loop] = ACTIONS(693), + [anon_sym_match] = ACTIONS(693), + [anon_sym_mod] = ACTIONS(693), + [anon_sym_pub] = ACTIONS(693), + [anon_sym_return] = ACTIONS(693), + [anon_sym_static] = ACTIONS(693), + [anon_sym_struct] = ACTIONS(693), + [anon_sym_trait] = ACTIONS(693), + [anon_sym_type] = ACTIONS(693), + [anon_sym_union] = ACTIONS(693), + [anon_sym_unsafe] = ACTIONS(693), + [anon_sym_use] = ACTIONS(693), + [anon_sym_where] = ACTIONS(693), + [anon_sym_while] = ACTIONS(693), + [sym_mutable_specifier] = ACTIONS(693), + [sym_integer_literal] = ACTIONS(568), + [aux_sym_string_literal_token1] = ACTIONS(570), + [sym_char_literal] = ACTIONS(568), + [anon_sym_true] = ACTIONS(572), + [anon_sym_false] = ACTIONS(572), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(693), + [sym_super] = ACTIONS(693), + [sym_crate] = ACTIONS(693), + [sym_metavariable] = ACTIONS(705), + [sym__raw_string_literal_start] = ACTIONS(576), + [sym_float_literal] = ACTIONS(568), + }, + [116] = { + [sym_token_tree] = STATE(165), + [sym_token_repetition] = STATE(165), + [sym__literal] = STATE(165), + [sym_string_literal] = STATE(151), + [sym_raw_string_literal] = STATE(151), + [sym_boolean_literal] = STATE(151), + [sym_line_comment] = STATE(116), + [sym_block_comment] = STATE(116), + [aux_sym_token_tree_repeat1] = STATE(78), + [aux_sym__non_special_token_repeat1] = STATE(136), + [sym_identifier] = ACTIONS(693), + [anon_sym_SEMI] = ACTIONS(554), + [anon_sym_LPAREN] = ACTIONS(695), + [anon_sym_RPAREN] = ACTIONS(721), + [anon_sym_LBRACK] = ACTIONS(699), + [anon_sym_LBRACE] = ACTIONS(701), + [anon_sym_EQ_GT] = ACTIONS(554), + [anon_sym_COLON] = ACTIONS(564), + [anon_sym_DOLLAR] = ACTIONS(703), + [anon_sym_PLUS] = ACTIONS(564), + [anon_sym_STAR] = ACTIONS(564), + [anon_sym_QMARK] = ACTIONS(554), + [anon_sym_u8] = ACTIONS(693), + [anon_sym_i8] = ACTIONS(693), + [anon_sym_u16] = ACTIONS(693), + [anon_sym_i16] = ACTIONS(693), + [anon_sym_u32] = ACTIONS(693), + [anon_sym_i32] = ACTIONS(693), + [anon_sym_u64] = ACTIONS(693), + [anon_sym_i64] = ACTIONS(693), + [anon_sym_u128] = ACTIONS(693), + [anon_sym_i128] = ACTIONS(693), + [anon_sym_isize] = ACTIONS(693), + [anon_sym_usize] = ACTIONS(693), + [anon_sym_f32] = ACTIONS(693), + [anon_sym_f64] = ACTIONS(693), + [anon_sym_bool] = ACTIONS(693), + [anon_sym_str] = ACTIONS(693), + [anon_sym_char] = ACTIONS(693), + [anon_sym_DASH] = ACTIONS(564), + [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_PERCENT] = ACTIONS(564), + [anon_sym_CARET] = ACTIONS(564), + [anon_sym_BANG] = ACTIONS(564), + [anon_sym_AMP] = ACTIONS(564), + [anon_sym_PIPE] = ACTIONS(564), + [anon_sym_AMP_AMP] = ACTIONS(554), + [anon_sym_PIPE_PIPE] = ACTIONS(554), + [anon_sym_LT_LT] = ACTIONS(564), + [anon_sym_GT_GT] = ACTIONS(564), + [anon_sym_PLUS_EQ] = ACTIONS(554), + [anon_sym_DASH_EQ] = ACTIONS(554), + [anon_sym_STAR_EQ] = ACTIONS(554), + [anon_sym_SLASH_EQ] = ACTIONS(554), + [anon_sym_PERCENT_EQ] = ACTIONS(554), + [anon_sym_CARET_EQ] = ACTIONS(554), + [anon_sym_AMP_EQ] = ACTIONS(554), + [anon_sym_PIPE_EQ] = ACTIONS(554), + [anon_sym_LT_LT_EQ] = ACTIONS(554), + [anon_sym_GT_GT_EQ] = ACTIONS(554), + [anon_sym_EQ] = ACTIONS(564), + [anon_sym_EQ_EQ] = ACTIONS(554), + [anon_sym_BANG_EQ] = ACTIONS(554), + [anon_sym_GT] = ACTIONS(564), + [anon_sym_LT] = ACTIONS(564), + [anon_sym_GT_EQ] = ACTIONS(554), + [anon_sym_LT_EQ] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(554), + [anon_sym__] = ACTIONS(564), + [anon_sym_DOT] = ACTIONS(564), + [anon_sym_DOT_DOT] = ACTIONS(564), + [anon_sym_DOT_DOT_DOT] = ACTIONS(554), + [anon_sym_DOT_DOT_EQ] = ACTIONS(554), + [anon_sym_COMMA] = ACTIONS(554), + [anon_sym_COLON_COLON] = ACTIONS(554), + [anon_sym_DASH_GT] = ACTIONS(554), + [anon_sym_POUND] = ACTIONS(554), + [anon_sym_SQUOTE] = ACTIONS(693), + [anon_sym_as] = ACTIONS(693), + [anon_sym_async] = ACTIONS(693), + [anon_sym_await] = ACTIONS(693), + [anon_sym_break] = ACTIONS(693), + [anon_sym_const] = ACTIONS(693), + [anon_sym_continue] = ACTIONS(693), + [anon_sym_default] = ACTIONS(693), + [anon_sym_enum] = ACTIONS(693), + [anon_sym_fn] = ACTIONS(693), + [anon_sym_for] = ACTIONS(693), + [anon_sym_if] = ACTIONS(693), + [anon_sym_impl] = ACTIONS(693), + [anon_sym_let] = ACTIONS(693), + [anon_sym_loop] = ACTIONS(693), + [anon_sym_match] = ACTIONS(693), + [anon_sym_mod] = ACTIONS(693), + [anon_sym_pub] = ACTIONS(693), + [anon_sym_return] = ACTIONS(693), + [anon_sym_static] = ACTIONS(693), + [anon_sym_struct] = ACTIONS(693), + [anon_sym_trait] = ACTIONS(693), + [anon_sym_type] = ACTIONS(693), + [anon_sym_union] = ACTIONS(693), + [anon_sym_unsafe] = ACTIONS(693), + [anon_sym_use] = ACTIONS(693), + [anon_sym_where] = ACTIONS(693), + [anon_sym_while] = ACTIONS(693), + [sym_mutable_specifier] = ACTIONS(693), + [sym_integer_literal] = ACTIONS(568), + [aux_sym_string_literal_token1] = ACTIONS(570), + [sym_char_literal] = ACTIONS(568), + [anon_sym_true] = ACTIONS(572), + [anon_sym_false] = ACTIONS(572), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(693), + [sym_super] = ACTIONS(693), + [sym_crate] = ACTIONS(693), + [sym_metavariable] = ACTIONS(705), + [sym__raw_string_literal_start] = ACTIONS(576), + [sym_float_literal] = ACTIONS(568), + }, + [117] = { + [sym_delim_token_tree] = STATE(208), + [sym__delim_tokens] = STATE(205), + [sym__non_delim_token] = STATE(208), + [sym__literal] = STATE(207), + [sym_string_literal] = STATE(200), + [sym_raw_string_literal] = STATE(200), + [sym_boolean_literal] = STATE(200), + [sym_line_comment] = STATE(117), + [sym_block_comment] = STATE(117), + [aux_sym__non_special_token_repeat1] = STATE(154), + [aux_sym_delim_token_tree_repeat1] = STATE(74), [sym_identifier] = ACTIONS(661), [anon_sym_SEMI] = ACTIONS(663), [anon_sym_LPAREN] = ACTIONS(665), - [anon_sym_RPAREN] = ACTIONS(725), [anon_sym_LBRACK] = ACTIONS(669), + [anon_sym_RBRACK] = ACTIONS(685), [anon_sym_LBRACE] = ACTIONS(671), [anon_sym_EQ_GT] = ACTIONS(663), [anon_sym_COLON] = ACTIONS(673), @@ -30061,24 +29706,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(683), [sym_float_literal] = ACTIONS(677), }, - [121] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), - [sym_line_comment] = STATE(121), - [sym_block_comment] = STATE(121), - [aux_sym__non_special_token_repeat1] = STATE(160), - [aux_sym_delim_token_tree_repeat1] = STATE(83), + [118] = { + [sym_token_tree] = STATE(165), + [sym_token_repetition] = STATE(165), + [sym__literal] = STATE(165), + [sym_string_literal] = STATE(151), + [sym_raw_string_literal] = STATE(151), + [sym_boolean_literal] = STATE(151), + [sym_line_comment] = STATE(118), + [sym_block_comment] = STATE(118), + [aux_sym_token_tree_repeat1] = STATE(78), + [aux_sym__non_special_token_repeat1] = STATE(136), + [sym_identifier] = ACTIONS(693), + [anon_sym_SEMI] = ACTIONS(554), + [anon_sym_LPAREN] = ACTIONS(695), + [anon_sym_LBRACK] = ACTIONS(699), + [anon_sym_LBRACE] = ACTIONS(701), + [anon_sym_RBRACE] = ACTIONS(697), + [anon_sym_EQ_GT] = ACTIONS(554), + [anon_sym_COLON] = ACTIONS(564), + [anon_sym_DOLLAR] = ACTIONS(703), + [anon_sym_PLUS] = ACTIONS(564), + [anon_sym_STAR] = ACTIONS(564), + [anon_sym_QMARK] = ACTIONS(554), + [anon_sym_u8] = ACTIONS(693), + [anon_sym_i8] = ACTIONS(693), + [anon_sym_u16] = ACTIONS(693), + [anon_sym_i16] = ACTIONS(693), + [anon_sym_u32] = ACTIONS(693), + [anon_sym_i32] = ACTIONS(693), + [anon_sym_u64] = ACTIONS(693), + [anon_sym_i64] = ACTIONS(693), + [anon_sym_u128] = ACTIONS(693), + [anon_sym_i128] = ACTIONS(693), + [anon_sym_isize] = ACTIONS(693), + [anon_sym_usize] = ACTIONS(693), + [anon_sym_f32] = ACTIONS(693), + [anon_sym_f64] = ACTIONS(693), + [anon_sym_bool] = ACTIONS(693), + [anon_sym_str] = ACTIONS(693), + [anon_sym_char] = ACTIONS(693), + [anon_sym_DASH] = ACTIONS(564), + [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_PERCENT] = ACTIONS(564), + [anon_sym_CARET] = ACTIONS(564), + [anon_sym_BANG] = ACTIONS(564), + [anon_sym_AMP] = ACTIONS(564), + [anon_sym_PIPE] = ACTIONS(564), + [anon_sym_AMP_AMP] = ACTIONS(554), + [anon_sym_PIPE_PIPE] = ACTIONS(554), + [anon_sym_LT_LT] = ACTIONS(564), + [anon_sym_GT_GT] = ACTIONS(564), + [anon_sym_PLUS_EQ] = ACTIONS(554), + [anon_sym_DASH_EQ] = ACTIONS(554), + [anon_sym_STAR_EQ] = ACTIONS(554), + [anon_sym_SLASH_EQ] = ACTIONS(554), + [anon_sym_PERCENT_EQ] = ACTIONS(554), + [anon_sym_CARET_EQ] = ACTIONS(554), + [anon_sym_AMP_EQ] = ACTIONS(554), + [anon_sym_PIPE_EQ] = ACTIONS(554), + [anon_sym_LT_LT_EQ] = ACTIONS(554), + [anon_sym_GT_GT_EQ] = ACTIONS(554), + [anon_sym_EQ] = ACTIONS(564), + [anon_sym_EQ_EQ] = ACTIONS(554), + [anon_sym_BANG_EQ] = ACTIONS(554), + [anon_sym_GT] = ACTIONS(564), + [anon_sym_LT] = ACTIONS(564), + [anon_sym_GT_EQ] = ACTIONS(554), + [anon_sym_LT_EQ] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(554), + [anon_sym__] = ACTIONS(564), + [anon_sym_DOT] = ACTIONS(564), + [anon_sym_DOT_DOT] = ACTIONS(564), + [anon_sym_DOT_DOT_DOT] = ACTIONS(554), + [anon_sym_DOT_DOT_EQ] = ACTIONS(554), + [anon_sym_COMMA] = ACTIONS(554), + [anon_sym_COLON_COLON] = ACTIONS(554), + [anon_sym_DASH_GT] = ACTIONS(554), + [anon_sym_POUND] = ACTIONS(554), + [anon_sym_SQUOTE] = ACTIONS(693), + [anon_sym_as] = ACTIONS(693), + [anon_sym_async] = ACTIONS(693), + [anon_sym_await] = ACTIONS(693), + [anon_sym_break] = ACTIONS(693), + [anon_sym_const] = ACTIONS(693), + [anon_sym_continue] = ACTIONS(693), + [anon_sym_default] = ACTIONS(693), + [anon_sym_enum] = ACTIONS(693), + [anon_sym_fn] = ACTIONS(693), + [anon_sym_for] = ACTIONS(693), + [anon_sym_if] = ACTIONS(693), + [anon_sym_impl] = ACTIONS(693), + [anon_sym_let] = ACTIONS(693), + [anon_sym_loop] = ACTIONS(693), + [anon_sym_match] = ACTIONS(693), + [anon_sym_mod] = ACTIONS(693), + [anon_sym_pub] = ACTIONS(693), + [anon_sym_return] = ACTIONS(693), + [anon_sym_static] = ACTIONS(693), + [anon_sym_struct] = ACTIONS(693), + [anon_sym_trait] = ACTIONS(693), + [anon_sym_type] = ACTIONS(693), + [anon_sym_union] = ACTIONS(693), + [anon_sym_unsafe] = ACTIONS(693), + [anon_sym_use] = ACTIONS(693), + [anon_sym_where] = ACTIONS(693), + [anon_sym_while] = ACTIONS(693), + [sym_mutable_specifier] = ACTIONS(693), + [sym_integer_literal] = ACTIONS(568), + [aux_sym_string_literal_token1] = ACTIONS(570), + [sym_char_literal] = ACTIONS(568), + [anon_sym_true] = ACTIONS(572), + [anon_sym_false] = ACTIONS(572), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(693), + [sym_super] = ACTIONS(693), + [sym_crate] = ACTIONS(693), + [sym_metavariable] = ACTIONS(705), + [sym__raw_string_literal_start] = ACTIONS(576), + [sym_float_literal] = ACTIONS(568), + }, + [119] = { + [sym_delim_token_tree] = STATE(208), + [sym__delim_tokens] = STATE(205), + [sym__non_delim_token] = STATE(208), + [sym__literal] = STATE(207), + [sym_string_literal] = STATE(200), + [sym_raw_string_literal] = STATE(200), + [sym_boolean_literal] = STATE(200), + [sym_line_comment] = STATE(119), + [sym_block_comment] = STATE(119), + [aux_sym__non_special_token_repeat1] = STATE(154), + [aux_sym_delim_token_tree_repeat1] = STATE(74), [sym_identifier] = ACTIONS(661), [anon_sym_SEMI] = ACTIONS(663), [anon_sym_LPAREN] = ACTIONS(665), [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_RBRACK] = ACTIONS(725), [anon_sym_LBRACE] = ACTIONS(671), + [anon_sym_RBRACE] = ACTIONS(685), [anon_sym_EQ_GT] = ACTIONS(663), [anon_sym_COLON] = ACTIONS(673), [anon_sym_DOLLAR] = ACTIONS(675), @@ -30182,18 +29948,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(683), [sym_float_literal] = ACTIONS(677), }, - [122] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), - [sym_line_comment] = STATE(122), - [sym_block_comment] = STATE(122), - [aux_sym__non_special_token_repeat1] = STATE(160), - [aux_sym_delim_token_tree_repeat1] = STATE(83), + [120] = { + [sym_delim_token_tree] = STATE(208), + [sym__delim_tokens] = STATE(205), + [sym__non_delim_token] = STATE(208), + [sym__literal] = STATE(207), + [sym_string_literal] = STATE(200), + [sym_raw_string_literal] = STATE(200), + [sym_boolean_literal] = STATE(200), + [sym_line_comment] = STATE(120), + [sym_block_comment] = STATE(120), + [aux_sym__non_special_token_repeat1] = STATE(154), + [aux_sym_delim_token_tree_repeat1] = STATE(74), [sym_identifier] = ACTIONS(661), [anon_sym_SEMI] = ACTIONS(663), [anon_sym_LPAREN] = ACTIONS(665), @@ -30303,24 +30069,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(683), [sym_float_literal] = ACTIONS(677), }, - [123] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), - [sym_line_comment] = STATE(123), - [sym_block_comment] = STATE(123), - [aux_sym__non_special_token_repeat1] = STATE(160), - [aux_sym_delim_token_tree_repeat1] = STATE(107), + [121] = { + [sym_delim_token_tree] = STATE(208), + [sym__delim_tokens] = STATE(205), + [sym__non_delim_token] = STATE(208), + [sym__literal] = STATE(207), + [sym_string_literal] = STATE(200), + [sym_raw_string_literal] = STATE(200), + [sym_boolean_literal] = STATE(200), + [sym_line_comment] = STATE(121), + [sym_block_comment] = STATE(121), + [aux_sym__non_special_token_repeat1] = STATE(154), + [aux_sym_delim_token_tree_repeat1] = STATE(120), [sym_identifier] = ACTIONS(661), [anon_sym_SEMI] = ACTIONS(663), [anon_sym_LPAREN] = ACTIONS(665), - [anon_sym_RPAREN] = ACTIONS(709), [anon_sym_LBRACK] = ACTIONS(669), [anon_sym_LBRACE] = ACTIONS(671), + [anon_sym_RBRACE] = ACTIONS(717), [anon_sym_EQ_GT] = ACTIONS(663), [anon_sym_COLON] = ACTIONS(673), [anon_sym_DOLLAR] = ACTIONS(675), @@ -30424,24 +30190,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(683), [sym_float_literal] = ACTIONS(677), }, - [124] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), - [sym_line_comment] = STATE(124), - [sym_block_comment] = STATE(124), - [aux_sym__non_special_token_repeat1] = STATE(160), - [aux_sym_delim_token_tree_repeat1] = STATE(89), + [122] = { + [sym_token_tree] = STATE(165), + [sym_token_repetition] = STATE(165), + [sym__literal] = STATE(165), + [sym_string_literal] = STATE(151), + [sym_raw_string_literal] = STATE(151), + [sym_boolean_literal] = STATE(151), + [sym_line_comment] = STATE(122), + [sym_block_comment] = STATE(122), + [aux_sym_token_tree_repeat1] = STATE(110), + [aux_sym__non_special_token_repeat1] = STATE(136), + [sym_identifier] = ACTIONS(693), + [anon_sym_SEMI] = ACTIONS(554), + [anon_sym_LPAREN] = ACTIONS(695), + [anon_sym_LBRACK] = ACTIONS(699), + [anon_sym_LBRACE] = ACTIONS(701), + [anon_sym_RBRACE] = ACTIONS(727), + [anon_sym_EQ_GT] = ACTIONS(554), + [anon_sym_COLON] = ACTIONS(564), + [anon_sym_DOLLAR] = ACTIONS(703), + [anon_sym_PLUS] = ACTIONS(564), + [anon_sym_STAR] = ACTIONS(564), + [anon_sym_QMARK] = ACTIONS(554), + [anon_sym_u8] = ACTIONS(693), + [anon_sym_i8] = ACTIONS(693), + [anon_sym_u16] = ACTIONS(693), + [anon_sym_i16] = ACTIONS(693), + [anon_sym_u32] = ACTIONS(693), + [anon_sym_i32] = ACTIONS(693), + [anon_sym_u64] = ACTIONS(693), + [anon_sym_i64] = ACTIONS(693), + [anon_sym_u128] = ACTIONS(693), + [anon_sym_i128] = ACTIONS(693), + [anon_sym_isize] = ACTIONS(693), + [anon_sym_usize] = ACTIONS(693), + [anon_sym_f32] = ACTIONS(693), + [anon_sym_f64] = ACTIONS(693), + [anon_sym_bool] = ACTIONS(693), + [anon_sym_str] = ACTIONS(693), + [anon_sym_char] = ACTIONS(693), + [anon_sym_DASH] = ACTIONS(564), + [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_PERCENT] = ACTIONS(564), + [anon_sym_CARET] = ACTIONS(564), + [anon_sym_BANG] = ACTIONS(564), + [anon_sym_AMP] = ACTIONS(564), + [anon_sym_PIPE] = ACTIONS(564), + [anon_sym_AMP_AMP] = ACTIONS(554), + [anon_sym_PIPE_PIPE] = ACTIONS(554), + [anon_sym_LT_LT] = ACTIONS(564), + [anon_sym_GT_GT] = ACTIONS(564), + [anon_sym_PLUS_EQ] = ACTIONS(554), + [anon_sym_DASH_EQ] = ACTIONS(554), + [anon_sym_STAR_EQ] = ACTIONS(554), + [anon_sym_SLASH_EQ] = ACTIONS(554), + [anon_sym_PERCENT_EQ] = ACTIONS(554), + [anon_sym_CARET_EQ] = ACTIONS(554), + [anon_sym_AMP_EQ] = ACTIONS(554), + [anon_sym_PIPE_EQ] = ACTIONS(554), + [anon_sym_LT_LT_EQ] = ACTIONS(554), + [anon_sym_GT_GT_EQ] = ACTIONS(554), + [anon_sym_EQ] = ACTIONS(564), + [anon_sym_EQ_EQ] = ACTIONS(554), + [anon_sym_BANG_EQ] = ACTIONS(554), + [anon_sym_GT] = ACTIONS(564), + [anon_sym_LT] = ACTIONS(564), + [anon_sym_GT_EQ] = ACTIONS(554), + [anon_sym_LT_EQ] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(554), + [anon_sym__] = ACTIONS(564), + [anon_sym_DOT] = ACTIONS(564), + [anon_sym_DOT_DOT] = ACTIONS(564), + [anon_sym_DOT_DOT_DOT] = ACTIONS(554), + [anon_sym_DOT_DOT_EQ] = ACTIONS(554), + [anon_sym_COMMA] = ACTIONS(554), + [anon_sym_COLON_COLON] = ACTIONS(554), + [anon_sym_DASH_GT] = ACTIONS(554), + [anon_sym_POUND] = ACTIONS(554), + [anon_sym_SQUOTE] = ACTIONS(693), + [anon_sym_as] = ACTIONS(693), + [anon_sym_async] = ACTIONS(693), + [anon_sym_await] = ACTIONS(693), + [anon_sym_break] = ACTIONS(693), + [anon_sym_const] = ACTIONS(693), + [anon_sym_continue] = ACTIONS(693), + [anon_sym_default] = ACTIONS(693), + [anon_sym_enum] = ACTIONS(693), + [anon_sym_fn] = ACTIONS(693), + [anon_sym_for] = ACTIONS(693), + [anon_sym_if] = ACTIONS(693), + [anon_sym_impl] = ACTIONS(693), + [anon_sym_let] = ACTIONS(693), + [anon_sym_loop] = ACTIONS(693), + [anon_sym_match] = ACTIONS(693), + [anon_sym_mod] = ACTIONS(693), + [anon_sym_pub] = ACTIONS(693), + [anon_sym_return] = ACTIONS(693), + [anon_sym_static] = ACTIONS(693), + [anon_sym_struct] = ACTIONS(693), + [anon_sym_trait] = ACTIONS(693), + [anon_sym_type] = ACTIONS(693), + [anon_sym_union] = ACTIONS(693), + [anon_sym_unsafe] = ACTIONS(693), + [anon_sym_use] = ACTIONS(693), + [anon_sym_where] = ACTIONS(693), + [anon_sym_while] = ACTIONS(693), + [sym_mutable_specifier] = ACTIONS(693), + [sym_integer_literal] = ACTIONS(568), + [aux_sym_string_literal_token1] = ACTIONS(570), + [sym_char_literal] = ACTIONS(568), + [anon_sym_true] = ACTIONS(572), + [anon_sym_false] = ACTIONS(572), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(693), + [sym_super] = ACTIONS(693), + [sym_crate] = ACTIONS(693), + [sym_metavariable] = ACTIONS(705), + [sym__raw_string_literal_start] = ACTIONS(576), + [sym_float_literal] = ACTIONS(568), + }, + [123] = { + [sym_delim_token_tree] = STATE(208), + [sym__delim_tokens] = STATE(205), + [sym__non_delim_token] = STATE(208), + [sym__literal] = STATE(207), + [sym_string_literal] = STATE(200), + [sym_raw_string_literal] = STATE(200), + [sym_boolean_literal] = STATE(200), + [sym_line_comment] = STATE(123), + [sym_block_comment] = STATE(123), + [aux_sym__non_special_token_repeat1] = STATE(154), + [aux_sym_delim_token_tree_repeat1] = STATE(132), [sym_identifier] = ACTIONS(661), [anon_sym_SEMI] = ACTIONS(663), [anon_sym_LPAREN] = ACTIONS(665), [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_RBRACK] = ACTIONS(709), [anon_sym_LBRACE] = ACTIONS(671), + [anon_sym_RBRACE] = ACTIONS(711), [anon_sym_EQ_GT] = ACTIONS(663), [anon_sym_COLON] = ACTIONS(673), [anon_sym_DOLLAR] = ACTIONS(675), @@ -30545,23 +30432,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(683), [sym_float_literal] = ACTIONS(677), }, - [125] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), - [sym_line_comment] = STATE(125), - [sym_block_comment] = STATE(125), - [aux_sym__non_special_token_repeat1] = STATE(160), - [aux_sym_delim_token_tree_repeat1] = STATE(84), + [124] = { + [sym_delim_token_tree] = STATE(208), + [sym__delim_tokens] = STATE(205), + [sym__non_delim_token] = STATE(208), + [sym__literal] = STATE(207), + [sym_string_literal] = STATE(200), + [sym_raw_string_literal] = STATE(200), + [sym_boolean_literal] = STATE(200), + [sym_line_comment] = STATE(124), + [sym_block_comment] = STATE(124), + [aux_sym__non_special_token_repeat1] = STATE(154), + [aux_sym_delim_token_tree_repeat1] = STATE(74), [sym_identifier] = ACTIONS(661), [anon_sym_SEMI] = ACTIONS(663), [anon_sym_LPAREN] = ACTIONS(665), - [anon_sym_RPAREN] = ACTIONS(727), [anon_sym_LBRACK] = ACTIONS(669), + [anon_sym_RBRACK] = ACTIONS(725), [anon_sym_LBRACE] = ACTIONS(671), [anon_sym_EQ_GT] = ACTIONS(663), [anon_sym_COLON] = ACTIONS(673), @@ -30666,23 +30553,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(683), [sym_float_literal] = ACTIONS(677), }, - [126] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), - [sym_line_comment] = STATE(126), - [sym_block_comment] = STATE(126), - [aux_sym__non_special_token_repeat1] = STATE(160), - [aux_sym_delim_token_tree_repeat1] = STATE(128), + [125] = { + [sym_delim_token_tree] = STATE(208), + [sym__delim_tokens] = STATE(205), + [sym__non_delim_token] = STATE(208), + [sym__literal] = STATE(207), + [sym_string_literal] = STATE(200), + [sym_raw_string_literal] = STATE(200), + [sym_boolean_literal] = STATE(200), + [sym_line_comment] = STATE(125), + [sym_block_comment] = STATE(125), + [aux_sym__non_special_token_repeat1] = STATE(154), + [aux_sym_delim_token_tree_repeat1] = STATE(98), [sym_identifier] = ACTIONS(661), [anon_sym_SEMI] = ACTIONS(663), [anon_sym_LPAREN] = ACTIONS(665), + [anon_sym_RPAREN] = ACTIONS(689), [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_RBRACK] = ACTIONS(727), [anon_sym_LBRACE] = ACTIONS(671), [anon_sym_EQ_GT] = ACTIONS(663), [anon_sym_COLON] = ACTIONS(673), @@ -30787,60 +30674,423 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(683), [sym_float_literal] = ACTIONS(677), }, - [127] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), - [sym_line_comment] = STATE(127), - [sym_block_comment] = STATE(127), - [aux_sym__non_special_token_repeat1] = STATE(160), - [aux_sym_delim_token_tree_repeat1] = STATE(129), - [sym_identifier] = ACTIONS(661), - [anon_sym_SEMI] = ACTIONS(663), - [anon_sym_LPAREN] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(671), - [anon_sym_RBRACE] = ACTIONS(727), - [anon_sym_EQ_GT] = ACTIONS(663), - [anon_sym_COLON] = ACTIONS(673), - [anon_sym_DOLLAR] = ACTIONS(675), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_STAR] = ACTIONS(673), - [anon_sym_QMARK] = ACTIONS(663), - [anon_sym_u8] = ACTIONS(661), - [anon_sym_i8] = ACTIONS(661), - [anon_sym_u16] = ACTIONS(661), - [anon_sym_i16] = ACTIONS(661), - [anon_sym_u32] = ACTIONS(661), - [anon_sym_i32] = ACTIONS(661), - [anon_sym_u64] = ACTIONS(661), - [anon_sym_i64] = ACTIONS(661), - [anon_sym_u128] = ACTIONS(661), - [anon_sym_i128] = ACTIONS(661), - [anon_sym_isize] = ACTIONS(661), - [anon_sym_usize] = ACTIONS(661), - [anon_sym_f32] = ACTIONS(661), - [anon_sym_f64] = ACTIONS(661), - [anon_sym_bool] = ACTIONS(661), - [anon_sym_str] = ACTIONS(661), - [anon_sym_char] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_SLASH] = ACTIONS(673), - [anon_sym_PERCENT] = ACTIONS(673), - [anon_sym_CARET] = ACTIONS(673), - [anon_sym_BANG] = ACTIONS(673), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE] = ACTIONS(673), - [anon_sym_AMP_AMP] = ACTIONS(663), - [anon_sym_PIPE_PIPE] = ACTIONS(663), - [anon_sym_LT_LT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(673), - [anon_sym_PLUS_EQ] = ACTIONS(663), - [anon_sym_DASH_EQ] = ACTIONS(663), + [126] = { + [sym_token_tree] = STATE(165), + [sym_token_repetition] = STATE(165), + [sym__literal] = STATE(165), + [sym_string_literal] = STATE(151), + [sym_raw_string_literal] = STATE(151), + [sym_boolean_literal] = STATE(151), + [sym_line_comment] = STATE(126), + [sym_block_comment] = STATE(126), + [aux_sym_token_tree_repeat1] = STATE(78), + [aux_sym__non_special_token_repeat1] = STATE(136), + [sym_identifier] = ACTIONS(693), + [anon_sym_SEMI] = ACTIONS(554), + [anon_sym_LPAREN] = ACTIONS(695), + [anon_sym_LBRACK] = ACTIONS(699), + [anon_sym_RBRACK] = ACTIONS(697), + [anon_sym_LBRACE] = ACTIONS(701), + [anon_sym_EQ_GT] = ACTIONS(554), + [anon_sym_COLON] = ACTIONS(564), + [anon_sym_DOLLAR] = ACTIONS(703), + [anon_sym_PLUS] = ACTIONS(564), + [anon_sym_STAR] = ACTIONS(564), + [anon_sym_QMARK] = ACTIONS(554), + [anon_sym_u8] = ACTIONS(693), + [anon_sym_i8] = ACTIONS(693), + [anon_sym_u16] = ACTIONS(693), + [anon_sym_i16] = ACTIONS(693), + [anon_sym_u32] = ACTIONS(693), + [anon_sym_i32] = ACTIONS(693), + [anon_sym_u64] = ACTIONS(693), + [anon_sym_i64] = ACTIONS(693), + [anon_sym_u128] = ACTIONS(693), + [anon_sym_i128] = ACTIONS(693), + [anon_sym_isize] = ACTIONS(693), + [anon_sym_usize] = ACTIONS(693), + [anon_sym_f32] = ACTIONS(693), + [anon_sym_f64] = ACTIONS(693), + [anon_sym_bool] = ACTIONS(693), + [anon_sym_str] = ACTIONS(693), + [anon_sym_char] = ACTIONS(693), + [anon_sym_DASH] = ACTIONS(564), + [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_PERCENT] = ACTIONS(564), + [anon_sym_CARET] = ACTIONS(564), + [anon_sym_BANG] = ACTIONS(564), + [anon_sym_AMP] = ACTIONS(564), + [anon_sym_PIPE] = ACTIONS(564), + [anon_sym_AMP_AMP] = ACTIONS(554), + [anon_sym_PIPE_PIPE] = ACTIONS(554), + [anon_sym_LT_LT] = ACTIONS(564), + [anon_sym_GT_GT] = ACTIONS(564), + [anon_sym_PLUS_EQ] = ACTIONS(554), + [anon_sym_DASH_EQ] = ACTIONS(554), + [anon_sym_STAR_EQ] = ACTIONS(554), + [anon_sym_SLASH_EQ] = ACTIONS(554), + [anon_sym_PERCENT_EQ] = ACTIONS(554), + [anon_sym_CARET_EQ] = ACTIONS(554), + [anon_sym_AMP_EQ] = ACTIONS(554), + [anon_sym_PIPE_EQ] = ACTIONS(554), + [anon_sym_LT_LT_EQ] = ACTIONS(554), + [anon_sym_GT_GT_EQ] = ACTIONS(554), + [anon_sym_EQ] = ACTIONS(564), + [anon_sym_EQ_EQ] = ACTIONS(554), + [anon_sym_BANG_EQ] = ACTIONS(554), + [anon_sym_GT] = ACTIONS(564), + [anon_sym_LT] = ACTIONS(564), + [anon_sym_GT_EQ] = ACTIONS(554), + [anon_sym_LT_EQ] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(554), + [anon_sym__] = ACTIONS(564), + [anon_sym_DOT] = ACTIONS(564), + [anon_sym_DOT_DOT] = ACTIONS(564), + [anon_sym_DOT_DOT_DOT] = ACTIONS(554), + [anon_sym_DOT_DOT_EQ] = ACTIONS(554), + [anon_sym_COMMA] = ACTIONS(554), + [anon_sym_COLON_COLON] = ACTIONS(554), + [anon_sym_DASH_GT] = ACTIONS(554), + [anon_sym_POUND] = ACTIONS(554), + [anon_sym_SQUOTE] = ACTIONS(693), + [anon_sym_as] = ACTIONS(693), + [anon_sym_async] = ACTIONS(693), + [anon_sym_await] = ACTIONS(693), + [anon_sym_break] = ACTIONS(693), + [anon_sym_const] = ACTIONS(693), + [anon_sym_continue] = ACTIONS(693), + [anon_sym_default] = ACTIONS(693), + [anon_sym_enum] = ACTIONS(693), + [anon_sym_fn] = ACTIONS(693), + [anon_sym_for] = ACTIONS(693), + [anon_sym_if] = ACTIONS(693), + [anon_sym_impl] = ACTIONS(693), + [anon_sym_let] = ACTIONS(693), + [anon_sym_loop] = ACTIONS(693), + [anon_sym_match] = ACTIONS(693), + [anon_sym_mod] = ACTIONS(693), + [anon_sym_pub] = ACTIONS(693), + [anon_sym_return] = ACTIONS(693), + [anon_sym_static] = ACTIONS(693), + [anon_sym_struct] = ACTIONS(693), + [anon_sym_trait] = ACTIONS(693), + [anon_sym_type] = ACTIONS(693), + [anon_sym_union] = ACTIONS(693), + [anon_sym_unsafe] = ACTIONS(693), + [anon_sym_use] = ACTIONS(693), + [anon_sym_where] = ACTIONS(693), + [anon_sym_while] = ACTIONS(693), + [sym_mutable_specifier] = ACTIONS(693), + [sym_integer_literal] = ACTIONS(568), + [aux_sym_string_literal_token1] = ACTIONS(570), + [sym_char_literal] = ACTIONS(568), + [anon_sym_true] = ACTIONS(572), + [anon_sym_false] = ACTIONS(572), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(693), + [sym_super] = ACTIONS(693), + [sym_crate] = ACTIONS(693), + [sym_metavariable] = ACTIONS(705), + [sym__raw_string_literal_start] = ACTIONS(576), + [sym_float_literal] = ACTIONS(568), + }, + [127] = { + [sym_token_tree] = STATE(165), + [sym_token_repetition] = STATE(165), + [sym__literal] = STATE(165), + [sym_string_literal] = STATE(151), + [sym_raw_string_literal] = STATE(151), + [sym_boolean_literal] = STATE(151), + [sym_line_comment] = STATE(127), + [sym_block_comment] = STATE(127), + [aux_sym_token_tree_repeat1] = STATE(115), + [aux_sym__non_special_token_repeat1] = STATE(136), + [sym_identifier] = ACTIONS(693), + [anon_sym_SEMI] = ACTIONS(554), + [anon_sym_LPAREN] = ACTIONS(695), + [anon_sym_LBRACK] = ACTIONS(699), + [anon_sym_RBRACK] = ACTIONS(727), + [anon_sym_LBRACE] = ACTIONS(701), + [anon_sym_EQ_GT] = ACTIONS(554), + [anon_sym_COLON] = ACTIONS(564), + [anon_sym_DOLLAR] = ACTIONS(703), + [anon_sym_PLUS] = ACTIONS(564), + [anon_sym_STAR] = ACTIONS(564), + [anon_sym_QMARK] = ACTIONS(554), + [anon_sym_u8] = ACTIONS(693), + [anon_sym_i8] = ACTIONS(693), + [anon_sym_u16] = ACTIONS(693), + [anon_sym_i16] = ACTIONS(693), + [anon_sym_u32] = ACTIONS(693), + [anon_sym_i32] = ACTIONS(693), + [anon_sym_u64] = ACTIONS(693), + [anon_sym_i64] = ACTIONS(693), + [anon_sym_u128] = ACTIONS(693), + [anon_sym_i128] = ACTIONS(693), + [anon_sym_isize] = ACTIONS(693), + [anon_sym_usize] = ACTIONS(693), + [anon_sym_f32] = ACTIONS(693), + [anon_sym_f64] = ACTIONS(693), + [anon_sym_bool] = ACTIONS(693), + [anon_sym_str] = ACTIONS(693), + [anon_sym_char] = ACTIONS(693), + [anon_sym_DASH] = ACTIONS(564), + [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_PERCENT] = ACTIONS(564), + [anon_sym_CARET] = ACTIONS(564), + [anon_sym_BANG] = ACTIONS(564), + [anon_sym_AMP] = ACTIONS(564), + [anon_sym_PIPE] = ACTIONS(564), + [anon_sym_AMP_AMP] = ACTIONS(554), + [anon_sym_PIPE_PIPE] = ACTIONS(554), + [anon_sym_LT_LT] = ACTIONS(564), + [anon_sym_GT_GT] = ACTIONS(564), + [anon_sym_PLUS_EQ] = ACTIONS(554), + [anon_sym_DASH_EQ] = ACTIONS(554), + [anon_sym_STAR_EQ] = ACTIONS(554), + [anon_sym_SLASH_EQ] = ACTIONS(554), + [anon_sym_PERCENT_EQ] = ACTIONS(554), + [anon_sym_CARET_EQ] = ACTIONS(554), + [anon_sym_AMP_EQ] = ACTIONS(554), + [anon_sym_PIPE_EQ] = ACTIONS(554), + [anon_sym_LT_LT_EQ] = ACTIONS(554), + [anon_sym_GT_GT_EQ] = ACTIONS(554), + [anon_sym_EQ] = ACTIONS(564), + [anon_sym_EQ_EQ] = ACTIONS(554), + [anon_sym_BANG_EQ] = ACTIONS(554), + [anon_sym_GT] = ACTIONS(564), + [anon_sym_LT] = ACTIONS(564), + [anon_sym_GT_EQ] = ACTIONS(554), + [anon_sym_LT_EQ] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(554), + [anon_sym__] = ACTIONS(564), + [anon_sym_DOT] = ACTIONS(564), + [anon_sym_DOT_DOT] = ACTIONS(564), + [anon_sym_DOT_DOT_DOT] = ACTIONS(554), + [anon_sym_DOT_DOT_EQ] = ACTIONS(554), + [anon_sym_COMMA] = ACTIONS(554), + [anon_sym_COLON_COLON] = ACTIONS(554), + [anon_sym_DASH_GT] = ACTIONS(554), + [anon_sym_POUND] = ACTIONS(554), + [anon_sym_SQUOTE] = ACTIONS(693), + [anon_sym_as] = ACTIONS(693), + [anon_sym_async] = ACTIONS(693), + [anon_sym_await] = ACTIONS(693), + [anon_sym_break] = ACTIONS(693), + [anon_sym_const] = ACTIONS(693), + [anon_sym_continue] = ACTIONS(693), + [anon_sym_default] = ACTIONS(693), + [anon_sym_enum] = ACTIONS(693), + [anon_sym_fn] = ACTIONS(693), + [anon_sym_for] = ACTIONS(693), + [anon_sym_if] = ACTIONS(693), + [anon_sym_impl] = ACTIONS(693), + [anon_sym_let] = ACTIONS(693), + [anon_sym_loop] = ACTIONS(693), + [anon_sym_match] = ACTIONS(693), + [anon_sym_mod] = ACTIONS(693), + [anon_sym_pub] = ACTIONS(693), + [anon_sym_return] = ACTIONS(693), + [anon_sym_static] = ACTIONS(693), + [anon_sym_struct] = ACTIONS(693), + [anon_sym_trait] = ACTIONS(693), + [anon_sym_type] = ACTIONS(693), + [anon_sym_union] = ACTIONS(693), + [anon_sym_unsafe] = ACTIONS(693), + [anon_sym_use] = ACTIONS(693), + [anon_sym_where] = ACTIONS(693), + [anon_sym_while] = ACTIONS(693), + [sym_mutable_specifier] = ACTIONS(693), + [sym_integer_literal] = ACTIONS(568), + [aux_sym_string_literal_token1] = ACTIONS(570), + [sym_char_literal] = ACTIONS(568), + [anon_sym_true] = ACTIONS(572), + [anon_sym_false] = ACTIONS(572), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(693), + [sym_super] = ACTIONS(693), + [sym_crate] = ACTIONS(693), + [sym_metavariable] = ACTIONS(705), + [sym__raw_string_literal_start] = ACTIONS(576), + [sym_float_literal] = ACTIONS(568), + }, + [128] = { + [sym_token_tree] = STATE(165), + [sym_token_repetition] = STATE(165), + [sym__literal] = STATE(165), + [sym_string_literal] = STATE(151), + [sym_raw_string_literal] = STATE(151), + [sym_boolean_literal] = STATE(151), + [sym_line_comment] = STATE(128), + [sym_block_comment] = STATE(128), + [aux_sym_token_tree_repeat1] = STATE(116), + [aux_sym__non_special_token_repeat1] = STATE(136), + [sym_identifier] = ACTIONS(693), + [anon_sym_SEMI] = ACTIONS(554), + [anon_sym_LPAREN] = ACTIONS(695), + [anon_sym_RPAREN] = ACTIONS(727), + [anon_sym_LBRACK] = ACTIONS(699), + [anon_sym_LBRACE] = ACTIONS(701), + [anon_sym_EQ_GT] = ACTIONS(554), + [anon_sym_COLON] = ACTIONS(564), + [anon_sym_DOLLAR] = ACTIONS(703), + [anon_sym_PLUS] = ACTIONS(564), + [anon_sym_STAR] = ACTIONS(564), + [anon_sym_QMARK] = ACTIONS(554), + [anon_sym_u8] = ACTIONS(693), + [anon_sym_i8] = ACTIONS(693), + [anon_sym_u16] = ACTIONS(693), + [anon_sym_i16] = ACTIONS(693), + [anon_sym_u32] = ACTIONS(693), + [anon_sym_i32] = ACTIONS(693), + [anon_sym_u64] = ACTIONS(693), + [anon_sym_i64] = ACTIONS(693), + [anon_sym_u128] = ACTIONS(693), + [anon_sym_i128] = ACTIONS(693), + [anon_sym_isize] = ACTIONS(693), + [anon_sym_usize] = ACTIONS(693), + [anon_sym_f32] = ACTIONS(693), + [anon_sym_f64] = ACTIONS(693), + [anon_sym_bool] = ACTIONS(693), + [anon_sym_str] = ACTIONS(693), + [anon_sym_char] = ACTIONS(693), + [anon_sym_DASH] = ACTIONS(564), + [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_PERCENT] = ACTIONS(564), + [anon_sym_CARET] = ACTIONS(564), + [anon_sym_BANG] = ACTIONS(564), + [anon_sym_AMP] = ACTIONS(564), + [anon_sym_PIPE] = ACTIONS(564), + [anon_sym_AMP_AMP] = ACTIONS(554), + [anon_sym_PIPE_PIPE] = ACTIONS(554), + [anon_sym_LT_LT] = ACTIONS(564), + [anon_sym_GT_GT] = ACTIONS(564), + [anon_sym_PLUS_EQ] = ACTIONS(554), + [anon_sym_DASH_EQ] = ACTIONS(554), + [anon_sym_STAR_EQ] = ACTIONS(554), + [anon_sym_SLASH_EQ] = ACTIONS(554), + [anon_sym_PERCENT_EQ] = ACTIONS(554), + [anon_sym_CARET_EQ] = ACTIONS(554), + [anon_sym_AMP_EQ] = ACTIONS(554), + [anon_sym_PIPE_EQ] = ACTIONS(554), + [anon_sym_LT_LT_EQ] = ACTIONS(554), + [anon_sym_GT_GT_EQ] = ACTIONS(554), + [anon_sym_EQ] = ACTIONS(564), + [anon_sym_EQ_EQ] = ACTIONS(554), + [anon_sym_BANG_EQ] = ACTIONS(554), + [anon_sym_GT] = ACTIONS(564), + [anon_sym_LT] = ACTIONS(564), + [anon_sym_GT_EQ] = ACTIONS(554), + [anon_sym_LT_EQ] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(554), + [anon_sym__] = ACTIONS(564), + [anon_sym_DOT] = ACTIONS(564), + [anon_sym_DOT_DOT] = ACTIONS(564), + [anon_sym_DOT_DOT_DOT] = ACTIONS(554), + [anon_sym_DOT_DOT_EQ] = ACTIONS(554), + [anon_sym_COMMA] = ACTIONS(554), + [anon_sym_COLON_COLON] = ACTIONS(554), + [anon_sym_DASH_GT] = ACTIONS(554), + [anon_sym_POUND] = ACTIONS(554), + [anon_sym_SQUOTE] = ACTIONS(693), + [anon_sym_as] = ACTIONS(693), + [anon_sym_async] = ACTIONS(693), + [anon_sym_await] = ACTIONS(693), + [anon_sym_break] = ACTIONS(693), + [anon_sym_const] = ACTIONS(693), + [anon_sym_continue] = ACTIONS(693), + [anon_sym_default] = ACTIONS(693), + [anon_sym_enum] = ACTIONS(693), + [anon_sym_fn] = ACTIONS(693), + [anon_sym_for] = ACTIONS(693), + [anon_sym_if] = ACTIONS(693), + [anon_sym_impl] = ACTIONS(693), + [anon_sym_let] = ACTIONS(693), + [anon_sym_loop] = ACTIONS(693), + [anon_sym_match] = ACTIONS(693), + [anon_sym_mod] = ACTIONS(693), + [anon_sym_pub] = ACTIONS(693), + [anon_sym_return] = ACTIONS(693), + [anon_sym_static] = ACTIONS(693), + [anon_sym_struct] = ACTIONS(693), + [anon_sym_trait] = ACTIONS(693), + [anon_sym_type] = ACTIONS(693), + [anon_sym_union] = ACTIONS(693), + [anon_sym_unsafe] = ACTIONS(693), + [anon_sym_use] = ACTIONS(693), + [anon_sym_where] = ACTIONS(693), + [anon_sym_while] = ACTIONS(693), + [sym_mutable_specifier] = ACTIONS(693), + [sym_integer_literal] = ACTIONS(568), + [aux_sym_string_literal_token1] = ACTIONS(570), + [sym_char_literal] = ACTIONS(568), + [anon_sym_true] = ACTIONS(572), + [anon_sym_false] = ACTIONS(572), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(693), + [sym_super] = ACTIONS(693), + [sym_crate] = ACTIONS(693), + [sym_metavariable] = ACTIONS(705), + [sym__raw_string_literal_start] = ACTIONS(576), + [sym_float_literal] = ACTIONS(568), + }, + [129] = { + [sym_delim_token_tree] = STATE(208), + [sym__delim_tokens] = STATE(205), + [sym__non_delim_token] = STATE(208), + [sym__literal] = STATE(207), + [sym_string_literal] = STATE(200), + [sym_raw_string_literal] = STATE(200), + [sym_boolean_literal] = STATE(200), + [sym_line_comment] = STATE(129), + [sym_block_comment] = STATE(129), + [aux_sym__non_special_token_repeat1] = STATE(154), + [aux_sym_delim_token_tree_repeat1] = STATE(74), + [sym_identifier] = ACTIONS(661), + [anon_sym_SEMI] = ACTIONS(663), + [anon_sym_LPAREN] = ACTIONS(665), + [anon_sym_RPAREN] = ACTIONS(725), + [anon_sym_LBRACK] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(671), + [anon_sym_EQ_GT] = ACTIONS(663), + [anon_sym_COLON] = ACTIONS(673), + [anon_sym_DOLLAR] = ACTIONS(675), + [anon_sym_PLUS] = ACTIONS(673), + [anon_sym_STAR] = ACTIONS(673), + [anon_sym_QMARK] = ACTIONS(663), + [anon_sym_u8] = ACTIONS(661), + [anon_sym_i8] = ACTIONS(661), + [anon_sym_u16] = ACTIONS(661), + [anon_sym_i16] = ACTIONS(661), + [anon_sym_u32] = ACTIONS(661), + [anon_sym_i32] = ACTIONS(661), + [anon_sym_u64] = ACTIONS(661), + [anon_sym_i64] = ACTIONS(661), + [anon_sym_u128] = ACTIONS(661), + [anon_sym_i128] = ACTIONS(661), + [anon_sym_isize] = ACTIONS(661), + [anon_sym_usize] = ACTIONS(661), + [anon_sym_f32] = ACTIONS(661), + [anon_sym_f64] = ACTIONS(661), + [anon_sym_bool] = ACTIONS(661), + [anon_sym_str] = ACTIONS(661), + [anon_sym_char] = ACTIONS(661), + [anon_sym_DASH] = ACTIONS(673), + [anon_sym_SLASH] = ACTIONS(673), + [anon_sym_PERCENT] = ACTIONS(673), + [anon_sym_CARET] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(673), + [anon_sym_AMP] = ACTIONS(673), + [anon_sym_PIPE] = ACTIONS(673), + [anon_sym_AMP_AMP] = ACTIONS(663), + [anon_sym_PIPE_PIPE] = ACTIONS(663), + [anon_sym_LT_LT] = ACTIONS(673), + [anon_sym_GT_GT] = ACTIONS(673), + [anon_sym_PLUS_EQ] = ACTIONS(663), + [anon_sym_DASH_EQ] = ACTIONS(663), [anon_sym_STAR_EQ] = ACTIONS(663), [anon_sym_SLASH_EQ] = ACTIONS(663), [anon_sym_PERCENT_EQ] = ACTIONS(663), @@ -30908,23 +31158,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(683), [sym_float_literal] = ACTIONS(677), }, - [128] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), - [sym_line_comment] = STATE(128), - [sym_block_comment] = STATE(128), - [aux_sym__non_special_token_repeat1] = STATE(160), - [aux_sym_delim_token_tree_repeat1] = STATE(83), + [130] = { + [sym_delim_token_tree] = STATE(208), + [sym__delim_tokens] = STATE(205), + [sym__non_delim_token] = STATE(208), + [sym__literal] = STATE(207), + [sym_string_literal] = STATE(200), + [sym_raw_string_literal] = STATE(200), + [sym_boolean_literal] = STATE(200), + [sym_line_comment] = STATE(130), + [sym_block_comment] = STATE(130), + [aux_sym__non_special_token_repeat1] = STATE(154), + [aux_sym_delim_token_tree_repeat1] = STATE(124), [sym_identifier] = ACTIONS(661), [anon_sym_SEMI] = ACTIONS(663), [anon_sym_LPAREN] = ACTIONS(665), [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_RBRACK] = ACTIONS(667), + [anon_sym_RBRACK] = ACTIONS(717), [anon_sym_LBRACE] = ACTIONS(671), [anon_sym_EQ_GT] = ACTIONS(663), [anon_sym_COLON] = ACTIONS(673), @@ -31029,24 +31279,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(683), [sym_float_literal] = ACTIONS(677), }, - [129] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), - [sym_line_comment] = STATE(129), - [sym_block_comment] = STATE(129), - [aux_sym__non_special_token_repeat1] = STATE(160), - [aux_sym_delim_token_tree_repeat1] = STATE(83), + [131] = { + [sym_delim_token_tree] = STATE(208), + [sym__delim_tokens] = STATE(205), + [sym__non_delim_token] = STATE(208), + [sym__literal] = STATE(207), + [sym_string_literal] = STATE(200), + [sym_raw_string_literal] = STATE(200), + [sym_boolean_literal] = STATE(200), + [sym_line_comment] = STATE(131), + [sym_block_comment] = STATE(131), + [aux_sym__non_special_token_repeat1] = STATE(154), + [aux_sym_delim_token_tree_repeat1] = STATE(74), [sym_identifier] = ACTIONS(661), [anon_sym_SEMI] = ACTIONS(663), [anon_sym_LPAREN] = ACTIONS(665), + [anon_sym_RPAREN] = ACTIONS(729), [anon_sym_LBRACK] = ACTIONS(669), [anon_sym_LBRACE] = ACTIONS(671), - [anon_sym_RBRACE] = ACTIONS(667), [anon_sym_EQ_GT] = ACTIONS(663), [anon_sym_COLON] = ACTIONS(673), [anon_sym_DOLLAR] = ACTIONS(675), @@ -31150,387 +31400,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(683), [sym_float_literal] = ACTIONS(677), }, - [130] = { - [sym_token_tree] = STATE(157), - [sym_token_repetition] = STATE(157), - [sym__literal] = STATE(157), - [sym_string_literal] = STATE(156), - [sym_raw_string_literal] = STATE(156), - [sym_boolean_literal] = STATE(156), - [sym_line_comment] = STATE(130), - [sym_block_comment] = STATE(130), - [aux_sym_token_tree_repeat1] = STATE(85), - [aux_sym__non_special_token_repeat1] = STATE(136), - [sym_identifier] = ACTIONS(685), - [anon_sym_SEMI] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_RPAREN] = ACTIONS(729), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_EQ_GT] = ACTIONS(554), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(695), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_QMARK] = ACTIONS(554), - [anon_sym_u8] = ACTIONS(685), - [anon_sym_i8] = ACTIONS(685), - [anon_sym_u16] = ACTIONS(685), - [anon_sym_i16] = ACTIONS(685), - [anon_sym_u32] = ACTIONS(685), - [anon_sym_i32] = ACTIONS(685), - [anon_sym_u64] = ACTIONS(685), - [anon_sym_i64] = ACTIONS(685), - [anon_sym_u128] = ACTIONS(685), - [anon_sym_i128] = ACTIONS(685), - [anon_sym_isize] = ACTIONS(685), - [anon_sym_usize] = ACTIONS(685), - [anon_sym_f32] = ACTIONS(685), - [anon_sym_f64] = ACTIONS(685), - [anon_sym_bool] = ACTIONS(685), - [anon_sym_str] = ACTIONS(685), - [anon_sym_char] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_AMP] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_AMP_AMP] = ACTIONS(554), - [anon_sym_PIPE_PIPE] = ACTIONS(554), - [anon_sym_LT_LT] = ACTIONS(564), - [anon_sym_GT_GT] = ACTIONS(564), - [anon_sym_PLUS_EQ] = ACTIONS(554), - [anon_sym_DASH_EQ] = ACTIONS(554), - [anon_sym_STAR_EQ] = ACTIONS(554), - [anon_sym_SLASH_EQ] = ACTIONS(554), - [anon_sym_PERCENT_EQ] = ACTIONS(554), - [anon_sym_CARET_EQ] = ACTIONS(554), - [anon_sym_AMP_EQ] = ACTIONS(554), - [anon_sym_PIPE_EQ] = ACTIONS(554), - [anon_sym_LT_LT_EQ] = ACTIONS(554), - [anon_sym_GT_GT_EQ] = ACTIONS(554), - [anon_sym_EQ] = ACTIONS(564), - [anon_sym_EQ_EQ] = ACTIONS(554), - [anon_sym_BANG_EQ] = ACTIONS(554), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT_EQ] = ACTIONS(554), - [anon_sym_LT_EQ] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(554), - [anon_sym__] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(554), - [anon_sym_DOT_DOT_EQ] = ACTIONS(554), - [anon_sym_COMMA] = ACTIONS(554), - [anon_sym_COLON_COLON] = ACTIONS(554), - [anon_sym_DASH_GT] = ACTIONS(554), - [anon_sym_POUND] = ACTIONS(554), - [anon_sym_SQUOTE] = ACTIONS(685), - [anon_sym_as] = ACTIONS(685), - [anon_sym_async] = ACTIONS(685), - [anon_sym_await] = ACTIONS(685), - [anon_sym_break] = ACTIONS(685), - [anon_sym_const] = ACTIONS(685), - [anon_sym_continue] = ACTIONS(685), - [anon_sym_default] = ACTIONS(685), - [anon_sym_enum] = ACTIONS(685), - [anon_sym_fn] = ACTIONS(685), - [anon_sym_for] = ACTIONS(685), - [anon_sym_if] = ACTIONS(685), - [anon_sym_impl] = ACTIONS(685), - [anon_sym_let] = ACTIONS(685), - [anon_sym_loop] = ACTIONS(685), - [anon_sym_match] = ACTIONS(685), - [anon_sym_mod] = ACTIONS(685), - [anon_sym_pub] = ACTIONS(685), - [anon_sym_return] = ACTIONS(685), - [anon_sym_static] = ACTIONS(685), - [anon_sym_struct] = ACTIONS(685), - [anon_sym_trait] = ACTIONS(685), - [anon_sym_type] = ACTIONS(685), - [anon_sym_union] = ACTIONS(685), - [anon_sym_unsafe] = ACTIONS(685), - [anon_sym_use] = ACTIONS(685), - [anon_sym_where] = ACTIONS(685), - [anon_sym_while] = ACTIONS(685), - [sym_mutable_specifier] = ACTIONS(685), - [sym_integer_literal] = ACTIONS(568), - [aux_sym_string_literal_token1] = ACTIONS(570), - [sym_char_literal] = ACTIONS(568), - [anon_sym_true] = ACTIONS(572), - [anon_sym_false] = ACTIONS(572), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(685), - [sym_super] = ACTIONS(685), - [sym_crate] = ACTIONS(685), - [sym_metavariable] = ACTIONS(697), - [sym__raw_string_literal_start] = ACTIONS(576), - [sym_float_literal] = ACTIONS(568), - }, - [131] = { - [sym_token_tree] = STATE(157), - [sym_token_repetition] = STATE(157), - [sym__literal] = STATE(157), - [sym_string_literal] = STATE(156), - [sym_raw_string_literal] = STATE(156), - [sym_boolean_literal] = STATE(156), - [sym_line_comment] = STATE(131), - [sym_block_comment] = STATE(131), - [aux_sym_token_tree_repeat1] = STATE(86), - [aux_sym__non_special_token_repeat1] = STATE(136), - [sym_identifier] = ACTIONS(685), - [anon_sym_SEMI] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_RBRACK] = ACTIONS(729), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_EQ_GT] = ACTIONS(554), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(695), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_QMARK] = ACTIONS(554), - [anon_sym_u8] = ACTIONS(685), - [anon_sym_i8] = ACTIONS(685), - [anon_sym_u16] = ACTIONS(685), - [anon_sym_i16] = ACTIONS(685), - [anon_sym_u32] = ACTIONS(685), - [anon_sym_i32] = ACTIONS(685), - [anon_sym_u64] = ACTIONS(685), - [anon_sym_i64] = ACTIONS(685), - [anon_sym_u128] = ACTIONS(685), - [anon_sym_i128] = ACTIONS(685), - [anon_sym_isize] = ACTIONS(685), - [anon_sym_usize] = ACTIONS(685), - [anon_sym_f32] = ACTIONS(685), - [anon_sym_f64] = ACTIONS(685), - [anon_sym_bool] = ACTIONS(685), - [anon_sym_str] = ACTIONS(685), - [anon_sym_char] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_AMP] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_AMP_AMP] = ACTIONS(554), - [anon_sym_PIPE_PIPE] = ACTIONS(554), - [anon_sym_LT_LT] = ACTIONS(564), - [anon_sym_GT_GT] = ACTIONS(564), - [anon_sym_PLUS_EQ] = ACTIONS(554), - [anon_sym_DASH_EQ] = ACTIONS(554), - [anon_sym_STAR_EQ] = ACTIONS(554), - [anon_sym_SLASH_EQ] = ACTIONS(554), - [anon_sym_PERCENT_EQ] = ACTIONS(554), - [anon_sym_CARET_EQ] = ACTIONS(554), - [anon_sym_AMP_EQ] = ACTIONS(554), - [anon_sym_PIPE_EQ] = ACTIONS(554), - [anon_sym_LT_LT_EQ] = ACTIONS(554), - [anon_sym_GT_GT_EQ] = ACTIONS(554), - [anon_sym_EQ] = ACTIONS(564), - [anon_sym_EQ_EQ] = ACTIONS(554), - [anon_sym_BANG_EQ] = ACTIONS(554), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT_EQ] = ACTIONS(554), - [anon_sym_LT_EQ] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(554), - [anon_sym__] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(554), - [anon_sym_DOT_DOT_EQ] = ACTIONS(554), - [anon_sym_COMMA] = ACTIONS(554), - [anon_sym_COLON_COLON] = ACTIONS(554), - [anon_sym_DASH_GT] = ACTIONS(554), - [anon_sym_POUND] = ACTIONS(554), - [anon_sym_SQUOTE] = ACTIONS(685), - [anon_sym_as] = ACTIONS(685), - [anon_sym_async] = ACTIONS(685), - [anon_sym_await] = ACTIONS(685), - [anon_sym_break] = ACTIONS(685), - [anon_sym_const] = ACTIONS(685), - [anon_sym_continue] = ACTIONS(685), - [anon_sym_default] = ACTIONS(685), - [anon_sym_enum] = ACTIONS(685), - [anon_sym_fn] = ACTIONS(685), - [anon_sym_for] = ACTIONS(685), - [anon_sym_if] = ACTIONS(685), - [anon_sym_impl] = ACTIONS(685), - [anon_sym_let] = ACTIONS(685), - [anon_sym_loop] = ACTIONS(685), - [anon_sym_match] = ACTIONS(685), - [anon_sym_mod] = ACTIONS(685), - [anon_sym_pub] = ACTIONS(685), - [anon_sym_return] = ACTIONS(685), - [anon_sym_static] = ACTIONS(685), - [anon_sym_struct] = ACTIONS(685), - [anon_sym_trait] = ACTIONS(685), - [anon_sym_type] = ACTIONS(685), - [anon_sym_union] = ACTIONS(685), - [anon_sym_unsafe] = ACTIONS(685), - [anon_sym_use] = ACTIONS(685), - [anon_sym_where] = ACTIONS(685), - [anon_sym_while] = ACTIONS(685), - [sym_mutable_specifier] = ACTIONS(685), - [sym_integer_literal] = ACTIONS(568), - [aux_sym_string_literal_token1] = ACTIONS(570), - [sym_char_literal] = ACTIONS(568), - [anon_sym_true] = ACTIONS(572), - [anon_sym_false] = ACTIONS(572), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(685), - [sym_super] = ACTIONS(685), - [sym_crate] = ACTIONS(685), - [sym_metavariable] = ACTIONS(697), - [sym__raw_string_literal_start] = ACTIONS(576), - [sym_float_literal] = ACTIONS(568), - }, [132] = { - [sym_token_tree] = STATE(157), - [sym_token_repetition] = STATE(157), - [sym__literal] = STATE(157), - [sym_string_literal] = STATE(156), - [sym_raw_string_literal] = STATE(156), - [sym_boolean_literal] = STATE(156), + [sym_delim_token_tree] = STATE(208), + [sym__delim_tokens] = STATE(205), + [sym__non_delim_token] = STATE(208), + [sym__literal] = STATE(207), + [sym_string_literal] = STATE(200), + [sym_raw_string_literal] = STATE(200), + [sym_boolean_literal] = STATE(200), [sym_line_comment] = STATE(132), [sym_block_comment] = STATE(132), - [aux_sym_token_tree_repeat1] = STATE(87), - [aux_sym__non_special_token_repeat1] = STATE(136), - [sym_identifier] = ACTIONS(685), - [anon_sym_SEMI] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(729), - [anon_sym_EQ_GT] = ACTIONS(554), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(695), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_QMARK] = ACTIONS(554), - [anon_sym_u8] = ACTIONS(685), - [anon_sym_i8] = ACTIONS(685), - [anon_sym_u16] = ACTIONS(685), - [anon_sym_i16] = ACTIONS(685), - [anon_sym_u32] = ACTIONS(685), - [anon_sym_i32] = ACTIONS(685), - [anon_sym_u64] = ACTIONS(685), - [anon_sym_i64] = ACTIONS(685), - [anon_sym_u128] = ACTIONS(685), - [anon_sym_i128] = ACTIONS(685), - [anon_sym_isize] = ACTIONS(685), - [anon_sym_usize] = ACTIONS(685), - [anon_sym_f32] = ACTIONS(685), - [anon_sym_f64] = ACTIONS(685), - [anon_sym_bool] = ACTIONS(685), - [anon_sym_str] = ACTIONS(685), - [anon_sym_char] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_AMP] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_AMP_AMP] = ACTIONS(554), - [anon_sym_PIPE_PIPE] = ACTIONS(554), - [anon_sym_LT_LT] = ACTIONS(564), - [anon_sym_GT_GT] = ACTIONS(564), - [anon_sym_PLUS_EQ] = ACTIONS(554), - [anon_sym_DASH_EQ] = ACTIONS(554), - [anon_sym_STAR_EQ] = ACTIONS(554), - [anon_sym_SLASH_EQ] = ACTIONS(554), - [anon_sym_PERCENT_EQ] = ACTIONS(554), - [anon_sym_CARET_EQ] = ACTIONS(554), - [anon_sym_AMP_EQ] = ACTIONS(554), - [anon_sym_PIPE_EQ] = ACTIONS(554), - [anon_sym_LT_LT_EQ] = ACTIONS(554), - [anon_sym_GT_GT_EQ] = ACTIONS(554), - [anon_sym_EQ] = ACTIONS(564), - [anon_sym_EQ_EQ] = ACTIONS(554), - [anon_sym_BANG_EQ] = ACTIONS(554), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT_EQ] = ACTIONS(554), - [anon_sym_LT_EQ] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(554), - [anon_sym__] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(554), - [anon_sym_DOT_DOT_EQ] = ACTIONS(554), - [anon_sym_COMMA] = ACTIONS(554), - [anon_sym_COLON_COLON] = ACTIONS(554), - [anon_sym_DASH_GT] = ACTIONS(554), - [anon_sym_POUND] = ACTIONS(554), - [anon_sym_SQUOTE] = ACTIONS(685), - [anon_sym_as] = ACTIONS(685), - [anon_sym_async] = ACTIONS(685), - [anon_sym_await] = ACTIONS(685), - [anon_sym_break] = ACTIONS(685), - [anon_sym_const] = ACTIONS(685), - [anon_sym_continue] = ACTIONS(685), - [anon_sym_default] = ACTIONS(685), - [anon_sym_enum] = ACTIONS(685), - [anon_sym_fn] = ACTIONS(685), - [anon_sym_for] = ACTIONS(685), - [anon_sym_if] = ACTIONS(685), - [anon_sym_impl] = ACTIONS(685), - [anon_sym_let] = ACTIONS(685), - [anon_sym_loop] = ACTIONS(685), - [anon_sym_match] = ACTIONS(685), - [anon_sym_mod] = ACTIONS(685), - [anon_sym_pub] = ACTIONS(685), - [anon_sym_return] = ACTIONS(685), - [anon_sym_static] = ACTIONS(685), - [anon_sym_struct] = ACTIONS(685), - [anon_sym_trait] = ACTIONS(685), - [anon_sym_type] = ACTIONS(685), - [anon_sym_union] = ACTIONS(685), - [anon_sym_unsafe] = ACTIONS(685), - [anon_sym_use] = ACTIONS(685), - [anon_sym_where] = ACTIONS(685), - [anon_sym_while] = ACTIONS(685), - [sym_mutable_specifier] = ACTIONS(685), - [sym_integer_literal] = ACTIONS(568), - [aux_sym_string_literal_token1] = ACTIONS(570), - [sym_char_literal] = ACTIONS(568), - [anon_sym_true] = ACTIONS(572), - [anon_sym_false] = ACTIONS(572), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(685), - [sym_super] = ACTIONS(685), - [sym_crate] = ACTIONS(685), - [sym_metavariable] = ACTIONS(697), - [sym__raw_string_literal_start] = ACTIONS(576), - [sym_float_literal] = ACTIONS(568), - }, - [133] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), - [sym_line_comment] = STATE(133), - [sym_block_comment] = STATE(133), - [aux_sym__non_special_token_repeat1] = STATE(160), - [aux_sym_delim_token_tree_repeat1] = STATE(110), + [aux_sym__non_special_token_repeat1] = STATE(154), + [aux_sym_delim_token_tree_repeat1] = STATE(74), [sym_identifier] = ACTIONS(661), [anon_sym_SEMI] = ACTIONS(663), [anon_sym_LPAREN] = ACTIONS(665), [anon_sym_LBRACK] = ACTIONS(669), [anon_sym_LBRACE] = ACTIONS(671), - [anon_sym_RBRACE] = ACTIONS(715), + [anon_sym_RBRACE] = ACTIONS(729), [anon_sym_EQ_GT] = ACTIONS(663), [anon_sym_COLON] = ACTIONS(673), [anon_sym_DOLLAR] = ACTIONS(675), @@ -31634,158 +31521,163 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(683), [sym_float_literal] = ACTIONS(677), }, - [134] = { - [sym_line_comment] = STATE(134), - [sym_block_comment] = STATE(134), - [aux_sym__non_special_token_repeat1] = STATE(134), - [sym_identifier] = ACTIONS(731), - [anon_sym_SEMI] = ACTIONS(733), - [anon_sym_LPAREN] = ACTIONS(736), - [anon_sym_RPAREN] = ACTIONS(736), - [anon_sym_LBRACK] = ACTIONS(736), - [anon_sym_RBRACK] = ACTIONS(736), - [anon_sym_LBRACE] = ACTIONS(736), - [anon_sym_RBRACE] = ACTIONS(736), - [anon_sym_EQ_GT] = ACTIONS(733), - [anon_sym_COLON] = ACTIONS(738), - [anon_sym_DOLLAR] = ACTIONS(731), - [anon_sym_PLUS] = ACTIONS(738), - [anon_sym_STAR] = ACTIONS(738), - [anon_sym_QMARK] = ACTIONS(733), - [anon_sym_u8] = ACTIONS(731), - [anon_sym_i8] = ACTIONS(731), - [anon_sym_u16] = ACTIONS(731), - [anon_sym_i16] = ACTIONS(731), - [anon_sym_u32] = ACTIONS(731), - [anon_sym_i32] = ACTIONS(731), - [anon_sym_u64] = ACTIONS(731), - [anon_sym_i64] = ACTIONS(731), - [anon_sym_u128] = ACTIONS(731), - [anon_sym_i128] = ACTIONS(731), - [anon_sym_isize] = ACTIONS(731), - [anon_sym_usize] = ACTIONS(731), - [anon_sym_f32] = ACTIONS(731), - [anon_sym_f64] = ACTIONS(731), - [anon_sym_bool] = ACTIONS(731), - [anon_sym_str] = ACTIONS(731), - [anon_sym_char] = ACTIONS(731), - [anon_sym_DASH] = ACTIONS(738), - [anon_sym_SLASH] = ACTIONS(738), - [anon_sym_PERCENT] = ACTIONS(738), - [anon_sym_CARET] = ACTIONS(738), - [anon_sym_BANG] = ACTIONS(738), - [anon_sym_AMP] = ACTIONS(738), - [anon_sym_PIPE] = ACTIONS(738), - [anon_sym_AMP_AMP] = ACTIONS(733), - [anon_sym_PIPE_PIPE] = ACTIONS(733), - [anon_sym_LT_LT] = ACTIONS(738), - [anon_sym_GT_GT] = ACTIONS(738), - [anon_sym_PLUS_EQ] = ACTIONS(733), - [anon_sym_DASH_EQ] = ACTIONS(733), - [anon_sym_STAR_EQ] = ACTIONS(733), - [anon_sym_SLASH_EQ] = ACTIONS(733), - [anon_sym_PERCENT_EQ] = ACTIONS(733), - [anon_sym_CARET_EQ] = ACTIONS(733), - [anon_sym_AMP_EQ] = ACTIONS(733), - [anon_sym_PIPE_EQ] = ACTIONS(733), - [anon_sym_LT_LT_EQ] = ACTIONS(733), - [anon_sym_GT_GT_EQ] = ACTIONS(733), - [anon_sym_EQ] = ACTIONS(738), - [anon_sym_EQ_EQ] = ACTIONS(733), - [anon_sym_BANG_EQ] = ACTIONS(733), - [anon_sym_GT] = ACTIONS(738), - [anon_sym_LT] = ACTIONS(738), - [anon_sym_GT_EQ] = ACTIONS(733), - [anon_sym_LT_EQ] = ACTIONS(733), - [anon_sym_AT] = ACTIONS(733), - [anon_sym__] = ACTIONS(738), - [anon_sym_DOT] = ACTIONS(738), - [anon_sym_DOT_DOT] = ACTIONS(738), - [anon_sym_DOT_DOT_DOT] = ACTIONS(733), - [anon_sym_DOT_DOT_EQ] = ACTIONS(733), - [anon_sym_COMMA] = ACTIONS(733), - [anon_sym_COLON_COLON] = ACTIONS(733), - [anon_sym_DASH_GT] = ACTIONS(733), - [anon_sym_POUND] = ACTIONS(733), - [anon_sym_SQUOTE] = ACTIONS(731), - [anon_sym_as] = ACTIONS(731), - [anon_sym_async] = ACTIONS(731), - [anon_sym_await] = ACTIONS(731), - [anon_sym_break] = ACTIONS(731), - [anon_sym_const] = ACTIONS(731), - [anon_sym_continue] = ACTIONS(731), - [anon_sym_default] = ACTIONS(731), - [anon_sym_enum] = ACTIONS(731), - [anon_sym_fn] = ACTIONS(731), - [anon_sym_for] = ACTIONS(731), - [anon_sym_if] = ACTIONS(731), - [anon_sym_impl] = ACTIONS(731), - [anon_sym_let] = ACTIONS(731), - [anon_sym_loop] = ACTIONS(731), - [anon_sym_match] = ACTIONS(731), - [anon_sym_mod] = ACTIONS(731), - [anon_sym_pub] = ACTIONS(731), - [anon_sym_return] = ACTIONS(731), - [anon_sym_static] = ACTIONS(731), - [anon_sym_struct] = ACTIONS(731), - [anon_sym_trait] = ACTIONS(731), - [anon_sym_type] = ACTIONS(731), - [anon_sym_union] = ACTIONS(731), - [anon_sym_unsafe] = ACTIONS(731), - [anon_sym_use] = ACTIONS(731), - [anon_sym_where] = ACTIONS(731), - [anon_sym_while] = ACTIONS(731), - [sym_mutable_specifier] = ACTIONS(731), - [sym_integer_literal] = ACTIONS(736), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(736), - [anon_sym_true] = ACTIONS(731), - [anon_sym_false] = ACTIONS(731), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(731), - [sym_super] = ACTIONS(731), - [sym_crate] = ACTIONS(731), - [sym_metavariable] = ACTIONS(736), - [sym__raw_string_literal_start] = ACTIONS(736), - [sym_float_literal] = ACTIONS(736), - }, - [135] = { - [sym_line_comment] = STATE(135), - [sym_block_comment] = STATE(135), - [aux_sym__non_special_token_repeat1] = STATE(134), - [sym_identifier] = ACTIONS(741), - [anon_sym_SEMI] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(743), - [anon_sym_RPAREN] = ACTIONS(743), - [anon_sym_LBRACK] = ACTIONS(743), - [anon_sym_RBRACK] = ACTIONS(743), - [anon_sym_LBRACE] = ACTIONS(743), - [anon_sym_RBRACE] = ACTIONS(743), - [anon_sym_EQ_GT] = ACTIONS(554), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(741), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_QMARK] = ACTIONS(554), - [anon_sym_u8] = ACTIONS(741), - [anon_sym_i8] = ACTIONS(741), - [anon_sym_u16] = ACTIONS(741), - [anon_sym_i16] = ACTIONS(741), - [anon_sym_u32] = ACTIONS(741), - [anon_sym_i32] = ACTIONS(741), - [anon_sym_u64] = ACTIONS(741), - [anon_sym_i64] = ACTIONS(741), - [anon_sym_u128] = ACTIONS(741), - [anon_sym_i128] = ACTIONS(741), - [anon_sym_isize] = ACTIONS(741), - [anon_sym_usize] = ACTIONS(741), - [anon_sym_f32] = ACTIONS(741), - [anon_sym_f64] = ACTIONS(741), - [anon_sym_bool] = ACTIONS(741), - [anon_sym_str] = ACTIONS(741), - [anon_sym_char] = ACTIONS(741), - [anon_sym_DASH] = ACTIONS(564), + [133] = { + [sym_delim_token_tree] = STATE(208), + [sym__delim_tokens] = STATE(205), + [sym__non_delim_token] = STATE(208), + [sym__literal] = STATE(207), + [sym_string_literal] = STATE(200), + [sym_raw_string_literal] = STATE(200), + [sym_boolean_literal] = STATE(200), + [sym_line_comment] = STATE(133), + [sym_block_comment] = STATE(133), + [aux_sym__non_special_token_repeat1] = STATE(154), + [aux_sym_delim_token_tree_repeat1] = STATE(74), + [sym_identifier] = ACTIONS(661), + [anon_sym_SEMI] = ACTIONS(663), + [anon_sym_LPAREN] = ACTIONS(665), + [anon_sym_LBRACK] = ACTIONS(669), + [anon_sym_RBRACK] = ACTIONS(729), + [anon_sym_LBRACE] = ACTIONS(671), + [anon_sym_EQ_GT] = ACTIONS(663), + [anon_sym_COLON] = ACTIONS(673), + [anon_sym_DOLLAR] = ACTIONS(675), + [anon_sym_PLUS] = ACTIONS(673), + [anon_sym_STAR] = ACTIONS(673), + [anon_sym_QMARK] = ACTIONS(663), + [anon_sym_u8] = ACTIONS(661), + [anon_sym_i8] = ACTIONS(661), + [anon_sym_u16] = ACTIONS(661), + [anon_sym_i16] = ACTIONS(661), + [anon_sym_u32] = ACTIONS(661), + [anon_sym_i32] = ACTIONS(661), + [anon_sym_u64] = ACTIONS(661), + [anon_sym_i64] = ACTIONS(661), + [anon_sym_u128] = ACTIONS(661), + [anon_sym_i128] = ACTIONS(661), + [anon_sym_isize] = ACTIONS(661), + [anon_sym_usize] = ACTIONS(661), + [anon_sym_f32] = ACTIONS(661), + [anon_sym_f64] = ACTIONS(661), + [anon_sym_bool] = ACTIONS(661), + [anon_sym_str] = ACTIONS(661), + [anon_sym_char] = ACTIONS(661), + [anon_sym_DASH] = ACTIONS(673), + [anon_sym_SLASH] = ACTIONS(673), + [anon_sym_PERCENT] = ACTIONS(673), + [anon_sym_CARET] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(673), + [anon_sym_AMP] = ACTIONS(673), + [anon_sym_PIPE] = ACTIONS(673), + [anon_sym_AMP_AMP] = ACTIONS(663), + [anon_sym_PIPE_PIPE] = ACTIONS(663), + [anon_sym_LT_LT] = ACTIONS(673), + [anon_sym_GT_GT] = ACTIONS(673), + [anon_sym_PLUS_EQ] = ACTIONS(663), + [anon_sym_DASH_EQ] = ACTIONS(663), + [anon_sym_STAR_EQ] = ACTIONS(663), + [anon_sym_SLASH_EQ] = ACTIONS(663), + [anon_sym_PERCENT_EQ] = ACTIONS(663), + [anon_sym_CARET_EQ] = ACTIONS(663), + [anon_sym_AMP_EQ] = ACTIONS(663), + [anon_sym_PIPE_EQ] = ACTIONS(663), + [anon_sym_LT_LT_EQ] = ACTIONS(663), + [anon_sym_GT_GT_EQ] = ACTIONS(663), + [anon_sym_EQ] = ACTIONS(673), + [anon_sym_EQ_EQ] = ACTIONS(663), + [anon_sym_BANG_EQ] = ACTIONS(663), + [anon_sym_GT] = ACTIONS(673), + [anon_sym_LT] = ACTIONS(673), + [anon_sym_GT_EQ] = ACTIONS(663), + [anon_sym_LT_EQ] = ACTIONS(663), + [anon_sym_AT] = ACTIONS(663), + [anon_sym__] = ACTIONS(673), + [anon_sym_DOT] = ACTIONS(673), + [anon_sym_DOT_DOT] = ACTIONS(673), + [anon_sym_DOT_DOT_DOT] = ACTIONS(663), + [anon_sym_DOT_DOT_EQ] = ACTIONS(663), + [anon_sym_COMMA] = ACTIONS(663), + [anon_sym_COLON_COLON] = ACTIONS(663), + [anon_sym_DASH_GT] = ACTIONS(663), + [anon_sym_POUND] = ACTIONS(663), + [anon_sym_SQUOTE] = ACTIONS(661), + [anon_sym_as] = ACTIONS(661), + [anon_sym_async] = ACTIONS(661), + [anon_sym_await] = ACTIONS(661), + [anon_sym_break] = ACTIONS(661), + [anon_sym_const] = ACTIONS(661), + [anon_sym_continue] = ACTIONS(661), + [anon_sym_default] = ACTIONS(661), + [anon_sym_enum] = ACTIONS(661), + [anon_sym_fn] = ACTIONS(661), + [anon_sym_for] = ACTIONS(661), + [anon_sym_if] = ACTIONS(661), + [anon_sym_impl] = ACTIONS(661), + [anon_sym_let] = ACTIONS(661), + [anon_sym_loop] = ACTIONS(661), + [anon_sym_match] = ACTIONS(661), + [anon_sym_mod] = ACTIONS(661), + [anon_sym_pub] = ACTIONS(661), + [anon_sym_return] = ACTIONS(661), + [anon_sym_static] = ACTIONS(661), + [anon_sym_struct] = ACTIONS(661), + [anon_sym_trait] = ACTIONS(661), + [anon_sym_type] = ACTIONS(661), + [anon_sym_union] = ACTIONS(661), + [anon_sym_unsafe] = ACTIONS(661), + [anon_sym_use] = ACTIONS(661), + [anon_sym_where] = ACTIONS(661), + [anon_sym_while] = ACTIONS(661), + [sym_mutable_specifier] = ACTIONS(661), + [sym_integer_literal] = ACTIONS(677), + [aux_sym_string_literal_token1] = ACTIONS(679), + [sym_char_literal] = ACTIONS(677), + [anon_sym_true] = ACTIONS(681), + [anon_sym_false] = ACTIONS(681), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(661), + [sym_super] = ACTIONS(661), + [sym_crate] = ACTIONS(661), + [sym__raw_string_literal_start] = ACTIONS(683), + [sym_float_literal] = ACTIONS(677), + }, + [134] = { + [sym_line_comment] = STATE(134), + [sym_block_comment] = STATE(134), + [aux_sym__non_special_token_repeat1] = STATE(135), + [sym_identifier] = ACTIONS(731), + [anon_sym_SEMI] = ACTIONS(554), + [anon_sym_LPAREN] = ACTIONS(733), + [anon_sym_RPAREN] = ACTIONS(733), + [anon_sym_LBRACK] = ACTIONS(733), + [anon_sym_RBRACK] = ACTIONS(733), + [anon_sym_LBRACE] = ACTIONS(733), + [anon_sym_RBRACE] = ACTIONS(733), + [anon_sym_EQ_GT] = ACTIONS(554), + [anon_sym_COLON] = ACTIONS(564), + [anon_sym_DOLLAR] = ACTIONS(731), + [anon_sym_PLUS] = ACTIONS(564), + [anon_sym_STAR] = ACTIONS(564), + [anon_sym_QMARK] = ACTIONS(554), + [anon_sym_u8] = ACTIONS(731), + [anon_sym_i8] = ACTIONS(731), + [anon_sym_u16] = ACTIONS(731), + [anon_sym_i16] = ACTIONS(731), + [anon_sym_u32] = ACTIONS(731), + [anon_sym_i32] = ACTIONS(731), + [anon_sym_u64] = ACTIONS(731), + [anon_sym_i64] = ACTIONS(731), + [anon_sym_u128] = ACTIONS(731), + [anon_sym_i128] = ACTIONS(731), + [anon_sym_isize] = ACTIONS(731), + [anon_sym_usize] = ACTIONS(731), + [anon_sym_f32] = ACTIONS(731), + [anon_sym_f64] = ACTIONS(731), + [anon_sym_bool] = ACTIONS(731), + [anon_sym_str] = ACTIONS(731), + [anon_sym_char] = ACTIONS(731), + [anon_sym_DASH] = ACTIONS(564), [anon_sym_SLASH] = ACTIONS(564), [anon_sym_PERCENT] = ACTIONS(564), [anon_sym_CARET] = ACTIONS(564), @@ -31823,53 +31715,169 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(554), [anon_sym_DASH_GT] = ACTIONS(554), [anon_sym_POUND] = ACTIONS(554), - [anon_sym_SQUOTE] = ACTIONS(741), - [anon_sym_as] = ACTIONS(741), - [anon_sym_async] = ACTIONS(741), - [anon_sym_await] = ACTIONS(741), - [anon_sym_break] = ACTIONS(741), - [anon_sym_const] = ACTIONS(741), - [anon_sym_continue] = ACTIONS(741), - [anon_sym_default] = ACTIONS(741), - [anon_sym_enum] = ACTIONS(741), - [anon_sym_fn] = ACTIONS(741), - [anon_sym_for] = ACTIONS(741), - [anon_sym_if] = ACTIONS(741), - [anon_sym_impl] = ACTIONS(741), - [anon_sym_let] = ACTIONS(741), - [anon_sym_loop] = ACTIONS(741), - [anon_sym_match] = ACTIONS(741), - [anon_sym_mod] = ACTIONS(741), - [anon_sym_pub] = ACTIONS(741), - [anon_sym_return] = ACTIONS(741), - [anon_sym_static] = ACTIONS(741), - [anon_sym_struct] = ACTIONS(741), - [anon_sym_trait] = ACTIONS(741), - [anon_sym_type] = ACTIONS(741), - [anon_sym_union] = ACTIONS(741), - [anon_sym_unsafe] = ACTIONS(741), - [anon_sym_use] = ACTIONS(741), - [anon_sym_where] = ACTIONS(741), - [anon_sym_while] = ACTIONS(741), - [sym_mutable_specifier] = ACTIONS(741), - [sym_integer_literal] = ACTIONS(743), - [aux_sym_string_literal_token1] = ACTIONS(743), - [sym_char_literal] = ACTIONS(743), - [anon_sym_true] = ACTIONS(741), - [anon_sym_false] = ACTIONS(741), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(741), - [sym_super] = ACTIONS(741), - [sym_crate] = ACTIONS(741), - [sym_metavariable] = ACTIONS(743), - [sym__raw_string_literal_start] = ACTIONS(743), - [sym_float_literal] = ACTIONS(743), + [anon_sym_SQUOTE] = ACTIONS(731), + [anon_sym_as] = ACTIONS(731), + [anon_sym_async] = ACTIONS(731), + [anon_sym_await] = ACTIONS(731), + [anon_sym_break] = ACTIONS(731), + [anon_sym_const] = ACTIONS(731), + [anon_sym_continue] = ACTIONS(731), + [anon_sym_default] = ACTIONS(731), + [anon_sym_enum] = ACTIONS(731), + [anon_sym_fn] = ACTIONS(731), + [anon_sym_for] = ACTIONS(731), + [anon_sym_if] = ACTIONS(731), + [anon_sym_impl] = ACTIONS(731), + [anon_sym_let] = ACTIONS(731), + [anon_sym_loop] = ACTIONS(731), + [anon_sym_match] = ACTIONS(731), + [anon_sym_mod] = ACTIONS(731), + [anon_sym_pub] = ACTIONS(731), + [anon_sym_return] = ACTIONS(731), + [anon_sym_static] = ACTIONS(731), + [anon_sym_struct] = ACTIONS(731), + [anon_sym_trait] = ACTIONS(731), + [anon_sym_type] = ACTIONS(731), + [anon_sym_union] = ACTIONS(731), + [anon_sym_unsafe] = ACTIONS(731), + [anon_sym_use] = ACTIONS(731), + [anon_sym_where] = ACTIONS(731), + [anon_sym_while] = ACTIONS(731), + [sym_mutable_specifier] = ACTIONS(731), + [sym_integer_literal] = ACTIONS(733), + [aux_sym_string_literal_token1] = ACTIONS(733), + [sym_char_literal] = ACTIONS(733), + [anon_sym_true] = ACTIONS(731), + [anon_sym_false] = ACTIONS(731), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(731), + [sym_super] = ACTIONS(731), + [sym_crate] = ACTIONS(731), + [sym_metavariable] = ACTIONS(733), + [sym__raw_string_literal_start] = ACTIONS(733), + [sym_float_literal] = ACTIONS(733), + }, + [135] = { + [sym_line_comment] = STATE(135), + [sym_block_comment] = STATE(135), + [aux_sym__non_special_token_repeat1] = STATE(135), + [sym_identifier] = ACTIONS(735), + [anon_sym_SEMI] = ACTIONS(737), + [anon_sym_LPAREN] = ACTIONS(740), + [anon_sym_RPAREN] = ACTIONS(740), + [anon_sym_LBRACK] = ACTIONS(740), + [anon_sym_RBRACK] = ACTIONS(740), + [anon_sym_LBRACE] = ACTIONS(740), + [anon_sym_RBRACE] = ACTIONS(740), + [anon_sym_EQ_GT] = ACTIONS(737), + [anon_sym_COLON] = ACTIONS(742), + [anon_sym_DOLLAR] = ACTIONS(735), + [anon_sym_PLUS] = ACTIONS(742), + [anon_sym_STAR] = ACTIONS(742), + [anon_sym_QMARK] = ACTIONS(737), + [anon_sym_u8] = ACTIONS(735), + [anon_sym_i8] = ACTIONS(735), + [anon_sym_u16] = ACTIONS(735), + [anon_sym_i16] = ACTIONS(735), + [anon_sym_u32] = ACTIONS(735), + [anon_sym_i32] = ACTIONS(735), + [anon_sym_u64] = ACTIONS(735), + [anon_sym_i64] = ACTIONS(735), + [anon_sym_u128] = ACTIONS(735), + [anon_sym_i128] = ACTIONS(735), + [anon_sym_isize] = ACTIONS(735), + [anon_sym_usize] = ACTIONS(735), + [anon_sym_f32] = ACTIONS(735), + [anon_sym_f64] = ACTIONS(735), + [anon_sym_bool] = ACTIONS(735), + [anon_sym_str] = ACTIONS(735), + [anon_sym_char] = ACTIONS(735), + [anon_sym_DASH] = ACTIONS(742), + [anon_sym_SLASH] = ACTIONS(742), + [anon_sym_PERCENT] = ACTIONS(742), + [anon_sym_CARET] = ACTIONS(742), + [anon_sym_BANG] = ACTIONS(742), + [anon_sym_AMP] = ACTIONS(742), + [anon_sym_PIPE] = ACTIONS(742), + [anon_sym_AMP_AMP] = ACTIONS(737), + [anon_sym_PIPE_PIPE] = ACTIONS(737), + [anon_sym_LT_LT] = ACTIONS(742), + [anon_sym_GT_GT] = ACTIONS(742), + [anon_sym_PLUS_EQ] = ACTIONS(737), + [anon_sym_DASH_EQ] = ACTIONS(737), + [anon_sym_STAR_EQ] = ACTIONS(737), + [anon_sym_SLASH_EQ] = ACTIONS(737), + [anon_sym_PERCENT_EQ] = ACTIONS(737), + [anon_sym_CARET_EQ] = ACTIONS(737), + [anon_sym_AMP_EQ] = ACTIONS(737), + [anon_sym_PIPE_EQ] = ACTIONS(737), + [anon_sym_LT_LT_EQ] = ACTIONS(737), + [anon_sym_GT_GT_EQ] = ACTIONS(737), + [anon_sym_EQ] = ACTIONS(742), + [anon_sym_EQ_EQ] = ACTIONS(737), + [anon_sym_BANG_EQ] = ACTIONS(737), + [anon_sym_GT] = ACTIONS(742), + [anon_sym_LT] = ACTIONS(742), + [anon_sym_GT_EQ] = ACTIONS(737), + [anon_sym_LT_EQ] = ACTIONS(737), + [anon_sym_AT] = ACTIONS(737), + [anon_sym__] = ACTIONS(742), + [anon_sym_DOT] = ACTIONS(742), + [anon_sym_DOT_DOT] = ACTIONS(742), + [anon_sym_DOT_DOT_DOT] = ACTIONS(737), + [anon_sym_DOT_DOT_EQ] = ACTIONS(737), + [anon_sym_COMMA] = ACTIONS(737), + [anon_sym_COLON_COLON] = ACTIONS(737), + [anon_sym_DASH_GT] = ACTIONS(737), + [anon_sym_POUND] = ACTIONS(737), + [anon_sym_SQUOTE] = ACTIONS(735), + [anon_sym_as] = ACTIONS(735), + [anon_sym_async] = ACTIONS(735), + [anon_sym_await] = ACTIONS(735), + [anon_sym_break] = ACTIONS(735), + [anon_sym_const] = ACTIONS(735), + [anon_sym_continue] = ACTIONS(735), + [anon_sym_default] = ACTIONS(735), + [anon_sym_enum] = ACTIONS(735), + [anon_sym_fn] = ACTIONS(735), + [anon_sym_for] = ACTIONS(735), + [anon_sym_if] = ACTIONS(735), + [anon_sym_impl] = ACTIONS(735), + [anon_sym_let] = ACTIONS(735), + [anon_sym_loop] = ACTIONS(735), + [anon_sym_match] = ACTIONS(735), + [anon_sym_mod] = ACTIONS(735), + [anon_sym_pub] = ACTIONS(735), + [anon_sym_return] = ACTIONS(735), + [anon_sym_static] = ACTIONS(735), + [anon_sym_struct] = ACTIONS(735), + [anon_sym_trait] = ACTIONS(735), + [anon_sym_type] = ACTIONS(735), + [anon_sym_union] = ACTIONS(735), + [anon_sym_unsafe] = ACTIONS(735), + [anon_sym_use] = ACTIONS(735), + [anon_sym_where] = ACTIONS(735), + [anon_sym_while] = ACTIONS(735), + [sym_mutable_specifier] = ACTIONS(735), + [sym_integer_literal] = ACTIONS(740), + [aux_sym_string_literal_token1] = ACTIONS(740), + [sym_char_literal] = ACTIONS(740), + [anon_sym_true] = ACTIONS(735), + [anon_sym_false] = ACTIONS(735), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(735), + [sym_super] = ACTIONS(735), + [sym_crate] = ACTIONS(735), + [sym_metavariable] = ACTIONS(740), + [sym__raw_string_literal_start] = ACTIONS(740), + [sym_float_literal] = ACTIONS(740), }, [136] = { [sym_line_comment] = STATE(136), [sym_block_comment] = STATE(136), - [aux_sym__non_special_token_repeat1] = STATE(134), + [aux_sym__non_special_token_repeat1] = STATE(135), [sym_identifier] = ACTIONS(745), [anon_sym_SEMI] = ACTIONS(554), [anon_sym_LPAREN] = ACTIONS(747), @@ -31983,404 +31991,404 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(747), }, [137] = { + [sym_attribute_item] = STATE(1003), + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1627), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1268), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), [sym_line_comment] = STATE(137), [sym_block_comment] = STATE(137), + [aux_sym_enum_variant_list_repeat1] = STATE(1002), [sym_identifier] = ACTIONS(749), - [anon_sym_SEMI] = ACTIONS(751), - [anon_sym_LPAREN] = ACTIONS(751), - [anon_sym_RPAREN] = ACTIONS(751), - [anon_sym_LBRACK] = ACTIONS(751), - [anon_sym_RBRACK] = ACTIONS(751), - [anon_sym_LBRACE] = ACTIONS(751), - [anon_sym_RBRACE] = ACTIONS(751), - [anon_sym_EQ_GT] = ACTIONS(751), - [anon_sym_COLON] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(749), - [anon_sym_STAR] = ACTIONS(749), - [anon_sym_QMARK] = ACTIONS(751), - [anon_sym_u8] = ACTIONS(749), - [anon_sym_i8] = ACTIONS(749), - [anon_sym_u16] = ACTIONS(749), - [anon_sym_i16] = ACTIONS(749), - [anon_sym_u32] = ACTIONS(749), - [anon_sym_i32] = ACTIONS(749), - [anon_sym_u64] = ACTIONS(749), - [anon_sym_i64] = ACTIONS(749), - [anon_sym_u128] = ACTIONS(749), - [anon_sym_i128] = ACTIONS(749), - [anon_sym_isize] = ACTIONS(749), - [anon_sym_usize] = ACTIONS(749), - [anon_sym_f32] = ACTIONS(749), - [anon_sym_f64] = ACTIONS(749), - [anon_sym_bool] = ACTIONS(749), - [anon_sym_str] = ACTIONS(749), - [anon_sym_char] = ACTIONS(749), - [anon_sym_DASH] = ACTIONS(749), - [anon_sym_SLASH] = ACTIONS(749), - [anon_sym_PERCENT] = ACTIONS(749), - [anon_sym_CARET] = ACTIONS(749), - [anon_sym_BANG] = ACTIONS(749), - [anon_sym_AMP] = ACTIONS(749), - [anon_sym_PIPE] = ACTIONS(749), - [anon_sym_AMP_AMP] = ACTIONS(751), - [anon_sym_PIPE_PIPE] = ACTIONS(751), - [anon_sym_LT_LT] = ACTIONS(749), - [anon_sym_GT_GT] = ACTIONS(749), - [anon_sym_PLUS_EQ] = ACTIONS(751), - [anon_sym_DASH_EQ] = ACTIONS(751), - [anon_sym_STAR_EQ] = ACTIONS(751), - [anon_sym_SLASH_EQ] = ACTIONS(751), - [anon_sym_PERCENT_EQ] = ACTIONS(751), - [anon_sym_CARET_EQ] = ACTIONS(751), - [anon_sym_AMP_EQ] = ACTIONS(751), - [anon_sym_PIPE_EQ] = ACTIONS(751), - [anon_sym_LT_LT_EQ] = ACTIONS(751), - [anon_sym_GT_GT_EQ] = ACTIONS(751), - [anon_sym_EQ] = ACTIONS(749), - [anon_sym_EQ_EQ] = ACTIONS(751), - [anon_sym_BANG_EQ] = ACTIONS(751), - [anon_sym_GT] = ACTIONS(749), - [anon_sym_LT] = ACTIONS(749), - [anon_sym_GT_EQ] = ACTIONS(751), - [anon_sym_LT_EQ] = ACTIONS(751), - [anon_sym_AT] = ACTIONS(751), - [anon_sym__] = ACTIONS(749), - [anon_sym_DOT] = ACTIONS(749), - [anon_sym_DOT_DOT] = ACTIONS(749), - [anon_sym_DOT_DOT_DOT] = ACTIONS(751), - [anon_sym_DOT_DOT_EQ] = ACTIONS(751), - [anon_sym_COMMA] = ACTIONS(751), - [anon_sym_COLON_COLON] = ACTIONS(751), - [anon_sym_DASH_GT] = ACTIONS(751), - [anon_sym_POUND] = ACTIONS(751), - [anon_sym_SQUOTE] = ACTIONS(749), - [anon_sym_as] = ACTIONS(749), - [anon_sym_async] = ACTIONS(749), - [anon_sym_await] = ACTIONS(749), - [anon_sym_break] = ACTIONS(749), - [anon_sym_const] = ACTIONS(749), - [anon_sym_continue] = ACTIONS(749), - [anon_sym_default] = ACTIONS(749), - [anon_sym_enum] = ACTIONS(749), - [anon_sym_fn] = ACTIONS(749), - [anon_sym_for] = ACTIONS(749), - [anon_sym_if] = ACTIONS(749), - [anon_sym_impl] = ACTIONS(749), - [anon_sym_let] = ACTIONS(749), - [anon_sym_loop] = ACTIONS(749), - [anon_sym_match] = ACTIONS(749), - [anon_sym_mod] = ACTIONS(749), - [anon_sym_pub] = ACTIONS(749), - [anon_sym_return] = ACTIONS(749), - [anon_sym_static] = ACTIONS(749), - [anon_sym_struct] = ACTIONS(749), - [anon_sym_trait] = ACTIONS(749), - [anon_sym_type] = ACTIONS(749), - [anon_sym_union] = ACTIONS(749), - [anon_sym_unsafe] = ACTIONS(749), - [anon_sym_use] = ACTIONS(749), - [anon_sym_where] = ACTIONS(749), - [anon_sym_while] = ACTIONS(749), - [sym_mutable_specifier] = ACTIONS(749), - [sym_integer_literal] = ACTIONS(751), - [aux_sym_string_literal_token1] = ACTIONS(751), - [sym_char_literal] = ACTIONS(751), - [anon_sym_true] = ACTIONS(749), - [anon_sym_false] = ACTIONS(749), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(749), - [sym_super] = ACTIONS(749), - [sym_crate] = ACTIONS(749), - [sym_metavariable] = ACTIONS(751), - [sym__raw_string_literal_start] = ACTIONS(751), - [sym_float_literal] = ACTIONS(751), + [anon_sym_LPAREN] = ACTIONS(752), + [anon_sym_LBRACK] = ACTIONS(755), + [anon_sym_RBRACK] = ACTIONS(758), + [anon_sym_LBRACE] = ACTIONS(760), + [anon_sym_STAR] = ACTIONS(763), + [anon_sym_u8] = ACTIONS(766), + [anon_sym_i8] = ACTIONS(766), + [anon_sym_u16] = ACTIONS(766), + [anon_sym_i16] = ACTIONS(766), + [anon_sym_u32] = ACTIONS(766), + [anon_sym_i32] = ACTIONS(766), + [anon_sym_u64] = ACTIONS(766), + [anon_sym_i64] = ACTIONS(766), + [anon_sym_u128] = ACTIONS(766), + [anon_sym_i128] = ACTIONS(766), + [anon_sym_isize] = ACTIONS(766), + [anon_sym_usize] = ACTIONS(766), + [anon_sym_f32] = ACTIONS(766), + [anon_sym_f64] = ACTIONS(766), + [anon_sym_bool] = ACTIONS(766), + [anon_sym_str] = ACTIONS(766), + [anon_sym_char] = ACTIONS(766), + [anon_sym_DASH] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(763), + [anon_sym_AMP] = ACTIONS(769), + [anon_sym_PIPE] = ACTIONS(772), + [anon_sym_LT] = ACTIONS(775), + [anon_sym_DOT_DOT] = ACTIONS(778), + [anon_sym_COMMA] = ACTIONS(758), + [anon_sym_COLON_COLON] = ACTIONS(781), + [anon_sym_POUND] = ACTIONS(784), + [anon_sym_SQUOTE] = ACTIONS(787), + [anon_sym_async] = ACTIONS(790), + [anon_sym_break] = ACTIONS(793), + [anon_sym_const] = ACTIONS(796), + [anon_sym_continue] = ACTIONS(799), + [anon_sym_default] = ACTIONS(802), + [anon_sym_for] = ACTIONS(805), + [anon_sym_if] = ACTIONS(808), + [anon_sym_loop] = ACTIONS(811), + [anon_sym_match] = ACTIONS(814), + [anon_sym_return] = ACTIONS(817), + [anon_sym_static] = ACTIONS(820), + [anon_sym_union] = ACTIONS(802), + [anon_sym_unsafe] = ACTIONS(823), + [anon_sym_while] = ACTIONS(826), + [anon_sym_yield] = ACTIONS(829), + [anon_sym_move] = ACTIONS(832), + [anon_sym_try] = ACTIONS(835), + [sym_integer_literal] = ACTIONS(838), + [aux_sym_string_literal_token1] = ACTIONS(841), + [sym_char_literal] = ACTIONS(838), + [anon_sym_true] = ACTIONS(844), + [anon_sym_false] = ACTIONS(844), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(847), + [sym_super] = ACTIONS(850), + [sym_crate] = ACTIONS(850), + [sym_metavariable] = ACTIONS(853), + [sym__raw_string_literal_start] = ACTIONS(856), + [sym_float_literal] = ACTIONS(838), }, [138] = { [sym_line_comment] = STATE(138), [sym_block_comment] = STATE(138), - [sym_identifier] = ACTIONS(753), - [anon_sym_SEMI] = ACTIONS(755), - [anon_sym_LPAREN] = ACTIONS(755), - [anon_sym_RPAREN] = ACTIONS(755), - [anon_sym_LBRACK] = ACTIONS(755), - [anon_sym_RBRACK] = ACTIONS(755), - [anon_sym_LBRACE] = ACTIONS(755), - [anon_sym_RBRACE] = ACTIONS(755), - [anon_sym_EQ_GT] = ACTIONS(755), - [anon_sym_COLON] = ACTIONS(753), - [anon_sym_DOLLAR] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(753), - [anon_sym_STAR] = ACTIONS(753), - [anon_sym_QMARK] = ACTIONS(755), - [anon_sym_u8] = ACTIONS(753), - [anon_sym_i8] = ACTIONS(753), - [anon_sym_u16] = ACTIONS(753), - [anon_sym_i16] = ACTIONS(753), - [anon_sym_u32] = ACTIONS(753), - [anon_sym_i32] = ACTIONS(753), - [anon_sym_u64] = ACTIONS(753), - [anon_sym_i64] = ACTIONS(753), - [anon_sym_u128] = ACTIONS(753), - [anon_sym_i128] = ACTIONS(753), - [anon_sym_isize] = ACTIONS(753), - [anon_sym_usize] = ACTIONS(753), - [anon_sym_f32] = ACTIONS(753), - [anon_sym_f64] = ACTIONS(753), - [anon_sym_bool] = ACTIONS(753), - [anon_sym_str] = ACTIONS(753), - [anon_sym_char] = ACTIONS(753), - [anon_sym_DASH] = ACTIONS(753), - [anon_sym_SLASH] = ACTIONS(753), - [anon_sym_PERCENT] = ACTIONS(753), - [anon_sym_CARET] = ACTIONS(753), - [anon_sym_BANG] = ACTIONS(753), - [anon_sym_AMP] = ACTIONS(753), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_AMP_AMP] = ACTIONS(755), - [anon_sym_PIPE_PIPE] = ACTIONS(755), - [anon_sym_LT_LT] = ACTIONS(753), - [anon_sym_GT_GT] = ACTIONS(753), - [anon_sym_PLUS_EQ] = ACTIONS(755), - [anon_sym_DASH_EQ] = ACTIONS(755), - [anon_sym_STAR_EQ] = ACTIONS(755), - [anon_sym_SLASH_EQ] = ACTIONS(755), - [anon_sym_PERCENT_EQ] = ACTIONS(755), - [anon_sym_CARET_EQ] = ACTIONS(755), - [anon_sym_AMP_EQ] = ACTIONS(755), - [anon_sym_PIPE_EQ] = ACTIONS(755), - [anon_sym_LT_LT_EQ] = ACTIONS(755), - [anon_sym_GT_GT_EQ] = ACTIONS(755), - [anon_sym_EQ] = ACTIONS(753), - [anon_sym_EQ_EQ] = ACTIONS(755), - [anon_sym_BANG_EQ] = ACTIONS(755), - [anon_sym_GT] = ACTIONS(753), - [anon_sym_LT] = ACTIONS(753), - [anon_sym_GT_EQ] = ACTIONS(755), - [anon_sym_LT_EQ] = ACTIONS(755), - [anon_sym_AT] = ACTIONS(755), - [anon_sym__] = ACTIONS(753), - [anon_sym_DOT] = ACTIONS(753), - [anon_sym_DOT_DOT] = ACTIONS(753), - [anon_sym_DOT_DOT_DOT] = ACTIONS(755), - [anon_sym_DOT_DOT_EQ] = ACTIONS(755), - [anon_sym_COMMA] = ACTIONS(755), - [anon_sym_COLON_COLON] = ACTIONS(755), - [anon_sym_DASH_GT] = ACTIONS(755), - [anon_sym_POUND] = ACTIONS(755), - [anon_sym_SQUOTE] = ACTIONS(753), - [anon_sym_as] = ACTIONS(753), - [anon_sym_async] = ACTIONS(753), - [anon_sym_await] = ACTIONS(753), - [anon_sym_break] = ACTIONS(753), - [anon_sym_const] = ACTIONS(753), - [anon_sym_continue] = ACTIONS(753), - [anon_sym_default] = ACTIONS(753), - [anon_sym_enum] = ACTIONS(753), - [anon_sym_fn] = ACTIONS(753), - [anon_sym_for] = ACTIONS(753), - [anon_sym_if] = ACTIONS(753), - [anon_sym_impl] = ACTIONS(753), - [anon_sym_let] = ACTIONS(753), - [anon_sym_loop] = ACTIONS(753), - [anon_sym_match] = ACTIONS(753), - [anon_sym_mod] = ACTIONS(753), - [anon_sym_pub] = ACTIONS(753), - [anon_sym_return] = ACTIONS(753), - [anon_sym_static] = ACTIONS(753), - [anon_sym_struct] = ACTIONS(753), - [anon_sym_trait] = ACTIONS(753), - [anon_sym_type] = ACTIONS(753), - [anon_sym_union] = ACTIONS(753), - [anon_sym_unsafe] = ACTIONS(753), - [anon_sym_use] = ACTIONS(753), - [anon_sym_where] = ACTIONS(753), - [anon_sym_while] = ACTIONS(753), - [sym_mutable_specifier] = ACTIONS(753), - [sym_integer_literal] = ACTIONS(755), - [aux_sym_string_literal_token1] = ACTIONS(755), - [sym_char_literal] = ACTIONS(755), - [anon_sym_true] = ACTIONS(753), - [anon_sym_false] = ACTIONS(753), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(753), - [sym_super] = ACTIONS(753), - [sym_crate] = ACTIONS(753), - [sym_metavariable] = ACTIONS(755), - [sym__raw_string_literal_start] = ACTIONS(755), - [sym_float_literal] = ACTIONS(755), + [sym_identifier] = ACTIONS(859), + [anon_sym_SEMI] = ACTIONS(861), + [anon_sym_LPAREN] = ACTIONS(861), + [anon_sym_RPAREN] = ACTIONS(861), + [anon_sym_LBRACK] = ACTIONS(861), + [anon_sym_RBRACK] = ACTIONS(861), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_RBRACE] = ACTIONS(861), + [anon_sym_EQ_GT] = ACTIONS(861), + [anon_sym_COLON] = ACTIONS(859), + [anon_sym_DOLLAR] = ACTIONS(859), + [anon_sym_PLUS] = ACTIONS(859), + [anon_sym_STAR] = ACTIONS(859), + [anon_sym_QMARK] = ACTIONS(861), + [anon_sym_u8] = ACTIONS(859), + [anon_sym_i8] = ACTIONS(859), + [anon_sym_u16] = ACTIONS(859), + [anon_sym_i16] = ACTIONS(859), + [anon_sym_u32] = ACTIONS(859), + [anon_sym_i32] = ACTIONS(859), + [anon_sym_u64] = ACTIONS(859), + [anon_sym_i64] = ACTIONS(859), + [anon_sym_u128] = ACTIONS(859), + [anon_sym_i128] = ACTIONS(859), + [anon_sym_isize] = ACTIONS(859), + [anon_sym_usize] = ACTIONS(859), + [anon_sym_f32] = ACTIONS(859), + [anon_sym_f64] = ACTIONS(859), + [anon_sym_bool] = ACTIONS(859), + [anon_sym_str] = ACTIONS(859), + [anon_sym_char] = ACTIONS(859), + [anon_sym_DASH] = ACTIONS(859), + [anon_sym_SLASH] = ACTIONS(859), + [anon_sym_PERCENT] = ACTIONS(859), + [anon_sym_CARET] = ACTIONS(859), + [anon_sym_BANG] = ACTIONS(859), + [anon_sym_AMP] = ACTIONS(859), + [anon_sym_PIPE] = ACTIONS(859), + [anon_sym_AMP_AMP] = ACTIONS(861), + [anon_sym_PIPE_PIPE] = ACTIONS(861), + [anon_sym_LT_LT] = ACTIONS(859), + [anon_sym_GT_GT] = ACTIONS(859), + [anon_sym_PLUS_EQ] = ACTIONS(861), + [anon_sym_DASH_EQ] = ACTIONS(861), + [anon_sym_STAR_EQ] = ACTIONS(861), + [anon_sym_SLASH_EQ] = ACTIONS(861), + [anon_sym_PERCENT_EQ] = ACTIONS(861), + [anon_sym_CARET_EQ] = ACTIONS(861), + [anon_sym_AMP_EQ] = ACTIONS(861), + [anon_sym_PIPE_EQ] = ACTIONS(861), + [anon_sym_LT_LT_EQ] = ACTIONS(861), + [anon_sym_GT_GT_EQ] = ACTIONS(861), + [anon_sym_EQ] = ACTIONS(859), + [anon_sym_EQ_EQ] = ACTIONS(861), + [anon_sym_BANG_EQ] = ACTIONS(861), + [anon_sym_GT] = ACTIONS(859), + [anon_sym_LT] = ACTIONS(859), + [anon_sym_GT_EQ] = ACTIONS(861), + [anon_sym_LT_EQ] = ACTIONS(861), + [anon_sym_AT] = ACTIONS(861), + [anon_sym__] = ACTIONS(859), + [anon_sym_DOT] = ACTIONS(859), + [anon_sym_DOT_DOT] = ACTIONS(859), + [anon_sym_DOT_DOT_DOT] = ACTIONS(861), + [anon_sym_DOT_DOT_EQ] = ACTIONS(861), + [anon_sym_COMMA] = ACTIONS(861), + [anon_sym_COLON_COLON] = ACTIONS(861), + [anon_sym_DASH_GT] = ACTIONS(861), + [anon_sym_POUND] = ACTIONS(861), + [anon_sym_SQUOTE] = ACTIONS(859), + [anon_sym_as] = ACTIONS(859), + [anon_sym_async] = ACTIONS(859), + [anon_sym_await] = ACTIONS(859), + [anon_sym_break] = ACTIONS(859), + [anon_sym_const] = ACTIONS(859), + [anon_sym_continue] = ACTIONS(859), + [anon_sym_default] = ACTIONS(859), + [anon_sym_enum] = ACTIONS(859), + [anon_sym_fn] = ACTIONS(859), + [anon_sym_for] = ACTIONS(859), + [anon_sym_if] = ACTIONS(859), + [anon_sym_impl] = ACTIONS(859), + [anon_sym_let] = ACTIONS(859), + [anon_sym_loop] = ACTIONS(859), + [anon_sym_match] = ACTIONS(859), + [anon_sym_mod] = ACTIONS(859), + [anon_sym_pub] = ACTIONS(859), + [anon_sym_return] = ACTIONS(859), + [anon_sym_static] = ACTIONS(859), + [anon_sym_struct] = ACTIONS(859), + [anon_sym_trait] = ACTIONS(859), + [anon_sym_type] = ACTIONS(859), + [anon_sym_union] = ACTIONS(859), + [anon_sym_unsafe] = ACTIONS(859), + [anon_sym_use] = ACTIONS(859), + [anon_sym_where] = ACTIONS(859), + [anon_sym_while] = ACTIONS(859), + [sym_mutable_specifier] = ACTIONS(859), + [sym_integer_literal] = ACTIONS(861), + [aux_sym_string_literal_token1] = ACTIONS(861), + [sym_char_literal] = ACTIONS(861), + [anon_sym_true] = ACTIONS(859), + [anon_sym_false] = ACTIONS(859), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(859), + [sym_super] = ACTIONS(859), + [sym_crate] = ACTIONS(859), + [sym_metavariable] = ACTIONS(861), + [sym__raw_string_literal_start] = ACTIONS(861), + [sym_float_literal] = ACTIONS(861), }, [139] = { [sym_line_comment] = STATE(139), [sym_block_comment] = STATE(139), - [sym_identifier] = ACTIONS(757), - [anon_sym_SEMI] = ACTIONS(759), - [anon_sym_LPAREN] = ACTIONS(759), - [anon_sym_RPAREN] = ACTIONS(759), - [anon_sym_LBRACK] = ACTIONS(759), - [anon_sym_RBRACK] = ACTIONS(759), - [anon_sym_LBRACE] = ACTIONS(759), - [anon_sym_RBRACE] = ACTIONS(759), - [anon_sym_EQ_GT] = ACTIONS(759), - [anon_sym_COLON] = ACTIONS(757), - [anon_sym_DOLLAR] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(757), - [anon_sym_STAR] = ACTIONS(757), - [anon_sym_QMARK] = ACTIONS(759), - [anon_sym_u8] = ACTIONS(757), - [anon_sym_i8] = ACTIONS(757), - [anon_sym_u16] = ACTIONS(757), - [anon_sym_i16] = ACTIONS(757), - [anon_sym_u32] = ACTIONS(757), - [anon_sym_i32] = ACTIONS(757), - [anon_sym_u64] = ACTIONS(757), - [anon_sym_i64] = ACTIONS(757), - [anon_sym_u128] = ACTIONS(757), - [anon_sym_i128] = ACTIONS(757), - [anon_sym_isize] = ACTIONS(757), - [anon_sym_usize] = ACTIONS(757), - [anon_sym_f32] = ACTIONS(757), - [anon_sym_f64] = ACTIONS(757), - [anon_sym_bool] = ACTIONS(757), - [anon_sym_str] = ACTIONS(757), - [anon_sym_char] = ACTIONS(757), - [anon_sym_DASH] = ACTIONS(757), - [anon_sym_SLASH] = ACTIONS(757), - [anon_sym_PERCENT] = ACTIONS(757), - [anon_sym_CARET] = ACTIONS(757), - [anon_sym_BANG] = ACTIONS(757), - [anon_sym_AMP] = ACTIONS(757), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_AMP_AMP] = ACTIONS(759), - [anon_sym_PIPE_PIPE] = ACTIONS(759), - [anon_sym_LT_LT] = ACTIONS(757), - [anon_sym_GT_GT] = ACTIONS(757), - [anon_sym_PLUS_EQ] = ACTIONS(759), - [anon_sym_DASH_EQ] = ACTIONS(759), - [anon_sym_STAR_EQ] = ACTIONS(759), - [anon_sym_SLASH_EQ] = ACTIONS(759), - [anon_sym_PERCENT_EQ] = ACTIONS(759), - [anon_sym_CARET_EQ] = ACTIONS(759), - [anon_sym_AMP_EQ] = ACTIONS(759), - [anon_sym_PIPE_EQ] = ACTIONS(759), - [anon_sym_LT_LT_EQ] = ACTIONS(759), - [anon_sym_GT_GT_EQ] = ACTIONS(759), - [anon_sym_EQ] = ACTIONS(757), - [anon_sym_EQ_EQ] = ACTIONS(759), - [anon_sym_BANG_EQ] = ACTIONS(759), - [anon_sym_GT] = ACTIONS(757), - [anon_sym_LT] = ACTIONS(757), - [anon_sym_GT_EQ] = ACTIONS(759), - [anon_sym_LT_EQ] = ACTIONS(759), - [anon_sym_AT] = ACTIONS(759), - [anon_sym__] = ACTIONS(757), - [anon_sym_DOT] = ACTIONS(757), - [anon_sym_DOT_DOT] = ACTIONS(757), - [anon_sym_DOT_DOT_DOT] = ACTIONS(759), - [anon_sym_DOT_DOT_EQ] = ACTIONS(759), - [anon_sym_COMMA] = ACTIONS(759), - [anon_sym_COLON_COLON] = ACTIONS(759), - [anon_sym_DASH_GT] = ACTIONS(759), - [anon_sym_POUND] = ACTIONS(759), - [anon_sym_SQUOTE] = ACTIONS(757), - [anon_sym_as] = ACTIONS(757), - [anon_sym_async] = ACTIONS(757), - [anon_sym_await] = ACTIONS(757), - [anon_sym_break] = ACTIONS(757), - [anon_sym_const] = ACTIONS(757), - [anon_sym_continue] = ACTIONS(757), - [anon_sym_default] = ACTIONS(757), - [anon_sym_enum] = ACTIONS(757), - [anon_sym_fn] = ACTIONS(757), - [anon_sym_for] = ACTIONS(757), - [anon_sym_if] = ACTIONS(757), - [anon_sym_impl] = ACTIONS(757), - [anon_sym_let] = ACTIONS(757), - [anon_sym_loop] = ACTIONS(757), - [anon_sym_match] = ACTIONS(757), - [anon_sym_mod] = ACTIONS(757), - [anon_sym_pub] = ACTIONS(757), - [anon_sym_return] = ACTIONS(757), - [anon_sym_static] = ACTIONS(757), - [anon_sym_struct] = ACTIONS(757), - [anon_sym_trait] = ACTIONS(757), - [anon_sym_type] = ACTIONS(757), - [anon_sym_union] = ACTIONS(757), - [anon_sym_unsafe] = ACTIONS(757), - [anon_sym_use] = ACTIONS(757), - [anon_sym_where] = ACTIONS(757), - [anon_sym_while] = ACTIONS(757), - [sym_mutable_specifier] = ACTIONS(757), - [sym_integer_literal] = ACTIONS(759), - [aux_sym_string_literal_token1] = ACTIONS(759), - [sym_char_literal] = ACTIONS(759), - [anon_sym_true] = ACTIONS(757), - [anon_sym_false] = ACTIONS(757), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(757), - [sym_super] = ACTIONS(757), - [sym_crate] = ACTIONS(757), - [sym_metavariable] = ACTIONS(759), - [sym__raw_string_literal_start] = ACTIONS(759), - [sym_float_literal] = ACTIONS(759), + [sym_identifier] = ACTIONS(863), + [anon_sym_SEMI] = ACTIONS(865), + [anon_sym_LPAREN] = ACTIONS(865), + [anon_sym_RPAREN] = ACTIONS(865), + [anon_sym_LBRACK] = ACTIONS(865), + [anon_sym_RBRACK] = ACTIONS(865), + [anon_sym_LBRACE] = ACTIONS(865), + [anon_sym_RBRACE] = ACTIONS(865), + [anon_sym_EQ_GT] = ACTIONS(865), + [anon_sym_COLON] = ACTIONS(863), + [anon_sym_DOLLAR] = ACTIONS(863), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_STAR] = ACTIONS(863), + [anon_sym_QMARK] = ACTIONS(865), + [anon_sym_u8] = ACTIONS(863), + [anon_sym_i8] = ACTIONS(863), + [anon_sym_u16] = ACTIONS(863), + [anon_sym_i16] = ACTIONS(863), + [anon_sym_u32] = ACTIONS(863), + [anon_sym_i32] = ACTIONS(863), + [anon_sym_u64] = ACTIONS(863), + [anon_sym_i64] = ACTIONS(863), + [anon_sym_u128] = ACTIONS(863), + [anon_sym_i128] = ACTIONS(863), + [anon_sym_isize] = ACTIONS(863), + [anon_sym_usize] = ACTIONS(863), + [anon_sym_f32] = ACTIONS(863), + [anon_sym_f64] = ACTIONS(863), + [anon_sym_bool] = ACTIONS(863), + [anon_sym_str] = ACTIONS(863), + [anon_sym_char] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_SLASH] = ACTIONS(863), + [anon_sym_PERCENT] = ACTIONS(863), + [anon_sym_CARET] = ACTIONS(863), + [anon_sym_BANG] = ACTIONS(863), + [anon_sym_AMP] = ACTIONS(863), + [anon_sym_PIPE] = ACTIONS(863), + [anon_sym_AMP_AMP] = ACTIONS(865), + [anon_sym_PIPE_PIPE] = ACTIONS(865), + [anon_sym_LT_LT] = ACTIONS(863), + [anon_sym_GT_GT] = ACTIONS(863), + [anon_sym_PLUS_EQ] = ACTIONS(865), + [anon_sym_DASH_EQ] = ACTIONS(865), + [anon_sym_STAR_EQ] = ACTIONS(865), + [anon_sym_SLASH_EQ] = ACTIONS(865), + [anon_sym_PERCENT_EQ] = ACTIONS(865), + [anon_sym_CARET_EQ] = ACTIONS(865), + [anon_sym_AMP_EQ] = ACTIONS(865), + [anon_sym_PIPE_EQ] = ACTIONS(865), + [anon_sym_LT_LT_EQ] = ACTIONS(865), + [anon_sym_GT_GT_EQ] = ACTIONS(865), + [anon_sym_EQ] = ACTIONS(863), + [anon_sym_EQ_EQ] = ACTIONS(865), + [anon_sym_BANG_EQ] = ACTIONS(865), + [anon_sym_GT] = ACTIONS(863), + [anon_sym_LT] = ACTIONS(863), + [anon_sym_GT_EQ] = ACTIONS(865), + [anon_sym_LT_EQ] = ACTIONS(865), + [anon_sym_AT] = ACTIONS(865), + [anon_sym__] = ACTIONS(863), + [anon_sym_DOT] = ACTIONS(863), + [anon_sym_DOT_DOT] = ACTIONS(863), + [anon_sym_DOT_DOT_DOT] = ACTIONS(865), + [anon_sym_DOT_DOT_EQ] = ACTIONS(865), + [anon_sym_COMMA] = ACTIONS(865), + [anon_sym_COLON_COLON] = ACTIONS(865), + [anon_sym_DASH_GT] = ACTIONS(865), + [anon_sym_POUND] = ACTIONS(865), + [anon_sym_SQUOTE] = ACTIONS(863), + [anon_sym_as] = ACTIONS(863), + [anon_sym_async] = ACTIONS(863), + [anon_sym_await] = ACTIONS(863), + [anon_sym_break] = ACTIONS(863), + [anon_sym_const] = ACTIONS(863), + [anon_sym_continue] = ACTIONS(863), + [anon_sym_default] = ACTIONS(863), + [anon_sym_enum] = ACTIONS(863), + [anon_sym_fn] = ACTIONS(863), + [anon_sym_for] = ACTIONS(863), + [anon_sym_if] = ACTIONS(863), + [anon_sym_impl] = ACTIONS(863), + [anon_sym_let] = ACTIONS(863), + [anon_sym_loop] = ACTIONS(863), + [anon_sym_match] = ACTIONS(863), + [anon_sym_mod] = ACTIONS(863), + [anon_sym_pub] = ACTIONS(863), + [anon_sym_return] = ACTIONS(863), + [anon_sym_static] = ACTIONS(863), + [anon_sym_struct] = ACTIONS(863), + [anon_sym_trait] = ACTIONS(863), + [anon_sym_type] = ACTIONS(863), + [anon_sym_union] = ACTIONS(863), + [anon_sym_unsafe] = ACTIONS(863), + [anon_sym_use] = ACTIONS(863), + [anon_sym_where] = ACTIONS(863), + [anon_sym_while] = ACTIONS(863), + [sym_mutable_specifier] = ACTIONS(863), + [sym_integer_literal] = ACTIONS(865), + [aux_sym_string_literal_token1] = ACTIONS(865), + [sym_char_literal] = ACTIONS(865), + [anon_sym_true] = ACTIONS(863), + [anon_sym_false] = ACTIONS(863), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(863), + [sym_super] = ACTIONS(863), + [sym_crate] = ACTIONS(863), + [sym_metavariable] = ACTIONS(865), + [sym__raw_string_literal_start] = ACTIONS(865), + [sym_float_literal] = ACTIONS(865), }, [140] = { [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1628), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1595), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1268), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), [sym_line_comment] = STATE(140), [sym_block_comment] = STATE(140), [aux_sym_enum_variant_list_repeat1] = STATE(213), [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(761), + [anon_sym_RPAREN] = ACTIONS(867), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), [anon_sym_STAR] = ACTIONS(21), @@ -32407,9 +32415,9 @@ 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(763), + [anon_sym_COMMA] = ACTIONS(869), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(871), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), [anon_sym_break] = ACTIONS(41), @@ -32445,1056 +32453,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [141] = { [sym_line_comment] = STATE(141), [sym_block_comment] = STATE(141), - [sym_identifier] = ACTIONS(767), - [anon_sym_SEMI] = ACTIONS(769), - [anon_sym_LPAREN] = ACTIONS(769), - [anon_sym_RPAREN] = ACTIONS(769), - [anon_sym_LBRACK] = ACTIONS(769), - [anon_sym_RBRACK] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(769), - [anon_sym_RBRACE] = ACTIONS(769), - [anon_sym_EQ_GT] = ACTIONS(769), - [anon_sym_COLON] = ACTIONS(767), - [anon_sym_DOLLAR] = ACTIONS(767), - [anon_sym_PLUS] = ACTIONS(767), - [anon_sym_STAR] = ACTIONS(767), - [anon_sym_QMARK] = ACTIONS(769), - [anon_sym_u8] = ACTIONS(767), - [anon_sym_i8] = ACTIONS(767), - [anon_sym_u16] = ACTIONS(767), - [anon_sym_i16] = ACTIONS(767), - [anon_sym_u32] = ACTIONS(767), - [anon_sym_i32] = ACTIONS(767), - [anon_sym_u64] = ACTIONS(767), - [anon_sym_i64] = ACTIONS(767), - [anon_sym_u128] = ACTIONS(767), - [anon_sym_i128] = ACTIONS(767), - [anon_sym_isize] = ACTIONS(767), - [anon_sym_usize] = ACTIONS(767), - [anon_sym_f32] = ACTIONS(767), - [anon_sym_f64] = ACTIONS(767), - [anon_sym_bool] = ACTIONS(767), - [anon_sym_str] = ACTIONS(767), - [anon_sym_char] = ACTIONS(767), - [anon_sym_DASH] = ACTIONS(767), - [anon_sym_SLASH] = ACTIONS(767), - [anon_sym_PERCENT] = ACTIONS(767), - [anon_sym_CARET] = ACTIONS(767), - [anon_sym_BANG] = ACTIONS(767), - [anon_sym_AMP] = ACTIONS(767), - [anon_sym_PIPE] = ACTIONS(767), - [anon_sym_AMP_AMP] = ACTIONS(769), - [anon_sym_PIPE_PIPE] = ACTIONS(769), - [anon_sym_LT_LT] = ACTIONS(767), - [anon_sym_GT_GT] = ACTIONS(767), - [anon_sym_PLUS_EQ] = ACTIONS(769), - [anon_sym_DASH_EQ] = ACTIONS(769), - [anon_sym_STAR_EQ] = ACTIONS(769), - [anon_sym_SLASH_EQ] = ACTIONS(769), - [anon_sym_PERCENT_EQ] = ACTIONS(769), - [anon_sym_CARET_EQ] = ACTIONS(769), - [anon_sym_AMP_EQ] = ACTIONS(769), - [anon_sym_PIPE_EQ] = ACTIONS(769), - [anon_sym_LT_LT_EQ] = ACTIONS(769), - [anon_sym_GT_GT_EQ] = ACTIONS(769), - [anon_sym_EQ] = ACTIONS(767), - [anon_sym_EQ_EQ] = ACTIONS(769), - [anon_sym_BANG_EQ] = ACTIONS(769), - [anon_sym_GT] = ACTIONS(767), - [anon_sym_LT] = ACTIONS(767), - [anon_sym_GT_EQ] = ACTIONS(769), - [anon_sym_LT_EQ] = ACTIONS(769), - [anon_sym_AT] = ACTIONS(769), - [anon_sym__] = ACTIONS(767), - [anon_sym_DOT] = ACTIONS(767), - [anon_sym_DOT_DOT] = ACTIONS(767), - [anon_sym_DOT_DOT_DOT] = ACTIONS(769), - [anon_sym_DOT_DOT_EQ] = ACTIONS(769), - [anon_sym_COMMA] = ACTIONS(769), - [anon_sym_COLON_COLON] = ACTIONS(769), - [anon_sym_DASH_GT] = ACTIONS(769), - [anon_sym_POUND] = ACTIONS(769), - [anon_sym_SQUOTE] = ACTIONS(767), - [anon_sym_as] = ACTIONS(767), - [anon_sym_async] = ACTIONS(767), - [anon_sym_await] = ACTIONS(767), - [anon_sym_break] = ACTIONS(767), - [anon_sym_const] = ACTIONS(767), - [anon_sym_continue] = ACTIONS(767), - [anon_sym_default] = ACTIONS(767), - [anon_sym_enum] = ACTIONS(767), - [anon_sym_fn] = ACTIONS(767), - [anon_sym_for] = ACTIONS(767), - [anon_sym_if] = ACTIONS(767), - [anon_sym_impl] = ACTIONS(767), - [anon_sym_let] = ACTIONS(767), - [anon_sym_loop] = ACTIONS(767), - [anon_sym_match] = ACTIONS(767), - [anon_sym_mod] = ACTIONS(767), - [anon_sym_pub] = ACTIONS(767), - [anon_sym_return] = ACTIONS(767), - [anon_sym_static] = ACTIONS(767), - [anon_sym_struct] = ACTIONS(767), - [anon_sym_trait] = ACTIONS(767), - [anon_sym_type] = ACTIONS(767), - [anon_sym_union] = ACTIONS(767), - [anon_sym_unsafe] = ACTIONS(767), - [anon_sym_use] = ACTIONS(767), - [anon_sym_where] = ACTIONS(767), - [anon_sym_while] = ACTIONS(767), - [sym_mutable_specifier] = ACTIONS(767), - [sym_integer_literal] = ACTIONS(769), - [aux_sym_string_literal_token1] = ACTIONS(769), - [sym_char_literal] = ACTIONS(769), - [anon_sym_true] = ACTIONS(767), - [anon_sym_false] = ACTIONS(767), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(767), - [sym_super] = ACTIONS(767), - [sym_crate] = ACTIONS(767), - [sym_metavariable] = ACTIONS(769), - [sym__raw_string_literal_start] = ACTIONS(769), - [sym_float_literal] = ACTIONS(769), - }, - [142] = { - [sym_line_comment] = STATE(142), - [sym_block_comment] = STATE(142), - [sym_identifier] = ACTIONS(771), - [anon_sym_SEMI] = ACTIONS(773), - [anon_sym_LPAREN] = ACTIONS(773), - [anon_sym_RPAREN] = ACTIONS(773), - [anon_sym_LBRACK] = ACTIONS(773), - [anon_sym_RBRACK] = ACTIONS(773), - [anon_sym_LBRACE] = ACTIONS(773), - [anon_sym_RBRACE] = ACTIONS(773), - [anon_sym_EQ_GT] = ACTIONS(773), - [anon_sym_COLON] = ACTIONS(771), - [anon_sym_DOLLAR] = ACTIONS(771), - [anon_sym_PLUS] = ACTIONS(771), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_QMARK] = ACTIONS(773), - [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(771), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_PERCENT] = ACTIONS(771), - [anon_sym_CARET] = ACTIONS(771), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_AMP] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(771), - [anon_sym_AMP_AMP] = ACTIONS(773), - [anon_sym_PIPE_PIPE] = ACTIONS(773), - [anon_sym_LT_LT] = ACTIONS(771), - [anon_sym_GT_GT] = ACTIONS(771), - [anon_sym_PLUS_EQ] = ACTIONS(773), - [anon_sym_DASH_EQ] = ACTIONS(773), - [anon_sym_STAR_EQ] = ACTIONS(773), - [anon_sym_SLASH_EQ] = ACTIONS(773), - [anon_sym_PERCENT_EQ] = ACTIONS(773), - [anon_sym_CARET_EQ] = ACTIONS(773), - [anon_sym_AMP_EQ] = ACTIONS(773), - [anon_sym_PIPE_EQ] = ACTIONS(773), - [anon_sym_LT_LT_EQ] = ACTIONS(773), - [anon_sym_GT_GT_EQ] = ACTIONS(773), - [anon_sym_EQ] = ACTIONS(771), - [anon_sym_EQ_EQ] = ACTIONS(773), - [anon_sym_BANG_EQ] = ACTIONS(773), - [anon_sym_GT] = ACTIONS(771), - [anon_sym_LT] = ACTIONS(771), - [anon_sym_GT_EQ] = ACTIONS(773), - [anon_sym_LT_EQ] = ACTIONS(773), - [anon_sym_AT] = ACTIONS(773), - [anon_sym__] = ACTIONS(771), - [anon_sym_DOT] = ACTIONS(771), - [anon_sym_DOT_DOT] = ACTIONS(771), - [anon_sym_DOT_DOT_DOT] = ACTIONS(773), - [anon_sym_DOT_DOT_EQ] = ACTIONS(773), - [anon_sym_COMMA] = ACTIONS(773), - [anon_sym_COLON_COLON] = ACTIONS(773), - [anon_sym_DASH_GT] = ACTIONS(773), - [anon_sym_POUND] = ACTIONS(773), - [anon_sym_SQUOTE] = ACTIONS(771), - [anon_sym_as] = ACTIONS(771), - [anon_sym_async] = ACTIONS(771), - [anon_sym_await] = ACTIONS(771), - [anon_sym_break] = ACTIONS(771), - [anon_sym_const] = ACTIONS(771), - [anon_sym_continue] = ACTIONS(771), - [anon_sym_default] = ACTIONS(771), - [anon_sym_enum] = ACTIONS(771), - [anon_sym_fn] = ACTIONS(771), - [anon_sym_for] = ACTIONS(771), - [anon_sym_if] = ACTIONS(771), - [anon_sym_impl] = ACTIONS(771), - [anon_sym_let] = ACTIONS(771), - [anon_sym_loop] = ACTIONS(771), - [anon_sym_match] = ACTIONS(771), - [anon_sym_mod] = ACTIONS(771), - [anon_sym_pub] = ACTIONS(771), - [anon_sym_return] = ACTIONS(771), - [anon_sym_static] = ACTIONS(771), - [anon_sym_struct] = ACTIONS(771), - [anon_sym_trait] = ACTIONS(771), - [anon_sym_type] = ACTIONS(771), - [anon_sym_union] = ACTIONS(771), - [anon_sym_unsafe] = ACTIONS(771), - [anon_sym_use] = ACTIONS(771), - [anon_sym_where] = ACTIONS(771), - [anon_sym_while] = ACTIONS(771), - [sym_mutable_specifier] = ACTIONS(771), - [sym_integer_literal] = ACTIONS(773), - [aux_sym_string_literal_token1] = ACTIONS(773), - [sym_char_literal] = ACTIONS(773), - [anon_sym_true] = ACTIONS(771), - [anon_sym_false] = ACTIONS(771), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(771), - [sym_super] = ACTIONS(771), - [sym_crate] = ACTIONS(771), - [sym_metavariable] = ACTIONS(773), - [sym__raw_string_literal_start] = ACTIONS(773), - [sym_float_literal] = ACTIONS(773), - }, - [143] = { - [sym_line_comment] = STATE(143), - [sym_block_comment] = STATE(143), - [sym_identifier] = ACTIONS(775), - [anon_sym_SEMI] = ACTIONS(777), - [anon_sym_LPAREN] = ACTIONS(777), - [anon_sym_RPAREN] = ACTIONS(777), - [anon_sym_LBRACK] = ACTIONS(777), - [anon_sym_RBRACK] = ACTIONS(777), - [anon_sym_LBRACE] = ACTIONS(777), - [anon_sym_RBRACE] = ACTIONS(777), - [anon_sym_EQ_GT] = ACTIONS(777), - [anon_sym_COLON] = ACTIONS(775), - [anon_sym_DOLLAR] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(775), - [anon_sym_STAR] = ACTIONS(775), - [anon_sym_QMARK] = ACTIONS(777), - [anon_sym_u8] = ACTIONS(775), - [anon_sym_i8] = ACTIONS(775), - [anon_sym_u16] = ACTIONS(775), - [anon_sym_i16] = ACTIONS(775), - [anon_sym_u32] = ACTIONS(775), - [anon_sym_i32] = ACTIONS(775), - [anon_sym_u64] = ACTIONS(775), - [anon_sym_i64] = ACTIONS(775), - [anon_sym_u128] = ACTIONS(775), - [anon_sym_i128] = ACTIONS(775), - [anon_sym_isize] = ACTIONS(775), - [anon_sym_usize] = ACTIONS(775), - [anon_sym_f32] = ACTIONS(775), - [anon_sym_f64] = ACTIONS(775), - [anon_sym_bool] = ACTIONS(775), - [anon_sym_str] = ACTIONS(775), - [anon_sym_char] = ACTIONS(775), - [anon_sym_DASH] = ACTIONS(775), - [anon_sym_SLASH] = ACTIONS(775), - [anon_sym_PERCENT] = ACTIONS(775), - [anon_sym_CARET] = ACTIONS(775), - [anon_sym_BANG] = ACTIONS(775), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_AMP_AMP] = ACTIONS(777), - [anon_sym_PIPE_PIPE] = ACTIONS(777), - [anon_sym_LT_LT] = ACTIONS(775), - [anon_sym_GT_GT] = ACTIONS(775), - [anon_sym_PLUS_EQ] = ACTIONS(777), - [anon_sym_DASH_EQ] = ACTIONS(777), - [anon_sym_STAR_EQ] = ACTIONS(777), - [anon_sym_SLASH_EQ] = ACTIONS(777), - [anon_sym_PERCENT_EQ] = ACTIONS(777), - [anon_sym_CARET_EQ] = ACTIONS(777), - [anon_sym_AMP_EQ] = ACTIONS(777), - [anon_sym_PIPE_EQ] = ACTIONS(777), - [anon_sym_LT_LT_EQ] = ACTIONS(777), - [anon_sym_GT_GT_EQ] = ACTIONS(777), - [anon_sym_EQ] = ACTIONS(775), - [anon_sym_EQ_EQ] = ACTIONS(777), - [anon_sym_BANG_EQ] = ACTIONS(777), - [anon_sym_GT] = ACTIONS(775), - [anon_sym_LT] = ACTIONS(775), - [anon_sym_GT_EQ] = ACTIONS(777), - [anon_sym_LT_EQ] = ACTIONS(777), - [anon_sym_AT] = ACTIONS(777), - [anon_sym__] = ACTIONS(775), - [anon_sym_DOT] = ACTIONS(775), - [anon_sym_DOT_DOT] = ACTIONS(775), - [anon_sym_DOT_DOT_DOT] = ACTIONS(777), - [anon_sym_DOT_DOT_EQ] = ACTIONS(777), - [anon_sym_COMMA] = ACTIONS(777), - [anon_sym_COLON_COLON] = ACTIONS(777), - [anon_sym_DASH_GT] = ACTIONS(777), - [anon_sym_POUND] = ACTIONS(777), - [anon_sym_SQUOTE] = ACTIONS(775), - [anon_sym_as] = ACTIONS(775), - [anon_sym_async] = ACTIONS(775), - [anon_sym_await] = ACTIONS(775), - [anon_sym_break] = ACTIONS(775), - [anon_sym_const] = ACTIONS(775), - [anon_sym_continue] = ACTIONS(775), - [anon_sym_default] = ACTIONS(775), - [anon_sym_enum] = ACTIONS(775), - [anon_sym_fn] = ACTIONS(775), - [anon_sym_for] = ACTIONS(775), - [anon_sym_if] = ACTIONS(775), - [anon_sym_impl] = ACTIONS(775), - [anon_sym_let] = ACTIONS(775), - [anon_sym_loop] = ACTIONS(775), - [anon_sym_match] = ACTIONS(775), - [anon_sym_mod] = ACTIONS(775), - [anon_sym_pub] = ACTIONS(775), - [anon_sym_return] = ACTIONS(775), - [anon_sym_static] = ACTIONS(775), - [anon_sym_struct] = ACTIONS(775), - [anon_sym_trait] = ACTIONS(775), - [anon_sym_type] = ACTIONS(775), - [anon_sym_union] = ACTIONS(775), - [anon_sym_unsafe] = ACTIONS(775), - [anon_sym_use] = ACTIONS(775), - [anon_sym_where] = ACTIONS(775), - [anon_sym_while] = ACTIONS(775), - [sym_mutable_specifier] = ACTIONS(775), - [sym_integer_literal] = ACTIONS(777), - [aux_sym_string_literal_token1] = ACTIONS(777), - [sym_char_literal] = ACTIONS(777), - [anon_sym_true] = ACTIONS(775), - [anon_sym_false] = ACTIONS(775), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(775), - [sym_super] = ACTIONS(775), - [sym_crate] = ACTIONS(775), - [sym_metavariable] = ACTIONS(777), - [sym__raw_string_literal_start] = ACTIONS(777), - [sym_float_literal] = ACTIONS(777), - }, - [144] = { - [sym_line_comment] = STATE(144), - [sym_block_comment] = STATE(144), - [sym_identifier] = ACTIONS(779), - [anon_sym_SEMI] = ACTIONS(781), - [anon_sym_LPAREN] = ACTIONS(781), - [anon_sym_RPAREN] = ACTIONS(781), - [anon_sym_LBRACK] = ACTIONS(781), - [anon_sym_RBRACK] = ACTIONS(781), - [anon_sym_LBRACE] = ACTIONS(781), - [anon_sym_RBRACE] = ACTIONS(781), - [anon_sym_EQ_GT] = ACTIONS(781), - [anon_sym_COLON] = ACTIONS(779), - [anon_sym_DOLLAR] = ACTIONS(779), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_STAR] = ACTIONS(779), - [anon_sym_QMARK] = ACTIONS(781), - [anon_sym_u8] = ACTIONS(779), - [anon_sym_i8] = ACTIONS(779), - [anon_sym_u16] = ACTIONS(779), - [anon_sym_i16] = ACTIONS(779), - [anon_sym_u32] = ACTIONS(779), - [anon_sym_i32] = ACTIONS(779), - [anon_sym_u64] = ACTIONS(779), - [anon_sym_i64] = ACTIONS(779), - [anon_sym_u128] = ACTIONS(779), - [anon_sym_i128] = ACTIONS(779), - [anon_sym_isize] = ACTIONS(779), - [anon_sym_usize] = ACTIONS(779), - [anon_sym_f32] = ACTIONS(779), - [anon_sym_f64] = ACTIONS(779), - [anon_sym_bool] = ACTIONS(779), - [anon_sym_str] = ACTIONS(779), - [anon_sym_char] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_SLASH] = ACTIONS(779), - [anon_sym_PERCENT] = ACTIONS(779), - [anon_sym_CARET] = ACTIONS(779), - [anon_sym_BANG] = ACTIONS(779), - [anon_sym_AMP] = ACTIONS(779), - [anon_sym_PIPE] = ACTIONS(779), - [anon_sym_AMP_AMP] = ACTIONS(781), - [anon_sym_PIPE_PIPE] = ACTIONS(781), - [anon_sym_LT_LT] = ACTIONS(779), - [anon_sym_GT_GT] = ACTIONS(779), - [anon_sym_PLUS_EQ] = ACTIONS(781), - [anon_sym_DASH_EQ] = ACTIONS(781), - [anon_sym_STAR_EQ] = ACTIONS(781), - [anon_sym_SLASH_EQ] = ACTIONS(781), - [anon_sym_PERCENT_EQ] = ACTIONS(781), - [anon_sym_CARET_EQ] = ACTIONS(781), - [anon_sym_AMP_EQ] = ACTIONS(781), - [anon_sym_PIPE_EQ] = ACTIONS(781), - [anon_sym_LT_LT_EQ] = ACTIONS(781), - [anon_sym_GT_GT_EQ] = ACTIONS(781), - [anon_sym_EQ] = ACTIONS(779), - [anon_sym_EQ_EQ] = ACTIONS(781), - [anon_sym_BANG_EQ] = ACTIONS(781), - [anon_sym_GT] = ACTIONS(779), - [anon_sym_LT] = ACTIONS(779), - [anon_sym_GT_EQ] = ACTIONS(781), - [anon_sym_LT_EQ] = ACTIONS(781), - [anon_sym_AT] = ACTIONS(781), - [anon_sym__] = ACTIONS(779), - [anon_sym_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_DOT] = ACTIONS(781), - [anon_sym_DOT_DOT_EQ] = ACTIONS(781), - [anon_sym_COMMA] = ACTIONS(781), - [anon_sym_COLON_COLON] = ACTIONS(781), - [anon_sym_DASH_GT] = ACTIONS(781), - [anon_sym_POUND] = ACTIONS(781), - [anon_sym_SQUOTE] = ACTIONS(779), - [anon_sym_as] = ACTIONS(779), - [anon_sym_async] = ACTIONS(779), - [anon_sym_await] = ACTIONS(779), - [anon_sym_break] = ACTIONS(779), - [anon_sym_const] = ACTIONS(779), - [anon_sym_continue] = ACTIONS(779), - [anon_sym_default] = ACTIONS(779), - [anon_sym_enum] = ACTIONS(779), - [anon_sym_fn] = ACTIONS(779), - [anon_sym_for] = ACTIONS(779), - [anon_sym_if] = ACTIONS(779), - [anon_sym_impl] = ACTIONS(779), - [anon_sym_let] = ACTIONS(779), - [anon_sym_loop] = ACTIONS(779), - [anon_sym_match] = ACTIONS(779), - [anon_sym_mod] = ACTIONS(779), - [anon_sym_pub] = ACTIONS(779), - [anon_sym_return] = ACTIONS(779), - [anon_sym_static] = ACTIONS(779), - [anon_sym_struct] = ACTIONS(779), - [anon_sym_trait] = ACTIONS(779), - [anon_sym_type] = ACTIONS(779), - [anon_sym_union] = ACTIONS(779), - [anon_sym_unsafe] = ACTIONS(779), - [anon_sym_use] = ACTIONS(779), - [anon_sym_where] = ACTIONS(779), - [anon_sym_while] = ACTIONS(779), - [sym_mutable_specifier] = ACTIONS(779), - [sym_integer_literal] = ACTIONS(781), - [aux_sym_string_literal_token1] = ACTIONS(781), - [sym_char_literal] = ACTIONS(781), - [anon_sym_true] = ACTIONS(779), - [anon_sym_false] = ACTIONS(779), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(779), - [sym_super] = ACTIONS(779), - [sym_crate] = ACTIONS(779), - [sym_metavariable] = ACTIONS(781), - [sym__raw_string_literal_start] = ACTIONS(781), - [sym_float_literal] = ACTIONS(781), - }, - [145] = { - [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1632), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(145), - [sym_block_comment] = STATE(145), - [aux_sym_enum_variant_list_repeat1] = STATE(209), - [sym_identifier] = ACTIONS(334), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(783), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [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(785), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(765), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [146] = { - [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1578), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(146), - [sym_block_comment] = STATE(146), - [aux_sym_enum_variant_list_repeat1] = STATE(1002), - [sym_identifier] = ACTIONS(787), - [anon_sym_LPAREN] = ACTIONS(790), - [anon_sym_LBRACK] = ACTIONS(793), - [anon_sym_RBRACK] = ACTIONS(796), - [anon_sym_LBRACE] = ACTIONS(798), - [anon_sym_STAR] = ACTIONS(801), - [anon_sym_u8] = ACTIONS(804), - [anon_sym_i8] = ACTIONS(804), - [anon_sym_u16] = ACTIONS(804), - [anon_sym_i16] = ACTIONS(804), - [anon_sym_u32] = ACTIONS(804), - [anon_sym_i32] = ACTIONS(804), - [anon_sym_u64] = ACTIONS(804), - [anon_sym_i64] = ACTIONS(804), - [anon_sym_u128] = ACTIONS(804), - [anon_sym_i128] = ACTIONS(804), - [anon_sym_isize] = ACTIONS(804), - [anon_sym_usize] = ACTIONS(804), - [anon_sym_f32] = ACTIONS(804), - [anon_sym_f64] = ACTIONS(804), - [anon_sym_bool] = ACTIONS(804), - [anon_sym_str] = ACTIONS(804), - [anon_sym_char] = ACTIONS(804), - [anon_sym_DASH] = ACTIONS(801), - [anon_sym_BANG] = ACTIONS(801), - [anon_sym_AMP] = ACTIONS(807), - [anon_sym_PIPE] = ACTIONS(810), - [anon_sym_LT] = ACTIONS(813), - [anon_sym_DOT_DOT] = ACTIONS(816), - [anon_sym_COMMA] = ACTIONS(796), - [anon_sym_COLON_COLON] = ACTIONS(819), - [anon_sym_POUND] = ACTIONS(822), - [anon_sym_SQUOTE] = ACTIONS(825), - [anon_sym_async] = ACTIONS(828), - [anon_sym_break] = ACTIONS(831), - [anon_sym_const] = ACTIONS(834), - [anon_sym_continue] = ACTIONS(837), - [anon_sym_default] = ACTIONS(840), - [anon_sym_for] = ACTIONS(843), - [anon_sym_if] = ACTIONS(846), - [anon_sym_loop] = ACTIONS(849), - [anon_sym_match] = ACTIONS(852), - [anon_sym_return] = ACTIONS(855), - [anon_sym_static] = ACTIONS(858), - [anon_sym_union] = ACTIONS(840), - [anon_sym_unsafe] = ACTIONS(861), - [anon_sym_while] = ACTIONS(864), - [anon_sym_yield] = ACTIONS(867), - [anon_sym_move] = ACTIONS(870), - [anon_sym_try] = ACTIONS(873), - [sym_integer_literal] = ACTIONS(876), - [aux_sym_string_literal_token1] = ACTIONS(879), - [sym_char_literal] = ACTIONS(876), - [anon_sym_true] = ACTIONS(882), - [anon_sym_false] = ACTIONS(882), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(885), - [sym_super] = ACTIONS(888), - [sym_crate] = ACTIONS(888), - [sym_metavariable] = ACTIONS(891), - [sym__raw_string_literal_start] = ACTIONS(894), - [sym_float_literal] = ACTIONS(876), - }, - [147] = { - [sym_line_comment] = STATE(147), - [sym_block_comment] = STATE(147), - [sym_identifier] = ACTIONS(897), - [anon_sym_SEMI] = ACTIONS(899), - [anon_sym_LPAREN] = ACTIONS(899), - [anon_sym_RPAREN] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(899), - [anon_sym_RBRACK] = ACTIONS(899), - [anon_sym_LBRACE] = ACTIONS(899), - [anon_sym_RBRACE] = ACTIONS(899), - [anon_sym_EQ_GT] = ACTIONS(899), - [anon_sym_COLON] = ACTIONS(897), - [anon_sym_DOLLAR] = ACTIONS(897), - [anon_sym_PLUS] = ACTIONS(897), - [anon_sym_STAR] = ACTIONS(897), - [anon_sym_QMARK] = ACTIONS(899), - [anon_sym_u8] = ACTIONS(897), - [anon_sym_i8] = ACTIONS(897), - [anon_sym_u16] = ACTIONS(897), - [anon_sym_i16] = ACTIONS(897), - [anon_sym_u32] = ACTIONS(897), - [anon_sym_i32] = ACTIONS(897), - [anon_sym_u64] = ACTIONS(897), - [anon_sym_i64] = ACTIONS(897), - [anon_sym_u128] = ACTIONS(897), - [anon_sym_i128] = ACTIONS(897), - [anon_sym_isize] = ACTIONS(897), - [anon_sym_usize] = ACTIONS(897), - [anon_sym_f32] = ACTIONS(897), - [anon_sym_f64] = ACTIONS(897), - [anon_sym_bool] = ACTIONS(897), - [anon_sym_str] = ACTIONS(897), - [anon_sym_char] = ACTIONS(897), - [anon_sym_DASH] = ACTIONS(897), - [anon_sym_SLASH] = ACTIONS(897), - [anon_sym_PERCENT] = ACTIONS(897), - [anon_sym_CARET] = ACTIONS(897), - [anon_sym_BANG] = ACTIONS(897), - [anon_sym_AMP] = ACTIONS(897), - [anon_sym_PIPE] = ACTIONS(897), - [anon_sym_AMP_AMP] = ACTIONS(899), - [anon_sym_PIPE_PIPE] = ACTIONS(899), - [anon_sym_LT_LT] = ACTIONS(897), - [anon_sym_GT_GT] = ACTIONS(897), - [anon_sym_PLUS_EQ] = ACTIONS(899), - [anon_sym_DASH_EQ] = ACTIONS(899), - [anon_sym_STAR_EQ] = ACTIONS(899), - [anon_sym_SLASH_EQ] = ACTIONS(899), - [anon_sym_PERCENT_EQ] = ACTIONS(899), - [anon_sym_CARET_EQ] = ACTIONS(899), - [anon_sym_AMP_EQ] = ACTIONS(899), - [anon_sym_PIPE_EQ] = ACTIONS(899), - [anon_sym_LT_LT_EQ] = ACTIONS(899), - [anon_sym_GT_GT_EQ] = ACTIONS(899), - [anon_sym_EQ] = ACTIONS(897), - [anon_sym_EQ_EQ] = ACTIONS(899), - [anon_sym_BANG_EQ] = ACTIONS(899), - [anon_sym_GT] = ACTIONS(897), - [anon_sym_LT] = ACTIONS(897), - [anon_sym_GT_EQ] = ACTIONS(899), - [anon_sym_LT_EQ] = ACTIONS(899), - [anon_sym_AT] = ACTIONS(899), - [anon_sym__] = ACTIONS(897), - [anon_sym_DOT] = ACTIONS(897), - [anon_sym_DOT_DOT] = ACTIONS(897), - [anon_sym_DOT_DOT_DOT] = ACTIONS(899), - [anon_sym_DOT_DOT_EQ] = ACTIONS(899), - [anon_sym_COMMA] = ACTIONS(899), - [anon_sym_COLON_COLON] = ACTIONS(899), - [anon_sym_DASH_GT] = ACTIONS(899), - [anon_sym_POUND] = ACTIONS(899), - [anon_sym_SQUOTE] = ACTIONS(897), - [anon_sym_as] = ACTIONS(897), - [anon_sym_async] = ACTIONS(897), - [anon_sym_await] = ACTIONS(897), - [anon_sym_break] = ACTIONS(897), - [anon_sym_const] = ACTIONS(897), - [anon_sym_continue] = ACTIONS(897), - [anon_sym_default] = ACTIONS(897), - [anon_sym_enum] = ACTIONS(897), - [anon_sym_fn] = ACTIONS(897), - [anon_sym_for] = ACTIONS(897), - [anon_sym_if] = ACTIONS(897), - [anon_sym_impl] = ACTIONS(897), - [anon_sym_let] = ACTIONS(897), - [anon_sym_loop] = ACTIONS(897), - [anon_sym_match] = ACTIONS(897), - [anon_sym_mod] = ACTIONS(897), - [anon_sym_pub] = ACTIONS(897), - [anon_sym_return] = ACTIONS(897), - [anon_sym_static] = ACTIONS(897), - [anon_sym_struct] = ACTIONS(897), - [anon_sym_trait] = ACTIONS(897), - [anon_sym_type] = ACTIONS(897), - [anon_sym_union] = ACTIONS(897), - [anon_sym_unsafe] = ACTIONS(897), - [anon_sym_use] = ACTIONS(897), - [anon_sym_where] = ACTIONS(897), - [anon_sym_while] = ACTIONS(897), - [sym_mutable_specifier] = ACTIONS(897), - [sym_integer_literal] = ACTIONS(899), - [aux_sym_string_literal_token1] = ACTIONS(899), - [sym_char_literal] = ACTIONS(899), - [anon_sym_true] = ACTIONS(897), - [anon_sym_false] = ACTIONS(897), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(897), - [sym_super] = ACTIONS(897), - [sym_crate] = ACTIONS(897), - [sym_metavariable] = ACTIONS(899), - [sym__raw_string_literal_start] = ACTIONS(899), - [sym_float_literal] = ACTIONS(899), - }, - [148] = { - [sym_line_comment] = STATE(148), - [sym_block_comment] = STATE(148), - [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_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(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [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), - }, - [149] = { - [sym_line_comment] = STATE(149), - [sym_block_comment] = STATE(149), - [sym_identifier] = ACTIONS(905), - [anon_sym_SEMI] = ACTIONS(907), - [anon_sym_LPAREN] = ACTIONS(907), - [anon_sym_RPAREN] = ACTIONS(907), - [anon_sym_LBRACK] = ACTIONS(907), - [anon_sym_RBRACK] = ACTIONS(907), - [anon_sym_LBRACE] = ACTIONS(907), - [anon_sym_RBRACE] = ACTIONS(907), - [anon_sym_EQ_GT] = ACTIONS(907), - [anon_sym_COLON] = ACTIONS(905), - [anon_sym_DOLLAR] = ACTIONS(905), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_QMARK] = ACTIONS(907), - [anon_sym_u8] = ACTIONS(905), - [anon_sym_i8] = ACTIONS(905), - [anon_sym_u16] = ACTIONS(905), - [anon_sym_i16] = ACTIONS(905), - [anon_sym_u32] = ACTIONS(905), - [anon_sym_i32] = ACTIONS(905), - [anon_sym_u64] = ACTIONS(905), - [anon_sym_i64] = ACTIONS(905), - [anon_sym_u128] = ACTIONS(905), - [anon_sym_i128] = ACTIONS(905), - [anon_sym_isize] = ACTIONS(905), - [anon_sym_usize] = ACTIONS(905), - [anon_sym_f32] = ACTIONS(905), - [anon_sym_f64] = ACTIONS(905), - [anon_sym_bool] = ACTIONS(905), - [anon_sym_str] = ACTIONS(905), - [anon_sym_char] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), - [anon_sym_SLASH] = ACTIONS(905), - [anon_sym_PERCENT] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(905), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_AMP] = ACTIONS(905), - [anon_sym_PIPE] = ACTIONS(905), - [anon_sym_AMP_AMP] = ACTIONS(907), - [anon_sym_PIPE_PIPE] = ACTIONS(907), - [anon_sym_LT_LT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(905), - [anon_sym_PLUS_EQ] = ACTIONS(907), - [anon_sym_DASH_EQ] = ACTIONS(907), - [anon_sym_STAR_EQ] = ACTIONS(907), - [anon_sym_SLASH_EQ] = ACTIONS(907), - [anon_sym_PERCENT_EQ] = ACTIONS(907), - [anon_sym_CARET_EQ] = ACTIONS(907), - [anon_sym_AMP_EQ] = ACTIONS(907), - [anon_sym_PIPE_EQ] = ACTIONS(907), - [anon_sym_LT_LT_EQ] = ACTIONS(907), - [anon_sym_GT_GT_EQ] = ACTIONS(907), - [anon_sym_EQ] = ACTIONS(905), - [anon_sym_EQ_EQ] = ACTIONS(907), - [anon_sym_BANG_EQ] = ACTIONS(907), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT_EQ] = ACTIONS(907), - [anon_sym_LT_EQ] = ACTIONS(907), - [anon_sym_AT] = ACTIONS(907), - [anon_sym__] = ACTIONS(905), - [anon_sym_DOT] = ACTIONS(905), - [anon_sym_DOT_DOT] = ACTIONS(905), - [anon_sym_DOT_DOT_DOT] = ACTIONS(907), - [anon_sym_DOT_DOT_EQ] = ACTIONS(907), - [anon_sym_COMMA] = ACTIONS(907), - [anon_sym_COLON_COLON] = ACTIONS(907), - [anon_sym_DASH_GT] = ACTIONS(907), - [anon_sym_POUND] = ACTIONS(907), - [anon_sym_SQUOTE] = ACTIONS(905), - [anon_sym_as] = ACTIONS(905), - [anon_sym_async] = ACTIONS(905), - [anon_sym_await] = ACTIONS(905), - [anon_sym_break] = ACTIONS(905), - [anon_sym_const] = ACTIONS(905), - [anon_sym_continue] = ACTIONS(905), - [anon_sym_default] = ACTIONS(905), - [anon_sym_enum] = ACTIONS(905), - [anon_sym_fn] = ACTIONS(905), - [anon_sym_for] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_impl] = ACTIONS(905), - [anon_sym_let] = ACTIONS(905), - [anon_sym_loop] = ACTIONS(905), - [anon_sym_match] = ACTIONS(905), - [anon_sym_mod] = ACTIONS(905), - [anon_sym_pub] = ACTIONS(905), - [anon_sym_return] = ACTIONS(905), - [anon_sym_static] = ACTIONS(905), - [anon_sym_struct] = ACTIONS(905), - [anon_sym_trait] = ACTIONS(905), - [anon_sym_type] = ACTIONS(905), - [anon_sym_union] = ACTIONS(905), - [anon_sym_unsafe] = ACTIONS(905), - [anon_sym_use] = ACTIONS(905), - [anon_sym_where] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [sym_mutable_specifier] = ACTIONS(905), - [sym_integer_literal] = ACTIONS(907), - [aux_sym_string_literal_token1] = ACTIONS(907), - [sym_char_literal] = ACTIONS(907), - [anon_sym_true] = ACTIONS(905), - [anon_sym_false] = ACTIONS(905), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(905), - [sym_super] = ACTIONS(905), - [sym_crate] = ACTIONS(905), - [sym_metavariable] = ACTIONS(907), - [sym__raw_string_literal_start] = ACTIONS(907), - [sym_float_literal] = ACTIONS(907), - }, - [150] = { - [sym_line_comment] = STATE(150), - [sym_block_comment] = STATE(150), - [aux_sym__non_special_token_repeat1] = STATE(150), [sym_identifier] = ACTIONS(731), - [anon_sym_SEMI] = ACTIONS(909), - [anon_sym_LPAREN] = ACTIONS(736), - [anon_sym_RPAREN] = ACTIONS(736), - [anon_sym_LBRACK] = ACTIONS(736), - [anon_sym_RBRACK] = ACTIONS(736), - [anon_sym_LBRACE] = ACTIONS(736), - [anon_sym_RBRACE] = ACTIONS(736), - [anon_sym_EQ_GT] = ACTIONS(909), - [anon_sym_COLON] = ACTIONS(912), - [anon_sym_DOLLAR] = ACTIONS(736), - [anon_sym_PLUS] = ACTIONS(912), - [anon_sym_STAR] = ACTIONS(912), - [anon_sym_QMARK] = ACTIONS(909), + [anon_sym_SEMI] = ACTIONS(733), + [anon_sym_LPAREN] = ACTIONS(733), + [anon_sym_RPAREN] = ACTIONS(733), + [anon_sym_LBRACK] = ACTIONS(733), + [anon_sym_RBRACK] = ACTIONS(733), + [anon_sym_LBRACE] = ACTIONS(733), + [anon_sym_RBRACE] = ACTIONS(733), + [anon_sym_EQ_GT] = ACTIONS(733), + [anon_sym_COLON] = ACTIONS(731), + [anon_sym_DOLLAR] = ACTIONS(731), + [anon_sym_PLUS] = ACTIONS(731), + [anon_sym_STAR] = ACTIONS(731), + [anon_sym_QMARK] = ACTIONS(733), [anon_sym_u8] = ACTIONS(731), [anon_sym_i8] = ACTIONS(731), [anon_sym_u16] = ACTIONS(731), @@ -33512,44 +32484,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(731), [anon_sym_str] = ACTIONS(731), [anon_sym_char] = ACTIONS(731), - [anon_sym_DASH] = ACTIONS(912), - [anon_sym_SLASH] = ACTIONS(912), - [anon_sym_PERCENT] = ACTIONS(912), - [anon_sym_CARET] = ACTIONS(912), - [anon_sym_BANG] = ACTIONS(912), - [anon_sym_AMP] = ACTIONS(912), - [anon_sym_PIPE] = ACTIONS(912), - [anon_sym_AMP_AMP] = ACTIONS(909), - [anon_sym_PIPE_PIPE] = ACTIONS(909), - [anon_sym_LT_LT] = ACTIONS(912), - [anon_sym_GT_GT] = ACTIONS(912), - [anon_sym_PLUS_EQ] = ACTIONS(909), - [anon_sym_DASH_EQ] = ACTIONS(909), - [anon_sym_STAR_EQ] = ACTIONS(909), - [anon_sym_SLASH_EQ] = ACTIONS(909), - [anon_sym_PERCENT_EQ] = ACTIONS(909), - [anon_sym_CARET_EQ] = ACTIONS(909), - [anon_sym_AMP_EQ] = ACTIONS(909), - [anon_sym_PIPE_EQ] = ACTIONS(909), - [anon_sym_LT_LT_EQ] = ACTIONS(909), - [anon_sym_GT_GT_EQ] = ACTIONS(909), - [anon_sym_EQ] = ACTIONS(912), - [anon_sym_EQ_EQ] = ACTIONS(909), - [anon_sym_BANG_EQ] = ACTIONS(909), - [anon_sym_GT] = ACTIONS(912), - [anon_sym_LT] = ACTIONS(912), - [anon_sym_GT_EQ] = ACTIONS(909), - [anon_sym_LT_EQ] = ACTIONS(909), - [anon_sym_AT] = ACTIONS(909), - [anon_sym__] = ACTIONS(912), - [anon_sym_DOT] = ACTIONS(912), - [anon_sym_DOT_DOT] = ACTIONS(912), - [anon_sym_DOT_DOT_DOT] = ACTIONS(909), - [anon_sym_DOT_DOT_EQ] = ACTIONS(909), - [anon_sym_COMMA] = ACTIONS(909), - [anon_sym_COLON_COLON] = ACTIONS(909), - [anon_sym_DASH_GT] = ACTIONS(909), - [anon_sym_POUND] = ACTIONS(909), + [anon_sym_DASH] = ACTIONS(731), + [anon_sym_SLASH] = ACTIONS(731), + [anon_sym_PERCENT] = ACTIONS(731), + [anon_sym_CARET] = ACTIONS(731), + [anon_sym_BANG] = ACTIONS(731), + [anon_sym_AMP] = ACTIONS(731), + [anon_sym_PIPE] = ACTIONS(731), + [anon_sym_AMP_AMP] = ACTIONS(733), + [anon_sym_PIPE_PIPE] = ACTIONS(733), + [anon_sym_LT_LT] = ACTIONS(731), + [anon_sym_GT_GT] = ACTIONS(731), + [anon_sym_PLUS_EQ] = ACTIONS(733), + [anon_sym_DASH_EQ] = ACTIONS(733), + [anon_sym_STAR_EQ] = ACTIONS(733), + [anon_sym_SLASH_EQ] = ACTIONS(733), + [anon_sym_PERCENT_EQ] = ACTIONS(733), + [anon_sym_CARET_EQ] = ACTIONS(733), + [anon_sym_AMP_EQ] = ACTIONS(733), + [anon_sym_PIPE_EQ] = ACTIONS(733), + [anon_sym_LT_LT_EQ] = ACTIONS(733), + [anon_sym_GT_GT_EQ] = ACTIONS(733), + [anon_sym_EQ] = ACTIONS(731), + [anon_sym_EQ_EQ] = ACTIONS(733), + [anon_sym_BANG_EQ] = ACTIONS(733), + [anon_sym_GT] = ACTIONS(731), + [anon_sym_LT] = ACTIONS(731), + [anon_sym_GT_EQ] = ACTIONS(733), + [anon_sym_LT_EQ] = ACTIONS(733), + [anon_sym_AT] = ACTIONS(733), + [anon_sym__] = ACTIONS(731), + [anon_sym_DOT] = ACTIONS(731), + [anon_sym_DOT_DOT] = ACTIONS(731), + [anon_sym_DOT_DOT_DOT] = ACTIONS(733), + [anon_sym_DOT_DOT_EQ] = ACTIONS(733), + [anon_sym_COMMA] = ACTIONS(733), + [anon_sym_COLON_COLON] = ACTIONS(733), + [anon_sym_DASH_GT] = ACTIONS(733), + [anon_sym_POUND] = ACTIONS(733), [anon_sym_SQUOTE] = ACTIONS(731), [anon_sym_as] = ACTIONS(731), [anon_sym_async] = ACTIONS(731), @@ -33579,9 +32551,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(731), [anon_sym_while] = ACTIONS(731), [sym_mutable_specifier] = ACTIONS(731), - [sym_integer_literal] = ACTIONS(736), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(736), + [sym_integer_literal] = ACTIONS(733), + [aux_sym_string_literal_token1] = ACTIONS(733), + [sym_char_literal] = ACTIONS(733), [anon_sym_true] = ACTIONS(731), [anon_sym_false] = ACTIONS(731), [anon_sym_SLASH_SLASH] = ACTIONS(101), @@ -33589,64 +32561,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_self] = ACTIONS(731), [sym_super] = ACTIONS(731), [sym_crate] = ACTIONS(731), - [sym__raw_string_literal_start] = ACTIONS(736), - [sym_float_literal] = ACTIONS(736), + [sym_metavariable] = ACTIONS(733), + [sym__raw_string_literal_start] = ACTIONS(733), + [sym_float_literal] = ACTIONS(733), }, - [151] = { + [142] = { [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1569), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(151), - [sym_block_comment] = STATE(151), - [aux_sym_enum_variant_list_repeat1] = STATE(146), + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1544), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1268), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), + [sym_line_comment] = STATE(142), + [sym_block_comment] = STATE(142), + [aux_sym_enum_variant_list_repeat1] = STATE(150), [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(915), + [anon_sym_RBRACK] = ACTIONS(873), [anon_sym_LBRACE] = ACTIONS(338), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -33672,9 +32645,9 @@ 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(917), + [anon_sym_COMMA] = ACTIONS(875), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(871), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), [anon_sym_break] = ACTIONS(41), @@ -33707,406 +32680,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [152] = { - [sym_line_comment] = STATE(152), - [sym_block_comment] = STATE(152), - [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_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(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [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), - }, - [153] = { - [sym_line_comment] = STATE(153), - [sym_block_comment] = STATE(153), - [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_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(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [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), - }, - [154] = { - [sym_line_comment] = STATE(154), - [sym_block_comment] = STATE(154), - [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_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(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [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), - }, - [155] = { + [143] = { [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1555), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(155), - [sym_block_comment] = STATE(155), - [aux_sym_enum_variant_list_repeat1] = STATE(151), + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1553), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1268), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), + [sym_line_comment] = STATE(143), + [sym_block_comment] = STATE(143), + [aux_sym_enum_variant_list_repeat1] = STATE(142), [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(931), + [anon_sym_RBRACK] = ACTIONS(877), [anon_sym_LBRACE] = ACTIONS(338), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -34132,9 +32760,9 @@ 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(933), + [anon_sym_COMMA] = ACTIONS(879), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(871), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), [anon_sym_break] = ACTIONS(41), @@ -34167,291 +32795,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [156] = { - [sym_line_comment] = STATE(156), - [sym_block_comment] = STATE(156), - [sym_identifier] = ACTIONS(935), - [anon_sym_SEMI] = ACTIONS(937), - [anon_sym_LPAREN] = ACTIONS(937), - [anon_sym_RPAREN] = ACTIONS(937), - [anon_sym_LBRACK] = ACTIONS(937), - [anon_sym_RBRACK] = ACTIONS(937), - [anon_sym_LBRACE] = ACTIONS(937), - [anon_sym_RBRACE] = ACTIONS(937), - [anon_sym_EQ_GT] = ACTIONS(937), - [anon_sym_COLON] = ACTIONS(935), - [anon_sym_DOLLAR] = ACTIONS(935), - [anon_sym_PLUS] = ACTIONS(935), - [anon_sym_STAR] = ACTIONS(935), - [anon_sym_QMARK] = ACTIONS(937), - [anon_sym_u8] = ACTIONS(935), - [anon_sym_i8] = ACTIONS(935), - [anon_sym_u16] = ACTIONS(935), - [anon_sym_i16] = ACTIONS(935), - [anon_sym_u32] = ACTIONS(935), - [anon_sym_i32] = ACTIONS(935), - [anon_sym_u64] = ACTIONS(935), - [anon_sym_i64] = ACTIONS(935), - [anon_sym_u128] = ACTIONS(935), - [anon_sym_i128] = ACTIONS(935), - [anon_sym_isize] = ACTIONS(935), - [anon_sym_usize] = ACTIONS(935), - [anon_sym_f32] = ACTIONS(935), - [anon_sym_f64] = ACTIONS(935), - [anon_sym_bool] = ACTIONS(935), - [anon_sym_str] = ACTIONS(935), - [anon_sym_char] = ACTIONS(935), - [anon_sym_DASH] = ACTIONS(935), - [anon_sym_SLASH] = ACTIONS(935), - [anon_sym_PERCENT] = ACTIONS(935), - [anon_sym_CARET] = ACTIONS(935), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_AMP] = ACTIONS(935), - [anon_sym_PIPE] = ACTIONS(935), - [anon_sym_AMP_AMP] = ACTIONS(937), - [anon_sym_PIPE_PIPE] = ACTIONS(937), - [anon_sym_LT_LT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(935), - [anon_sym_PLUS_EQ] = ACTIONS(937), - [anon_sym_DASH_EQ] = ACTIONS(937), - [anon_sym_STAR_EQ] = ACTIONS(937), - [anon_sym_SLASH_EQ] = ACTIONS(937), - [anon_sym_PERCENT_EQ] = ACTIONS(937), - [anon_sym_CARET_EQ] = ACTIONS(937), - [anon_sym_AMP_EQ] = ACTIONS(937), - [anon_sym_PIPE_EQ] = ACTIONS(937), - [anon_sym_LT_LT_EQ] = ACTIONS(937), - [anon_sym_GT_GT_EQ] = ACTIONS(937), - [anon_sym_EQ] = ACTIONS(935), - [anon_sym_EQ_EQ] = ACTIONS(937), - [anon_sym_BANG_EQ] = ACTIONS(937), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT_EQ] = ACTIONS(937), - [anon_sym_LT_EQ] = ACTIONS(937), - [anon_sym_AT] = ACTIONS(937), - [anon_sym__] = ACTIONS(935), - [anon_sym_DOT] = ACTIONS(935), - [anon_sym_DOT_DOT] = ACTIONS(935), - [anon_sym_DOT_DOT_DOT] = ACTIONS(937), - [anon_sym_DOT_DOT_EQ] = ACTIONS(937), - [anon_sym_COMMA] = ACTIONS(937), - [anon_sym_COLON_COLON] = ACTIONS(937), - [anon_sym_DASH_GT] = ACTIONS(937), - [anon_sym_POUND] = ACTIONS(937), - [anon_sym_SQUOTE] = ACTIONS(935), - [anon_sym_as] = ACTIONS(935), - [anon_sym_async] = ACTIONS(935), - [anon_sym_await] = ACTIONS(935), - [anon_sym_break] = ACTIONS(935), - [anon_sym_const] = ACTIONS(935), - [anon_sym_continue] = ACTIONS(935), - [anon_sym_default] = ACTIONS(935), - [anon_sym_enum] = ACTIONS(935), - [anon_sym_fn] = ACTIONS(935), - [anon_sym_for] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_impl] = ACTIONS(935), - [anon_sym_let] = ACTIONS(935), - [anon_sym_loop] = ACTIONS(935), - [anon_sym_match] = ACTIONS(935), - [anon_sym_mod] = ACTIONS(935), - [anon_sym_pub] = ACTIONS(935), - [anon_sym_return] = ACTIONS(935), - [anon_sym_static] = ACTIONS(935), - [anon_sym_struct] = ACTIONS(935), - [anon_sym_trait] = ACTIONS(935), - [anon_sym_type] = ACTIONS(935), - [anon_sym_union] = ACTIONS(935), - [anon_sym_unsafe] = ACTIONS(935), - [anon_sym_use] = ACTIONS(935), - [anon_sym_where] = ACTIONS(935), - [anon_sym_while] = ACTIONS(935), - [sym_mutable_specifier] = ACTIONS(935), - [sym_integer_literal] = ACTIONS(937), - [aux_sym_string_literal_token1] = ACTIONS(937), - [sym_char_literal] = ACTIONS(937), - [anon_sym_true] = ACTIONS(935), - [anon_sym_false] = ACTIONS(935), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(935), - [sym_super] = ACTIONS(935), - [sym_crate] = ACTIONS(935), - [sym_metavariable] = ACTIONS(937), - [sym__raw_string_literal_start] = ACTIONS(937), - [sym_float_literal] = ACTIONS(937), - }, - [157] = { - [sym_line_comment] = STATE(157), - [sym_block_comment] = STATE(157), - [sym_identifier] = ACTIONS(745), - [anon_sym_SEMI] = ACTIONS(747), - [anon_sym_LPAREN] = ACTIONS(747), - [anon_sym_RPAREN] = ACTIONS(747), - [anon_sym_LBRACK] = ACTIONS(747), - [anon_sym_RBRACK] = ACTIONS(747), - [anon_sym_LBRACE] = ACTIONS(747), - [anon_sym_RBRACE] = ACTIONS(747), - [anon_sym_EQ_GT] = ACTIONS(747), - [anon_sym_COLON] = ACTIONS(745), - [anon_sym_DOLLAR] = ACTIONS(745), - [anon_sym_PLUS] = ACTIONS(745), - [anon_sym_STAR] = ACTIONS(745), - [anon_sym_QMARK] = ACTIONS(747), - [anon_sym_u8] = ACTIONS(745), - [anon_sym_i8] = ACTIONS(745), - [anon_sym_u16] = ACTIONS(745), - [anon_sym_i16] = ACTIONS(745), - [anon_sym_u32] = ACTIONS(745), - [anon_sym_i32] = ACTIONS(745), - [anon_sym_u64] = ACTIONS(745), - [anon_sym_i64] = ACTIONS(745), - [anon_sym_u128] = ACTIONS(745), - [anon_sym_i128] = ACTIONS(745), - [anon_sym_isize] = ACTIONS(745), - [anon_sym_usize] = ACTIONS(745), - [anon_sym_f32] = ACTIONS(745), - [anon_sym_f64] = ACTIONS(745), - [anon_sym_bool] = ACTIONS(745), - [anon_sym_str] = ACTIONS(745), - [anon_sym_char] = ACTIONS(745), - [anon_sym_DASH] = ACTIONS(745), - [anon_sym_SLASH] = ACTIONS(745), - [anon_sym_PERCENT] = ACTIONS(745), - [anon_sym_CARET] = ACTIONS(745), - [anon_sym_BANG] = ACTIONS(745), - [anon_sym_AMP] = ACTIONS(745), - [anon_sym_PIPE] = ACTIONS(745), - [anon_sym_AMP_AMP] = ACTIONS(747), - [anon_sym_PIPE_PIPE] = ACTIONS(747), - [anon_sym_LT_LT] = ACTIONS(745), - [anon_sym_GT_GT] = ACTIONS(745), - [anon_sym_PLUS_EQ] = ACTIONS(747), - [anon_sym_DASH_EQ] = ACTIONS(747), - [anon_sym_STAR_EQ] = ACTIONS(747), - [anon_sym_SLASH_EQ] = ACTIONS(747), - [anon_sym_PERCENT_EQ] = ACTIONS(747), - [anon_sym_CARET_EQ] = ACTIONS(747), - [anon_sym_AMP_EQ] = ACTIONS(747), - [anon_sym_PIPE_EQ] = ACTIONS(747), - [anon_sym_LT_LT_EQ] = ACTIONS(747), - [anon_sym_GT_GT_EQ] = ACTIONS(747), - [anon_sym_EQ] = ACTIONS(745), - [anon_sym_EQ_EQ] = ACTIONS(747), - [anon_sym_BANG_EQ] = ACTIONS(747), - [anon_sym_GT] = ACTIONS(745), - [anon_sym_LT] = ACTIONS(745), - [anon_sym_GT_EQ] = ACTIONS(747), - [anon_sym_LT_EQ] = ACTIONS(747), - [anon_sym_AT] = ACTIONS(747), - [anon_sym__] = ACTIONS(745), - [anon_sym_DOT] = ACTIONS(745), - [anon_sym_DOT_DOT] = ACTIONS(745), - [anon_sym_DOT_DOT_DOT] = ACTIONS(747), - [anon_sym_DOT_DOT_EQ] = ACTIONS(747), - [anon_sym_COMMA] = ACTIONS(747), - [anon_sym_COLON_COLON] = ACTIONS(747), - [anon_sym_DASH_GT] = ACTIONS(747), - [anon_sym_POUND] = ACTIONS(747), - [anon_sym_SQUOTE] = ACTIONS(745), - [anon_sym_as] = ACTIONS(745), - [anon_sym_async] = ACTIONS(745), - [anon_sym_await] = ACTIONS(745), - [anon_sym_break] = ACTIONS(745), - [anon_sym_const] = ACTIONS(745), - [anon_sym_continue] = ACTIONS(745), - [anon_sym_default] = ACTIONS(745), - [anon_sym_enum] = ACTIONS(745), - [anon_sym_fn] = ACTIONS(745), - [anon_sym_for] = ACTIONS(745), - [anon_sym_if] = ACTIONS(745), - [anon_sym_impl] = ACTIONS(745), - [anon_sym_let] = ACTIONS(745), - [anon_sym_loop] = ACTIONS(745), - [anon_sym_match] = ACTIONS(745), - [anon_sym_mod] = ACTIONS(745), - [anon_sym_pub] = ACTIONS(745), - [anon_sym_return] = ACTIONS(745), - [anon_sym_static] = ACTIONS(745), - [anon_sym_struct] = ACTIONS(745), - [anon_sym_trait] = ACTIONS(745), - [anon_sym_type] = ACTIONS(745), - [anon_sym_union] = ACTIONS(745), - [anon_sym_unsafe] = ACTIONS(745), - [anon_sym_use] = ACTIONS(745), - [anon_sym_where] = ACTIONS(745), - [anon_sym_while] = ACTIONS(745), - [sym_mutable_specifier] = ACTIONS(745), - [sym_integer_literal] = ACTIONS(747), - [aux_sym_string_literal_token1] = ACTIONS(747), - [sym_char_literal] = ACTIONS(747), - [anon_sym_true] = ACTIONS(745), - [anon_sym_false] = ACTIONS(745), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(745), - [sym_super] = ACTIONS(745), - [sym_crate] = ACTIONS(745), - [sym_metavariable] = ACTIONS(747), - [sym__raw_string_literal_start] = ACTIONS(747), - [sym_float_literal] = ACTIONS(747), - }, - [158] = { + [144] = { [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1549), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(158), - [sym_block_comment] = STATE(158), - [aux_sym_enum_variant_list_repeat1] = STATE(163), + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1622), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1268), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), + [sym_line_comment] = STATE(144), + [sym_block_comment] = STATE(144), + [aux_sym_enum_variant_list_repeat1] = STATE(212), [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(881), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(939), [anon_sym_LBRACE] = ACTIONS(338), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -34477,9 +32875,9 @@ 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(941), + [anon_sym_COMMA] = ACTIONS(883), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(871), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), [anon_sym_break] = ACTIONS(41), @@ -34512,156 +32910,1076 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [159] = { - [sym_line_comment] = STATE(159), - [sym_block_comment] = STATE(159), - [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_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(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [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), + [145] = { + [sym_line_comment] = STATE(145), + [sym_block_comment] = STATE(145), + [sym_identifier] = ACTIONS(885), + [anon_sym_SEMI] = ACTIONS(887), + [anon_sym_LPAREN] = ACTIONS(887), + [anon_sym_RPAREN] = ACTIONS(887), + [anon_sym_LBRACK] = ACTIONS(887), + [anon_sym_RBRACK] = ACTIONS(887), + [anon_sym_LBRACE] = ACTIONS(887), + [anon_sym_RBRACE] = ACTIONS(887), + [anon_sym_EQ_GT] = ACTIONS(887), + [anon_sym_COLON] = ACTIONS(885), + [anon_sym_DOLLAR] = ACTIONS(885), + [anon_sym_PLUS] = ACTIONS(885), + [anon_sym_STAR] = ACTIONS(885), + [anon_sym_QMARK] = ACTIONS(887), + [anon_sym_u8] = ACTIONS(885), + [anon_sym_i8] = ACTIONS(885), + [anon_sym_u16] = ACTIONS(885), + [anon_sym_i16] = ACTIONS(885), + [anon_sym_u32] = ACTIONS(885), + [anon_sym_i32] = ACTIONS(885), + [anon_sym_u64] = ACTIONS(885), + [anon_sym_i64] = ACTIONS(885), + [anon_sym_u128] = ACTIONS(885), + [anon_sym_i128] = ACTIONS(885), + [anon_sym_isize] = ACTIONS(885), + [anon_sym_usize] = ACTIONS(885), + [anon_sym_f32] = ACTIONS(885), + [anon_sym_f64] = ACTIONS(885), + [anon_sym_bool] = ACTIONS(885), + [anon_sym_str] = ACTIONS(885), + [anon_sym_char] = ACTIONS(885), + [anon_sym_DASH] = ACTIONS(885), + [anon_sym_SLASH] = ACTIONS(885), + [anon_sym_PERCENT] = ACTIONS(885), + [anon_sym_CARET] = ACTIONS(885), + [anon_sym_BANG] = ACTIONS(885), + [anon_sym_AMP] = ACTIONS(885), + [anon_sym_PIPE] = ACTIONS(885), + [anon_sym_AMP_AMP] = ACTIONS(887), + [anon_sym_PIPE_PIPE] = ACTIONS(887), + [anon_sym_LT_LT] = ACTIONS(885), + [anon_sym_GT_GT] = ACTIONS(885), + [anon_sym_PLUS_EQ] = ACTIONS(887), + [anon_sym_DASH_EQ] = ACTIONS(887), + [anon_sym_STAR_EQ] = ACTIONS(887), + [anon_sym_SLASH_EQ] = ACTIONS(887), + [anon_sym_PERCENT_EQ] = ACTIONS(887), + [anon_sym_CARET_EQ] = ACTIONS(887), + [anon_sym_AMP_EQ] = ACTIONS(887), + [anon_sym_PIPE_EQ] = ACTIONS(887), + [anon_sym_LT_LT_EQ] = ACTIONS(887), + [anon_sym_GT_GT_EQ] = ACTIONS(887), + [anon_sym_EQ] = ACTIONS(885), + [anon_sym_EQ_EQ] = ACTIONS(887), + [anon_sym_BANG_EQ] = ACTIONS(887), + [anon_sym_GT] = ACTIONS(885), + [anon_sym_LT] = ACTIONS(885), + [anon_sym_GT_EQ] = ACTIONS(887), + [anon_sym_LT_EQ] = ACTIONS(887), + [anon_sym_AT] = ACTIONS(887), + [anon_sym__] = ACTIONS(885), + [anon_sym_DOT] = ACTIONS(885), + [anon_sym_DOT_DOT] = ACTIONS(885), + [anon_sym_DOT_DOT_DOT] = ACTIONS(887), + [anon_sym_DOT_DOT_EQ] = ACTIONS(887), + [anon_sym_COMMA] = ACTIONS(887), + [anon_sym_COLON_COLON] = ACTIONS(887), + [anon_sym_DASH_GT] = ACTIONS(887), + [anon_sym_POUND] = ACTIONS(887), + [anon_sym_SQUOTE] = ACTIONS(885), + [anon_sym_as] = ACTIONS(885), + [anon_sym_async] = ACTIONS(885), + [anon_sym_await] = ACTIONS(885), + [anon_sym_break] = ACTIONS(885), + [anon_sym_const] = ACTIONS(885), + [anon_sym_continue] = ACTIONS(885), + [anon_sym_default] = ACTIONS(885), + [anon_sym_enum] = ACTIONS(885), + [anon_sym_fn] = ACTIONS(885), + [anon_sym_for] = ACTIONS(885), + [anon_sym_if] = ACTIONS(885), + [anon_sym_impl] = ACTIONS(885), + [anon_sym_let] = ACTIONS(885), + [anon_sym_loop] = ACTIONS(885), + [anon_sym_match] = ACTIONS(885), + [anon_sym_mod] = ACTIONS(885), + [anon_sym_pub] = ACTIONS(885), + [anon_sym_return] = ACTIONS(885), + [anon_sym_static] = ACTIONS(885), + [anon_sym_struct] = ACTIONS(885), + [anon_sym_trait] = ACTIONS(885), + [anon_sym_type] = ACTIONS(885), + [anon_sym_union] = ACTIONS(885), + [anon_sym_unsafe] = ACTIONS(885), + [anon_sym_use] = ACTIONS(885), + [anon_sym_where] = ACTIONS(885), + [anon_sym_while] = ACTIONS(885), + [sym_mutable_specifier] = ACTIONS(885), + [sym_integer_literal] = ACTIONS(887), + [aux_sym_string_literal_token1] = ACTIONS(887), + [sym_char_literal] = ACTIONS(887), + [anon_sym_true] = ACTIONS(885), + [anon_sym_false] = ACTIONS(885), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(885), + [sym_super] = ACTIONS(885), + [sym_crate] = ACTIONS(885), + [sym_metavariable] = ACTIONS(887), + [sym__raw_string_literal_start] = ACTIONS(887), + [sym_float_literal] = ACTIONS(887), }, - [160] = { - [sym_line_comment] = STATE(160), - [sym_block_comment] = STATE(160), - [aux_sym__non_special_token_repeat1] = STATE(150), - [sym_identifier] = ACTIONS(947), + [146] = { + [sym_line_comment] = STATE(146), + [sym_block_comment] = STATE(146), + [sym_identifier] = ACTIONS(889), + [anon_sym_SEMI] = ACTIONS(891), + [anon_sym_LPAREN] = ACTIONS(891), + [anon_sym_RPAREN] = ACTIONS(891), + [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_RBRACK] = ACTIONS(891), + [anon_sym_LBRACE] = ACTIONS(891), + [anon_sym_RBRACE] = ACTIONS(891), + [anon_sym_EQ_GT] = ACTIONS(891), + [anon_sym_COLON] = ACTIONS(889), + [anon_sym_DOLLAR] = ACTIONS(889), + [anon_sym_PLUS] = ACTIONS(889), + [anon_sym_STAR] = ACTIONS(889), + [anon_sym_QMARK] = ACTIONS(891), + [anon_sym_u8] = ACTIONS(889), + [anon_sym_i8] = ACTIONS(889), + [anon_sym_u16] = ACTIONS(889), + [anon_sym_i16] = ACTIONS(889), + [anon_sym_u32] = ACTIONS(889), + [anon_sym_i32] = ACTIONS(889), + [anon_sym_u64] = ACTIONS(889), + [anon_sym_i64] = ACTIONS(889), + [anon_sym_u128] = ACTIONS(889), + [anon_sym_i128] = ACTIONS(889), + [anon_sym_isize] = ACTIONS(889), + [anon_sym_usize] = ACTIONS(889), + [anon_sym_f32] = ACTIONS(889), + [anon_sym_f64] = ACTIONS(889), + [anon_sym_bool] = ACTIONS(889), + [anon_sym_str] = ACTIONS(889), + [anon_sym_char] = ACTIONS(889), + [anon_sym_DASH] = ACTIONS(889), + [anon_sym_SLASH] = ACTIONS(889), + [anon_sym_PERCENT] = ACTIONS(889), + [anon_sym_CARET] = ACTIONS(889), + [anon_sym_BANG] = ACTIONS(889), + [anon_sym_AMP] = ACTIONS(889), + [anon_sym_PIPE] = ACTIONS(889), + [anon_sym_AMP_AMP] = ACTIONS(891), + [anon_sym_PIPE_PIPE] = ACTIONS(891), + [anon_sym_LT_LT] = ACTIONS(889), + [anon_sym_GT_GT] = ACTIONS(889), + [anon_sym_PLUS_EQ] = ACTIONS(891), + [anon_sym_DASH_EQ] = ACTIONS(891), + [anon_sym_STAR_EQ] = ACTIONS(891), + [anon_sym_SLASH_EQ] = ACTIONS(891), + [anon_sym_PERCENT_EQ] = ACTIONS(891), + [anon_sym_CARET_EQ] = ACTIONS(891), + [anon_sym_AMP_EQ] = ACTIONS(891), + [anon_sym_PIPE_EQ] = ACTIONS(891), + [anon_sym_LT_LT_EQ] = ACTIONS(891), + [anon_sym_GT_GT_EQ] = ACTIONS(891), + [anon_sym_EQ] = ACTIONS(889), + [anon_sym_EQ_EQ] = ACTIONS(891), + [anon_sym_BANG_EQ] = ACTIONS(891), + [anon_sym_GT] = ACTIONS(889), + [anon_sym_LT] = ACTIONS(889), + [anon_sym_GT_EQ] = ACTIONS(891), + [anon_sym_LT_EQ] = ACTIONS(891), + [anon_sym_AT] = ACTIONS(891), + [anon_sym__] = ACTIONS(889), + [anon_sym_DOT] = ACTIONS(889), + [anon_sym_DOT_DOT] = ACTIONS(889), + [anon_sym_DOT_DOT_DOT] = ACTIONS(891), + [anon_sym_DOT_DOT_EQ] = ACTIONS(891), + [anon_sym_COMMA] = ACTIONS(891), + [anon_sym_COLON_COLON] = ACTIONS(891), + [anon_sym_DASH_GT] = ACTIONS(891), + [anon_sym_POUND] = ACTIONS(891), + [anon_sym_SQUOTE] = ACTIONS(889), + [anon_sym_as] = ACTIONS(889), + [anon_sym_async] = ACTIONS(889), + [anon_sym_await] = ACTIONS(889), + [anon_sym_break] = ACTIONS(889), + [anon_sym_const] = ACTIONS(889), + [anon_sym_continue] = ACTIONS(889), + [anon_sym_default] = ACTIONS(889), + [anon_sym_enum] = ACTIONS(889), + [anon_sym_fn] = ACTIONS(889), + [anon_sym_for] = ACTIONS(889), + [anon_sym_if] = ACTIONS(889), + [anon_sym_impl] = ACTIONS(889), + [anon_sym_let] = ACTIONS(889), + [anon_sym_loop] = ACTIONS(889), + [anon_sym_match] = ACTIONS(889), + [anon_sym_mod] = ACTIONS(889), + [anon_sym_pub] = ACTIONS(889), + [anon_sym_return] = ACTIONS(889), + [anon_sym_static] = ACTIONS(889), + [anon_sym_struct] = ACTIONS(889), + [anon_sym_trait] = ACTIONS(889), + [anon_sym_type] = ACTIONS(889), + [anon_sym_union] = ACTIONS(889), + [anon_sym_unsafe] = ACTIONS(889), + [anon_sym_use] = ACTIONS(889), + [anon_sym_where] = ACTIONS(889), + [anon_sym_while] = ACTIONS(889), + [sym_mutable_specifier] = ACTIONS(889), + [sym_integer_literal] = ACTIONS(891), + [aux_sym_string_literal_token1] = ACTIONS(891), + [sym_char_literal] = ACTIONS(891), + [anon_sym_true] = ACTIONS(889), + [anon_sym_false] = ACTIONS(889), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(889), + [sym_super] = ACTIONS(889), + [sym_crate] = ACTIONS(889), + [sym_metavariable] = ACTIONS(891), + [sym__raw_string_literal_start] = ACTIONS(891), + [sym_float_literal] = ACTIONS(891), + }, + [147] = { + [sym_line_comment] = STATE(147), + [sym_block_comment] = STATE(147), + [sym_identifier] = ACTIONS(893), + [anon_sym_SEMI] = ACTIONS(895), + [anon_sym_LPAREN] = ACTIONS(895), + [anon_sym_RPAREN] = ACTIONS(895), + [anon_sym_LBRACK] = ACTIONS(895), + [anon_sym_RBRACK] = ACTIONS(895), + [anon_sym_LBRACE] = ACTIONS(895), + [anon_sym_RBRACE] = ACTIONS(895), + [anon_sym_EQ_GT] = ACTIONS(895), + [anon_sym_COLON] = ACTIONS(893), + [anon_sym_DOLLAR] = ACTIONS(893), + [anon_sym_PLUS] = ACTIONS(893), + [anon_sym_STAR] = ACTIONS(893), + [anon_sym_QMARK] = ACTIONS(895), + [anon_sym_u8] = ACTIONS(893), + [anon_sym_i8] = ACTIONS(893), + [anon_sym_u16] = ACTIONS(893), + [anon_sym_i16] = ACTIONS(893), + [anon_sym_u32] = ACTIONS(893), + [anon_sym_i32] = ACTIONS(893), + [anon_sym_u64] = ACTIONS(893), + [anon_sym_i64] = ACTIONS(893), + [anon_sym_u128] = ACTIONS(893), + [anon_sym_i128] = ACTIONS(893), + [anon_sym_isize] = ACTIONS(893), + [anon_sym_usize] = ACTIONS(893), + [anon_sym_f32] = ACTIONS(893), + [anon_sym_f64] = ACTIONS(893), + [anon_sym_bool] = ACTIONS(893), + [anon_sym_str] = ACTIONS(893), + [anon_sym_char] = ACTIONS(893), + [anon_sym_DASH] = ACTIONS(893), + [anon_sym_SLASH] = ACTIONS(893), + [anon_sym_PERCENT] = ACTIONS(893), + [anon_sym_CARET] = ACTIONS(893), + [anon_sym_BANG] = ACTIONS(893), + [anon_sym_AMP] = ACTIONS(893), + [anon_sym_PIPE] = ACTIONS(893), + [anon_sym_AMP_AMP] = ACTIONS(895), + [anon_sym_PIPE_PIPE] = ACTIONS(895), + [anon_sym_LT_LT] = ACTIONS(893), + [anon_sym_GT_GT] = ACTIONS(893), + [anon_sym_PLUS_EQ] = ACTIONS(895), + [anon_sym_DASH_EQ] = ACTIONS(895), + [anon_sym_STAR_EQ] = ACTIONS(895), + [anon_sym_SLASH_EQ] = ACTIONS(895), + [anon_sym_PERCENT_EQ] = ACTIONS(895), + [anon_sym_CARET_EQ] = ACTIONS(895), + [anon_sym_AMP_EQ] = ACTIONS(895), + [anon_sym_PIPE_EQ] = ACTIONS(895), + [anon_sym_LT_LT_EQ] = ACTIONS(895), + [anon_sym_GT_GT_EQ] = ACTIONS(895), + [anon_sym_EQ] = ACTIONS(893), + [anon_sym_EQ_EQ] = ACTIONS(895), + [anon_sym_BANG_EQ] = ACTIONS(895), + [anon_sym_GT] = ACTIONS(893), + [anon_sym_LT] = ACTIONS(893), + [anon_sym_GT_EQ] = ACTIONS(895), + [anon_sym_LT_EQ] = ACTIONS(895), + [anon_sym_AT] = ACTIONS(895), + [anon_sym__] = ACTIONS(893), + [anon_sym_DOT] = ACTIONS(893), + [anon_sym_DOT_DOT] = ACTIONS(893), + [anon_sym_DOT_DOT_DOT] = ACTIONS(895), + [anon_sym_DOT_DOT_EQ] = ACTIONS(895), + [anon_sym_COMMA] = ACTIONS(895), + [anon_sym_COLON_COLON] = ACTIONS(895), + [anon_sym_DASH_GT] = ACTIONS(895), + [anon_sym_POUND] = ACTIONS(895), + [anon_sym_SQUOTE] = ACTIONS(893), + [anon_sym_as] = ACTIONS(893), + [anon_sym_async] = ACTIONS(893), + [anon_sym_await] = ACTIONS(893), + [anon_sym_break] = ACTIONS(893), + [anon_sym_const] = ACTIONS(893), + [anon_sym_continue] = ACTIONS(893), + [anon_sym_default] = ACTIONS(893), + [anon_sym_enum] = ACTIONS(893), + [anon_sym_fn] = ACTIONS(893), + [anon_sym_for] = ACTIONS(893), + [anon_sym_if] = ACTIONS(893), + [anon_sym_impl] = ACTIONS(893), + [anon_sym_let] = ACTIONS(893), + [anon_sym_loop] = ACTIONS(893), + [anon_sym_match] = ACTIONS(893), + [anon_sym_mod] = ACTIONS(893), + [anon_sym_pub] = ACTIONS(893), + [anon_sym_return] = ACTIONS(893), + [anon_sym_static] = ACTIONS(893), + [anon_sym_struct] = ACTIONS(893), + [anon_sym_trait] = ACTIONS(893), + [anon_sym_type] = ACTIONS(893), + [anon_sym_union] = ACTIONS(893), + [anon_sym_unsafe] = ACTIONS(893), + [anon_sym_use] = ACTIONS(893), + [anon_sym_where] = ACTIONS(893), + [anon_sym_while] = ACTIONS(893), + [sym_mutable_specifier] = ACTIONS(893), + [sym_integer_literal] = ACTIONS(895), + [aux_sym_string_literal_token1] = ACTIONS(895), + [sym_char_literal] = ACTIONS(895), + [anon_sym_true] = ACTIONS(893), + [anon_sym_false] = ACTIONS(893), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(893), + [sym_super] = ACTIONS(893), + [sym_crate] = ACTIONS(893), + [sym_metavariable] = ACTIONS(895), + [sym__raw_string_literal_start] = ACTIONS(895), + [sym_float_literal] = ACTIONS(895), + }, + [148] = { + [sym_line_comment] = STATE(148), + [sym_block_comment] = STATE(148), + [sym_identifier] = ACTIONS(731), + [anon_sym_SEMI] = ACTIONS(733), + [anon_sym_LPAREN] = ACTIONS(733), + [anon_sym_RPAREN] = ACTIONS(733), + [anon_sym_LBRACK] = ACTIONS(733), + [anon_sym_RBRACK] = ACTIONS(733), + [anon_sym_LBRACE] = ACTIONS(733), + [anon_sym_RBRACE] = ACTIONS(733), + [anon_sym_EQ_GT] = ACTIONS(733), + [anon_sym_COLON] = ACTIONS(897), + [anon_sym_DOLLAR] = ACTIONS(731), + [anon_sym_PLUS] = ACTIONS(731), + [anon_sym_STAR] = ACTIONS(731), + [anon_sym_QMARK] = ACTIONS(733), + [anon_sym_u8] = ACTIONS(731), + [anon_sym_i8] = ACTIONS(731), + [anon_sym_u16] = ACTIONS(731), + [anon_sym_i16] = ACTIONS(731), + [anon_sym_u32] = ACTIONS(731), + [anon_sym_i32] = ACTIONS(731), + [anon_sym_u64] = ACTIONS(731), + [anon_sym_i64] = ACTIONS(731), + [anon_sym_u128] = ACTIONS(731), + [anon_sym_i128] = ACTIONS(731), + [anon_sym_isize] = ACTIONS(731), + [anon_sym_usize] = ACTIONS(731), + [anon_sym_f32] = ACTIONS(731), + [anon_sym_f64] = ACTIONS(731), + [anon_sym_bool] = ACTIONS(731), + [anon_sym_str] = ACTIONS(731), + [anon_sym_char] = ACTIONS(731), + [anon_sym_DASH] = ACTIONS(731), + [anon_sym_SLASH] = ACTIONS(731), + [anon_sym_PERCENT] = ACTIONS(731), + [anon_sym_CARET] = ACTIONS(731), + [anon_sym_BANG] = ACTIONS(731), + [anon_sym_AMP] = ACTIONS(731), + [anon_sym_PIPE] = ACTIONS(731), + [anon_sym_AMP_AMP] = ACTIONS(733), + [anon_sym_PIPE_PIPE] = ACTIONS(733), + [anon_sym_LT_LT] = ACTIONS(731), + [anon_sym_GT_GT] = ACTIONS(731), + [anon_sym_PLUS_EQ] = ACTIONS(733), + [anon_sym_DASH_EQ] = ACTIONS(733), + [anon_sym_STAR_EQ] = ACTIONS(733), + [anon_sym_SLASH_EQ] = ACTIONS(733), + [anon_sym_PERCENT_EQ] = ACTIONS(733), + [anon_sym_CARET_EQ] = ACTIONS(733), + [anon_sym_AMP_EQ] = ACTIONS(733), + [anon_sym_PIPE_EQ] = ACTIONS(733), + [anon_sym_LT_LT_EQ] = ACTIONS(733), + [anon_sym_GT_GT_EQ] = ACTIONS(733), + [anon_sym_EQ] = ACTIONS(731), + [anon_sym_EQ_EQ] = ACTIONS(733), + [anon_sym_BANG_EQ] = ACTIONS(733), + [anon_sym_GT] = ACTIONS(731), + [anon_sym_LT] = ACTIONS(731), + [anon_sym_GT_EQ] = ACTIONS(733), + [anon_sym_LT_EQ] = ACTIONS(733), + [anon_sym_AT] = ACTIONS(733), + [anon_sym__] = ACTIONS(731), + [anon_sym_DOT] = ACTIONS(731), + [anon_sym_DOT_DOT] = ACTIONS(731), + [anon_sym_DOT_DOT_DOT] = ACTIONS(733), + [anon_sym_DOT_DOT_EQ] = ACTIONS(733), + [anon_sym_COMMA] = ACTIONS(733), + [anon_sym_COLON_COLON] = ACTIONS(733), + [anon_sym_DASH_GT] = ACTIONS(733), + [anon_sym_POUND] = ACTIONS(733), + [anon_sym_SQUOTE] = ACTIONS(731), + [anon_sym_as] = ACTIONS(731), + [anon_sym_async] = ACTIONS(731), + [anon_sym_await] = ACTIONS(731), + [anon_sym_break] = ACTIONS(731), + [anon_sym_const] = ACTIONS(731), + [anon_sym_continue] = ACTIONS(731), + [anon_sym_default] = ACTIONS(731), + [anon_sym_enum] = ACTIONS(731), + [anon_sym_fn] = ACTIONS(731), + [anon_sym_for] = ACTIONS(731), + [anon_sym_if] = ACTIONS(731), + [anon_sym_impl] = ACTIONS(731), + [anon_sym_let] = ACTIONS(731), + [anon_sym_loop] = ACTIONS(731), + [anon_sym_match] = ACTIONS(731), + [anon_sym_mod] = ACTIONS(731), + [anon_sym_pub] = ACTIONS(731), + [anon_sym_return] = ACTIONS(731), + [anon_sym_static] = ACTIONS(731), + [anon_sym_struct] = ACTIONS(731), + [anon_sym_trait] = ACTIONS(731), + [anon_sym_type] = ACTIONS(731), + [anon_sym_union] = ACTIONS(731), + [anon_sym_unsafe] = ACTIONS(731), + [anon_sym_use] = ACTIONS(731), + [anon_sym_where] = ACTIONS(731), + [anon_sym_while] = ACTIONS(731), + [sym_mutable_specifier] = ACTIONS(731), + [sym_integer_literal] = ACTIONS(733), + [aux_sym_string_literal_token1] = ACTIONS(733), + [sym_char_literal] = ACTIONS(733), + [anon_sym_true] = ACTIONS(731), + [anon_sym_false] = ACTIONS(731), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(731), + [sym_super] = ACTIONS(731), + [sym_crate] = ACTIONS(731), + [sym_metavariable] = ACTIONS(733), + [sym__raw_string_literal_start] = ACTIONS(733), + [sym_float_literal] = ACTIONS(733), + }, + [149] = { + [sym_line_comment] = STATE(149), + [sym_block_comment] = STATE(149), + [sym_identifier] = ACTIONS(899), + [anon_sym_SEMI] = ACTIONS(901), + [anon_sym_LPAREN] = ACTIONS(901), + [anon_sym_RPAREN] = ACTIONS(901), + [anon_sym_LBRACK] = ACTIONS(901), + [anon_sym_RBRACK] = ACTIONS(901), + [anon_sym_LBRACE] = ACTIONS(901), + [anon_sym_RBRACE] = ACTIONS(901), + [anon_sym_EQ_GT] = ACTIONS(901), + [anon_sym_COLON] = ACTIONS(899), + [anon_sym_DOLLAR] = ACTIONS(899), + [anon_sym_PLUS] = ACTIONS(899), + [anon_sym_STAR] = ACTIONS(899), + [anon_sym_QMARK] = ACTIONS(901), + [anon_sym_u8] = ACTIONS(899), + [anon_sym_i8] = ACTIONS(899), + [anon_sym_u16] = ACTIONS(899), + [anon_sym_i16] = ACTIONS(899), + [anon_sym_u32] = ACTIONS(899), + [anon_sym_i32] = ACTIONS(899), + [anon_sym_u64] = ACTIONS(899), + [anon_sym_i64] = ACTIONS(899), + [anon_sym_u128] = ACTIONS(899), + [anon_sym_i128] = ACTIONS(899), + [anon_sym_isize] = ACTIONS(899), + [anon_sym_usize] = ACTIONS(899), + [anon_sym_f32] = ACTIONS(899), + [anon_sym_f64] = ACTIONS(899), + [anon_sym_bool] = ACTIONS(899), + [anon_sym_str] = ACTIONS(899), + [anon_sym_char] = ACTIONS(899), + [anon_sym_DASH] = ACTIONS(899), + [anon_sym_SLASH] = ACTIONS(899), + [anon_sym_PERCENT] = ACTIONS(899), + [anon_sym_CARET] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(899), + [anon_sym_AMP] = ACTIONS(899), + [anon_sym_PIPE] = ACTIONS(899), + [anon_sym_AMP_AMP] = ACTIONS(901), + [anon_sym_PIPE_PIPE] = ACTIONS(901), + [anon_sym_LT_LT] = ACTIONS(899), + [anon_sym_GT_GT] = ACTIONS(899), + [anon_sym_PLUS_EQ] = ACTIONS(901), + [anon_sym_DASH_EQ] = ACTIONS(901), + [anon_sym_STAR_EQ] = ACTIONS(901), + [anon_sym_SLASH_EQ] = ACTIONS(901), + [anon_sym_PERCENT_EQ] = ACTIONS(901), + [anon_sym_CARET_EQ] = ACTIONS(901), + [anon_sym_AMP_EQ] = ACTIONS(901), + [anon_sym_PIPE_EQ] = ACTIONS(901), + [anon_sym_LT_LT_EQ] = ACTIONS(901), + [anon_sym_GT_GT_EQ] = ACTIONS(901), + [anon_sym_EQ] = ACTIONS(899), + [anon_sym_EQ_EQ] = ACTIONS(901), + [anon_sym_BANG_EQ] = ACTIONS(901), + [anon_sym_GT] = ACTIONS(899), + [anon_sym_LT] = ACTIONS(899), + [anon_sym_GT_EQ] = ACTIONS(901), + [anon_sym_LT_EQ] = ACTIONS(901), + [anon_sym_AT] = ACTIONS(901), + [anon_sym__] = ACTIONS(899), + [anon_sym_DOT] = ACTIONS(899), + [anon_sym_DOT_DOT] = ACTIONS(899), + [anon_sym_DOT_DOT_DOT] = ACTIONS(901), + [anon_sym_DOT_DOT_EQ] = ACTIONS(901), + [anon_sym_COMMA] = ACTIONS(901), + [anon_sym_COLON_COLON] = ACTIONS(901), + [anon_sym_DASH_GT] = ACTIONS(901), + [anon_sym_POUND] = ACTIONS(901), + [anon_sym_SQUOTE] = ACTIONS(899), + [anon_sym_as] = ACTIONS(899), + [anon_sym_async] = ACTIONS(899), + [anon_sym_await] = ACTIONS(899), + [anon_sym_break] = ACTIONS(899), + [anon_sym_const] = ACTIONS(899), + [anon_sym_continue] = ACTIONS(899), + [anon_sym_default] = ACTIONS(899), + [anon_sym_enum] = ACTIONS(899), + [anon_sym_fn] = ACTIONS(899), + [anon_sym_for] = ACTIONS(899), + [anon_sym_if] = ACTIONS(899), + [anon_sym_impl] = ACTIONS(899), + [anon_sym_let] = ACTIONS(899), + [anon_sym_loop] = ACTIONS(899), + [anon_sym_match] = ACTIONS(899), + [anon_sym_mod] = ACTIONS(899), + [anon_sym_pub] = ACTIONS(899), + [anon_sym_return] = ACTIONS(899), + [anon_sym_static] = ACTIONS(899), + [anon_sym_struct] = ACTIONS(899), + [anon_sym_trait] = ACTIONS(899), + [anon_sym_type] = ACTIONS(899), + [anon_sym_union] = ACTIONS(899), + [anon_sym_unsafe] = ACTIONS(899), + [anon_sym_use] = ACTIONS(899), + [anon_sym_where] = ACTIONS(899), + [anon_sym_while] = ACTIONS(899), + [sym_mutable_specifier] = ACTIONS(899), + [sym_integer_literal] = ACTIONS(901), + [aux_sym_string_literal_token1] = ACTIONS(901), + [sym_char_literal] = ACTIONS(901), + [anon_sym_true] = ACTIONS(899), + [anon_sym_false] = ACTIONS(899), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(899), + [sym_super] = ACTIONS(899), + [sym_crate] = ACTIONS(899), + [sym_metavariable] = ACTIONS(901), + [sym__raw_string_literal_start] = ACTIONS(901), + [sym_float_literal] = ACTIONS(901), + }, + [150] = { + [sym_attribute_item] = STATE(1003), + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1628), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1268), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), + [sym_line_comment] = STATE(150), + [sym_block_comment] = STATE(150), + [aux_sym_enum_variant_list_repeat1] = STATE(1002), + [sym_identifier] = ACTIONS(749), + [anon_sym_LPAREN] = ACTIONS(752), + [anon_sym_LBRACK] = ACTIONS(755), + [anon_sym_RBRACK] = ACTIONS(758), + [anon_sym_LBRACE] = ACTIONS(760), + [anon_sym_STAR] = ACTIONS(763), + [anon_sym_u8] = ACTIONS(766), + [anon_sym_i8] = ACTIONS(766), + [anon_sym_u16] = ACTIONS(766), + [anon_sym_i16] = ACTIONS(766), + [anon_sym_u32] = ACTIONS(766), + [anon_sym_i32] = ACTIONS(766), + [anon_sym_u64] = ACTIONS(766), + [anon_sym_i64] = ACTIONS(766), + [anon_sym_u128] = ACTIONS(766), + [anon_sym_i128] = ACTIONS(766), + [anon_sym_isize] = ACTIONS(766), + [anon_sym_usize] = ACTIONS(766), + [anon_sym_f32] = ACTIONS(766), + [anon_sym_f64] = ACTIONS(766), + [anon_sym_bool] = ACTIONS(766), + [anon_sym_str] = ACTIONS(766), + [anon_sym_char] = ACTIONS(766), + [anon_sym_DASH] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(763), + [anon_sym_AMP] = ACTIONS(769), + [anon_sym_PIPE] = ACTIONS(772), + [anon_sym_LT] = ACTIONS(775), + [anon_sym_DOT_DOT] = ACTIONS(778), + [anon_sym_COMMA] = ACTIONS(758), + [anon_sym_COLON_COLON] = ACTIONS(781), + [anon_sym_POUND] = ACTIONS(784), + [anon_sym_SQUOTE] = ACTIONS(787), + [anon_sym_async] = ACTIONS(790), + [anon_sym_break] = ACTIONS(793), + [anon_sym_const] = ACTIONS(796), + [anon_sym_continue] = ACTIONS(799), + [anon_sym_default] = ACTIONS(802), + [anon_sym_for] = ACTIONS(805), + [anon_sym_if] = ACTIONS(808), + [anon_sym_loop] = ACTIONS(811), + [anon_sym_match] = ACTIONS(814), + [anon_sym_return] = ACTIONS(817), + [anon_sym_static] = ACTIONS(820), + [anon_sym_union] = ACTIONS(802), + [anon_sym_unsafe] = ACTIONS(823), + [anon_sym_while] = ACTIONS(826), + [anon_sym_yield] = ACTIONS(829), + [anon_sym_move] = ACTIONS(832), + [anon_sym_try] = ACTIONS(835), + [sym_integer_literal] = ACTIONS(838), + [aux_sym_string_literal_token1] = ACTIONS(841), + [sym_char_literal] = ACTIONS(838), + [anon_sym_true] = ACTIONS(844), + [anon_sym_false] = ACTIONS(844), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(847), + [sym_super] = ACTIONS(850), + [sym_crate] = ACTIONS(850), + [sym_metavariable] = ACTIONS(853), + [sym__raw_string_literal_start] = ACTIONS(856), + [sym_float_literal] = ACTIONS(838), + }, + [151] = { + [sym_line_comment] = STATE(151), + [sym_block_comment] = STATE(151), + [sym_identifier] = ACTIONS(903), + [anon_sym_SEMI] = ACTIONS(905), + [anon_sym_LPAREN] = ACTIONS(905), + [anon_sym_RPAREN] = ACTIONS(905), + [anon_sym_LBRACK] = ACTIONS(905), + [anon_sym_RBRACK] = ACTIONS(905), + [anon_sym_LBRACE] = ACTIONS(905), + [anon_sym_RBRACE] = ACTIONS(905), + [anon_sym_EQ_GT] = ACTIONS(905), + [anon_sym_COLON] = ACTIONS(903), + [anon_sym_DOLLAR] = ACTIONS(903), + [anon_sym_PLUS] = ACTIONS(903), + [anon_sym_STAR] = ACTIONS(903), + [anon_sym_QMARK] = ACTIONS(905), + [anon_sym_u8] = ACTIONS(903), + [anon_sym_i8] = ACTIONS(903), + [anon_sym_u16] = ACTIONS(903), + [anon_sym_i16] = ACTIONS(903), + [anon_sym_u32] = ACTIONS(903), + [anon_sym_i32] = ACTIONS(903), + [anon_sym_u64] = ACTIONS(903), + [anon_sym_i64] = ACTIONS(903), + [anon_sym_u128] = ACTIONS(903), + [anon_sym_i128] = ACTIONS(903), + [anon_sym_isize] = ACTIONS(903), + [anon_sym_usize] = ACTIONS(903), + [anon_sym_f32] = ACTIONS(903), + [anon_sym_f64] = ACTIONS(903), + [anon_sym_bool] = ACTIONS(903), + [anon_sym_str] = ACTIONS(903), + [anon_sym_char] = ACTIONS(903), + [anon_sym_DASH] = ACTIONS(903), + [anon_sym_SLASH] = ACTIONS(903), + [anon_sym_PERCENT] = ACTIONS(903), + [anon_sym_CARET] = ACTIONS(903), + [anon_sym_BANG] = ACTIONS(903), + [anon_sym_AMP] = ACTIONS(903), + [anon_sym_PIPE] = ACTIONS(903), + [anon_sym_AMP_AMP] = ACTIONS(905), + [anon_sym_PIPE_PIPE] = ACTIONS(905), + [anon_sym_LT_LT] = ACTIONS(903), + [anon_sym_GT_GT] = ACTIONS(903), + [anon_sym_PLUS_EQ] = ACTIONS(905), + [anon_sym_DASH_EQ] = ACTIONS(905), + [anon_sym_STAR_EQ] = ACTIONS(905), + [anon_sym_SLASH_EQ] = ACTIONS(905), + [anon_sym_PERCENT_EQ] = ACTIONS(905), + [anon_sym_CARET_EQ] = ACTIONS(905), + [anon_sym_AMP_EQ] = ACTIONS(905), + [anon_sym_PIPE_EQ] = ACTIONS(905), + [anon_sym_LT_LT_EQ] = ACTIONS(905), + [anon_sym_GT_GT_EQ] = ACTIONS(905), + [anon_sym_EQ] = ACTIONS(903), + [anon_sym_EQ_EQ] = ACTIONS(905), + [anon_sym_BANG_EQ] = ACTIONS(905), + [anon_sym_GT] = ACTIONS(903), + [anon_sym_LT] = ACTIONS(903), + [anon_sym_GT_EQ] = ACTIONS(905), + [anon_sym_LT_EQ] = ACTIONS(905), + [anon_sym_AT] = ACTIONS(905), + [anon_sym__] = ACTIONS(903), + [anon_sym_DOT] = ACTIONS(903), + [anon_sym_DOT_DOT] = ACTIONS(903), + [anon_sym_DOT_DOT_DOT] = ACTIONS(905), + [anon_sym_DOT_DOT_EQ] = ACTIONS(905), + [anon_sym_COMMA] = ACTIONS(905), + [anon_sym_COLON_COLON] = ACTIONS(905), + [anon_sym_DASH_GT] = ACTIONS(905), + [anon_sym_POUND] = ACTIONS(905), + [anon_sym_SQUOTE] = ACTIONS(903), + [anon_sym_as] = ACTIONS(903), + [anon_sym_async] = ACTIONS(903), + [anon_sym_await] = ACTIONS(903), + [anon_sym_break] = ACTIONS(903), + [anon_sym_const] = ACTIONS(903), + [anon_sym_continue] = ACTIONS(903), + [anon_sym_default] = ACTIONS(903), + [anon_sym_enum] = ACTIONS(903), + [anon_sym_fn] = ACTIONS(903), + [anon_sym_for] = ACTIONS(903), + [anon_sym_if] = ACTIONS(903), + [anon_sym_impl] = ACTIONS(903), + [anon_sym_let] = ACTIONS(903), + [anon_sym_loop] = ACTIONS(903), + [anon_sym_match] = ACTIONS(903), + [anon_sym_mod] = ACTIONS(903), + [anon_sym_pub] = ACTIONS(903), + [anon_sym_return] = ACTIONS(903), + [anon_sym_static] = ACTIONS(903), + [anon_sym_struct] = ACTIONS(903), + [anon_sym_trait] = ACTIONS(903), + [anon_sym_type] = ACTIONS(903), + [anon_sym_union] = ACTIONS(903), + [anon_sym_unsafe] = ACTIONS(903), + [anon_sym_use] = ACTIONS(903), + [anon_sym_where] = ACTIONS(903), + [anon_sym_while] = ACTIONS(903), + [sym_mutable_specifier] = ACTIONS(903), + [sym_integer_literal] = ACTIONS(905), + [aux_sym_string_literal_token1] = ACTIONS(905), + [sym_char_literal] = ACTIONS(905), + [anon_sym_true] = ACTIONS(903), + [anon_sym_false] = ACTIONS(903), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(903), + [sym_super] = ACTIONS(903), + [sym_crate] = ACTIONS(903), + [sym_metavariable] = ACTIONS(905), + [sym__raw_string_literal_start] = ACTIONS(905), + [sym_float_literal] = ACTIONS(905), + }, + [152] = { + [sym_line_comment] = STATE(152), + [sym_block_comment] = STATE(152), + [sym_identifier] = ACTIONS(907), + [anon_sym_SEMI] = ACTIONS(909), + [anon_sym_LPAREN] = ACTIONS(909), + [anon_sym_RPAREN] = ACTIONS(909), + [anon_sym_LBRACK] = ACTIONS(909), + [anon_sym_RBRACK] = ACTIONS(909), + [anon_sym_LBRACE] = ACTIONS(909), + [anon_sym_RBRACE] = ACTIONS(909), + [anon_sym_EQ_GT] = ACTIONS(909), + [anon_sym_COLON] = ACTIONS(907), + [anon_sym_DOLLAR] = ACTIONS(907), + [anon_sym_PLUS] = ACTIONS(907), + [anon_sym_STAR] = ACTIONS(907), + [anon_sym_QMARK] = ACTIONS(909), + [anon_sym_u8] = ACTIONS(907), + [anon_sym_i8] = ACTIONS(907), + [anon_sym_u16] = ACTIONS(907), + [anon_sym_i16] = ACTIONS(907), + [anon_sym_u32] = ACTIONS(907), + [anon_sym_i32] = ACTIONS(907), + [anon_sym_u64] = ACTIONS(907), + [anon_sym_i64] = ACTIONS(907), + [anon_sym_u128] = ACTIONS(907), + [anon_sym_i128] = ACTIONS(907), + [anon_sym_isize] = ACTIONS(907), + [anon_sym_usize] = ACTIONS(907), + [anon_sym_f32] = ACTIONS(907), + [anon_sym_f64] = ACTIONS(907), + [anon_sym_bool] = ACTIONS(907), + [anon_sym_str] = ACTIONS(907), + [anon_sym_char] = ACTIONS(907), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_SLASH] = ACTIONS(907), + [anon_sym_PERCENT] = ACTIONS(907), + [anon_sym_CARET] = ACTIONS(907), + [anon_sym_BANG] = ACTIONS(907), + [anon_sym_AMP] = ACTIONS(907), + [anon_sym_PIPE] = ACTIONS(907), + [anon_sym_AMP_AMP] = ACTIONS(909), + [anon_sym_PIPE_PIPE] = ACTIONS(909), + [anon_sym_LT_LT] = ACTIONS(907), + [anon_sym_GT_GT] = ACTIONS(907), + [anon_sym_PLUS_EQ] = ACTIONS(909), + [anon_sym_DASH_EQ] = ACTIONS(909), + [anon_sym_STAR_EQ] = ACTIONS(909), + [anon_sym_SLASH_EQ] = ACTIONS(909), + [anon_sym_PERCENT_EQ] = ACTIONS(909), + [anon_sym_CARET_EQ] = ACTIONS(909), + [anon_sym_AMP_EQ] = ACTIONS(909), + [anon_sym_PIPE_EQ] = ACTIONS(909), + [anon_sym_LT_LT_EQ] = ACTIONS(909), + [anon_sym_GT_GT_EQ] = ACTIONS(909), + [anon_sym_EQ] = ACTIONS(907), + [anon_sym_EQ_EQ] = ACTIONS(909), + [anon_sym_BANG_EQ] = ACTIONS(909), + [anon_sym_GT] = ACTIONS(907), + [anon_sym_LT] = ACTIONS(907), + [anon_sym_GT_EQ] = ACTIONS(909), + [anon_sym_LT_EQ] = ACTIONS(909), + [anon_sym_AT] = ACTIONS(909), + [anon_sym__] = ACTIONS(907), + [anon_sym_DOT] = ACTIONS(907), + [anon_sym_DOT_DOT] = ACTIONS(907), + [anon_sym_DOT_DOT_DOT] = ACTIONS(909), + [anon_sym_DOT_DOT_EQ] = ACTIONS(909), + [anon_sym_COMMA] = ACTIONS(909), + [anon_sym_COLON_COLON] = ACTIONS(909), + [anon_sym_DASH_GT] = ACTIONS(909), + [anon_sym_POUND] = ACTIONS(909), + [anon_sym_SQUOTE] = ACTIONS(907), + [anon_sym_as] = ACTIONS(907), + [anon_sym_async] = ACTIONS(907), + [anon_sym_await] = ACTIONS(907), + [anon_sym_break] = ACTIONS(907), + [anon_sym_const] = ACTIONS(907), + [anon_sym_continue] = ACTIONS(907), + [anon_sym_default] = ACTIONS(907), + [anon_sym_enum] = ACTIONS(907), + [anon_sym_fn] = ACTIONS(907), + [anon_sym_for] = ACTIONS(907), + [anon_sym_if] = ACTIONS(907), + [anon_sym_impl] = ACTIONS(907), + [anon_sym_let] = ACTIONS(907), + [anon_sym_loop] = ACTIONS(907), + [anon_sym_match] = ACTIONS(907), + [anon_sym_mod] = ACTIONS(907), + [anon_sym_pub] = ACTIONS(907), + [anon_sym_return] = ACTIONS(907), + [anon_sym_static] = ACTIONS(907), + [anon_sym_struct] = ACTIONS(907), + [anon_sym_trait] = ACTIONS(907), + [anon_sym_type] = ACTIONS(907), + [anon_sym_union] = ACTIONS(907), + [anon_sym_unsafe] = ACTIONS(907), + [anon_sym_use] = ACTIONS(907), + [anon_sym_where] = ACTIONS(907), + [anon_sym_while] = ACTIONS(907), + [sym_mutable_specifier] = ACTIONS(907), + [sym_integer_literal] = ACTIONS(909), + [aux_sym_string_literal_token1] = ACTIONS(909), + [sym_char_literal] = ACTIONS(909), + [anon_sym_true] = ACTIONS(907), + [anon_sym_false] = ACTIONS(907), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(907), + [sym_super] = ACTIONS(907), + [sym_crate] = ACTIONS(907), + [sym_metavariable] = ACTIONS(909), + [sym__raw_string_literal_start] = ACTIONS(909), + [sym_float_literal] = ACTIONS(909), + }, + [153] = { + [sym_line_comment] = STATE(153), + [sym_block_comment] = STATE(153), + [sym_identifier] = ACTIONS(911), + [anon_sym_SEMI] = ACTIONS(913), + [anon_sym_LPAREN] = ACTIONS(913), + [anon_sym_RPAREN] = ACTIONS(913), + [anon_sym_LBRACK] = ACTIONS(913), + [anon_sym_RBRACK] = ACTIONS(913), + [anon_sym_LBRACE] = ACTIONS(913), + [anon_sym_RBRACE] = ACTIONS(913), + [anon_sym_EQ_GT] = ACTIONS(913), + [anon_sym_COLON] = ACTIONS(911), + [anon_sym_DOLLAR] = ACTIONS(911), + [anon_sym_PLUS] = ACTIONS(911), + [anon_sym_STAR] = ACTIONS(911), + [anon_sym_QMARK] = ACTIONS(913), + [anon_sym_u8] = ACTIONS(911), + [anon_sym_i8] = ACTIONS(911), + [anon_sym_u16] = ACTIONS(911), + [anon_sym_i16] = ACTIONS(911), + [anon_sym_u32] = ACTIONS(911), + [anon_sym_i32] = ACTIONS(911), + [anon_sym_u64] = ACTIONS(911), + [anon_sym_i64] = ACTIONS(911), + [anon_sym_u128] = ACTIONS(911), + [anon_sym_i128] = ACTIONS(911), + [anon_sym_isize] = ACTIONS(911), + [anon_sym_usize] = ACTIONS(911), + [anon_sym_f32] = ACTIONS(911), + [anon_sym_f64] = ACTIONS(911), + [anon_sym_bool] = ACTIONS(911), + [anon_sym_str] = ACTIONS(911), + [anon_sym_char] = ACTIONS(911), + [anon_sym_DASH] = ACTIONS(911), + [anon_sym_SLASH] = ACTIONS(911), + [anon_sym_PERCENT] = ACTIONS(911), + [anon_sym_CARET] = ACTIONS(911), + [anon_sym_BANG] = ACTIONS(911), + [anon_sym_AMP] = ACTIONS(911), + [anon_sym_PIPE] = ACTIONS(911), + [anon_sym_AMP_AMP] = ACTIONS(913), + [anon_sym_PIPE_PIPE] = ACTIONS(913), + [anon_sym_LT_LT] = ACTIONS(911), + [anon_sym_GT_GT] = ACTIONS(911), + [anon_sym_PLUS_EQ] = ACTIONS(913), + [anon_sym_DASH_EQ] = ACTIONS(913), + [anon_sym_STAR_EQ] = ACTIONS(913), + [anon_sym_SLASH_EQ] = ACTIONS(913), + [anon_sym_PERCENT_EQ] = ACTIONS(913), + [anon_sym_CARET_EQ] = ACTIONS(913), + [anon_sym_AMP_EQ] = ACTIONS(913), + [anon_sym_PIPE_EQ] = ACTIONS(913), + [anon_sym_LT_LT_EQ] = ACTIONS(913), + [anon_sym_GT_GT_EQ] = ACTIONS(913), + [anon_sym_EQ] = ACTIONS(911), + [anon_sym_EQ_EQ] = ACTIONS(913), + [anon_sym_BANG_EQ] = ACTIONS(913), + [anon_sym_GT] = ACTIONS(911), + [anon_sym_LT] = ACTIONS(911), + [anon_sym_GT_EQ] = ACTIONS(913), + [anon_sym_LT_EQ] = ACTIONS(913), + [anon_sym_AT] = ACTIONS(913), + [anon_sym__] = ACTIONS(911), + [anon_sym_DOT] = ACTIONS(911), + [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_DOT_DOT_DOT] = ACTIONS(913), + [anon_sym_DOT_DOT_EQ] = ACTIONS(913), + [anon_sym_COMMA] = ACTIONS(913), + [anon_sym_COLON_COLON] = ACTIONS(913), + [anon_sym_DASH_GT] = ACTIONS(913), + [anon_sym_POUND] = ACTIONS(913), + [anon_sym_SQUOTE] = ACTIONS(911), + [anon_sym_as] = ACTIONS(911), + [anon_sym_async] = ACTIONS(911), + [anon_sym_await] = ACTIONS(911), + [anon_sym_break] = ACTIONS(911), + [anon_sym_const] = ACTIONS(911), + [anon_sym_continue] = ACTIONS(911), + [anon_sym_default] = ACTIONS(911), + [anon_sym_enum] = ACTIONS(911), + [anon_sym_fn] = ACTIONS(911), + [anon_sym_for] = ACTIONS(911), + [anon_sym_if] = ACTIONS(911), + [anon_sym_impl] = ACTIONS(911), + [anon_sym_let] = ACTIONS(911), + [anon_sym_loop] = ACTIONS(911), + [anon_sym_match] = ACTIONS(911), + [anon_sym_mod] = ACTIONS(911), + [anon_sym_pub] = ACTIONS(911), + [anon_sym_return] = ACTIONS(911), + [anon_sym_static] = ACTIONS(911), + [anon_sym_struct] = ACTIONS(911), + [anon_sym_trait] = ACTIONS(911), + [anon_sym_type] = ACTIONS(911), + [anon_sym_union] = ACTIONS(911), + [anon_sym_unsafe] = ACTIONS(911), + [anon_sym_use] = ACTIONS(911), + [anon_sym_where] = ACTIONS(911), + [anon_sym_while] = ACTIONS(911), + [sym_mutable_specifier] = ACTIONS(911), + [sym_integer_literal] = ACTIONS(913), + [aux_sym_string_literal_token1] = ACTIONS(913), + [sym_char_literal] = ACTIONS(913), + [anon_sym_true] = ACTIONS(911), + [anon_sym_false] = ACTIONS(911), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(911), + [sym_super] = ACTIONS(911), + [sym_crate] = ACTIONS(911), + [sym_metavariable] = ACTIONS(913), + [sym__raw_string_literal_start] = ACTIONS(913), + [sym_float_literal] = ACTIONS(913), + }, + [154] = { + [sym_line_comment] = STATE(154), + [sym_block_comment] = STATE(154), + [aux_sym__non_special_token_repeat1] = STATE(155), + [sym_identifier] = ACTIONS(915), [anon_sym_SEMI] = ACTIONS(663), - [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_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(663), [anon_sym_COLON] = ACTIONS(673), - [anon_sym_DOLLAR] = ACTIONS(949), + [anon_sym_DOLLAR] = ACTIONS(917), [anon_sym_PLUS] = ACTIONS(673), [anon_sym_STAR] = ACTIONS(673), [anon_sym_QMARK] = ACTIONS(663), - [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_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(673), [anon_sym_SLASH] = ACTIONS(673), [anon_sym_PERCENT] = ACTIONS(673), @@ -34700,333 +34018,1023 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(663), [anon_sym_DASH_GT] = ACTIONS(663), [anon_sym_POUND] = ACTIONS(663), - [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_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(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(947), - [sym_super] = ACTIONS(947), - [sym_crate] = ACTIONS(947), - [sym__raw_string_literal_start] = ACTIONS(949), - [sym_float_literal] = ACTIONS(949), + [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_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(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(915), + [sym_super] = ACTIONS(915), + [sym_crate] = ACTIONS(915), + [sym__raw_string_literal_start] = ACTIONS(917), + [sym_float_literal] = ACTIONS(917), + }, + [155] = { + [sym_line_comment] = STATE(155), + [sym_block_comment] = STATE(155), + [aux_sym__non_special_token_repeat1] = STATE(155), + [sym_identifier] = ACTIONS(735), + [anon_sym_SEMI] = ACTIONS(919), + [anon_sym_LPAREN] = ACTIONS(740), + [anon_sym_RPAREN] = ACTIONS(740), + [anon_sym_LBRACK] = ACTIONS(740), + [anon_sym_RBRACK] = ACTIONS(740), + [anon_sym_LBRACE] = ACTIONS(740), + [anon_sym_RBRACE] = ACTIONS(740), + [anon_sym_EQ_GT] = ACTIONS(919), + [anon_sym_COLON] = ACTIONS(922), + [anon_sym_DOLLAR] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_STAR] = ACTIONS(922), + [anon_sym_QMARK] = ACTIONS(919), + [anon_sym_u8] = ACTIONS(735), + [anon_sym_i8] = ACTIONS(735), + [anon_sym_u16] = ACTIONS(735), + [anon_sym_i16] = ACTIONS(735), + [anon_sym_u32] = ACTIONS(735), + [anon_sym_i32] = ACTIONS(735), + [anon_sym_u64] = ACTIONS(735), + [anon_sym_i64] = ACTIONS(735), + [anon_sym_u128] = ACTIONS(735), + [anon_sym_i128] = ACTIONS(735), + [anon_sym_isize] = ACTIONS(735), + [anon_sym_usize] = ACTIONS(735), + [anon_sym_f32] = ACTIONS(735), + [anon_sym_f64] = ACTIONS(735), + [anon_sym_bool] = ACTIONS(735), + [anon_sym_str] = ACTIONS(735), + [anon_sym_char] = ACTIONS(735), + [anon_sym_DASH] = ACTIONS(922), + [anon_sym_SLASH] = ACTIONS(922), + [anon_sym_PERCENT] = ACTIONS(922), + [anon_sym_CARET] = ACTIONS(922), + [anon_sym_BANG] = ACTIONS(922), + [anon_sym_AMP] = ACTIONS(922), + [anon_sym_PIPE] = ACTIONS(922), + [anon_sym_AMP_AMP] = ACTIONS(919), + [anon_sym_PIPE_PIPE] = ACTIONS(919), + [anon_sym_LT_LT] = ACTIONS(922), + [anon_sym_GT_GT] = ACTIONS(922), + [anon_sym_PLUS_EQ] = ACTIONS(919), + [anon_sym_DASH_EQ] = ACTIONS(919), + [anon_sym_STAR_EQ] = ACTIONS(919), + [anon_sym_SLASH_EQ] = ACTIONS(919), + [anon_sym_PERCENT_EQ] = ACTIONS(919), + [anon_sym_CARET_EQ] = ACTIONS(919), + [anon_sym_AMP_EQ] = ACTIONS(919), + [anon_sym_PIPE_EQ] = ACTIONS(919), + [anon_sym_LT_LT_EQ] = ACTIONS(919), + [anon_sym_GT_GT_EQ] = ACTIONS(919), + [anon_sym_EQ] = ACTIONS(922), + [anon_sym_EQ_EQ] = ACTIONS(919), + [anon_sym_BANG_EQ] = ACTIONS(919), + [anon_sym_GT] = ACTIONS(922), + [anon_sym_LT] = ACTIONS(922), + [anon_sym_GT_EQ] = ACTIONS(919), + [anon_sym_LT_EQ] = ACTIONS(919), + [anon_sym_AT] = ACTIONS(919), + [anon_sym__] = ACTIONS(922), + [anon_sym_DOT] = ACTIONS(922), + [anon_sym_DOT_DOT] = ACTIONS(922), + [anon_sym_DOT_DOT_DOT] = ACTIONS(919), + [anon_sym_DOT_DOT_EQ] = ACTIONS(919), + [anon_sym_COMMA] = ACTIONS(919), + [anon_sym_COLON_COLON] = ACTIONS(919), + [anon_sym_DASH_GT] = ACTIONS(919), + [anon_sym_POUND] = ACTIONS(919), + [anon_sym_SQUOTE] = ACTIONS(735), + [anon_sym_as] = ACTIONS(735), + [anon_sym_async] = ACTIONS(735), + [anon_sym_await] = ACTIONS(735), + [anon_sym_break] = ACTIONS(735), + [anon_sym_const] = ACTIONS(735), + [anon_sym_continue] = ACTIONS(735), + [anon_sym_default] = ACTIONS(735), + [anon_sym_enum] = ACTIONS(735), + [anon_sym_fn] = ACTIONS(735), + [anon_sym_for] = ACTIONS(735), + [anon_sym_if] = ACTIONS(735), + [anon_sym_impl] = ACTIONS(735), + [anon_sym_let] = ACTIONS(735), + [anon_sym_loop] = ACTIONS(735), + [anon_sym_match] = ACTIONS(735), + [anon_sym_mod] = ACTIONS(735), + [anon_sym_pub] = ACTIONS(735), + [anon_sym_return] = ACTIONS(735), + [anon_sym_static] = ACTIONS(735), + [anon_sym_struct] = ACTIONS(735), + [anon_sym_trait] = ACTIONS(735), + [anon_sym_type] = ACTIONS(735), + [anon_sym_union] = ACTIONS(735), + [anon_sym_unsafe] = ACTIONS(735), + [anon_sym_use] = ACTIONS(735), + [anon_sym_where] = ACTIONS(735), + [anon_sym_while] = ACTIONS(735), + [sym_mutable_specifier] = ACTIONS(735), + [sym_integer_literal] = ACTIONS(740), + [aux_sym_string_literal_token1] = ACTIONS(740), + [sym_char_literal] = ACTIONS(740), + [anon_sym_true] = ACTIONS(735), + [anon_sym_false] = ACTIONS(735), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(735), + [sym_super] = ACTIONS(735), + [sym_crate] = ACTIONS(735), + [sym__raw_string_literal_start] = ACTIONS(740), + [sym_float_literal] = ACTIONS(740), + }, + [156] = { + [sym_line_comment] = STATE(156), + [sym_block_comment] = STATE(156), + [sym_identifier] = ACTIONS(925), + [anon_sym_SEMI] = ACTIONS(927), + [anon_sym_LPAREN] = ACTIONS(927), + [anon_sym_RPAREN] = ACTIONS(927), + [anon_sym_LBRACK] = ACTIONS(927), + [anon_sym_RBRACK] = ACTIONS(927), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_RBRACE] = ACTIONS(927), + [anon_sym_EQ_GT] = ACTIONS(927), + [anon_sym_COLON] = ACTIONS(925), + [anon_sym_DOLLAR] = ACTIONS(925), + [anon_sym_PLUS] = ACTIONS(925), + [anon_sym_STAR] = ACTIONS(925), + [anon_sym_QMARK] = ACTIONS(927), + [anon_sym_u8] = ACTIONS(925), + [anon_sym_i8] = ACTIONS(925), + [anon_sym_u16] = ACTIONS(925), + [anon_sym_i16] = ACTIONS(925), + [anon_sym_u32] = ACTIONS(925), + [anon_sym_i32] = ACTIONS(925), + [anon_sym_u64] = ACTIONS(925), + [anon_sym_i64] = ACTIONS(925), + [anon_sym_u128] = ACTIONS(925), + [anon_sym_i128] = ACTIONS(925), + [anon_sym_isize] = ACTIONS(925), + [anon_sym_usize] = ACTIONS(925), + [anon_sym_f32] = ACTIONS(925), + [anon_sym_f64] = ACTIONS(925), + [anon_sym_bool] = ACTIONS(925), + [anon_sym_str] = ACTIONS(925), + [anon_sym_char] = ACTIONS(925), + [anon_sym_DASH] = ACTIONS(925), + [anon_sym_SLASH] = ACTIONS(925), + [anon_sym_PERCENT] = ACTIONS(925), + [anon_sym_CARET] = ACTIONS(925), + [anon_sym_BANG] = ACTIONS(925), + [anon_sym_AMP] = ACTIONS(925), + [anon_sym_PIPE] = ACTIONS(925), + [anon_sym_AMP_AMP] = ACTIONS(927), + [anon_sym_PIPE_PIPE] = ACTIONS(927), + [anon_sym_LT_LT] = ACTIONS(925), + [anon_sym_GT_GT] = ACTIONS(925), + [anon_sym_PLUS_EQ] = ACTIONS(927), + [anon_sym_DASH_EQ] = ACTIONS(927), + [anon_sym_STAR_EQ] = ACTIONS(927), + [anon_sym_SLASH_EQ] = ACTIONS(927), + [anon_sym_PERCENT_EQ] = ACTIONS(927), + [anon_sym_CARET_EQ] = ACTIONS(927), + [anon_sym_AMP_EQ] = ACTIONS(927), + [anon_sym_PIPE_EQ] = ACTIONS(927), + [anon_sym_LT_LT_EQ] = ACTIONS(927), + [anon_sym_GT_GT_EQ] = ACTIONS(927), + [anon_sym_EQ] = ACTIONS(925), + [anon_sym_EQ_EQ] = ACTIONS(927), + [anon_sym_BANG_EQ] = ACTIONS(927), + [anon_sym_GT] = ACTIONS(925), + [anon_sym_LT] = ACTIONS(925), + [anon_sym_GT_EQ] = ACTIONS(927), + [anon_sym_LT_EQ] = ACTIONS(927), + [anon_sym_AT] = ACTIONS(927), + [anon_sym__] = ACTIONS(925), + [anon_sym_DOT] = ACTIONS(925), + [anon_sym_DOT_DOT] = ACTIONS(925), + [anon_sym_DOT_DOT_DOT] = ACTIONS(927), + [anon_sym_DOT_DOT_EQ] = ACTIONS(927), + [anon_sym_COMMA] = ACTIONS(927), + [anon_sym_COLON_COLON] = ACTIONS(927), + [anon_sym_DASH_GT] = ACTIONS(927), + [anon_sym_POUND] = ACTIONS(927), + [anon_sym_SQUOTE] = ACTIONS(925), + [anon_sym_as] = ACTIONS(925), + [anon_sym_async] = ACTIONS(925), + [anon_sym_await] = ACTIONS(925), + [anon_sym_break] = ACTIONS(925), + [anon_sym_const] = ACTIONS(925), + [anon_sym_continue] = ACTIONS(925), + [anon_sym_default] = ACTIONS(925), + [anon_sym_enum] = ACTIONS(925), + [anon_sym_fn] = ACTIONS(925), + [anon_sym_for] = ACTIONS(925), + [anon_sym_if] = ACTIONS(925), + [anon_sym_impl] = ACTIONS(925), + [anon_sym_let] = ACTIONS(925), + [anon_sym_loop] = ACTIONS(925), + [anon_sym_match] = ACTIONS(925), + [anon_sym_mod] = ACTIONS(925), + [anon_sym_pub] = ACTIONS(925), + [anon_sym_return] = ACTIONS(925), + [anon_sym_static] = ACTIONS(925), + [anon_sym_struct] = ACTIONS(925), + [anon_sym_trait] = ACTIONS(925), + [anon_sym_type] = ACTIONS(925), + [anon_sym_union] = ACTIONS(925), + [anon_sym_unsafe] = ACTIONS(925), + [anon_sym_use] = ACTIONS(925), + [anon_sym_where] = ACTIONS(925), + [anon_sym_while] = ACTIONS(925), + [sym_mutable_specifier] = ACTIONS(925), + [sym_integer_literal] = ACTIONS(927), + [aux_sym_string_literal_token1] = ACTIONS(927), + [sym_char_literal] = ACTIONS(927), + [anon_sym_true] = ACTIONS(925), + [anon_sym_false] = ACTIONS(925), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(925), + [sym_super] = ACTIONS(925), + [sym_crate] = ACTIONS(925), + [sym_metavariable] = ACTIONS(927), + [sym__raw_string_literal_start] = ACTIONS(927), + [sym_float_literal] = ACTIONS(927), + }, + [157] = { + [sym_line_comment] = STATE(157), + [sym_block_comment] = STATE(157), + [sym_identifier] = ACTIONS(929), + [anon_sym_SEMI] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_RPAREN] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_RBRACK] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(931), + [anon_sym_RBRACE] = ACTIONS(931), + [anon_sym_EQ_GT] = ACTIONS(931), + [anon_sym_COLON] = ACTIONS(929), + [anon_sym_DOLLAR] = ACTIONS(929), + [anon_sym_PLUS] = ACTIONS(929), + [anon_sym_STAR] = ACTIONS(929), + [anon_sym_QMARK] = ACTIONS(931), + [anon_sym_u8] = ACTIONS(929), + [anon_sym_i8] = ACTIONS(929), + [anon_sym_u16] = ACTIONS(929), + [anon_sym_i16] = ACTIONS(929), + [anon_sym_u32] = ACTIONS(929), + [anon_sym_i32] = ACTIONS(929), + [anon_sym_u64] = ACTIONS(929), + [anon_sym_i64] = ACTIONS(929), + [anon_sym_u128] = ACTIONS(929), + [anon_sym_i128] = ACTIONS(929), + [anon_sym_isize] = ACTIONS(929), + [anon_sym_usize] = ACTIONS(929), + [anon_sym_f32] = ACTIONS(929), + [anon_sym_f64] = ACTIONS(929), + [anon_sym_bool] = ACTIONS(929), + [anon_sym_str] = ACTIONS(929), + [anon_sym_char] = ACTIONS(929), + [anon_sym_DASH] = ACTIONS(929), + [anon_sym_SLASH] = ACTIONS(929), + [anon_sym_PERCENT] = ACTIONS(929), + [anon_sym_CARET] = ACTIONS(929), + [anon_sym_BANG] = ACTIONS(929), + [anon_sym_AMP] = ACTIONS(929), + [anon_sym_PIPE] = ACTIONS(929), + [anon_sym_AMP_AMP] = ACTIONS(931), + [anon_sym_PIPE_PIPE] = ACTIONS(931), + [anon_sym_LT_LT] = ACTIONS(929), + [anon_sym_GT_GT] = ACTIONS(929), + [anon_sym_PLUS_EQ] = ACTIONS(931), + [anon_sym_DASH_EQ] = ACTIONS(931), + [anon_sym_STAR_EQ] = ACTIONS(931), + [anon_sym_SLASH_EQ] = ACTIONS(931), + [anon_sym_PERCENT_EQ] = ACTIONS(931), + [anon_sym_CARET_EQ] = ACTIONS(931), + [anon_sym_AMP_EQ] = ACTIONS(931), + [anon_sym_PIPE_EQ] = ACTIONS(931), + [anon_sym_LT_LT_EQ] = ACTIONS(931), + [anon_sym_GT_GT_EQ] = ACTIONS(931), + [anon_sym_EQ] = ACTIONS(929), + [anon_sym_EQ_EQ] = ACTIONS(931), + [anon_sym_BANG_EQ] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(929), + [anon_sym_LT] = ACTIONS(929), + [anon_sym_GT_EQ] = ACTIONS(931), + [anon_sym_LT_EQ] = ACTIONS(931), + [anon_sym_AT] = ACTIONS(931), + [anon_sym__] = ACTIONS(929), + [anon_sym_DOT] = ACTIONS(929), + [anon_sym_DOT_DOT] = ACTIONS(929), + [anon_sym_DOT_DOT_DOT] = ACTIONS(931), + [anon_sym_DOT_DOT_EQ] = ACTIONS(931), + [anon_sym_COMMA] = ACTIONS(931), + [anon_sym_COLON_COLON] = ACTIONS(931), + [anon_sym_DASH_GT] = ACTIONS(931), + [anon_sym_POUND] = ACTIONS(931), + [anon_sym_SQUOTE] = ACTIONS(929), + [anon_sym_as] = ACTIONS(929), + [anon_sym_async] = ACTIONS(929), + [anon_sym_await] = ACTIONS(929), + [anon_sym_break] = ACTIONS(929), + [anon_sym_const] = ACTIONS(929), + [anon_sym_continue] = ACTIONS(929), + [anon_sym_default] = ACTIONS(929), + [anon_sym_enum] = ACTIONS(929), + [anon_sym_fn] = ACTIONS(929), + [anon_sym_for] = ACTIONS(929), + [anon_sym_if] = ACTIONS(929), + [anon_sym_impl] = ACTIONS(929), + [anon_sym_let] = ACTIONS(929), + [anon_sym_loop] = ACTIONS(929), + [anon_sym_match] = ACTIONS(929), + [anon_sym_mod] = ACTIONS(929), + [anon_sym_pub] = ACTIONS(929), + [anon_sym_return] = ACTIONS(929), + [anon_sym_static] = ACTIONS(929), + [anon_sym_struct] = ACTIONS(929), + [anon_sym_trait] = ACTIONS(929), + [anon_sym_type] = ACTIONS(929), + [anon_sym_union] = ACTIONS(929), + [anon_sym_unsafe] = ACTIONS(929), + [anon_sym_use] = ACTIONS(929), + [anon_sym_where] = ACTIONS(929), + [anon_sym_while] = ACTIONS(929), + [sym_mutable_specifier] = ACTIONS(929), + [sym_integer_literal] = ACTIONS(931), + [aux_sym_string_literal_token1] = ACTIONS(931), + [sym_char_literal] = ACTIONS(931), + [anon_sym_true] = ACTIONS(929), + [anon_sym_false] = ACTIONS(929), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(929), + [sym_super] = ACTIONS(929), + [sym_crate] = ACTIONS(929), + [sym_metavariable] = ACTIONS(931), + [sym__raw_string_literal_start] = ACTIONS(931), + [sym_float_literal] = ACTIONS(931), + }, + [158] = { + [sym_line_comment] = STATE(158), + [sym_block_comment] = STATE(158), + [sym_identifier] = ACTIONS(933), + [anon_sym_SEMI] = ACTIONS(935), + [anon_sym_LPAREN] = ACTIONS(935), + [anon_sym_RPAREN] = ACTIONS(935), + [anon_sym_LBRACK] = ACTIONS(935), + [anon_sym_RBRACK] = ACTIONS(935), + [anon_sym_LBRACE] = ACTIONS(935), + [anon_sym_RBRACE] = ACTIONS(935), + [anon_sym_EQ_GT] = ACTIONS(935), + [anon_sym_COLON] = ACTIONS(933), + [anon_sym_DOLLAR] = ACTIONS(933), + [anon_sym_PLUS] = ACTIONS(933), + [anon_sym_STAR] = ACTIONS(933), + [anon_sym_QMARK] = ACTIONS(935), + [anon_sym_u8] = ACTIONS(933), + [anon_sym_i8] = ACTIONS(933), + [anon_sym_u16] = ACTIONS(933), + [anon_sym_i16] = ACTIONS(933), + [anon_sym_u32] = ACTIONS(933), + [anon_sym_i32] = ACTIONS(933), + [anon_sym_u64] = ACTIONS(933), + [anon_sym_i64] = ACTIONS(933), + [anon_sym_u128] = ACTIONS(933), + [anon_sym_i128] = ACTIONS(933), + [anon_sym_isize] = ACTIONS(933), + [anon_sym_usize] = ACTIONS(933), + [anon_sym_f32] = ACTIONS(933), + [anon_sym_f64] = ACTIONS(933), + [anon_sym_bool] = ACTIONS(933), + [anon_sym_str] = ACTIONS(933), + [anon_sym_char] = ACTIONS(933), + [anon_sym_DASH] = ACTIONS(933), + [anon_sym_SLASH] = ACTIONS(933), + [anon_sym_PERCENT] = ACTIONS(933), + [anon_sym_CARET] = ACTIONS(933), + [anon_sym_BANG] = ACTIONS(933), + [anon_sym_AMP] = ACTIONS(933), + [anon_sym_PIPE] = ACTIONS(933), + [anon_sym_AMP_AMP] = ACTIONS(935), + [anon_sym_PIPE_PIPE] = ACTIONS(935), + [anon_sym_LT_LT] = ACTIONS(933), + [anon_sym_GT_GT] = ACTIONS(933), + [anon_sym_PLUS_EQ] = ACTIONS(935), + [anon_sym_DASH_EQ] = ACTIONS(935), + [anon_sym_STAR_EQ] = ACTIONS(935), + [anon_sym_SLASH_EQ] = ACTIONS(935), + [anon_sym_PERCENT_EQ] = ACTIONS(935), + [anon_sym_CARET_EQ] = ACTIONS(935), + [anon_sym_AMP_EQ] = ACTIONS(935), + [anon_sym_PIPE_EQ] = ACTIONS(935), + [anon_sym_LT_LT_EQ] = ACTIONS(935), + [anon_sym_GT_GT_EQ] = ACTIONS(935), + [anon_sym_EQ] = ACTIONS(933), + [anon_sym_EQ_EQ] = ACTIONS(935), + [anon_sym_BANG_EQ] = ACTIONS(935), + [anon_sym_GT] = ACTIONS(933), + [anon_sym_LT] = ACTIONS(933), + [anon_sym_GT_EQ] = ACTIONS(935), + [anon_sym_LT_EQ] = ACTIONS(935), + [anon_sym_AT] = ACTIONS(935), + [anon_sym__] = ACTIONS(933), + [anon_sym_DOT] = ACTIONS(933), + [anon_sym_DOT_DOT] = ACTIONS(933), + [anon_sym_DOT_DOT_DOT] = ACTIONS(935), + [anon_sym_DOT_DOT_EQ] = ACTIONS(935), + [anon_sym_COMMA] = ACTIONS(935), + [anon_sym_COLON_COLON] = ACTIONS(935), + [anon_sym_DASH_GT] = ACTIONS(935), + [anon_sym_POUND] = ACTIONS(935), + [anon_sym_SQUOTE] = ACTIONS(933), + [anon_sym_as] = ACTIONS(933), + [anon_sym_async] = ACTIONS(933), + [anon_sym_await] = ACTIONS(933), + [anon_sym_break] = ACTIONS(933), + [anon_sym_const] = ACTIONS(933), + [anon_sym_continue] = ACTIONS(933), + [anon_sym_default] = ACTIONS(933), + [anon_sym_enum] = ACTIONS(933), + [anon_sym_fn] = ACTIONS(933), + [anon_sym_for] = ACTIONS(933), + [anon_sym_if] = ACTIONS(933), + [anon_sym_impl] = ACTIONS(933), + [anon_sym_let] = ACTIONS(933), + [anon_sym_loop] = ACTIONS(933), + [anon_sym_match] = ACTIONS(933), + [anon_sym_mod] = ACTIONS(933), + [anon_sym_pub] = ACTIONS(933), + [anon_sym_return] = ACTIONS(933), + [anon_sym_static] = ACTIONS(933), + [anon_sym_struct] = ACTIONS(933), + [anon_sym_trait] = ACTIONS(933), + [anon_sym_type] = ACTIONS(933), + [anon_sym_union] = ACTIONS(933), + [anon_sym_unsafe] = ACTIONS(933), + [anon_sym_use] = ACTIONS(933), + [anon_sym_where] = ACTIONS(933), + [anon_sym_while] = ACTIONS(933), + [sym_mutable_specifier] = ACTIONS(933), + [sym_integer_literal] = ACTIONS(935), + [aux_sym_string_literal_token1] = ACTIONS(935), + [sym_char_literal] = ACTIONS(935), + [anon_sym_true] = ACTIONS(933), + [anon_sym_false] = ACTIONS(933), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(933), + [sym_super] = ACTIONS(933), + [sym_crate] = ACTIONS(933), + [sym_metavariable] = ACTIONS(935), + [sym__raw_string_literal_start] = ACTIONS(935), + [sym_float_literal] = ACTIONS(935), + }, + [159] = { + [sym_line_comment] = STATE(159), + [sym_block_comment] = STATE(159), + [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_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(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [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), + }, + [160] = { + [sym_line_comment] = STATE(160), + [sym_block_comment] = STATE(160), + [sym_identifier] = ACTIONS(941), + [anon_sym_SEMI] = ACTIONS(943), + [anon_sym_LPAREN] = ACTIONS(943), + [anon_sym_RPAREN] = ACTIONS(943), + [anon_sym_LBRACK] = ACTIONS(943), + [anon_sym_RBRACK] = ACTIONS(943), + [anon_sym_LBRACE] = ACTIONS(943), + [anon_sym_RBRACE] = ACTIONS(943), + [anon_sym_EQ_GT] = ACTIONS(943), + [anon_sym_COLON] = ACTIONS(941), + [anon_sym_DOLLAR] = ACTIONS(941), + [anon_sym_PLUS] = ACTIONS(941), + [anon_sym_STAR] = ACTIONS(941), + [anon_sym_QMARK] = ACTIONS(943), + [anon_sym_u8] = ACTIONS(941), + [anon_sym_i8] = ACTIONS(941), + [anon_sym_u16] = ACTIONS(941), + [anon_sym_i16] = ACTIONS(941), + [anon_sym_u32] = ACTIONS(941), + [anon_sym_i32] = ACTIONS(941), + [anon_sym_u64] = ACTIONS(941), + [anon_sym_i64] = ACTIONS(941), + [anon_sym_u128] = ACTIONS(941), + [anon_sym_i128] = ACTIONS(941), + [anon_sym_isize] = ACTIONS(941), + [anon_sym_usize] = ACTIONS(941), + [anon_sym_f32] = ACTIONS(941), + [anon_sym_f64] = ACTIONS(941), + [anon_sym_bool] = ACTIONS(941), + [anon_sym_str] = ACTIONS(941), + [anon_sym_char] = ACTIONS(941), + [anon_sym_DASH] = ACTIONS(941), + [anon_sym_SLASH] = ACTIONS(941), + [anon_sym_PERCENT] = ACTIONS(941), + [anon_sym_CARET] = ACTIONS(941), + [anon_sym_BANG] = ACTIONS(941), + [anon_sym_AMP] = ACTIONS(941), + [anon_sym_PIPE] = ACTIONS(941), + [anon_sym_AMP_AMP] = ACTIONS(943), + [anon_sym_PIPE_PIPE] = ACTIONS(943), + [anon_sym_LT_LT] = ACTIONS(941), + [anon_sym_GT_GT] = ACTIONS(941), + [anon_sym_PLUS_EQ] = ACTIONS(943), + [anon_sym_DASH_EQ] = ACTIONS(943), + [anon_sym_STAR_EQ] = ACTIONS(943), + [anon_sym_SLASH_EQ] = ACTIONS(943), + [anon_sym_PERCENT_EQ] = ACTIONS(943), + [anon_sym_CARET_EQ] = ACTIONS(943), + [anon_sym_AMP_EQ] = ACTIONS(943), + [anon_sym_PIPE_EQ] = ACTIONS(943), + [anon_sym_LT_LT_EQ] = ACTIONS(943), + [anon_sym_GT_GT_EQ] = ACTIONS(943), + [anon_sym_EQ] = ACTIONS(941), + [anon_sym_EQ_EQ] = ACTIONS(943), + [anon_sym_BANG_EQ] = ACTIONS(943), + [anon_sym_GT] = ACTIONS(941), + [anon_sym_LT] = ACTIONS(941), + [anon_sym_GT_EQ] = ACTIONS(943), + [anon_sym_LT_EQ] = ACTIONS(943), + [anon_sym_AT] = ACTIONS(943), + [anon_sym__] = ACTIONS(941), + [anon_sym_DOT] = ACTIONS(941), + [anon_sym_DOT_DOT] = ACTIONS(941), + [anon_sym_DOT_DOT_DOT] = ACTIONS(943), + [anon_sym_DOT_DOT_EQ] = ACTIONS(943), + [anon_sym_COMMA] = ACTIONS(943), + [anon_sym_COLON_COLON] = ACTIONS(943), + [anon_sym_DASH_GT] = ACTIONS(943), + [anon_sym_POUND] = ACTIONS(943), + [anon_sym_SQUOTE] = ACTIONS(941), + [anon_sym_as] = ACTIONS(941), + [anon_sym_async] = ACTIONS(941), + [anon_sym_await] = ACTIONS(941), + [anon_sym_break] = ACTIONS(941), + [anon_sym_const] = ACTIONS(941), + [anon_sym_continue] = ACTIONS(941), + [anon_sym_default] = ACTIONS(941), + [anon_sym_enum] = ACTIONS(941), + [anon_sym_fn] = ACTIONS(941), + [anon_sym_for] = ACTIONS(941), + [anon_sym_if] = ACTIONS(941), + [anon_sym_impl] = ACTIONS(941), + [anon_sym_let] = ACTIONS(941), + [anon_sym_loop] = ACTIONS(941), + [anon_sym_match] = ACTIONS(941), + [anon_sym_mod] = ACTIONS(941), + [anon_sym_pub] = ACTIONS(941), + [anon_sym_return] = ACTIONS(941), + [anon_sym_static] = ACTIONS(941), + [anon_sym_struct] = ACTIONS(941), + [anon_sym_trait] = ACTIONS(941), + [anon_sym_type] = ACTIONS(941), + [anon_sym_union] = ACTIONS(941), + [anon_sym_unsafe] = ACTIONS(941), + [anon_sym_use] = ACTIONS(941), + [anon_sym_where] = ACTIONS(941), + [anon_sym_while] = ACTIONS(941), + [sym_mutable_specifier] = ACTIONS(941), + [sym_integer_literal] = ACTIONS(943), + [aux_sym_string_literal_token1] = ACTIONS(943), + [sym_char_literal] = ACTIONS(943), + [anon_sym_true] = ACTIONS(941), + [anon_sym_false] = ACTIONS(941), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(941), + [sym_super] = ACTIONS(941), + [sym_crate] = ACTIONS(941), + [sym_metavariable] = ACTIONS(943), + [sym__raw_string_literal_start] = ACTIONS(943), + [sym_float_literal] = ACTIONS(943), }, [161] = { - [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1576), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(161), [sym_block_comment] = STATE(161), - [aux_sym_enum_variant_list_repeat1] = STATE(1002), - [sym_identifier] = ACTIONS(787), - [anon_sym_LPAREN] = ACTIONS(790), - [anon_sym_LBRACK] = ACTIONS(793), - [anon_sym_RBRACK] = ACTIONS(796), - [anon_sym_LBRACE] = ACTIONS(798), - [anon_sym_STAR] = ACTIONS(801), - [anon_sym_u8] = ACTIONS(804), - [anon_sym_i8] = ACTIONS(804), - [anon_sym_u16] = ACTIONS(804), - [anon_sym_i16] = ACTIONS(804), - [anon_sym_u32] = ACTIONS(804), - [anon_sym_i32] = ACTIONS(804), - [anon_sym_u64] = ACTIONS(804), - [anon_sym_i64] = ACTIONS(804), - [anon_sym_u128] = ACTIONS(804), - [anon_sym_i128] = ACTIONS(804), - [anon_sym_isize] = ACTIONS(804), - [anon_sym_usize] = ACTIONS(804), - [anon_sym_f32] = ACTIONS(804), - [anon_sym_f64] = ACTIONS(804), - [anon_sym_bool] = ACTIONS(804), - [anon_sym_str] = ACTIONS(804), - [anon_sym_char] = ACTIONS(804), - [anon_sym_DASH] = ACTIONS(801), - [anon_sym_BANG] = ACTIONS(801), - [anon_sym_AMP] = ACTIONS(807), - [anon_sym_PIPE] = ACTIONS(810), - [anon_sym_LT] = ACTIONS(813), - [anon_sym_DOT_DOT] = ACTIONS(816), - [anon_sym_COMMA] = ACTIONS(796), - [anon_sym_COLON_COLON] = ACTIONS(819), - [anon_sym_POUND] = ACTIONS(822), - [anon_sym_SQUOTE] = ACTIONS(825), - [anon_sym_async] = ACTIONS(828), - [anon_sym_break] = ACTIONS(831), - [anon_sym_const] = ACTIONS(834), - [anon_sym_continue] = ACTIONS(837), - [anon_sym_default] = ACTIONS(840), - [anon_sym_for] = ACTIONS(843), - [anon_sym_if] = ACTIONS(846), - [anon_sym_loop] = ACTIONS(849), - [anon_sym_match] = ACTIONS(852), - [anon_sym_return] = ACTIONS(855), - [anon_sym_static] = ACTIONS(858), - [anon_sym_union] = ACTIONS(840), - [anon_sym_unsafe] = ACTIONS(861), - [anon_sym_while] = ACTIONS(864), - [anon_sym_yield] = ACTIONS(867), - [anon_sym_move] = ACTIONS(870), - [anon_sym_try] = ACTIONS(873), - [sym_integer_literal] = ACTIONS(876), - [aux_sym_string_literal_token1] = ACTIONS(879), - [sym_char_literal] = ACTIONS(876), - [anon_sym_true] = ACTIONS(882), - [anon_sym_false] = ACTIONS(882), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(885), - [sym_super] = ACTIONS(888), - [sym_crate] = ACTIONS(888), - [sym_metavariable] = ACTIONS(891), - [sym__raw_string_literal_start] = ACTIONS(894), - [sym_float_literal] = ACTIONS(876), + [sym_identifier] = ACTIONS(945), + [anon_sym_SEMI] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_RPAREN] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_RBRACK] = ACTIONS(947), + [anon_sym_LBRACE] = ACTIONS(947), + [anon_sym_RBRACE] = ACTIONS(947), + [anon_sym_EQ_GT] = ACTIONS(947), + [anon_sym_COLON] = ACTIONS(945), + [anon_sym_DOLLAR] = ACTIONS(945), + [anon_sym_PLUS] = ACTIONS(945), + [anon_sym_STAR] = ACTIONS(945), + [anon_sym_QMARK] = ACTIONS(947), + [anon_sym_u8] = ACTIONS(945), + [anon_sym_i8] = ACTIONS(945), + [anon_sym_u16] = ACTIONS(945), + [anon_sym_i16] = ACTIONS(945), + [anon_sym_u32] = ACTIONS(945), + [anon_sym_i32] = ACTIONS(945), + [anon_sym_u64] = ACTIONS(945), + [anon_sym_i64] = ACTIONS(945), + [anon_sym_u128] = ACTIONS(945), + [anon_sym_i128] = ACTIONS(945), + [anon_sym_isize] = ACTIONS(945), + [anon_sym_usize] = ACTIONS(945), + [anon_sym_f32] = ACTIONS(945), + [anon_sym_f64] = ACTIONS(945), + [anon_sym_bool] = ACTIONS(945), + [anon_sym_str] = ACTIONS(945), + [anon_sym_char] = ACTIONS(945), + [anon_sym_DASH] = ACTIONS(945), + [anon_sym_SLASH] = ACTIONS(945), + [anon_sym_PERCENT] = ACTIONS(945), + [anon_sym_CARET] = ACTIONS(945), + [anon_sym_BANG] = ACTIONS(945), + [anon_sym_AMP] = ACTIONS(945), + [anon_sym_PIPE] = ACTIONS(945), + [anon_sym_AMP_AMP] = ACTIONS(947), + [anon_sym_PIPE_PIPE] = ACTIONS(947), + [anon_sym_LT_LT] = ACTIONS(945), + [anon_sym_GT_GT] = ACTIONS(945), + [anon_sym_PLUS_EQ] = ACTIONS(947), + [anon_sym_DASH_EQ] = ACTIONS(947), + [anon_sym_STAR_EQ] = ACTIONS(947), + [anon_sym_SLASH_EQ] = ACTIONS(947), + [anon_sym_PERCENT_EQ] = ACTIONS(947), + [anon_sym_CARET_EQ] = ACTIONS(947), + [anon_sym_AMP_EQ] = ACTIONS(947), + [anon_sym_PIPE_EQ] = ACTIONS(947), + [anon_sym_LT_LT_EQ] = ACTIONS(947), + [anon_sym_GT_GT_EQ] = ACTIONS(947), + [anon_sym_EQ] = ACTIONS(945), + [anon_sym_EQ_EQ] = ACTIONS(947), + [anon_sym_BANG_EQ] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(945), + [anon_sym_LT] = ACTIONS(945), + [anon_sym_GT_EQ] = ACTIONS(947), + [anon_sym_LT_EQ] = ACTIONS(947), + [anon_sym_AT] = ACTIONS(947), + [anon_sym__] = ACTIONS(945), + [anon_sym_DOT] = ACTIONS(945), + [anon_sym_DOT_DOT] = ACTIONS(945), + [anon_sym_DOT_DOT_DOT] = ACTIONS(947), + [anon_sym_DOT_DOT_EQ] = ACTIONS(947), + [anon_sym_COMMA] = ACTIONS(947), + [anon_sym_COLON_COLON] = ACTIONS(947), + [anon_sym_DASH_GT] = ACTIONS(947), + [anon_sym_POUND] = ACTIONS(947), + [anon_sym_SQUOTE] = ACTIONS(945), + [anon_sym_as] = ACTIONS(945), + [anon_sym_async] = ACTIONS(945), + [anon_sym_await] = ACTIONS(945), + [anon_sym_break] = ACTIONS(945), + [anon_sym_const] = ACTIONS(945), + [anon_sym_continue] = ACTIONS(945), + [anon_sym_default] = ACTIONS(945), + [anon_sym_enum] = ACTIONS(945), + [anon_sym_fn] = ACTIONS(945), + [anon_sym_for] = ACTIONS(945), + [anon_sym_if] = ACTIONS(945), + [anon_sym_impl] = ACTIONS(945), + [anon_sym_let] = ACTIONS(945), + [anon_sym_loop] = ACTIONS(945), + [anon_sym_match] = ACTIONS(945), + [anon_sym_mod] = ACTIONS(945), + [anon_sym_pub] = ACTIONS(945), + [anon_sym_return] = ACTIONS(945), + [anon_sym_static] = ACTIONS(945), + [anon_sym_struct] = ACTIONS(945), + [anon_sym_trait] = ACTIONS(945), + [anon_sym_type] = ACTIONS(945), + [anon_sym_union] = ACTIONS(945), + [anon_sym_unsafe] = ACTIONS(945), + [anon_sym_use] = ACTIONS(945), + [anon_sym_where] = ACTIONS(945), + [anon_sym_while] = ACTIONS(945), + [sym_mutable_specifier] = ACTIONS(945), + [sym_integer_literal] = ACTIONS(947), + [aux_sym_string_literal_token1] = ACTIONS(947), + [sym_char_literal] = ACTIONS(947), + [anon_sym_true] = ACTIONS(945), + [anon_sym_false] = ACTIONS(945), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(945), + [sym_super] = ACTIONS(945), + [sym_crate] = ACTIONS(945), + [sym_metavariable] = ACTIONS(947), + [sym__raw_string_literal_start] = ACTIONS(947), + [sym_float_literal] = ACTIONS(947), }, [162] = { [sym_line_comment] = STATE(162), [sym_block_comment] = STATE(162), - [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_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(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [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), + [sym_identifier] = ACTIONS(949), + [anon_sym_SEMI] = ACTIONS(951), + [anon_sym_LPAREN] = ACTIONS(951), + [anon_sym_RPAREN] = ACTIONS(951), + [anon_sym_LBRACK] = ACTIONS(951), + [anon_sym_RBRACK] = ACTIONS(951), + [anon_sym_LBRACE] = ACTIONS(951), + [anon_sym_RBRACE] = ACTIONS(951), + [anon_sym_EQ_GT] = ACTIONS(951), + [anon_sym_COLON] = ACTIONS(949), + [anon_sym_DOLLAR] = ACTIONS(949), + [anon_sym_PLUS] = ACTIONS(949), + [anon_sym_STAR] = ACTIONS(949), + [anon_sym_QMARK] = ACTIONS(951), + [anon_sym_u8] = ACTIONS(949), + [anon_sym_i8] = ACTIONS(949), + [anon_sym_u16] = ACTIONS(949), + [anon_sym_i16] = ACTIONS(949), + [anon_sym_u32] = ACTIONS(949), + [anon_sym_i32] = ACTIONS(949), + [anon_sym_u64] = ACTIONS(949), + [anon_sym_i64] = ACTIONS(949), + [anon_sym_u128] = ACTIONS(949), + [anon_sym_i128] = ACTIONS(949), + [anon_sym_isize] = ACTIONS(949), + [anon_sym_usize] = ACTIONS(949), + [anon_sym_f32] = ACTIONS(949), + [anon_sym_f64] = ACTIONS(949), + [anon_sym_bool] = ACTIONS(949), + [anon_sym_str] = ACTIONS(949), + [anon_sym_char] = ACTIONS(949), + [anon_sym_DASH] = ACTIONS(949), + [anon_sym_SLASH] = ACTIONS(949), + [anon_sym_PERCENT] = ACTIONS(949), + [anon_sym_CARET] = ACTIONS(949), + [anon_sym_BANG] = ACTIONS(949), + [anon_sym_AMP] = ACTIONS(949), + [anon_sym_PIPE] = ACTIONS(949), + [anon_sym_AMP_AMP] = ACTIONS(951), + [anon_sym_PIPE_PIPE] = ACTIONS(951), + [anon_sym_LT_LT] = ACTIONS(949), + [anon_sym_GT_GT] = ACTIONS(949), + [anon_sym_PLUS_EQ] = ACTIONS(951), + [anon_sym_DASH_EQ] = ACTIONS(951), + [anon_sym_STAR_EQ] = ACTIONS(951), + [anon_sym_SLASH_EQ] = ACTIONS(951), + [anon_sym_PERCENT_EQ] = ACTIONS(951), + [anon_sym_CARET_EQ] = ACTIONS(951), + [anon_sym_AMP_EQ] = ACTIONS(951), + [anon_sym_PIPE_EQ] = ACTIONS(951), + [anon_sym_LT_LT_EQ] = ACTIONS(951), + [anon_sym_GT_GT_EQ] = ACTIONS(951), + [anon_sym_EQ] = ACTIONS(949), + [anon_sym_EQ_EQ] = ACTIONS(951), + [anon_sym_BANG_EQ] = ACTIONS(951), + [anon_sym_GT] = ACTIONS(949), + [anon_sym_LT] = ACTIONS(949), + [anon_sym_GT_EQ] = ACTIONS(951), + [anon_sym_LT_EQ] = ACTIONS(951), + [anon_sym_AT] = ACTIONS(951), + [anon_sym__] = ACTIONS(949), + [anon_sym_DOT] = ACTIONS(949), + [anon_sym_DOT_DOT] = ACTIONS(949), + [anon_sym_DOT_DOT_DOT] = ACTIONS(951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(951), + [anon_sym_COMMA] = ACTIONS(951), + [anon_sym_COLON_COLON] = ACTIONS(951), + [anon_sym_DASH_GT] = ACTIONS(951), + [anon_sym_POUND] = ACTIONS(951), + [anon_sym_SQUOTE] = ACTIONS(949), + [anon_sym_as] = ACTIONS(949), + [anon_sym_async] = ACTIONS(949), + [anon_sym_await] = ACTIONS(949), + [anon_sym_break] = ACTIONS(949), + [anon_sym_const] = ACTIONS(949), + [anon_sym_continue] = ACTIONS(949), + [anon_sym_default] = ACTIONS(949), + [anon_sym_enum] = ACTIONS(949), + [anon_sym_fn] = ACTIONS(949), + [anon_sym_for] = ACTIONS(949), + [anon_sym_if] = ACTIONS(949), + [anon_sym_impl] = ACTIONS(949), + [anon_sym_let] = ACTIONS(949), + [anon_sym_loop] = ACTIONS(949), + [anon_sym_match] = ACTIONS(949), + [anon_sym_mod] = ACTIONS(949), + [anon_sym_pub] = ACTIONS(949), + [anon_sym_return] = ACTIONS(949), + [anon_sym_static] = ACTIONS(949), + [anon_sym_struct] = ACTIONS(949), + [anon_sym_trait] = ACTIONS(949), + [anon_sym_type] = ACTIONS(949), + [anon_sym_union] = ACTIONS(949), + [anon_sym_unsafe] = ACTIONS(949), + [anon_sym_use] = ACTIONS(949), + [anon_sym_where] = ACTIONS(949), + [anon_sym_while] = ACTIONS(949), + [sym_mutable_specifier] = ACTIONS(949), + [sym_integer_literal] = ACTIONS(951), + [aux_sym_string_literal_token1] = ACTIONS(951), + [sym_char_literal] = ACTIONS(951), + [anon_sym_true] = ACTIONS(949), + [anon_sym_false] = ACTIONS(949), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(949), + [sym_super] = ACTIONS(949), + [sym_crate] = ACTIONS(949), + [sym_metavariable] = ACTIONS(951), + [sym__raw_string_literal_start] = ACTIONS(951), + [sym_float_literal] = ACTIONS(951), }, [163] = { [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1543), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1560), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1268), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), [sym_line_comment] = STATE(163), [sym_block_comment] = STATE(163), - [aux_sym_enum_variant_list_repeat1] = STATE(161), + [aux_sym_enum_variant_list_repeat1] = STATE(137), [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(955), + [anon_sym_RBRACK] = ACTIONS(953), [anon_sym_LBRACE] = ACTIONS(338), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -35052,9 +35060,9 @@ 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(957), + [anon_sym_COMMA] = ACTIONS(955), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(871), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), [anon_sym_break] = ACTIONS(41), @@ -35090,665 +35098,665 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [164] = { [sym_line_comment] = STATE(164), [sym_block_comment] = STATE(164), - [sym_identifier] = ACTIONS(959), - [anon_sym_SEMI] = ACTIONS(961), - [anon_sym_LPAREN] = ACTIONS(961), - [anon_sym_RPAREN] = ACTIONS(961), - [anon_sym_LBRACK] = ACTIONS(961), - [anon_sym_RBRACK] = ACTIONS(961), - [anon_sym_LBRACE] = ACTIONS(961), - [anon_sym_RBRACE] = ACTIONS(961), - [anon_sym_EQ_GT] = ACTIONS(961), - [anon_sym_COLON] = ACTIONS(959), - [anon_sym_DOLLAR] = ACTIONS(959), - [anon_sym_PLUS] = ACTIONS(959), - [anon_sym_STAR] = ACTIONS(959), - [anon_sym_QMARK] = ACTIONS(961), - [anon_sym_u8] = ACTIONS(959), - [anon_sym_i8] = ACTIONS(959), - [anon_sym_u16] = ACTIONS(959), - [anon_sym_i16] = ACTIONS(959), - [anon_sym_u32] = ACTIONS(959), - [anon_sym_i32] = ACTIONS(959), - [anon_sym_u64] = ACTIONS(959), - [anon_sym_i64] = ACTIONS(959), - [anon_sym_u128] = ACTIONS(959), - [anon_sym_i128] = ACTIONS(959), - [anon_sym_isize] = ACTIONS(959), - [anon_sym_usize] = ACTIONS(959), - [anon_sym_f32] = ACTIONS(959), - [anon_sym_f64] = ACTIONS(959), - [anon_sym_bool] = ACTIONS(959), - [anon_sym_str] = ACTIONS(959), - [anon_sym_char] = ACTIONS(959), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_SLASH] = ACTIONS(959), - [anon_sym_PERCENT] = ACTIONS(959), - [anon_sym_CARET] = ACTIONS(959), - [anon_sym_BANG] = ACTIONS(959), - [anon_sym_AMP] = ACTIONS(959), - [anon_sym_PIPE] = ACTIONS(959), - [anon_sym_AMP_AMP] = ACTIONS(961), - [anon_sym_PIPE_PIPE] = ACTIONS(961), - [anon_sym_LT_LT] = ACTIONS(959), - [anon_sym_GT_GT] = ACTIONS(959), - [anon_sym_PLUS_EQ] = ACTIONS(961), - [anon_sym_DASH_EQ] = ACTIONS(961), - [anon_sym_STAR_EQ] = ACTIONS(961), - [anon_sym_SLASH_EQ] = ACTIONS(961), - [anon_sym_PERCENT_EQ] = ACTIONS(961), - [anon_sym_CARET_EQ] = ACTIONS(961), - [anon_sym_AMP_EQ] = ACTIONS(961), - [anon_sym_PIPE_EQ] = ACTIONS(961), - [anon_sym_LT_LT_EQ] = ACTIONS(961), - [anon_sym_GT_GT_EQ] = ACTIONS(961), - [anon_sym_EQ] = ACTIONS(959), - [anon_sym_EQ_EQ] = ACTIONS(961), - [anon_sym_BANG_EQ] = ACTIONS(961), - [anon_sym_GT] = ACTIONS(959), - [anon_sym_LT] = ACTIONS(959), - [anon_sym_GT_EQ] = ACTIONS(961), - [anon_sym_LT_EQ] = ACTIONS(961), - [anon_sym_AT] = ACTIONS(961), - [anon_sym__] = ACTIONS(959), - [anon_sym_DOT] = ACTIONS(959), - [anon_sym_DOT_DOT] = ACTIONS(959), - [anon_sym_DOT_DOT_DOT] = ACTIONS(961), - [anon_sym_DOT_DOT_EQ] = ACTIONS(961), - [anon_sym_COMMA] = ACTIONS(961), - [anon_sym_COLON_COLON] = ACTIONS(961), - [anon_sym_DASH_GT] = ACTIONS(961), - [anon_sym_POUND] = ACTIONS(961), - [anon_sym_SQUOTE] = ACTIONS(959), - [anon_sym_as] = ACTIONS(959), - [anon_sym_async] = ACTIONS(959), - [anon_sym_await] = ACTIONS(959), - [anon_sym_break] = ACTIONS(959), - [anon_sym_const] = ACTIONS(959), - [anon_sym_continue] = ACTIONS(959), - [anon_sym_default] = ACTIONS(959), - [anon_sym_enum] = ACTIONS(959), - [anon_sym_fn] = ACTIONS(959), - [anon_sym_for] = ACTIONS(959), - [anon_sym_if] = ACTIONS(959), - [anon_sym_impl] = ACTIONS(959), - [anon_sym_let] = ACTIONS(959), - [anon_sym_loop] = ACTIONS(959), - [anon_sym_match] = ACTIONS(959), - [anon_sym_mod] = ACTIONS(959), - [anon_sym_pub] = ACTIONS(959), - [anon_sym_return] = ACTIONS(959), - [anon_sym_static] = ACTIONS(959), - [anon_sym_struct] = ACTIONS(959), - [anon_sym_trait] = ACTIONS(959), - [anon_sym_type] = ACTIONS(959), - [anon_sym_union] = ACTIONS(959), - [anon_sym_unsafe] = ACTIONS(959), - [anon_sym_use] = ACTIONS(959), - [anon_sym_where] = ACTIONS(959), - [anon_sym_while] = ACTIONS(959), - [sym_mutable_specifier] = ACTIONS(959), - [sym_integer_literal] = ACTIONS(961), - [aux_sym_string_literal_token1] = ACTIONS(961), - [sym_char_literal] = ACTIONS(961), - [anon_sym_true] = ACTIONS(959), - [anon_sym_false] = ACTIONS(959), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(959), - [sym_super] = ACTIONS(959), - [sym_crate] = ACTIONS(959), - [sym_metavariable] = ACTIONS(961), - [sym__raw_string_literal_start] = ACTIONS(961), - [sym_float_literal] = ACTIONS(961), + [sym_identifier] = ACTIONS(957), + [anon_sym_SEMI] = ACTIONS(959), + [anon_sym_LPAREN] = ACTIONS(959), + [anon_sym_RPAREN] = ACTIONS(959), + [anon_sym_LBRACK] = ACTIONS(959), + [anon_sym_RBRACK] = ACTIONS(959), + [anon_sym_LBRACE] = ACTIONS(959), + [anon_sym_RBRACE] = ACTIONS(959), + [anon_sym_EQ_GT] = ACTIONS(959), + [anon_sym_COLON] = ACTIONS(957), + [anon_sym_DOLLAR] = ACTIONS(957), + [anon_sym_PLUS] = ACTIONS(957), + [anon_sym_STAR] = ACTIONS(957), + [anon_sym_QMARK] = ACTIONS(959), + [anon_sym_u8] = ACTIONS(957), + [anon_sym_i8] = ACTIONS(957), + [anon_sym_u16] = ACTIONS(957), + [anon_sym_i16] = ACTIONS(957), + [anon_sym_u32] = ACTIONS(957), + [anon_sym_i32] = ACTIONS(957), + [anon_sym_u64] = ACTIONS(957), + [anon_sym_i64] = ACTIONS(957), + [anon_sym_u128] = ACTIONS(957), + [anon_sym_i128] = ACTIONS(957), + [anon_sym_isize] = ACTIONS(957), + [anon_sym_usize] = ACTIONS(957), + [anon_sym_f32] = ACTIONS(957), + [anon_sym_f64] = ACTIONS(957), + [anon_sym_bool] = ACTIONS(957), + [anon_sym_str] = ACTIONS(957), + [anon_sym_char] = ACTIONS(957), + [anon_sym_DASH] = ACTIONS(957), + [anon_sym_SLASH] = ACTIONS(957), + [anon_sym_PERCENT] = ACTIONS(957), + [anon_sym_CARET] = ACTIONS(957), + [anon_sym_BANG] = ACTIONS(957), + [anon_sym_AMP] = ACTIONS(957), + [anon_sym_PIPE] = ACTIONS(957), + [anon_sym_AMP_AMP] = ACTIONS(959), + [anon_sym_PIPE_PIPE] = ACTIONS(959), + [anon_sym_LT_LT] = ACTIONS(957), + [anon_sym_GT_GT] = ACTIONS(957), + [anon_sym_PLUS_EQ] = ACTIONS(959), + [anon_sym_DASH_EQ] = ACTIONS(959), + [anon_sym_STAR_EQ] = ACTIONS(959), + [anon_sym_SLASH_EQ] = ACTIONS(959), + [anon_sym_PERCENT_EQ] = ACTIONS(959), + [anon_sym_CARET_EQ] = ACTIONS(959), + [anon_sym_AMP_EQ] = ACTIONS(959), + [anon_sym_PIPE_EQ] = ACTIONS(959), + [anon_sym_LT_LT_EQ] = ACTIONS(959), + [anon_sym_GT_GT_EQ] = ACTIONS(959), + [anon_sym_EQ] = ACTIONS(957), + [anon_sym_EQ_EQ] = ACTIONS(959), + [anon_sym_BANG_EQ] = ACTIONS(959), + [anon_sym_GT] = ACTIONS(957), + [anon_sym_LT] = ACTIONS(957), + [anon_sym_GT_EQ] = ACTIONS(959), + [anon_sym_LT_EQ] = ACTIONS(959), + [anon_sym_AT] = ACTIONS(959), + [anon_sym__] = ACTIONS(957), + [anon_sym_DOT] = ACTIONS(957), + [anon_sym_DOT_DOT] = ACTIONS(957), + [anon_sym_DOT_DOT_DOT] = ACTIONS(959), + [anon_sym_DOT_DOT_EQ] = ACTIONS(959), + [anon_sym_COMMA] = ACTIONS(959), + [anon_sym_COLON_COLON] = ACTIONS(959), + [anon_sym_DASH_GT] = ACTIONS(959), + [anon_sym_POUND] = ACTIONS(959), + [anon_sym_SQUOTE] = ACTIONS(957), + [anon_sym_as] = ACTIONS(957), + [anon_sym_async] = ACTIONS(957), + [anon_sym_await] = ACTIONS(957), + [anon_sym_break] = ACTIONS(957), + [anon_sym_const] = ACTIONS(957), + [anon_sym_continue] = ACTIONS(957), + [anon_sym_default] = ACTIONS(957), + [anon_sym_enum] = ACTIONS(957), + [anon_sym_fn] = ACTIONS(957), + [anon_sym_for] = ACTIONS(957), + [anon_sym_if] = ACTIONS(957), + [anon_sym_impl] = ACTIONS(957), + [anon_sym_let] = ACTIONS(957), + [anon_sym_loop] = ACTIONS(957), + [anon_sym_match] = ACTIONS(957), + [anon_sym_mod] = ACTIONS(957), + [anon_sym_pub] = ACTIONS(957), + [anon_sym_return] = ACTIONS(957), + [anon_sym_static] = ACTIONS(957), + [anon_sym_struct] = ACTIONS(957), + [anon_sym_trait] = ACTIONS(957), + [anon_sym_type] = ACTIONS(957), + [anon_sym_union] = ACTIONS(957), + [anon_sym_unsafe] = ACTIONS(957), + [anon_sym_use] = ACTIONS(957), + [anon_sym_where] = ACTIONS(957), + [anon_sym_while] = ACTIONS(957), + [sym_mutable_specifier] = ACTIONS(957), + [sym_integer_literal] = ACTIONS(959), + [aux_sym_string_literal_token1] = ACTIONS(959), + [sym_char_literal] = ACTIONS(959), + [anon_sym_true] = ACTIONS(957), + [anon_sym_false] = ACTIONS(957), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(957), + [sym_super] = ACTIONS(957), + [sym_crate] = ACTIONS(957), + [sym_metavariable] = ACTIONS(959), + [sym__raw_string_literal_start] = ACTIONS(959), + [sym_float_literal] = ACTIONS(959), }, [165] = { [sym_line_comment] = STATE(165), [sym_block_comment] = STATE(165), - [sym_identifier] = ACTIONS(963), - [anon_sym_SEMI] = ACTIONS(965), - [anon_sym_LPAREN] = ACTIONS(965), - [anon_sym_RPAREN] = ACTIONS(965), - [anon_sym_LBRACK] = ACTIONS(965), - [anon_sym_RBRACK] = ACTIONS(965), - [anon_sym_LBRACE] = ACTIONS(965), - [anon_sym_RBRACE] = ACTIONS(965), - [anon_sym_EQ_GT] = ACTIONS(965), - [anon_sym_COLON] = ACTIONS(963), - [anon_sym_DOLLAR] = ACTIONS(963), - [anon_sym_PLUS] = ACTIONS(963), - [anon_sym_STAR] = ACTIONS(963), - [anon_sym_QMARK] = ACTIONS(965), - [anon_sym_u8] = ACTIONS(963), - [anon_sym_i8] = ACTIONS(963), - [anon_sym_u16] = ACTIONS(963), - [anon_sym_i16] = ACTIONS(963), - [anon_sym_u32] = ACTIONS(963), - [anon_sym_i32] = ACTIONS(963), - [anon_sym_u64] = ACTIONS(963), - [anon_sym_i64] = ACTIONS(963), - [anon_sym_u128] = ACTIONS(963), - [anon_sym_i128] = ACTIONS(963), - [anon_sym_isize] = ACTIONS(963), - [anon_sym_usize] = ACTIONS(963), - [anon_sym_f32] = ACTIONS(963), - [anon_sym_f64] = ACTIONS(963), - [anon_sym_bool] = ACTIONS(963), - [anon_sym_str] = ACTIONS(963), - [anon_sym_char] = ACTIONS(963), - [anon_sym_DASH] = ACTIONS(963), - [anon_sym_SLASH] = ACTIONS(963), - [anon_sym_PERCENT] = ACTIONS(963), - [anon_sym_CARET] = ACTIONS(963), - [anon_sym_BANG] = ACTIONS(963), - [anon_sym_AMP] = ACTIONS(963), - [anon_sym_PIPE] = ACTIONS(963), - [anon_sym_AMP_AMP] = ACTIONS(965), - [anon_sym_PIPE_PIPE] = ACTIONS(965), - [anon_sym_LT_LT] = ACTIONS(963), - [anon_sym_GT_GT] = ACTIONS(963), - [anon_sym_PLUS_EQ] = ACTIONS(965), - [anon_sym_DASH_EQ] = ACTIONS(965), - [anon_sym_STAR_EQ] = ACTIONS(965), - [anon_sym_SLASH_EQ] = ACTIONS(965), - [anon_sym_PERCENT_EQ] = ACTIONS(965), - [anon_sym_CARET_EQ] = ACTIONS(965), - [anon_sym_AMP_EQ] = ACTIONS(965), - [anon_sym_PIPE_EQ] = ACTIONS(965), - [anon_sym_LT_LT_EQ] = ACTIONS(965), - [anon_sym_GT_GT_EQ] = ACTIONS(965), - [anon_sym_EQ] = ACTIONS(963), - [anon_sym_EQ_EQ] = ACTIONS(965), - [anon_sym_BANG_EQ] = ACTIONS(965), - [anon_sym_GT] = ACTIONS(963), - [anon_sym_LT] = ACTIONS(963), - [anon_sym_GT_EQ] = ACTIONS(965), - [anon_sym_LT_EQ] = ACTIONS(965), - [anon_sym_AT] = ACTIONS(965), - [anon_sym__] = ACTIONS(963), - [anon_sym_DOT] = ACTIONS(963), - [anon_sym_DOT_DOT] = ACTIONS(963), - [anon_sym_DOT_DOT_DOT] = ACTIONS(965), - [anon_sym_DOT_DOT_EQ] = ACTIONS(965), - [anon_sym_COMMA] = ACTIONS(965), - [anon_sym_COLON_COLON] = ACTIONS(965), - [anon_sym_DASH_GT] = ACTIONS(965), - [anon_sym_POUND] = ACTIONS(965), - [anon_sym_SQUOTE] = ACTIONS(963), - [anon_sym_as] = ACTIONS(963), - [anon_sym_async] = ACTIONS(963), - [anon_sym_await] = ACTIONS(963), - [anon_sym_break] = ACTIONS(963), - [anon_sym_const] = ACTIONS(963), - [anon_sym_continue] = ACTIONS(963), - [anon_sym_default] = ACTIONS(963), - [anon_sym_enum] = ACTIONS(963), - [anon_sym_fn] = ACTIONS(963), - [anon_sym_for] = ACTIONS(963), - [anon_sym_if] = ACTIONS(963), - [anon_sym_impl] = ACTIONS(963), - [anon_sym_let] = ACTIONS(963), - [anon_sym_loop] = ACTIONS(963), - [anon_sym_match] = ACTIONS(963), - [anon_sym_mod] = ACTIONS(963), - [anon_sym_pub] = ACTIONS(963), - [anon_sym_return] = ACTIONS(963), - [anon_sym_static] = ACTIONS(963), - [anon_sym_struct] = ACTIONS(963), - [anon_sym_trait] = ACTIONS(963), - [anon_sym_type] = ACTIONS(963), - [anon_sym_union] = ACTIONS(963), - [anon_sym_unsafe] = ACTIONS(963), - [anon_sym_use] = ACTIONS(963), - [anon_sym_where] = ACTIONS(963), - [anon_sym_while] = ACTIONS(963), - [sym_mutable_specifier] = ACTIONS(963), - [sym_integer_literal] = ACTIONS(965), - [aux_sym_string_literal_token1] = ACTIONS(965), - [sym_char_literal] = ACTIONS(965), - [anon_sym_true] = ACTIONS(963), - [anon_sym_false] = ACTIONS(963), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(963), - [sym_super] = ACTIONS(963), - [sym_crate] = ACTIONS(963), - [sym_metavariable] = ACTIONS(965), - [sym__raw_string_literal_start] = ACTIONS(965), - [sym_float_literal] = ACTIONS(965), + [sym_identifier] = ACTIONS(745), + [anon_sym_SEMI] = ACTIONS(747), + [anon_sym_LPAREN] = ACTIONS(747), + [anon_sym_RPAREN] = ACTIONS(747), + [anon_sym_LBRACK] = ACTIONS(747), + [anon_sym_RBRACK] = ACTIONS(747), + [anon_sym_LBRACE] = ACTIONS(747), + [anon_sym_RBRACE] = ACTIONS(747), + [anon_sym_EQ_GT] = ACTIONS(747), + [anon_sym_COLON] = ACTIONS(745), + [anon_sym_DOLLAR] = ACTIONS(745), + [anon_sym_PLUS] = ACTIONS(745), + [anon_sym_STAR] = ACTIONS(745), + [anon_sym_QMARK] = ACTIONS(747), + [anon_sym_u8] = ACTIONS(745), + [anon_sym_i8] = ACTIONS(745), + [anon_sym_u16] = ACTIONS(745), + [anon_sym_i16] = ACTIONS(745), + [anon_sym_u32] = ACTIONS(745), + [anon_sym_i32] = ACTIONS(745), + [anon_sym_u64] = ACTIONS(745), + [anon_sym_i64] = ACTIONS(745), + [anon_sym_u128] = ACTIONS(745), + [anon_sym_i128] = ACTIONS(745), + [anon_sym_isize] = ACTIONS(745), + [anon_sym_usize] = ACTIONS(745), + [anon_sym_f32] = ACTIONS(745), + [anon_sym_f64] = ACTIONS(745), + [anon_sym_bool] = ACTIONS(745), + [anon_sym_str] = ACTIONS(745), + [anon_sym_char] = ACTIONS(745), + [anon_sym_DASH] = ACTIONS(745), + [anon_sym_SLASH] = ACTIONS(745), + [anon_sym_PERCENT] = ACTIONS(745), + [anon_sym_CARET] = ACTIONS(745), + [anon_sym_BANG] = ACTIONS(745), + [anon_sym_AMP] = ACTIONS(745), + [anon_sym_PIPE] = ACTIONS(745), + [anon_sym_AMP_AMP] = ACTIONS(747), + [anon_sym_PIPE_PIPE] = ACTIONS(747), + [anon_sym_LT_LT] = ACTIONS(745), + [anon_sym_GT_GT] = ACTIONS(745), + [anon_sym_PLUS_EQ] = ACTIONS(747), + [anon_sym_DASH_EQ] = ACTIONS(747), + [anon_sym_STAR_EQ] = ACTIONS(747), + [anon_sym_SLASH_EQ] = ACTIONS(747), + [anon_sym_PERCENT_EQ] = ACTIONS(747), + [anon_sym_CARET_EQ] = ACTIONS(747), + [anon_sym_AMP_EQ] = ACTIONS(747), + [anon_sym_PIPE_EQ] = ACTIONS(747), + [anon_sym_LT_LT_EQ] = ACTIONS(747), + [anon_sym_GT_GT_EQ] = ACTIONS(747), + [anon_sym_EQ] = ACTIONS(745), + [anon_sym_EQ_EQ] = ACTIONS(747), + [anon_sym_BANG_EQ] = ACTIONS(747), + [anon_sym_GT] = ACTIONS(745), + [anon_sym_LT] = ACTIONS(745), + [anon_sym_GT_EQ] = ACTIONS(747), + [anon_sym_LT_EQ] = ACTIONS(747), + [anon_sym_AT] = ACTIONS(747), + [anon_sym__] = ACTIONS(745), + [anon_sym_DOT] = ACTIONS(745), + [anon_sym_DOT_DOT] = ACTIONS(745), + [anon_sym_DOT_DOT_DOT] = ACTIONS(747), + [anon_sym_DOT_DOT_EQ] = ACTIONS(747), + [anon_sym_COMMA] = ACTIONS(747), + [anon_sym_COLON_COLON] = ACTIONS(747), + [anon_sym_DASH_GT] = ACTIONS(747), + [anon_sym_POUND] = ACTIONS(747), + [anon_sym_SQUOTE] = ACTIONS(745), + [anon_sym_as] = ACTIONS(745), + [anon_sym_async] = ACTIONS(745), + [anon_sym_await] = ACTIONS(745), + [anon_sym_break] = ACTIONS(745), + [anon_sym_const] = ACTIONS(745), + [anon_sym_continue] = ACTIONS(745), + [anon_sym_default] = ACTIONS(745), + [anon_sym_enum] = ACTIONS(745), + [anon_sym_fn] = ACTIONS(745), + [anon_sym_for] = ACTIONS(745), + [anon_sym_if] = ACTIONS(745), + [anon_sym_impl] = ACTIONS(745), + [anon_sym_let] = ACTIONS(745), + [anon_sym_loop] = ACTIONS(745), + [anon_sym_match] = ACTIONS(745), + [anon_sym_mod] = ACTIONS(745), + [anon_sym_pub] = ACTIONS(745), + [anon_sym_return] = ACTIONS(745), + [anon_sym_static] = ACTIONS(745), + [anon_sym_struct] = ACTIONS(745), + [anon_sym_trait] = ACTIONS(745), + [anon_sym_type] = ACTIONS(745), + [anon_sym_union] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(745), + [anon_sym_use] = ACTIONS(745), + [anon_sym_where] = ACTIONS(745), + [anon_sym_while] = ACTIONS(745), + [sym_mutable_specifier] = ACTIONS(745), + [sym_integer_literal] = ACTIONS(747), + [aux_sym_string_literal_token1] = ACTIONS(747), + [sym_char_literal] = ACTIONS(747), + [anon_sym_true] = ACTIONS(745), + [anon_sym_false] = ACTIONS(745), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(745), + [sym_super] = ACTIONS(745), + [sym_crate] = ACTIONS(745), + [sym_metavariable] = ACTIONS(747), + [sym__raw_string_literal_start] = ACTIONS(747), + [sym_float_literal] = ACTIONS(747), }, [166] = { + [sym_attribute_item] = STATE(1003), + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1562), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1268), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), [sym_line_comment] = STATE(166), [sym_block_comment] = STATE(166), - [sym_identifier] = ACTIONS(741), - [anon_sym_SEMI] = ACTIONS(743), - [anon_sym_LPAREN] = ACTIONS(743), - [anon_sym_RPAREN] = ACTIONS(743), - [anon_sym_LBRACK] = ACTIONS(743), - [anon_sym_RBRACK] = ACTIONS(743), - [anon_sym_LBRACE] = ACTIONS(743), - [anon_sym_RBRACE] = ACTIONS(743), - [anon_sym_EQ_GT] = ACTIONS(743), - [anon_sym_COLON] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(741), - [anon_sym_PLUS] = ACTIONS(741), - [anon_sym_STAR] = ACTIONS(741), - [anon_sym_QMARK] = ACTIONS(743), - [anon_sym_u8] = ACTIONS(741), - [anon_sym_i8] = ACTIONS(741), - [anon_sym_u16] = ACTIONS(741), - [anon_sym_i16] = ACTIONS(741), - [anon_sym_u32] = ACTIONS(741), - [anon_sym_i32] = ACTIONS(741), - [anon_sym_u64] = ACTIONS(741), - [anon_sym_i64] = ACTIONS(741), - [anon_sym_u128] = ACTIONS(741), - [anon_sym_i128] = ACTIONS(741), - [anon_sym_isize] = ACTIONS(741), - [anon_sym_usize] = ACTIONS(741), - [anon_sym_f32] = ACTIONS(741), - [anon_sym_f64] = ACTIONS(741), - [anon_sym_bool] = ACTIONS(741), - [anon_sym_str] = ACTIONS(741), - [anon_sym_char] = ACTIONS(741), - [anon_sym_DASH] = ACTIONS(741), - [anon_sym_SLASH] = ACTIONS(741), - [anon_sym_PERCENT] = ACTIONS(741), - [anon_sym_CARET] = ACTIONS(741), - [anon_sym_BANG] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(741), - [anon_sym_PIPE] = ACTIONS(741), - [anon_sym_AMP_AMP] = ACTIONS(743), - [anon_sym_PIPE_PIPE] = ACTIONS(743), - [anon_sym_LT_LT] = ACTIONS(741), - [anon_sym_GT_GT] = ACTIONS(741), - [anon_sym_PLUS_EQ] = ACTIONS(743), - [anon_sym_DASH_EQ] = ACTIONS(743), - [anon_sym_STAR_EQ] = ACTIONS(743), - [anon_sym_SLASH_EQ] = ACTIONS(743), - [anon_sym_PERCENT_EQ] = ACTIONS(743), - [anon_sym_CARET_EQ] = ACTIONS(743), - [anon_sym_AMP_EQ] = ACTIONS(743), - [anon_sym_PIPE_EQ] = ACTIONS(743), - [anon_sym_LT_LT_EQ] = ACTIONS(743), - [anon_sym_GT_GT_EQ] = ACTIONS(743), - [anon_sym_EQ] = ACTIONS(741), - [anon_sym_EQ_EQ] = ACTIONS(743), - [anon_sym_BANG_EQ] = ACTIONS(743), - [anon_sym_GT] = ACTIONS(741), - [anon_sym_LT] = ACTIONS(741), - [anon_sym_GT_EQ] = ACTIONS(743), - [anon_sym_LT_EQ] = ACTIONS(743), - [anon_sym_AT] = ACTIONS(743), - [anon_sym__] = ACTIONS(741), - [anon_sym_DOT] = ACTIONS(741), - [anon_sym_DOT_DOT] = ACTIONS(741), - [anon_sym_DOT_DOT_DOT] = ACTIONS(743), - [anon_sym_DOT_DOT_EQ] = ACTIONS(743), - [anon_sym_COMMA] = ACTIONS(743), - [anon_sym_COLON_COLON] = ACTIONS(743), - [anon_sym_DASH_GT] = ACTIONS(743), - [anon_sym_POUND] = ACTIONS(743), - [anon_sym_SQUOTE] = ACTIONS(741), - [anon_sym_as] = ACTIONS(741), - [anon_sym_async] = ACTIONS(741), - [anon_sym_await] = ACTIONS(741), - [anon_sym_break] = ACTIONS(741), - [anon_sym_const] = ACTIONS(741), - [anon_sym_continue] = ACTIONS(741), - [anon_sym_default] = ACTIONS(741), - [anon_sym_enum] = ACTIONS(741), - [anon_sym_fn] = ACTIONS(741), - [anon_sym_for] = ACTIONS(741), - [anon_sym_if] = ACTIONS(741), - [anon_sym_impl] = ACTIONS(741), - [anon_sym_let] = ACTIONS(741), - [anon_sym_loop] = ACTIONS(741), - [anon_sym_match] = ACTIONS(741), - [anon_sym_mod] = ACTIONS(741), - [anon_sym_pub] = ACTIONS(741), - [anon_sym_return] = ACTIONS(741), - [anon_sym_static] = ACTIONS(741), - [anon_sym_struct] = ACTIONS(741), - [anon_sym_trait] = ACTIONS(741), - [anon_sym_type] = ACTIONS(741), - [anon_sym_union] = ACTIONS(741), - [anon_sym_unsafe] = ACTIONS(741), - [anon_sym_use] = ACTIONS(741), - [anon_sym_where] = ACTIONS(741), - [anon_sym_while] = ACTIONS(741), - [sym_mutable_specifier] = ACTIONS(741), - [sym_integer_literal] = ACTIONS(743), - [aux_sym_string_literal_token1] = ACTIONS(743), - [sym_char_literal] = ACTIONS(743), - [anon_sym_true] = ACTIONS(741), - [anon_sym_false] = ACTIONS(741), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(741), - [sym_super] = ACTIONS(741), - [sym_crate] = ACTIONS(741), - [sym_metavariable] = ACTIONS(743), - [sym__raw_string_literal_start] = ACTIONS(743), - [sym_float_literal] = ACTIONS(743), + [aux_sym_enum_variant_list_repeat1] = STATE(163), + [sym_identifier] = ACTIONS(334), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(961), + [anon_sym_LBRACE] = ACTIONS(338), + [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(963), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(871), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(346), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(348), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(350), + [anon_sym_for] = ACTIONS(352), + [anon_sym_if] = ACTIONS(354), + [anon_sym_loop] = ACTIONS(356), + [anon_sym_match] = ACTIONS(358), + [anon_sym_return] = ACTIONS(69), + [anon_sym_static] = ACTIONS(360), + [anon_sym_union] = ACTIONS(350), + [anon_sym_unsafe] = ACTIONS(362), + [anon_sym_while] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(366), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(107), + [sym_super] = ACTIONS(109), + [sym_crate] = ACTIONS(109), + [sym_metavariable] = ACTIONS(113), + [sym__raw_string_literal_start] = ACTIONS(115), + [sym_float_literal] = ACTIONS(95), }, [167] = { [sym_line_comment] = STATE(167), [sym_block_comment] = STATE(167), - [sym_identifier] = ACTIONS(967), - [anon_sym_SEMI] = ACTIONS(969), - [anon_sym_LPAREN] = ACTIONS(969), - [anon_sym_RPAREN] = ACTIONS(969), - [anon_sym_LBRACK] = ACTIONS(969), - [anon_sym_RBRACK] = ACTIONS(969), - [anon_sym_LBRACE] = ACTIONS(969), - [anon_sym_RBRACE] = ACTIONS(969), - [anon_sym_EQ_GT] = ACTIONS(969), - [anon_sym_COLON] = ACTIONS(967), - [anon_sym_DOLLAR] = ACTIONS(967), - [anon_sym_PLUS] = ACTIONS(967), - [anon_sym_STAR] = ACTIONS(967), - [anon_sym_QMARK] = ACTIONS(969), - [anon_sym_u8] = ACTIONS(967), - [anon_sym_i8] = ACTIONS(967), - [anon_sym_u16] = ACTIONS(967), - [anon_sym_i16] = ACTIONS(967), - [anon_sym_u32] = ACTIONS(967), - [anon_sym_i32] = ACTIONS(967), - [anon_sym_u64] = ACTIONS(967), - [anon_sym_i64] = ACTIONS(967), - [anon_sym_u128] = ACTIONS(967), - [anon_sym_i128] = ACTIONS(967), - [anon_sym_isize] = ACTIONS(967), - [anon_sym_usize] = ACTIONS(967), - [anon_sym_f32] = ACTIONS(967), - [anon_sym_f64] = ACTIONS(967), - [anon_sym_bool] = ACTIONS(967), - [anon_sym_str] = ACTIONS(967), - [anon_sym_char] = ACTIONS(967), - [anon_sym_DASH] = ACTIONS(967), - [anon_sym_SLASH] = ACTIONS(967), - [anon_sym_PERCENT] = ACTIONS(967), - [anon_sym_CARET] = ACTIONS(967), - [anon_sym_BANG] = ACTIONS(967), - [anon_sym_AMP] = ACTIONS(967), - [anon_sym_PIPE] = ACTIONS(967), - [anon_sym_AMP_AMP] = ACTIONS(969), - [anon_sym_PIPE_PIPE] = ACTIONS(969), - [anon_sym_LT_LT] = ACTIONS(967), - [anon_sym_GT_GT] = ACTIONS(967), - [anon_sym_PLUS_EQ] = ACTIONS(969), - [anon_sym_DASH_EQ] = ACTIONS(969), - [anon_sym_STAR_EQ] = ACTIONS(969), - [anon_sym_SLASH_EQ] = ACTIONS(969), - [anon_sym_PERCENT_EQ] = ACTIONS(969), - [anon_sym_CARET_EQ] = ACTIONS(969), - [anon_sym_AMP_EQ] = ACTIONS(969), - [anon_sym_PIPE_EQ] = ACTIONS(969), - [anon_sym_LT_LT_EQ] = ACTIONS(969), - [anon_sym_GT_GT_EQ] = ACTIONS(969), - [anon_sym_EQ] = ACTIONS(967), - [anon_sym_EQ_EQ] = ACTIONS(969), - [anon_sym_BANG_EQ] = ACTIONS(969), - [anon_sym_GT] = ACTIONS(967), - [anon_sym_LT] = ACTIONS(967), - [anon_sym_GT_EQ] = ACTIONS(969), - [anon_sym_LT_EQ] = ACTIONS(969), - [anon_sym_AT] = ACTIONS(969), - [anon_sym__] = ACTIONS(967), - [anon_sym_DOT] = ACTIONS(967), - [anon_sym_DOT_DOT] = ACTIONS(967), - [anon_sym_DOT_DOT_DOT] = ACTIONS(969), - [anon_sym_DOT_DOT_EQ] = ACTIONS(969), - [anon_sym_COMMA] = ACTIONS(969), - [anon_sym_COLON_COLON] = ACTIONS(969), - [anon_sym_DASH_GT] = ACTIONS(969), - [anon_sym_POUND] = ACTIONS(969), - [anon_sym_SQUOTE] = ACTIONS(967), - [anon_sym_as] = ACTIONS(967), - [anon_sym_async] = ACTIONS(967), - [anon_sym_await] = ACTIONS(967), - [anon_sym_break] = ACTIONS(967), - [anon_sym_const] = ACTIONS(967), - [anon_sym_continue] = ACTIONS(967), - [anon_sym_default] = ACTIONS(967), - [anon_sym_enum] = ACTIONS(967), - [anon_sym_fn] = ACTIONS(967), - [anon_sym_for] = ACTIONS(967), - [anon_sym_if] = ACTIONS(967), - [anon_sym_impl] = ACTIONS(967), - [anon_sym_let] = ACTIONS(967), - [anon_sym_loop] = ACTIONS(967), - [anon_sym_match] = ACTIONS(967), - [anon_sym_mod] = ACTIONS(967), - [anon_sym_pub] = ACTIONS(967), - [anon_sym_return] = ACTIONS(967), - [anon_sym_static] = ACTIONS(967), - [anon_sym_struct] = ACTIONS(967), - [anon_sym_trait] = ACTIONS(967), - [anon_sym_type] = ACTIONS(967), - [anon_sym_union] = ACTIONS(967), - [anon_sym_unsafe] = ACTIONS(967), - [anon_sym_use] = ACTIONS(967), - [anon_sym_where] = ACTIONS(967), - [anon_sym_while] = ACTIONS(967), - [sym_mutable_specifier] = ACTIONS(967), - [sym_integer_literal] = ACTIONS(969), - [aux_sym_string_literal_token1] = ACTIONS(969), - [sym_char_literal] = ACTIONS(969), - [anon_sym_true] = ACTIONS(967), - [anon_sym_false] = ACTIONS(967), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(967), - [sym_super] = ACTIONS(967), - [sym_crate] = ACTIONS(967), - [sym_metavariable] = ACTIONS(969), - [sym__raw_string_literal_start] = ACTIONS(969), - [sym_float_literal] = ACTIONS(969), + [sym_identifier] = ACTIONS(965), + [anon_sym_SEMI] = ACTIONS(967), + [anon_sym_LPAREN] = ACTIONS(967), + [anon_sym_RPAREN] = ACTIONS(967), + [anon_sym_LBRACK] = ACTIONS(967), + [anon_sym_RBRACK] = ACTIONS(967), + [anon_sym_LBRACE] = ACTIONS(967), + [anon_sym_RBRACE] = ACTIONS(967), + [anon_sym_EQ_GT] = ACTIONS(967), + [anon_sym_COLON] = ACTIONS(965), + [anon_sym_DOLLAR] = ACTIONS(965), + [anon_sym_PLUS] = ACTIONS(965), + [anon_sym_STAR] = ACTIONS(965), + [anon_sym_QMARK] = ACTIONS(967), + [anon_sym_u8] = ACTIONS(965), + [anon_sym_i8] = ACTIONS(965), + [anon_sym_u16] = ACTIONS(965), + [anon_sym_i16] = ACTIONS(965), + [anon_sym_u32] = ACTIONS(965), + [anon_sym_i32] = ACTIONS(965), + [anon_sym_u64] = ACTIONS(965), + [anon_sym_i64] = ACTIONS(965), + [anon_sym_u128] = ACTIONS(965), + [anon_sym_i128] = ACTIONS(965), + [anon_sym_isize] = ACTIONS(965), + [anon_sym_usize] = ACTIONS(965), + [anon_sym_f32] = ACTIONS(965), + [anon_sym_f64] = ACTIONS(965), + [anon_sym_bool] = ACTIONS(965), + [anon_sym_str] = ACTIONS(965), + [anon_sym_char] = ACTIONS(965), + [anon_sym_DASH] = ACTIONS(965), + [anon_sym_SLASH] = ACTIONS(965), + [anon_sym_PERCENT] = ACTIONS(965), + [anon_sym_CARET] = ACTIONS(965), + [anon_sym_BANG] = ACTIONS(965), + [anon_sym_AMP] = ACTIONS(965), + [anon_sym_PIPE] = ACTIONS(965), + [anon_sym_AMP_AMP] = ACTIONS(967), + [anon_sym_PIPE_PIPE] = ACTIONS(967), + [anon_sym_LT_LT] = ACTIONS(965), + [anon_sym_GT_GT] = ACTIONS(965), + [anon_sym_PLUS_EQ] = ACTIONS(967), + [anon_sym_DASH_EQ] = ACTIONS(967), + [anon_sym_STAR_EQ] = ACTIONS(967), + [anon_sym_SLASH_EQ] = ACTIONS(967), + [anon_sym_PERCENT_EQ] = ACTIONS(967), + [anon_sym_CARET_EQ] = ACTIONS(967), + [anon_sym_AMP_EQ] = ACTIONS(967), + [anon_sym_PIPE_EQ] = ACTIONS(967), + [anon_sym_LT_LT_EQ] = ACTIONS(967), + [anon_sym_GT_GT_EQ] = ACTIONS(967), + [anon_sym_EQ] = ACTIONS(965), + [anon_sym_EQ_EQ] = ACTIONS(967), + [anon_sym_BANG_EQ] = ACTIONS(967), + [anon_sym_GT] = ACTIONS(965), + [anon_sym_LT] = ACTIONS(965), + [anon_sym_GT_EQ] = ACTIONS(967), + [anon_sym_LT_EQ] = ACTIONS(967), + [anon_sym_AT] = ACTIONS(967), + [anon_sym__] = ACTIONS(965), + [anon_sym_DOT] = ACTIONS(965), + [anon_sym_DOT_DOT] = ACTIONS(965), + [anon_sym_DOT_DOT_DOT] = ACTIONS(967), + [anon_sym_DOT_DOT_EQ] = ACTIONS(967), + [anon_sym_COMMA] = ACTIONS(967), + [anon_sym_COLON_COLON] = ACTIONS(967), + [anon_sym_DASH_GT] = ACTIONS(967), + [anon_sym_POUND] = ACTIONS(967), + [anon_sym_SQUOTE] = ACTIONS(965), + [anon_sym_as] = ACTIONS(965), + [anon_sym_async] = ACTIONS(965), + [anon_sym_await] = ACTIONS(965), + [anon_sym_break] = ACTIONS(965), + [anon_sym_const] = ACTIONS(965), + [anon_sym_continue] = ACTIONS(965), + [anon_sym_default] = ACTIONS(965), + [anon_sym_enum] = ACTIONS(965), + [anon_sym_fn] = ACTIONS(965), + [anon_sym_for] = ACTIONS(965), + [anon_sym_if] = ACTIONS(965), + [anon_sym_impl] = ACTIONS(965), + [anon_sym_let] = ACTIONS(965), + [anon_sym_loop] = ACTIONS(965), + [anon_sym_match] = ACTIONS(965), + [anon_sym_mod] = ACTIONS(965), + [anon_sym_pub] = ACTIONS(965), + [anon_sym_return] = ACTIONS(965), + [anon_sym_static] = ACTIONS(965), + [anon_sym_struct] = ACTIONS(965), + [anon_sym_trait] = ACTIONS(965), + [anon_sym_type] = ACTIONS(965), + [anon_sym_union] = ACTIONS(965), + [anon_sym_unsafe] = ACTIONS(965), + [anon_sym_use] = ACTIONS(965), + [anon_sym_where] = ACTIONS(965), + [anon_sym_while] = ACTIONS(965), + [sym_mutable_specifier] = ACTIONS(965), + [sym_integer_literal] = ACTIONS(967), + [aux_sym_string_literal_token1] = ACTIONS(967), + [sym_char_literal] = ACTIONS(967), + [anon_sym_true] = ACTIONS(965), + [anon_sym_false] = ACTIONS(965), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(965), + [sym_super] = ACTIONS(965), + [sym_crate] = ACTIONS(965), + [sym_metavariable] = ACTIONS(967), + [sym__raw_string_literal_start] = ACTIONS(967), + [sym_float_literal] = ACTIONS(967), }, [168] = { [sym_line_comment] = STATE(168), [sym_block_comment] = STATE(168), - [sym_identifier] = ACTIONS(741), - [anon_sym_SEMI] = ACTIONS(743), - [anon_sym_LPAREN] = ACTIONS(743), - [anon_sym_RPAREN] = ACTIONS(743), - [anon_sym_LBRACK] = ACTIONS(743), - [anon_sym_RBRACK] = ACTIONS(743), - [anon_sym_LBRACE] = ACTIONS(743), - [anon_sym_RBRACE] = ACTIONS(743), - [anon_sym_EQ_GT] = ACTIONS(743), - [anon_sym_COLON] = ACTIONS(971), - [anon_sym_DOLLAR] = ACTIONS(741), - [anon_sym_PLUS] = ACTIONS(741), - [anon_sym_STAR] = ACTIONS(741), - [anon_sym_QMARK] = ACTIONS(743), - [anon_sym_u8] = ACTIONS(741), - [anon_sym_i8] = ACTIONS(741), - [anon_sym_u16] = ACTIONS(741), - [anon_sym_i16] = ACTIONS(741), - [anon_sym_u32] = ACTIONS(741), - [anon_sym_i32] = ACTIONS(741), - [anon_sym_u64] = ACTIONS(741), - [anon_sym_i64] = ACTIONS(741), - [anon_sym_u128] = ACTIONS(741), - [anon_sym_i128] = ACTIONS(741), - [anon_sym_isize] = ACTIONS(741), - [anon_sym_usize] = ACTIONS(741), - [anon_sym_f32] = ACTIONS(741), - [anon_sym_f64] = ACTIONS(741), - [anon_sym_bool] = ACTIONS(741), - [anon_sym_str] = ACTIONS(741), - [anon_sym_char] = ACTIONS(741), - [anon_sym_DASH] = ACTIONS(741), - [anon_sym_SLASH] = ACTIONS(741), - [anon_sym_PERCENT] = ACTIONS(741), - [anon_sym_CARET] = ACTIONS(741), - [anon_sym_BANG] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(741), - [anon_sym_PIPE] = ACTIONS(741), - [anon_sym_AMP_AMP] = ACTIONS(743), - [anon_sym_PIPE_PIPE] = ACTIONS(743), - [anon_sym_LT_LT] = ACTIONS(741), - [anon_sym_GT_GT] = ACTIONS(741), - [anon_sym_PLUS_EQ] = ACTIONS(743), - [anon_sym_DASH_EQ] = ACTIONS(743), - [anon_sym_STAR_EQ] = ACTIONS(743), - [anon_sym_SLASH_EQ] = ACTIONS(743), - [anon_sym_PERCENT_EQ] = ACTIONS(743), - [anon_sym_CARET_EQ] = ACTIONS(743), - [anon_sym_AMP_EQ] = ACTIONS(743), - [anon_sym_PIPE_EQ] = ACTIONS(743), - [anon_sym_LT_LT_EQ] = ACTIONS(743), - [anon_sym_GT_GT_EQ] = ACTIONS(743), - [anon_sym_EQ] = ACTIONS(741), - [anon_sym_EQ_EQ] = ACTIONS(743), - [anon_sym_BANG_EQ] = ACTIONS(743), - [anon_sym_GT] = ACTIONS(741), - [anon_sym_LT] = ACTIONS(741), - [anon_sym_GT_EQ] = ACTIONS(743), - [anon_sym_LT_EQ] = ACTIONS(743), - [anon_sym_AT] = ACTIONS(743), - [anon_sym__] = ACTIONS(741), - [anon_sym_DOT] = ACTIONS(741), - [anon_sym_DOT_DOT] = ACTIONS(741), - [anon_sym_DOT_DOT_DOT] = ACTIONS(743), - [anon_sym_DOT_DOT_EQ] = ACTIONS(743), - [anon_sym_COMMA] = ACTIONS(743), - [anon_sym_COLON_COLON] = ACTIONS(743), - [anon_sym_DASH_GT] = ACTIONS(743), - [anon_sym_POUND] = ACTIONS(743), - [anon_sym_SQUOTE] = ACTIONS(741), - [anon_sym_as] = ACTIONS(741), - [anon_sym_async] = ACTIONS(741), - [anon_sym_await] = ACTIONS(741), - [anon_sym_break] = ACTIONS(741), - [anon_sym_const] = ACTIONS(741), - [anon_sym_continue] = ACTIONS(741), - [anon_sym_default] = ACTIONS(741), - [anon_sym_enum] = ACTIONS(741), - [anon_sym_fn] = ACTIONS(741), - [anon_sym_for] = ACTIONS(741), - [anon_sym_if] = ACTIONS(741), - [anon_sym_impl] = ACTIONS(741), - [anon_sym_let] = ACTIONS(741), - [anon_sym_loop] = ACTIONS(741), - [anon_sym_match] = ACTIONS(741), - [anon_sym_mod] = ACTIONS(741), - [anon_sym_pub] = ACTIONS(741), - [anon_sym_return] = ACTIONS(741), - [anon_sym_static] = ACTIONS(741), - [anon_sym_struct] = ACTIONS(741), - [anon_sym_trait] = ACTIONS(741), - [anon_sym_type] = ACTIONS(741), - [anon_sym_union] = ACTIONS(741), - [anon_sym_unsafe] = ACTIONS(741), - [anon_sym_use] = ACTIONS(741), - [anon_sym_where] = ACTIONS(741), - [anon_sym_while] = ACTIONS(741), - [sym_mutable_specifier] = ACTIONS(741), - [sym_integer_literal] = ACTIONS(743), - [aux_sym_string_literal_token1] = ACTIONS(743), - [sym_char_literal] = ACTIONS(743), - [anon_sym_true] = ACTIONS(741), - [anon_sym_false] = ACTIONS(741), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(741), - [sym_super] = ACTIONS(741), - [sym_crate] = ACTIONS(741), - [sym_metavariable] = ACTIONS(743), - [sym__raw_string_literal_start] = ACTIONS(743), - [sym_float_literal] = ACTIONS(743), + [sym_identifier] = ACTIONS(969), + [anon_sym_SEMI] = ACTIONS(971), + [anon_sym_LPAREN] = ACTIONS(971), + [anon_sym_RPAREN] = ACTIONS(971), + [anon_sym_LBRACK] = ACTIONS(971), + [anon_sym_RBRACK] = ACTIONS(971), + [anon_sym_LBRACE] = ACTIONS(971), + [anon_sym_RBRACE] = ACTIONS(971), + [anon_sym_EQ_GT] = ACTIONS(971), + [anon_sym_COLON] = ACTIONS(969), + [anon_sym_DOLLAR] = ACTIONS(969), + [anon_sym_PLUS] = ACTIONS(969), + [anon_sym_STAR] = ACTIONS(969), + [anon_sym_QMARK] = ACTIONS(971), + [anon_sym_u8] = ACTIONS(969), + [anon_sym_i8] = ACTIONS(969), + [anon_sym_u16] = ACTIONS(969), + [anon_sym_i16] = ACTIONS(969), + [anon_sym_u32] = ACTIONS(969), + [anon_sym_i32] = ACTIONS(969), + [anon_sym_u64] = ACTIONS(969), + [anon_sym_i64] = ACTIONS(969), + [anon_sym_u128] = ACTIONS(969), + [anon_sym_i128] = ACTIONS(969), + [anon_sym_isize] = ACTIONS(969), + [anon_sym_usize] = ACTIONS(969), + [anon_sym_f32] = ACTIONS(969), + [anon_sym_f64] = ACTIONS(969), + [anon_sym_bool] = ACTIONS(969), + [anon_sym_str] = ACTIONS(969), + [anon_sym_char] = ACTIONS(969), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_SLASH] = ACTIONS(969), + [anon_sym_PERCENT] = ACTIONS(969), + [anon_sym_CARET] = ACTIONS(969), + [anon_sym_BANG] = ACTIONS(969), + [anon_sym_AMP] = ACTIONS(969), + [anon_sym_PIPE] = ACTIONS(969), + [anon_sym_AMP_AMP] = ACTIONS(971), + [anon_sym_PIPE_PIPE] = ACTIONS(971), + [anon_sym_LT_LT] = ACTIONS(969), + [anon_sym_GT_GT] = ACTIONS(969), + [anon_sym_PLUS_EQ] = ACTIONS(971), + [anon_sym_DASH_EQ] = ACTIONS(971), + [anon_sym_STAR_EQ] = ACTIONS(971), + [anon_sym_SLASH_EQ] = ACTIONS(971), + [anon_sym_PERCENT_EQ] = ACTIONS(971), + [anon_sym_CARET_EQ] = ACTIONS(971), + [anon_sym_AMP_EQ] = ACTIONS(971), + [anon_sym_PIPE_EQ] = ACTIONS(971), + [anon_sym_LT_LT_EQ] = ACTIONS(971), + [anon_sym_GT_GT_EQ] = ACTIONS(971), + [anon_sym_EQ] = ACTIONS(969), + [anon_sym_EQ_EQ] = ACTIONS(971), + [anon_sym_BANG_EQ] = ACTIONS(971), + [anon_sym_GT] = ACTIONS(969), + [anon_sym_LT] = ACTIONS(969), + [anon_sym_GT_EQ] = ACTIONS(971), + [anon_sym_LT_EQ] = ACTIONS(971), + [anon_sym_AT] = ACTIONS(971), + [anon_sym__] = ACTIONS(969), + [anon_sym_DOT] = ACTIONS(969), + [anon_sym_DOT_DOT] = ACTIONS(969), + [anon_sym_DOT_DOT_DOT] = ACTIONS(971), + [anon_sym_DOT_DOT_EQ] = ACTIONS(971), + [anon_sym_COMMA] = ACTIONS(971), + [anon_sym_COLON_COLON] = ACTIONS(971), + [anon_sym_DASH_GT] = ACTIONS(971), + [anon_sym_POUND] = ACTIONS(971), + [anon_sym_SQUOTE] = ACTIONS(969), + [anon_sym_as] = ACTIONS(969), + [anon_sym_async] = ACTIONS(969), + [anon_sym_await] = ACTIONS(969), + [anon_sym_break] = ACTIONS(969), + [anon_sym_const] = ACTIONS(969), + [anon_sym_continue] = ACTIONS(969), + [anon_sym_default] = ACTIONS(969), + [anon_sym_enum] = ACTIONS(969), + [anon_sym_fn] = ACTIONS(969), + [anon_sym_for] = ACTIONS(969), + [anon_sym_if] = ACTIONS(969), + [anon_sym_impl] = ACTIONS(969), + [anon_sym_let] = ACTIONS(969), + [anon_sym_loop] = ACTIONS(969), + [anon_sym_match] = ACTIONS(969), + [anon_sym_mod] = ACTIONS(969), + [anon_sym_pub] = ACTIONS(969), + [anon_sym_return] = ACTIONS(969), + [anon_sym_static] = ACTIONS(969), + [anon_sym_struct] = ACTIONS(969), + [anon_sym_trait] = ACTIONS(969), + [anon_sym_type] = ACTIONS(969), + [anon_sym_union] = ACTIONS(969), + [anon_sym_unsafe] = ACTIONS(969), + [anon_sym_use] = ACTIONS(969), + [anon_sym_where] = ACTIONS(969), + [anon_sym_while] = ACTIONS(969), + [sym_mutable_specifier] = ACTIONS(969), + [sym_integer_literal] = ACTIONS(971), + [aux_sym_string_literal_token1] = ACTIONS(971), + [sym_char_literal] = ACTIONS(971), + [anon_sym_true] = ACTIONS(969), + [anon_sym_false] = ACTIONS(969), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(969), + [sym_super] = ACTIONS(969), + [sym_crate] = ACTIONS(969), + [sym_metavariable] = ACTIONS(971), + [sym__raw_string_literal_start] = ACTIONS(971), + [sym_float_literal] = ACTIONS(971), }, [169] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1699), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_let_condition] = STATE(2823), - [sym__let_chain] = STATE(2887), - [sym__condition] = STATE(2593), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2731), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1762), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_let_condition] = STATE(2840), + [sym__let_chain] = STATE(2831), + [sym__condition] = STATE(2591), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(236), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), [sym_line_comment] = STATE(169), [sym_block_comment] = STATE(169), - [sym_identifier] = ACTIONS(456), + [sym_identifier] = ACTIONS(466), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), + [anon_sym_u8] = ACTIONS(468), + [anon_sym_i8] = ACTIONS(468), + [anon_sym_u16] = ACTIONS(468), + [anon_sym_i16] = ACTIONS(468), + [anon_sym_u32] = ACTIONS(468), + [anon_sym_i32] = ACTIONS(468), + [anon_sym_u64] = ACTIONS(468), + [anon_sym_i64] = ACTIONS(468), + [anon_sym_u128] = ACTIONS(468), + [anon_sym_i128] = ACTIONS(468), + [anon_sym_isize] = ACTIONS(468), + [anon_sym_usize] = ACTIONS(468), + [anon_sym_f32] = ACTIONS(468), + [anon_sym_f64] = ACTIONS(468), + [anon_sym_bool] = ACTIONS(468), + [anon_sym_str] = ACTIONS(468), + [anon_sym_char] = ACTIONS(468), [anon_sym_DASH] = ACTIONS(973), [anon_sym_BANG] = ACTIONS(973), [anon_sym_AMP] = ACTIONS(975), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(977), - [anon_sym_COLON_COLON] = ACTIONS(462), + [anon_sym_COLON_COLON] = ACTIONS(472), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), [anon_sym_break] = ACTIONS(494), [anon_sym_const] = ACTIONS(348), [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), + [anon_sym_default] = ACTIONS(476), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), [anon_sym_let] = ACTIONS(979), @@ -35756,7 +35764,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(358), [anon_sym_return] = ACTIONS(498), [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), + [anon_sym_union] = ACTIONS(476), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), [anon_sym_yield] = ACTIONS(502), @@ -35769,100 +35777,214 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), + [sym_self] = ACTIONS(486), + [sym_super] = ACTIONS(488), + [sym_crate] = ACTIONS(488), + [sym_metavariable] = ACTIONS(490), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, [170] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1699), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_let_condition] = STATE(2823), - [sym__let_chain] = STATE(2887), - [sym__condition] = STATE(2730), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(170), [sym_block_comment] = STATE(170), - [sym_identifier] = ACTIONS(456), + [sym_identifier] = ACTIONS(981), + [anon_sym_SEMI] = ACTIONS(983), + [anon_sym_LPAREN] = ACTIONS(983), + [anon_sym_RPAREN] = ACTIONS(983), + [anon_sym_LBRACK] = ACTIONS(983), + [anon_sym_RBRACK] = ACTIONS(983), + [anon_sym_LBRACE] = ACTIONS(983), + [anon_sym_RBRACE] = ACTIONS(983), + [anon_sym_EQ_GT] = ACTIONS(983), + [anon_sym_COLON] = ACTIONS(981), + [anon_sym_DOLLAR] = ACTIONS(983), + [anon_sym_PLUS] = ACTIONS(981), + [anon_sym_STAR] = ACTIONS(981), + [anon_sym_QMARK] = ACTIONS(983), + [anon_sym_u8] = ACTIONS(981), + [anon_sym_i8] = ACTIONS(981), + [anon_sym_u16] = ACTIONS(981), + [anon_sym_i16] = ACTIONS(981), + [anon_sym_u32] = ACTIONS(981), + [anon_sym_i32] = ACTIONS(981), + [anon_sym_u64] = ACTIONS(981), + [anon_sym_i64] = ACTIONS(981), + [anon_sym_u128] = ACTIONS(981), + [anon_sym_i128] = ACTIONS(981), + [anon_sym_isize] = ACTIONS(981), + [anon_sym_usize] = ACTIONS(981), + [anon_sym_f32] = ACTIONS(981), + [anon_sym_f64] = ACTIONS(981), + [anon_sym_bool] = ACTIONS(981), + [anon_sym_str] = ACTIONS(981), + [anon_sym_char] = ACTIONS(981), + [anon_sym_DASH] = ACTIONS(981), + [anon_sym_SLASH] = ACTIONS(981), + [anon_sym_PERCENT] = ACTIONS(981), + [anon_sym_CARET] = ACTIONS(981), + [anon_sym_BANG] = ACTIONS(981), + [anon_sym_AMP] = ACTIONS(981), + [anon_sym_PIPE] = ACTIONS(981), + [anon_sym_AMP_AMP] = ACTIONS(983), + [anon_sym_PIPE_PIPE] = ACTIONS(983), + [anon_sym_LT_LT] = ACTIONS(981), + [anon_sym_GT_GT] = ACTIONS(981), + [anon_sym_PLUS_EQ] = ACTIONS(983), + [anon_sym_DASH_EQ] = ACTIONS(983), + [anon_sym_STAR_EQ] = ACTIONS(983), + [anon_sym_SLASH_EQ] = ACTIONS(983), + [anon_sym_PERCENT_EQ] = ACTIONS(983), + [anon_sym_CARET_EQ] = ACTIONS(983), + [anon_sym_AMP_EQ] = ACTIONS(983), + [anon_sym_PIPE_EQ] = ACTIONS(983), + [anon_sym_LT_LT_EQ] = ACTIONS(983), + [anon_sym_GT_GT_EQ] = ACTIONS(983), + [anon_sym_EQ] = ACTIONS(981), + [anon_sym_EQ_EQ] = ACTIONS(983), + [anon_sym_BANG_EQ] = ACTIONS(983), + [anon_sym_GT] = ACTIONS(981), + [anon_sym_LT] = ACTIONS(981), + [anon_sym_GT_EQ] = ACTIONS(983), + [anon_sym_LT_EQ] = ACTIONS(983), + [anon_sym_AT] = ACTIONS(983), + [anon_sym__] = ACTIONS(981), + [anon_sym_DOT] = ACTIONS(981), + [anon_sym_DOT_DOT] = ACTIONS(981), + [anon_sym_DOT_DOT_DOT] = ACTIONS(983), + [anon_sym_DOT_DOT_EQ] = ACTIONS(983), + [anon_sym_COMMA] = ACTIONS(983), + [anon_sym_COLON_COLON] = ACTIONS(983), + [anon_sym_DASH_GT] = ACTIONS(983), + [anon_sym_POUND] = ACTIONS(983), + [anon_sym_SQUOTE] = ACTIONS(981), + [anon_sym_as] = ACTIONS(981), + [anon_sym_async] = ACTIONS(981), + [anon_sym_await] = ACTIONS(981), + [anon_sym_break] = ACTIONS(981), + [anon_sym_const] = ACTIONS(981), + [anon_sym_continue] = ACTIONS(981), + [anon_sym_default] = ACTIONS(981), + [anon_sym_enum] = ACTIONS(981), + [anon_sym_fn] = ACTIONS(981), + [anon_sym_for] = ACTIONS(981), + [anon_sym_if] = ACTIONS(981), + [anon_sym_impl] = ACTIONS(981), + [anon_sym_let] = ACTIONS(981), + [anon_sym_loop] = ACTIONS(981), + [anon_sym_match] = ACTIONS(981), + [anon_sym_mod] = ACTIONS(981), + [anon_sym_pub] = ACTIONS(981), + [anon_sym_return] = ACTIONS(981), + [anon_sym_static] = ACTIONS(981), + [anon_sym_struct] = ACTIONS(981), + [anon_sym_trait] = ACTIONS(981), + [anon_sym_type] = ACTIONS(981), + [anon_sym_union] = ACTIONS(981), + [anon_sym_unsafe] = ACTIONS(981), + [anon_sym_use] = ACTIONS(981), + [anon_sym_where] = ACTIONS(981), + [anon_sym_while] = ACTIONS(981), + [sym_mutable_specifier] = ACTIONS(981), + [sym_integer_literal] = ACTIONS(983), + [aux_sym_string_literal_token1] = ACTIONS(983), + [sym_char_literal] = ACTIONS(983), + [anon_sym_true] = ACTIONS(981), + [anon_sym_false] = ACTIONS(981), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(981), + [sym_super] = ACTIONS(981), + [sym_crate] = ACTIONS(981), + [sym__raw_string_literal_start] = ACTIONS(983), + [sym_float_literal] = ACTIONS(983), + }, + [171] = { + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2731), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1762), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_let_condition] = STATE(2840), + [sym__let_chain] = STATE(2831), + [sym__condition] = STATE(2557), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(236), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), + [sym_line_comment] = STATE(171), + [sym_block_comment] = STATE(171), + [sym_identifier] = ACTIONS(466), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), + [anon_sym_u8] = ACTIONS(468), + [anon_sym_i8] = ACTIONS(468), + [anon_sym_u16] = ACTIONS(468), + [anon_sym_i16] = ACTIONS(468), + [anon_sym_u32] = ACTIONS(468), + [anon_sym_i32] = ACTIONS(468), + [anon_sym_u64] = ACTIONS(468), + [anon_sym_i64] = ACTIONS(468), + [anon_sym_u128] = ACTIONS(468), + [anon_sym_i128] = ACTIONS(468), + [anon_sym_isize] = ACTIONS(468), + [anon_sym_usize] = ACTIONS(468), + [anon_sym_f32] = ACTIONS(468), + [anon_sym_f64] = ACTIONS(468), + [anon_sym_bool] = ACTIONS(468), + [anon_sym_str] = ACTIONS(468), + [anon_sym_char] = ACTIONS(468), [anon_sym_DASH] = ACTIONS(973), [anon_sym_BANG] = ACTIONS(973), [anon_sym_AMP] = ACTIONS(975), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(977), - [anon_sym_COLON_COLON] = ACTIONS(462), + [anon_sym_COLON_COLON] = ACTIONS(472), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), [anon_sym_break] = ACTIONS(494), [anon_sym_const] = ACTIONS(348), [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), + [anon_sym_default] = ACTIONS(476), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), [anon_sym_let] = ACTIONS(979), @@ -35870,7 +35992,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(358), [anon_sym_return] = ACTIONS(498), [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), + [anon_sym_union] = ACTIONS(476), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), [anon_sym_yield] = ACTIONS(502), @@ -35883,68 +36005,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), + [sym_self] = ACTIONS(486), + [sym_super] = ACTIONS(488), + [sym_crate] = ACTIONS(488), + [sym_metavariable] = ACTIONS(490), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [171] = { + [172] = { [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1840), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(171), - [sym_block_comment] = STATE(171), - [aux_sym_enum_variant_list_repeat1] = STATE(212), + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1626), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1268), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), + [sym_line_comment] = STATE(172), + [sym_block_comment] = STATE(172), + [aux_sym_enum_variant_list_repeat1] = STATE(214), [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(981), [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(985), [anon_sym_LBRACE] = ACTIONS(338), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -35971,7 +36093,7 @@ 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(765), + [anon_sym_POUND] = ACTIONS(871), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), [anon_sym_break] = ACTIONS(41), @@ -36004,93 +36126,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [172] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1699), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_let_condition] = STATE(2823), - [sym__let_chain] = STATE(2887), - [sym__condition] = STATE(2504), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(172), - [sym_block_comment] = STATE(172), - [sym_identifier] = ACTIONS(456), + [173] = { + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2731), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1762), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_let_condition] = STATE(2840), + [sym__let_chain] = STATE(2831), + [sym__condition] = STATE(2540), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(236), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), + [sym_line_comment] = STATE(173), + [sym_block_comment] = STATE(173), + [sym_identifier] = ACTIONS(466), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), + [anon_sym_u8] = ACTIONS(468), + [anon_sym_i8] = ACTIONS(468), + [anon_sym_u16] = ACTIONS(468), + [anon_sym_i16] = ACTIONS(468), + [anon_sym_u32] = ACTIONS(468), + [anon_sym_i32] = ACTIONS(468), + [anon_sym_u64] = ACTIONS(468), + [anon_sym_i64] = ACTIONS(468), + [anon_sym_u128] = ACTIONS(468), + [anon_sym_i128] = ACTIONS(468), + [anon_sym_isize] = ACTIONS(468), + [anon_sym_usize] = ACTIONS(468), + [anon_sym_f32] = ACTIONS(468), + [anon_sym_f64] = ACTIONS(468), + [anon_sym_bool] = ACTIONS(468), + [anon_sym_str] = ACTIONS(468), + [anon_sym_char] = ACTIONS(468), [anon_sym_DASH] = ACTIONS(973), [anon_sym_BANG] = ACTIONS(973), [anon_sym_AMP] = ACTIONS(975), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(977), - [anon_sym_COLON_COLON] = ACTIONS(462), + [anon_sym_COLON_COLON] = ACTIONS(472), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), [anon_sym_break] = ACTIONS(494), [anon_sym_const] = ACTIONS(348), [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), + [anon_sym_default] = ACTIONS(476), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), [anon_sym_let] = ACTIONS(979), @@ -36098,7 +36220,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(358), [anon_sym_return] = ACTIONS(498), [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), + [anon_sym_union] = ACTIONS(476), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), [anon_sym_yield] = ACTIONS(502), @@ -36111,214 +36233,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), + [sym_self] = ACTIONS(486), + [sym_super] = ACTIONS(488), + [sym_crate] = ACTIONS(488), + [sym_metavariable] = ACTIONS(490), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [173] = { - [sym_line_comment] = STATE(173), - [sym_block_comment] = STATE(173), - [sym_identifier] = ACTIONS(935), - [anon_sym_SEMI] = ACTIONS(937), - [anon_sym_LPAREN] = ACTIONS(937), - [anon_sym_RPAREN] = ACTIONS(937), - [anon_sym_LBRACK] = ACTIONS(937), - [anon_sym_RBRACK] = ACTIONS(937), - [anon_sym_LBRACE] = ACTIONS(937), - [anon_sym_RBRACE] = ACTIONS(937), - [anon_sym_EQ_GT] = ACTIONS(937), - [anon_sym_COLON] = ACTIONS(935), - [anon_sym_DOLLAR] = ACTIONS(937), - [anon_sym_PLUS] = ACTIONS(935), - [anon_sym_STAR] = ACTIONS(935), - [anon_sym_QMARK] = ACTIONS(937), - [anon_sym_u8] = ACTIONS(935), - [anon_sym_i8] = ACTIONS(935), - [anon_sym_u16] = ACTIONS(935), - [anon_sym_i16] = ACTIONS(935), - [anon_sym_u32] = ACTIONS(935), - [anon_sym_i32] = ACTIONS(935), - [anon_sym_u64] = ACTIONS(935), - [anon_sym_i64] = ACTIONS(935), - [anon_sym_u128] = ACTIONS(935), - [anon_sym_i128] = ACTIONS(935), - [anon_sym_isize] = ACTIONS(935), - [anon_sym_usize] = ACTIONS(935), - [anon_sym_f32] = ACTIONS(935), - [anon_sym_f64] = ACTIONS(935), - [anon_sym_bool] = ACTIONS(935), - [anon_sym_str] = ACTIONS(935), - [anon_sym_char] = ACTIONS(935), - [anon_sym_DASH] = ACTIONS(935), - [anon_sym_SLASH] = ACTIONS(935), - [anon_sym_PERCENT] = ACTIONS(935), - [anon_sym_CARET] = ACTIONS(935), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_AMP] = ACTIONS(935), - [anon_sym_PIPE] = ACTIONS(935), - [anon_sym_AMP_AMP] = ACTIONS(937), - [anon_sym_PIPE_PIPE] = ACTIONS(937), - [anon_sym_LT_LT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(935), - [anon_sym_PLUS_EQ] = ACTIONS(937), - [anon_sym_DASH_EQ] = ACTIONS(937), - [anon_sym_STAR_EQ] = ACTIONS(937), - [anon_sym_SLASH_EQ] = ACTIONS(937), - [anon_sym_PERCENT_EQ] = ACTIONS(937), - [anon_sym_CARET_EQ] = ACTIONS(937), - [anon_sym_AMP_EQ] = ACTIONS(937), - [anon_sym_PIPE_EQ] = ACTIONS(937), - [anon_sym_LT_LT_EQ] = ACTIONS(937), - [anon_sym_GT_GT_EQ] = ACTIONS(937), - [anon_sym_EQ] = ACTIONS(935), - [anon_sym_EQ_EQ] = ACTIONS(937), - [anon_sym_BANG_EQ] = ACTIONS(937), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT_EQ] = ACTIONS(937), - [anon_sym_LT_EQ] = ACTIONS(937), - [anon_sym_AT] = ACTIONS(937), - [anon_sym__] = ACTIONS(935), - [anon_sym_DOT] = ACTIONS(935), - [anon_sym_DOT_DOT] = ACTIONS(935), - [anon_sym_DOT_DOT_DOT] = ACTIONS(937), - [anon_sym_DOT_DOT_EQ] = ACTIONS(937), - [anon_sym_COMMA] = ACTIONS(937), - [anon_sym_COLON_COLON] = ACTIONS(937), - [anon_sym_DASH_GT] = ACTIONS(937), - [anon_sym_POUND] = ACTIONS(937), - [anon_sym_SQUOTE] = ACTIONS(935), - [anon_sym_as] = ACTIONS(935), - [anon_sym_async] = ACTIONS(935), - [anon_sym_await] = ACTIONS(935), - [anon_sym_break] = ACTIONS(935), - [anon_sym_const] = ACTIONS(935), - [anon_sym_continue] = ACTIONS(935), - [anon_sym_default] = ACTIONS(935), - [anon_sym_enum] = ACTIONS(935), - [anon_sym_fn] = ACTIONS(935), - [anon_sym_for] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_impl] = ACTIONS(935), - [anon_sym_let] = ACTIONS(935), - [anon_sym_loop] = ACTIONS(935), - [anon_sym_match] = ACTIONS(935), - [anon_sym_mod] = ACTIONS(935), - [anon_sym_pub] = ACTIONS(935), - [anon_sym_return] = ACTIONS(935), - [anon_sym_static] = ACTIONS(935), - [anon_sym_struct] = ACTIONS(935), - [anon_sym_trait] = ACTIONS(935), - [anon_sym_type] = ACTIONS(935), - [anon_sym_union] = ACTIONS(935), - [anon_sym_unsafe] = ACTIONS(935), - [anon_sym_use] = ACTIONS(935), - [anon_sym_where] = ACTIONS(935), - [anon_sym_while] = ACTIONS(935), - [sym_mutable_specifier] = ACTIONS(935), - [sym_integer_literal] = ACTIONS(937), - [aux_sym_string_literal_token1] = ACTIONS(937), - [sym_char_literal] = ACTIONS(937), - [anon_sym_true] = ACTIONS(935), - [anon_sym_false] = ACTIONS(935), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(935), - [sym_super] = ACTIONS(935), - [sym_crate] = ACTIONS(935), - [sym__raw_string_literal_start] = ACTIONS(937), - [sym_float_literal] = ACTIONS(937), - }, [174] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1699), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_let_condition] = STATE(2823), - [sym__let_chain] = STATE(2887), - [sym__condition] = STATE(2573), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2731), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1762), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_let_condition] = STATE(2840), + [sym__let_chain] = STATE(2831), + [sym__condition] = STATE(2648), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(236), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), [sym_line_comment] = STATE(174), [sym_block_comment] = STATE(174), - [sym_identifier] = ACTIONS(456), + [sym_identifier] = ACTIONS(466), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), + [anon_sym_u8] = ACTIONS(468), + [anon_sym_i8] = ACTIONS(468), + [anon_sym_u16] = ACTIONS(468), + [anon_sym_i16] = ACTIONS(468), + [anon_sym_u32] = ACTIONS(468), + [anon_sym_i32] = ACTIONS(468), + [anon_sym_u64] = ACTIONS(468), + [anon_sym_i64] = ACTIONS(468), + [anon_sym_u128] = ACTIONS(468), + [anon_sym_i128] = ACTIONS(468), + [anon_sym_isize] = ACTIONS(468), + [anon_sym_usize] = ACTIONS(468), + [anon_sym_f32] = ACTIONS(468), + [anon_sym_f64] = ACTIONS(468), + [anon_sym_bool] = ACTIONS(468), + [anon_sym_str] = ACTIONS(468), + [anon_sym_char] = ACTIONS(468), [anon_sym_DASH] = ACTIONS(973), [anon_sym_BANG] = ACTIONS(973), [anon_sym_AMP] = ACTIONS(975), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(977), - [anon_sym_COLON_COLON] = ACTIONS(462), + [anon_sym_COLON_COLON] = ACTIONS(472), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), [anon_sym_break] = ACTIONS(494), [anon_sym_const] = ACTIONS(348), [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), + [anon_sym_default] = ACTIONS(476), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), [anon_sym_let] = ACTIONS(979), @@ -36326,7 +36334,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(358), [anon_sym_return] = ACTIONS(498), [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), + [anon_sym_union] = ACTIONS(476), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), [anon_sym_yield] = ACTIONS(502), @@ -36339,524 +36347,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), + [sym_self] = ACTIONS(486), + [sym_super] = ACTIONS(488), + [sym_crate] = ACTIONS(488), + [sym_metavariable] = ACTIONS(490), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, [175] = { + [sym_attribute_item] = STATE(1003), + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1830), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1268), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), [sym_line_comment] = STATE(175), [sym_block_comment] = STATE(175), - [sym_identifier] = ACTIONS(967), - [anon_sym_SEMI] = ACTIONS(969), - [anon_sym_LPAREN] = ACTIONS(969), - [anon_sym_RPAREN] = ACTIONS(969), - [anon_sym_LBRACK] = ACTIONS(969), - [anon_sym_RBRACK] = ACTIONS(969), - [anon_sym_LBRACE] = ACTIONS(969), - [anon_sym_RBRACE] = ACTIONS(969), - [anon_sym_EQ_GT] = ACTIONS(969), - [anon_sym_COLON] = ACTIONS(967), - [anon_sym_DOLLAR] = ACTIONS(969), - [anon_sym_PLUS] = ACTIONS(967), - [anon_sym_STAR] = ACTIONS(967), - [anon_sym_QMARK] = ACTIONS(969), - [anon_sym_u8] = ACTIONS(967), - [anon_sym_i8] = ACTIONS(967), - [anon_sym_u16] = ACTIONS(967), - [anon_sym_i16] = ACTIONS(967), - [anon_sym_u32] = ACTIONS(967), - [anon_sym_i32] = ACTIONS(967), - [anon_sym_u64] = ACTIONS(967), - [anon_sym_i64] = ACTIONS(967), - [anon_sym_u128] = ACTIONS(967), - [anon_sym_i128] = ACTIONS(967), - [anon_sym_isize] = ACTIONS(967), - [anon_sym_usize] = ACTIONS(967), - [anon_sym_f32] = ACTIONS(967), - [anon_sym_f64] = ACTIONS(967), - [anon_sym_bool] = ACTIONS(967), - [anon_sym_str] = ACTIONS(967), - [anon_sym_char] = ACTIONS(967), - [anon_sym_DASH] = ACTIONS(967), - [anon_sym_SLASH] = ACTIONS(967), - [anon_sym_PERCENT] = ACTIONS(967), - [anon_sym_CARET] = ACTIONS(967), - [anon_sym_BANG] = ACTIONS(967), - [anon_sym_AMP] = ACTIONS(967), - [anon_sym_PIPE] = ACTIONS(967), - [anon_sym_AMP_AMP] = ACTIONS(969), - [anon_sym_PIPE_PIPE] = ACTIONS(969), - [anon_sym_LT_LT] = ACTIONS(967), - [anon_sym_GT_GT] = ACTIONS(967), - [anon_sym_PLUS_EQ] = ACTIONS(969), - [anon_sym_DASH_EQ] = ACTIONS(969), - [anon_sym_STAR_EQ] = ACTIONS(969), - [anon_sym_SLASH_EQ] = ACTIONS(969), - [anon_sym_PERCENT_EQ] = ACTIONS(969), - [anon_sym_CARET_EQ] = ACTIONS(969), - [anon_sym_AMP_EQ] = ACTIONS(969), - [anon_sym_PIPE_EQ] = ACTIONS(969), - [anon_sym_LT_LT_EQ] = ACTIONS(969), - [anon_sym_GT_GT_EQ] = ACTIONS(969), - [anon_sym_EQ] = ACTIONS(967), - [anon_sym_EQ_EQ] = ACTIONS(969), - [anon_sym_BANG_EQ] = ACTIONS(969), - [anon_sym_GT] = ACTIONS(967), - [anon_sym_LT] = ACTIONS(967), - [anon_sym_GT_EQ] = ACTIONS(969), - [anon_sym_LT_EQ] = ACTIONS(969), - [anon_sym_AT] = ACTIONS(969), - [anon_sym__] = ACTIONS(967), - [anon_sym_DOT] = ACTIONS(967), - [anon_sym_DOT_DOT] = ACTIONS(967), - [anon_sym_DOT_DOT_DOT] = ACTIONS(969), - [anon_sym_DOT_DOT_EQ] = ACTIONS(969), - [anon_sym_COMMA] = ACTIONS(969), - [anon_sym_COLON_COLON] = ACTIONS(969), - [anon_sym_DASH_GT] = ACTIONS(969), - [anon_sym_POUND] = ACTIONS(969), - [anon_sym_SQUOTE] = ACTIONS(967), - [anon_sym_as] = ACTIONS(967), - [anon_sym_async] = ACTIONS(967), - [anon_sym_await] = ACTIONS(967), - [anon_sym_break] = ACTIONS(967), - [anon_sym_const] = ACTIONS(967), - [anon_sym_continue] = ACTIONS(967), - [anon_sym_default] = ACTIONS(967), - [anon_sym_enum] = ACTIONS(967), - [anon_sym_fn] = ACTIONS(967), - [anon_sym_for] = ACTIONS(967), - [anon_sym_if] = ACTIONS(967), - [anon_sym_impl] = ACTIONS(967), - [anon_sym_let] = ACTIONS(967), - [anon_sym_loop] = ACTIONS(967), - [anon_sym_match] = ACTIONS(967), - [anon_sym_mod] = ACTIONS(967), - [anon_sym_pub] = ACTIONS(967), - [anon_sym_return] = ACTIONS(967), - [anon_sym_static] = ACTIONS(967), - [anon_sym_struct] = ACTIONS(967), - [anon_sym_trait] = ACTIONS(967), - [anon_sym_type] = ACTIONS(967), - [anon_sym_union] = ACTIONS(967), - [anon_sym_unsafe] = ACTIONS(967), - [anon_sym_use] = ACTIONS(967), - [anon_sym_where] = ACTIONS(967), - [anon_sym_while] = ACTIONS(967), - [sym_mutable_specifier] = ACTIONS(967), - [sym_integer_literal] = ACTIONS(969), - [aux_sym_string_literal_token1] = ACTIONS(969), - [sym_char_literal] = ACTIONS(969), - [anon_sym_true] = ACTIONS(967), - [anon_sym_false] = ACTIONS(967), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(967), - [sym_super] = ACTIONS(967), - [sym_crate] = ACTIONS(967), - [sym__raw_string_literal_start] = ACTIONS(969), - [sym_float_literal] = ACTIONS(969), - }, - [176] = { - [sym_line_comment] = STATE(176), - [sym_block_comment] = STATE(176), - [sym_identifier] = ACTIONS(753), - [anon_sym_SEMI] = ACTIONS(755), - [anon_sym_LPAREN] = ACTIONS(755), - [anon_sym_RPAREN] = ACTIONS(755), - [anon_sym_LBRACK] = ACTIONS(755), - [anon_sym_RBRACK] = ACTIONS(755), - [anon_sym_LBRACE] = ACTIONS(755), - [anon_sym_RBRACE] = ACTIONS(755), - [anon_sym_EQ_GT] = ACTIONS(755), - [anon_sym_COLON] = ACTIONS(753), - [anon_sym_DOLLAR] = ACTIONS(755), - [anon_sym_PLUS] = ACTIONS(753), - [anon_sym_STAR] = ACTIONS(753), - [anon_sym_QMARK] = ACTIONS(755), - [anon_sym_u8] = ACTIONS(753), - [anon_sym_i8] = ACTIONS(753), - [anon_sym_u16] = ACTIONS(753), - [anon_sym_i16] = ACTIONS(753), - [anon_sym_u32] = ACTIONS(753), - [anon_sym_i32] = ACTIONS(753), - [anon_sym_u64] = ACTIONS(753), - [anon_sym_i64] = ACTIONS(753), - [anon_sym_u128] = ACTIONS(753), - [anon_sym_i128] = ACTIONS(753), - [anon_sym_isize] = ACTIONS(753), - [anon_sym_usize] = ACTIONS(753), - [anon_sym_f32] = ACTIONS(753), - [anon_sym_f64] = ACTIONS(753), - [anon_sym_bool] = ACTIONS(753), - [anon_sym_str] = ACTIONS(753), - [anon_sym_char] = ACTIONS(753), - [anon_sym_DASH] = ACTIONS(753), - [anon_sym_SLASH] = ACTIONS(753), - [anon_sym_PERCENT] = ACTIONS(753), - [anon_sym_CARET] = ACTIONS(753), - [anon_sym_BANG] = ACTIONS(753), - [anon_sym_AMP] = ACTIONS(753), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_AMP_AMP] = ACTIONS(755), - [anon_sym_PIPE_PIPE] = ACTIONS(755), - [anon_sym_LT_LT] = ACTIONS(753), - [anon_sym_GT_GT] = ACTIONS(753), - [anon_sym_PLUS_EQ] = ACTIONS(755), - [anon_sym_DASH_EQ] = ACTIONS(755), - [anon_sym_STAR_EQ] = ACTIONS(755), - [anon_sym_SLASH_EQ] = ACTIONS(755), - [anon_sym_PERCENT_EQ] = ACTIONS(755), - [anon_sym_CARET_EQ] = ACTIONS(755), - [anon_sym_AMP_EQ] = ACTIONS(755), - [anon_sym_PIPE_EQ] = ACTIONS(755), - [anon_sym_LT_LT_EQ] = ACTIONS(755), - [anon_sym_GT_GT_EQ] = ACTIONS(755), - [anon_sym_EQ] = ACTIONS(753), - [anon_sym_EQ_EQ] = ACTIONS(755), - [anon_sym_BANG_EQ] = ACTIONS(755), - [anon_sym_GT] = ACTIONS(753), - [anon_sym_LT] = ACTIONS(753), - [anon_sym_GT_EQ] = ACTIONS(755), - [anon_sym_LT_EQ] = ACTIONS(755), - [anon_sym_AT] = ACTIONS(755), - [anon_sym__] = ACTIONS(753), - [anon_sym_DOT] = ACTIONS(753), - [anon_sym_DOT_DOT] = ACTIONS(753), - [anon_sym_DOT_DOT_DOT] = ACTIONS(755), - [anon_sym_DOT_DOT_EQ] = ACTIONS(755), - [anon_sym_COMMA] = ACTIONS(755), - [anon_sym_COLON_COLON] = ACTIONS(755), - [anon_sym_DASH_GT] = ACTIONS(755), - [anon_sym_POUND] = ACTIONS(755), - [anon_sym_SQUOTE] = ACTIONS(753), - [anon_sym_as] = ACTIONS(753), - [anon_sym_async] = ACTIONS(753), - [anon_sym_await] = ACTIONS(753), - [anon_sym_break] = ACTIONS(753), - [anon_sym_const] = ACTIONS(753), - [anon_sym_continue] = ACTIONS(753), - [anon_sym_default] = ACTIONS(753), - [anon_sym_enum] = ACTIONS(753), - [anon_sym_fn] = ACTIONS(753), - [anon_sym_for] = ACTIONS(753), - [anon_sym_if] = ACTIONS(753), - [anon_sym_impl] = ACTIONS(753), - [anon_sym_let] = ACTIONS(753), - [anon_sym_loop] = ACTIONS(753), - [anon_sym_match] = ACTIONS(753), - [anon_sym_mod] = ACTIONS(753), - [anon_sym_pub] = ACTIONS(753), - [anon_sym_return] = ACTIONS(753), - [anon_sym_static] = ACTIONS(753), - [anon_sym_struct] = ACTIONS(753), - [anon_sym_trait] = ACTIONS(753), - [anon_sym_type] = ACTIONS(753), - [anon_sym_union] = ACTIONS(753), - [anon_sym_unsafe] = ACTIONS(753), - [anon_sym_use] = ACTIONS(753), - [anon_sym_where] = ACTIONS(753), - [anon_sym_while] = ACTIONS(753), - [sym_mutable_specifier] = ACTIONS(753), - [sym_integer_literal] = ACTIONS(755), - [aux_sym_string_literal_token1] = ACTIONS(755), - [sym_char_literal] = ACTIONS(755), - [anon_sym_true] = ACTIONS(753), - [anon_sym_false] = ACTIONS(753), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(753), - [sym_super] = ACTIONS(753), - [sym_crate] = ACTIONS(753), - [sym__raw_string_literal_start] = ACTIONS(755), - [sym_float_literal] = ACTIONS(755), - }, - [177] = { - [sym_line_comment] = STATE(177), - [sym_block_comment] = STATE(177), - [sym_identifier] = ACTIONS(767), - [anon_sym_SEMI] = ACTIONS(769), - [anon_sym_LPAREN] = ACTIONS(769), - [anon_sym_RPAREN] = ACTIONS(769), - [anon_sym_LBRACK] = ACTIONS(769), - [anon_sym_RBRACK] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(769), - [anon_sym_RBRACE] = ACTIONS(769), - [anon_sym_EQ_GT] = ACTIONS(769), - [anon_sym_COLON] = ACTIONS(767), - [anon_sym_DOLLAR] = ACTIONS(769), - [anon_sym_PLUS] = ACTIONS(767), - [anon_sym_STAR] = ACTIONS(767), - [anon_sym_QMARK] = ACTIONS(769), - [anon_sym_u8] = ACTIONS(767), - [anon_sym_i8] = ACTIONS(767), - [anon_sym_u16] = ACTIONS(767), - [anon_sym_i16] = ACTIONS(767), - [anon_sym_u32] = ACTIONS(767), - [anon_sym_i32] = ACTIONS(767), - [anon_sym_u64] = ACTIONS(767), - [anon_sym_i64] = ACTIONS(767), - [anon_sym_u128] = ACTIONS(767), - [anon_sym_i128] = ACTIONS(767), - [anon_sym_isize] = ACTIONS(767), - [anon_sym_usize] = ACTIONS(767), - [anon_sym_f32] = ACTIONS(767), - [anon_sym_f64] = ACTIONS(767), - [anon_sym_bool] = ACTIONS(767), - [anon_sym_str] = ACTIONS(767), - [anon_sym_char] = ACTIONS(767), - [anon_sym_DASH] = ACTIONS(767), - [anon_sym_SLASH] = ACTIONS(767), - [anon_sym_PERCENT] = ACTIONS(767), - [anon_sym_CARET] = ACTIONS(767), - [anon_sym_BANG] = ACTIONS(767), - [anon_sym_AMP] = ACTIONS(767), - [anon_sym_PIPE] = ACTIONS(767), - [anon_sym_AMP_AMP] = ACTIONS(769), - [anon_sym_PIPE_PIPE] = ACTIONS(769), - [anon_sym_LT_LT] = ACTIONS(767), - [anon_sym_GT_GT] = ACTIONS(767), - [anon_sym_PLUS_EQ] = ACTIONS(769), - [anon_sym_DASH_EQ] = ACTIONS(769), - [anon_sym_STAR_EQ] = ACTIONS(769), - [anon_sym_SLASH_EQ] = ACTIONS(769), - [anon_sym_PERCENT_EQ] = ACTIONS(769), - [anon_sym_CARET_EQ] = ACTIONS(769), - [anon_sym_AMP_EQ] = ACTIONS(769), - [anon_sym_PIPE_EQ] = ACTIONS(769), - [anon_sym_LT_LT_EQ] = ACTIONS(769), - [anon_sym_GT_GT_EQ] = ACTIONS(769), - [anon_sym_EQ] = ACTIONS(767), - [anon_sym_EQ_EQ] = ACTIONS(769), - [anon_sym_BANG_EQ] = ACTIONS(769), - [anon_sym_GT] = ACTIONS(767), - [anon_sym_LT] = ACTIONS(767), - [anon_sym_GT_EQ] = ACTIONS(769), - [anon_sym_LT_EQ] = ACTIONS(769), - [anon_sym_AT] = ACTIONS(769), - [anon_sym__] = ACTIONS(767), - [anon_sym_DOT] = ACTIONS(767), - [anon_sym_DOT_DOT] = ACTIONS(767), - [anon_sym_DOT_DOT_DOT] = ACTIONS(769), - [anon_sym_DOT_DOT_EQ] = ACTIONS(769), - [anon_sym_COMMA] = ACTIONS(769), - [anon_sym_COLON_COLON] = ACTIONS(769), - [anon_sym_DASH_GT] = ACTIONS(769), - [anon_sym_POUND] = ACTIONS(769), - [anon_sym_SQUOTE] = ACTIONS(767), - [anon_sym_as] = ACTIONS(767), - [anon_sym_async] = ACTIONS(767), - [anon_sym_await] = ACTIONS(767), - [anon_sym_break] = ACTIONS(767), - [anon_sym_const] = ACTIONS(767), - [anon_sym_continue] = ACTIONS(767), - [anon_sym_default] = ACTIONS(767), - [anon_sym_enum] = ACTIONS(767), - [anon_sym_fn] = ACTIONS(767), - [anon_sym_for] = ACTIONS(767), - [anon_sym_if] = ACTIONS(767), - [anon_sym_impl] = ACTIONS(767), - [anon_sym_let] = ACTIONS(767), - [anon_sym_loop] = ACTIONS(767), - [anon_sym_match] = ACTIONS(767), - [anon_sym_mod] = ACTIONS(767), - [anon_sym_pub] = ACTIONS(767), - [anon_sym_return] = ACTIONS(767), - [anon_sym_static] = ACTIONS(767), - [anon_sym_struct] = ACTIONS(767), - [anon_sym_trait] = ACTIONS(767), - [anon_sym_type] = ACTIONS(767), - [anon_sym_union] = ACTIONS(767), - [anon_sym_unsafe] = ACTIONS(767), - [anon_sym_use] = ACTIONS(767), - [anon_sym_where] = ACTIONS(767), - [anon_sym_while] = ACTIONS(767), - [sym_mutable_specifier] = ACTIONS(767), - [sym_integer_literal] = ACTIONS(769), - [aux_sym_string_literal_token1] = ACTIONS(769), - [sym_char_literal] = ACTIONS(769), - [anon_sym_true] = ACTIONS(767), - [anon_sym_false] = ACTIONS(767), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(767), - [sym_super] = ACTIONS(767), - [sym_crate] = ACTIONS(767), - [sym__raw_string_literal_start] = ACTIONS(769), - [sym_float_literal] = ACTIONS(769), - }, - [178] = { - [sym_line_comment] = STATE(178), - [sym_block_comment] = STATE(178), - [sym_identifier] = ACTIONS(771), - [anon_sym_SEMI] = ACTIONS(773), - [anon_sym_LPAREN] = ACTIONS(773), - [anon_sym_RPAREN] = ACTIONS(773), - [anon_sym_LBRACK] = ACTIONS(773), - [anon_sym_RBRACK] = ACTIONS(773), - [anon_sym_LBRACE] = ACTIONS(773), - [anon_sym_RBRACE] = ACTIONS(773), - [anon_sym_EQ_GT] = ACTIONS(773), - [anon_sym_COLON] = ACTIONS(771), - [anon_sym_DOLLAR] = ACTIONS(773), - [anon_sym_PLUS] = ACTIONS(771), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_QMARK] = ACTIONS(773), - [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(771), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_PERCENT] = ACTIONS(771), - [anon_sym_CARET] = ACTIONS(771), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_AMP] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(771), - [anon_sym_AMP_AMP] = ACTIONS(773), - [anon_sym_PIPE_PIPE] = ACTIONS(773), - [anon_sym_LT_LT] = ACTIONS(771), - [anon_sym_GT_GT] = ACTIONS(771), - [anon_sym_PLUS_EQ] = ACTIONS(773), - [anon_sym_DASH_EQ] = ACTIONS(773), - [anon_sym_STAR_EQ] = ACTIONS(773), - [anon_sym_SLASH_EQ] = ACTIONS(773), - [anon_sym_PERCENT_EQ] = ACTIONS(773), - [anon_sym_CARET_EQ] = ACTIONS(773), - [anon_sym_AMP_EQ] = ACTIONS(773), - [anon_sym_PIPE_EQ] = ACTIONS(773), - [anon_sym_LT_LT_EQ] = ACTIONS(773), - [anon_sym_GT_GT_EQ] = ACTIONS(773), - [anon_sym_EQ] = ACTIONS(771), - [anon_sym_EQ_EQ] = ACTIONS(773), - [anon_sym_BANG_EQ] = ACTIONS(773), - [anon_sym_GT] = ACTIONS(771), - [anon_sym_LT] = ACTIONS(771), - [anon_sym_GT_EQ] = ACTIONS(773), - [anon_sym_LT_EQ] = ACTIONS(773), - [anon_sym_AT] = ACTIONS(773), - [anon_sym__] = ACTIONS(771), - [anon_sym_DOT] = ACTIONS(771), - [anon_sym_DOT_DOT] = ACTIONS(771), - [anon_sym_DOT_DOT_DOT] = ACTIONS(773), - [anon_sym_DOT_DOT_EQ] = ACTIONS(773), - [anon_sym_COMMA] = ACTIONS(773), - [anon_sym_COLON_COLON] = ACTIONS(773), - [anon_sym_DASH_GT] = ACTIONS(773), - [anon_sym_POUND] = ACTIONS(773), - [anon_sym_SQUOTE] = ACTIONS(771), - [anon_sym_as] = ACTIONS(771), - [anon_sym_async] = ACTIONS(771), - [anon_sym_await] = ACTIONS(771), - [anon_sym_break] = ACTIONS(771), - [anon_sym_const] = ACTIONS(771), - [anon_sym_continue] = ACTIONS(771), - [anon_sym_default] = ACTIONS(771), - [anon_sym_enum] = ACTIONS(771), - [anon_sym_fn] = ACTIONS(771), - [anon_sym_for] = ACTIONS(771), - [anon_sym_if] = ACTIONS(771), - [anon_sym_impl] = ACTIONS(771), - [anon_sym_let] = ACTIONS(771), - [anon_sym_loop] = ACTIONS(771), - [anon_sym_match] = ACTIONS(771), - [anon_sym_mod] = ACTIONS(771), - [anon_sym_pub] = ACTIONS(771), - [anon_sym_return] = ACTIONS(771), - [anon_sym_static] = ACTIONS(771), - [anon_sym_struct] = ACTIONS(771), - [anon_sym_trait] = ACTIONS(771), - [anon_sym_type] = ACTIONS(771), - [anon_sym_union] = ACTIONS(771), - [anon_sym_unsafe] = ACTIONS(771), - [anon_sym_use] = ACTIONS(771), - [anon_sym_where] = ACTIONS(771), - [anon_sym_while] = ACTIONS(771), - [sym_mutable_specifier] = ACTIONS(771), - [sym_integer_literal] = ACTIONS(773), - [aux_sym_string_literal_token1] = ACTIONS(773), - [sym_char_literal] = ACTIONS(773), - [anon_sym_true] = ACTIONS(771), - [anon_sym_false] = ACTIONS(771), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(771), - [sym_super] = ACTIONS(771), - [sym_crate] = ACTIONS(771), - [sym__raw_string_literal_start] = ACTIONS(773), - [sym_float_literal] = ACTIONS(773), - }, - [179] = { - [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1607), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(179), - [sym_block_comment] = STATE(179), - [aux_sym_enum_variant_list_repeat1] = STATE(211), + [aux_sym_enum_variant_list_repeat1] = STATE(210), [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(987), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(983), [anon_sym_LBRACE] = ACTIONS(338), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -36883,7 +36435,7 @@ 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(765), + [anon_sym_POUND] = ACTIONS(871), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), [anon_sym_break] = ACTIONS(41), @@ -36916,745 +36468,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [180] = { - [sym_line_comment] = STATE(180), - [sym_block_comment] = STATE(180), - [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(987), - [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_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(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(985), - [sym_super] = ACTIONS(985), - [sym_crate] = ACTIONS(985), - [sym__raw_string_literal_start] = ACTIONS(987), - [sym_float_literal] = ACTIONS(987), - }, - [181] = { - [sym_line_comment] = STATE(181), - [sym_block_comment] = STATE(181), - [sym_identifier] = ACTIONS(989), - [anon_sym_SEMI] = ACTIONS(991), - [anon_sym_LPAREN] = ACTIONS(991), - [anon_sym_RPAREN] = ACTIONS(991), - [anon_sym_LBRACK] = ACTIONS(991), - [anon_sym_RBRACK] = ACTIONS(991), - [anon_sym_LBRACE] = ACTIONS(991), - [anon_sym_RBRACE] = ACTIONS(991), - [anon_sym_EQ_GT] = ACTIONS(991), - [anon_sym_COLON] = ACTIONS(989), - [anon_sym_DOLLAR] = ACTIONS(991), - [anon_sym_PLUS] = ACTIONS(989), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_QMARK] = ACTIONS(991), - [anon_sym_u8] = ACTIONS(989), - [anon_sym_i8] = ACTIONS(989), - [anon_sym_u16] = ACTIONS(989), - [anon_sym_i16] = ACTIONS(989), - [anon_sym_u32] = ACTIONS(989), - [anon_sym_i32] = ACTIONS(989), - [anon_sym_u64] = ACTIONS(989), - [anon_sym_i64] = ACTIONS(989), - [anon_sym_u128] = ACTIONS(989), - [anon_sym_i128] = ACTIONS(989), - [anon_sym_isize] = ACTIONS(989), - [anon_sym_usize] = ACTIONS(989), - [anon_sym_f32] = ACTIONS(989), - [anon_sym_f64] = ACTIONS(989), - [anon_sym_bool] = ACTIONS(989), - [anon_sym_str] = ACTIONS(989), - [anon_sym_char] = ACTIONS(989), - [anon_sym_DASH] = ACTIONS(989), - [anon_sym_SLASH] = ACTIONS(989), - [anon_sym_PERCENT] = ACTIONS(989), - [anon_sym_CARET] = ACTIONS(989), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(989), - [anon_sym_PIPE] = ACTIONS(989), - [anon_sym_AMP_AMP] = ACTIONS(991), - [anon_sym_PIPE_PIPE] = ACTIONS(991), - [anon_sym_LT_LT] = ACTIONS(989), - [anon_sym_GT_GT] = ACTIONS(989), - [anon_sym_PLUS_EQ] = ACTIONS(991), - [anon_sym_DASH_EQ] = ACTIONS(991), - [anon_sym_STAR_EQ] = ACTIONS(991), - [anon_sym_SLASH_EQ] = ACTIONS(991), - [anon_sym_PERCENT_EQ] = ACTIONS(991), - [anon_sym_CARET_EQ] = ACTIONS(991), - [anon_sym_AMP_EQ] = ACTIONS(991), - [anon_sym_PIPE_EQ] = ACTIONS(991), - [anon_sym_LT_LT_EQ] = ACTIONS(991), - [anon_sym_GT_GT_EQ] = ACTIONS(991), - [anon_sym_EQ] = ACTIONS(989), - [anon_sym_EQ_EQ] = ACTIONS(991), - [anon_sym_BANG_EQ] = ACTIONS(991), - [anon_sym_GT] = ACTIONS(989), - [anon_sym_LT] = ACTIONS(989), - [anon_sym_GT_EQ] = ACTIONS(991), - [anon_sym_LT_EQ] = ACTIONS(991), - [anon_sym_AT] = ACTIONS(991), - [anon_sym__] = ACTIONS(989), - [anon_sym_DOT] = ACTIONS(989), - [anon_sym_DOT_DOT] = ACTIONS(989), - [anon_sym_DOT_DOT_DOT] = ACTIONS(991), - [anon_sym_DOT_DOT_EQ] = ACTIONS(991), - [anon_sym_COMMA] = ACTIONS(991), - [anon_sym_COLON_COLON] = ACTIONS(991), - [anon_sym_DASH_GT] = ACTIONS(991), - [anon_sym_POUND] = ACTIONS(991), - [anon_sym_SQUOTE] = ACTIONS(989), - [anon_sym_as] = ACTIONS(989), - [anon_sym_async] = ACTIONS(989), - [anon_sym_await] = ACTIONS(989), - [anon_sym_break] = ACTIONS(989), - [anon_sym_const] = ACTIONS(989), - [anon_sym_continue] = ACTIONS(989), - [anon_sym_default] = ACTIONS(989), - [anon_sym_enum] = ACTIONS(989), - [anon_sym_fn] = ACTIONS(989), - [anon_sym_for] = ACTIONS(989), - [anon_sym_if] = ACTIONS(989), - [anon_sym_impl] = ACTIONS(989), - [anon_sym_let] = ACTIONS(989), - [anon_sym_loop] = ACTIONS(989), - [anon_sym_match] = ACTIONS(989), - [anon_sym_mod] = ACTIONS(989), - [anon_sym_pub] = ACTIONS(989), - [anon_sym_return] = ACTIONS(989), - [anon_sym_static] = ACTIONS(989), - [anon_sym_struct] = ACTIONS(989), - [anon_sym_trait] = ACTIONS(989), - [anon_sym_type] = ACTIONS(989), - [anon_sym_union] = ACTIONS(989), - [anon_sym_unsafe] = ACTIONS(989), - [anon_sym_use] = ACTIONS(989), - [anon_sym_where] = ACTIONS(989), - [anon_sym_while] = ACTIONS(989), - [sym_mutable_specifier] = ACTIONS(989), - [sym_integer_literal] = ACTIONS(991), - [aux_sym_string_literal_token1] = ACTIONS(991), - [sym_char_literal] = ACTIONS(991), - [anon_sym_true] = ACTIONS(989), - [anon_sym_false] = ACTIONS(989), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(989), - [sym_super] = ACTIONS(989), - [sym_crate] = ACTIONS(989), - [sym__raw_string_literal_start] = ACTIONS(991), - [sym_float_literal] = ACTIONS(991), - }, - [182] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1699), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_let_condition] = STATE(2823), - [sym__let_chain] = STATE(2887), - [sym__condition] = STATE(2629), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(182), - [sym_block_comment] = STATE(182), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(977), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_let] = ACTIONS(979), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [183] = { - [sym_line_comment] = STATE(183), - [sym_block_comment] = STATE(183), - [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(949), - [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_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(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(947), - [sym_super] = ACTIONS(947), - [sym_crate] = ACTIONS(947), - [sym__raw_string_literal_start] = ACTIONS(949), - [sym_float_literal] = ACTIONS(949), - }, - [184] = { - [sym_line_comment] = STATE(184), - [sym_block_comment] = STATE(184), - [sym_identifier] = ACTIONS(993), - [anon_sym_SEMI] = ACTIONS(995), - [anon_sym_LPAREN] = ACTIONS(995), - [anon_sym_RPAREN] = ACTIONS(995), - [anon_sym_LBRACK] = ACTIONS(995), - [anon_sym_RBRACK] = ACTIONS(995), - [anon_sym_LBRACE] = ACTIONS(995), - [anon_sym_RBRACE] = ACTIONS(995), - [anon_sym_EQ_GT] = ACTIONS(995), - [anon_sym_COLON] = ACTIONS(993), - [anon_sym_DOLLAR] = ACTIONS(995), - [anon_sym_PLUS] = ACTIONS(993), - [anon_sym_STAR] = ACTIONS(993), - [anon_sym_QMARK] = ACTIONS(995), - [anon_sym_u8] = ACTIONS(993), - [anon_sym_i8] = ACTIONS(993), - [anon_sym_u16] = ACTIONS(993), - [anon_sym_i16] = ACTIONS(993), - [anon_sym_u32] = ACTIONS(993), - [anon_sym_i32] = ACTIONS(993), - [anon_sym_u64] = ACTIONS(993), - [anon_sym_i64] = ACTIONS(993), - [anon_sym_u128] = ACTIONS(993), - [anon_sym_i128] = ACTIONS(993), - [anon_sym_isize] = ACTIONS(993), - [anon_sym_usize] = ACTIONS(993), - [anon_sym_f32] = ACTIONS(993), - [anon_sym_f64] = ACTIONS(993), - [anon_sym_bool] = ACTIONS(993), - [anon_sym_str] = ACTIONS(993), - [anon_sym_char] = ACTIONS(993), - [anon_sym_DASH] = ACTIONS(993), - [anon_sym_SLASH] = ACTIONS(993), - [anon_sym_PERCENT] = ACTIONS(993), - [anon_sym_CARET] = ACTIONS(993), - [anon_sym_BANG] = ACTIONS(993), - [anon_sym_AMP] = ACTIONS(993), - [anon_sym_PIPE] = ACTIONS(993), - [anon_sym_AMP_AMP] = ACTIONS(995), - [anon_sym_PIPE_PIPE] = ACTIONS(995), - [anon_sym_LT_LT] = ACTIONS(993), - [anon_sym_GT_GT] = ACTIONS(993), - [anon_sym_PLUS_EQ] = ACTIONS(995), - [anon_sym_DASH_EQ] = ACTIONS(995), - [anon_sym_STAR_EQ] = ACTIONS(995), - [anon_sym_SLASH_EQ] = ACTIONS(995), - [anon_sym_PERCENT_EQ] = ACTIONS(995), - [anon_sym_CARET_EQ] = ACTIONS(995), - [anon_sym_AMP_EQ] = ACTIONS(995), - [anon_sym_PIPE_EQ] = ACTIONS(995), - [anon_sym_LT_LT_EQ] = ACTIONS(995), - [anon_sym_GT_GT_EQ] = ACTIONS(995), - [anon_sym_EQ] = ACTIONS(993), - [anon_sym_EQ_EQ] = ACTIONS(995), - [anon_sym_BANG_EQ] = ACTIONS(995), - [anon_sym_GT] = ACTIONS(993), - [anon_sym_LT] = ACTIONS(993), - [anon_sym_GT_EQ] = ACTIONS(995), - [anon_sym_LT_EQ] = ACTIONS(995), - [anon_sym_AT] = ACTIONS(995), - [anon_sym__] = ACTIONS(993), - [anon_sym_DOT] = ACTIONS(993), - [anon_sym_DOT_DOT] = ACTIONS(993), - [anon_sym_DOT_DOT_DOT] = ACTIONS(995), - [anon_sym_DOT_DOT_EQ] = ACTIONS(995), - [anon_sym_COMMA] = ACTIONS(995), - [anon_sym_COLON_COLON] = ACTIONS(995), - [anon_sym_DASH_GT] = ACTIONS(995), - [anon_sym_POUND] = ACTIONS(995), - [anon_sym_SQUOTE] = ACTIONS(993), - [anon_sym_as] = ACTIONS(993), - [anon_sym_async] = ACTIONS(993), - [anon_sym_await] = ACTIONS(993), - [anon_sym_break] = ACTIONS(993), - [anon_sym_const] = ACTIONS(993), - [anon_sym_continue] = ACTIONS(993), - [anon_sym_default] = ACTIONS(993), - [anon_sym_enum] = ACTIONS(993), - [anon_sym_fn] = ACTIONS(993), - [anon_sym_for] = ACTIONS(993), - [anon_sym_if] = ACTIONS(993), - [anon_sym_impl] = ACTIONS(993), - [anon_sym_let] = ACTIONS(993), - [anon_sym_loop] = ACTIONS(993), - [anon_sym_match] = ACTIONS(993), - [anon_sym_mod] = ACTIONS(993), - [anon_sym_pub] = ACTIONS(993), - [anon_sym_return] = ACTIONS(993), - [anon_sym_static] = ACTIONS(993), - [anon_sym_struct] = ACTIONS(993), - [anon_sym_trait] = ACTIONS(993), - [anon_sym_type] = ACTIONS(993), - [anon_sym_union] = ACTIONS(993), - [anon_sym_unsafe] = ACTIONS(993), - [anon_sym_use] = ACTIONS(993), - [anon_sym_where] = ACTIONS(993), - [anon_sym_while] = ACTIONS(993), - [sym_mutable_specifier] = ACTIONS(993), - [sym_integer_literal] = ACTIONS(995), - [aux_sym_string_literal_token1] = ACTIONS(995), - [sym_char_literal] = ACTIONS(995), - [anon_sym_true] = ACTIONS(993), - [anon_sym_false] = ACTIONS(993), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(993), - [sym_super] = ACTIONS(993), - [sym_crate] = ACTIONS(993), - [sym__raw_string_literal_start] = ACTIONS(995), - [sym_float_literal] = ACTIONS(995), - }, - [185] = { - [sym_line_comment] = STATE(185), - [sym_block_comment] = STATE(185), - [sym_identifier] = ACTIONS(997), - [anon_sym_SEMI] = ACTIONS(999), - [anon_sym_LPAREN] = ACTIONS(999), - [anon_sym_RPAREN] = ACTIONS(999), - [anon_sym_LBRACK] = ACTIONS(999), - [anon_sym_RBRACK] = ACTIONS(999), - [anon_sym_LBRACE] = ACTIONS(999), - [anon_sym_RBRACE] = ACTIONS(999), - [anon_sym_EQ_GT] = ACTIONS(999), - [anon_sym_COLON] = ACTIONS(997), - [anon_sym_DOLLAR] = ACTIONS(999), - [anon_sym_PLUS] = ACTIONS(997), - [anon_sym_STAR] = ACTIONS(997), - [anon_sym_QMARK] = ACTIONS(999), - [anon_sym_u8] = ACTIONS(997), - [anon_sym_i8] = ACTIONS(997), - [anon_sym_u16] = ACTIONS(997), - [anon_sym_i16] = ACTIONS(997), - [anon_sym_u32] = ACTIONS(997), - [anon_sym_i32] = ACTIONS(997), - [anon_sym_u64] = ACTIONS(997), - [anon_sym_i64] = ACTIONS(997), - [anon_sym_u128] = ACTIONS(997), - [anon_sym_i128] = ACTIONS(997), - [anon_sym_isize] = ACTIONS(997), - [anon_sym_usize] = ACTIONS(997), - [anon_sym_f32] = ACTIONS(997), - [anon_sym_f64] = ACTIONS(997), - [anon_sym_bool] = ACTIONS(997), - [anon_sym_str] = ACTIONS(997), - [anon_sym_char] = ACTIONS(997), - [anon_sym_DASH] = ACTIONS(997), - [anon_sym_SLASH] = ACTIONS(997), - [anon_sym_PERCENT] = ACTIONS(997), - [anon_sym_CARET] = ACTIONS(997), - [anon_sym_BANG] = ACTIONS(997), - [anon_sym_AMP] = ACTIONS(997), - [anon_sym_PIPE] = ACTIONS(997), - [anon_sym_AMP_AMP] = ACTIONS(999), - [anon_sym_PIPE_PIPE] = ACTIONS(999), - [anon_sym_LT_LT] = ACTIONS(997), - [anon_sym_GT_GT] = ACTIONS(997), - [anon_sym_PLUS_EQ] = ACTIONS(999), - [anon_sym_DASH_EQ] = ACTIONS(999), - [anon_sym_STAR_EQ] = ACTIONS(999), - [anon_sym_SLASH_EQ] = ACTIONS(999), - [anon_sym_PERCENT_EQ] = ACTIONS(999), - [anon_sym_CARET_EQ] = ACTIONS(999), - [anon_sym_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_EQ] = ACTIONS(999), - [anon_sym_LT_LT_EQ] = ACTIONS(999), - [anon_sym_GT_GT_EQ] = ACTIONS(999), - [anon_sym_EQ] = ACTIONS(997), - [anon_sym_EQ_EQ] = ACTIONS(999), - [anon_sym_BANG_EQ] = ACTIONS(999), - [anon_sym_GT] = ACTIONS(997), - [anon_sym_LT] = ACTIONS(997), - [anon_sym_GT_EQ] = ACTIONS(999), - [anon_sym_LT_EQ] = ACTIONS(999), - [anon_sym_AT] = ACTIONS(999), - [anon_sym__] = ACTIONS(997), - [anon_sym_DOT] = ACTIONS(997), - [anon_sym_DOT_DOT] = ACTIONS(997), - [anon_sym_DOT_DOT_DOT] = ACTIONS(999), - [anon_sym_DOT_DOT_EQ] = ACTIONS(999), - [anon_sym_COMMA] = ACTIONS(999), - [anon_sym_COLON_COLON] = ACTIONS(999), - [anon_sym_DASH_GT] = ACTIONS(999), - [anon_sym_POUND] = ACTIONS(999), - [anon_sym_SQUOTE] = ACTIONS(997), - [anon_sym_as] = ACTIONS(997), - [anon_sym_async] = ACTIONS(997), - [anon_sym_await] = ACTIONS(997), - [anon_sym_break] = ACTIONS(997), - [anon_sym_const] = ACTIONS(997), - [anon_sym_continue] = ACTIONS(997), - [anon_sym_default] = ACTIONS(997), - [anon_sym_enum] = ACTIONS(997), - [anon_sym_fn] = ACTIONS(997), - [anon_sym_for] = ACTIONS(997), - [anon_sym_if] = ACTIONS(997), - [anon_sym_impl] = ACTIONS(997), - [anon_sym_let] = ACTIONS(997), - [anon_sym_loop] = ACTIONS(997), - [anon_sym_match] = ACTIONS(997), - [anon_sym_mod] = ACTIONS(997), - [anon_sym_pub] = ACTIONS(997), - [anon_sym_return] = ACTIONS(997), - [anon_sym_static] = ACTIONS(997), - [anon_sym_struct] = ACTIONS(997), - [anon_sym_trait] = ACTIONS(997), - [anon_sym_type] = ACTIONS(997), - [anon_sym_union] = ACTIONS(997), - [anon_sym_unsafe] = ACTIONS(997), - [anon_sym_use] = ACTIONS(997), - [anon_sym_where] = ACTIONS(997), - [anon_sym_while] = ACTIONS(997), - [sym_mutable_specifier] = ACTIONS(997), - [sym_integer_literal] = ACTIONS(999), - [aux_sym_string_literal_token1] = ACTIONS(999), - [sym_char_literal] = ACTIONS(999), - [anon_sym_true] = ACTIONS(997), - [anon_sym_false] = ACTIONS(997), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(997), - [sym_super] = ACTIONS(997), - [sym_crate] = ACTIONS(997), - [sym__raw_string_literal_start] = ACTIONS(999), - [sym_float_literal] = ACTIONS(999), - }, - [186] = { + [176] = { [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1793), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(186), - [sym_block_comment] = STATE(186), + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1626), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1268), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), + [sym_line_comment] = STATE(176), + [sym_block_comment] = STATE(176), [aux_sym_enum_variant_list_repeat1] = STATE(214), [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1001), [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(989), [anon_sym_LBRACE] = ACTIONS(338), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -37681,7 +36549,7 @@ 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(765), + [anon_sym_POUND] = ACTIONS(871), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), [anon_sym_break] = ACTIONS(41), @@ -37714,61 +36582,175 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [187] = { + [177] = { + [sym_line_comment] = STATE(177), + [sym_block_comment] = STATE(177), + [sym_identifier] = ACTIONS(933), + [anon_sym_SEMI] = ACTIONS(935), + [anon_sym_LPAREN] = ACTIONS(935), + [anon_sym_RPAREN] = ACTIONS(935), + [anon_sym_LBRACK] = ACTIONS(935), + [anon_sym_RBRACK] = ACTIONS(935), + [anon_sym_LBRACE] = ACTIONS(935), + [anon_sym_RBRACE] = ACTIONS(935), + [anon_sym_EQ_GT] = ACTIONS(935), + [anon_sym_COLON] = ACTIONS(933), + [anon_sym_DOLLAR] = ACTIONS(935), + [anon_sym_PLUS] = ACTIONS(933), + [anon_sym_STAR] = ACTIONS(933), + [anon_sym_QMARK] = ACTIONS(935), + [anon_sym_u8] = ACTIONS(933), + [anon_sym_i8] = ACTIONS(933), + [anon_sym_u16] = ACTIONS(933), + [anon_sym_i16] = ACTIONS(933), + [anon_sym_u32] = ACTIONS(933), + [anon_sym_i32] = ACTIONS(933), + [anon_sym_u64] = ACTIONS(933), + [anon_sym_i64] = ACTIONS(933), + [anon_sym_u128] = ACTIONS(933), + [anon_sym_i128] = ACTIONS(933), + [anon_sym_isize] = ACTIONS(933), + [anon_sym_usize] = ACTIONS(933), + [anon_sym_f32] = ACTIONS(933), + [anon_sym_f64] = ACTIONS(933), + [anon_sym_bool] = ACTIONS(933), + [anon_sym_str] = ACTIONS(933), + [anon_sym_char] = ACTIONS(933), + [anon_sym_DASH] = ACTIONS(933), + [anon_sym_SLASH] = ACTIONS(933), + [anon_sym_PERCENT] = ACTIONS(933), + [anon_sym_CARET] = ACTIONS(933), + [anon_sym_BANG] = ACTIONS(933), + [anon_sym_AMP] = ACTIONS(933), + [anon_sym_PIPE] = ACTIONS(933), + [anon_sym_AMP_AMP] = ACTIONS(935), + [anon_sym_PIPE_PIPE] = ACTIONS(935), + [anon_sym_LT_LT] = ACTIONS(933), + [anon_sym_GT_GT] = ACTIONS(933), + [anon_sym_PLUS_EQ] = ACTIONS(935), + [anon_sym_DASH_EQ] = ACTIONS(935), + [anon_sym_STAR_EQ] = ACTIONS(935), + [anon_sym_SLASH_EQ] = ACTIONS(935), + [anon_sym_PERCENT_EQ] = ACTIONS(935), + [anon_sym_CARET_EQ] = ACTIONS(935), + [anon_sym_AMP_EQ] = ACTIONS(935), + [anon_sym_PIPE_EQ] = ACTIONS(935), + [anon_sym_LT_LT_EQ] = ACTIONS(935), + [anon_sym_GT_GT_EQ] = ACTIONS(935), + [anon_sym_EQ] = ACTIONS(933), + [anon_sym_EQ_EQ] = ACTIONS(935), + [anon_sym_BANG_EQ] = ACTIONS(935), + [anon_sym_GT] = ACTIONS(933), + [anon_sym_LT] = ACTIONS(933), + [anon_sym_GT_EQ] = ACTIONS(935), + [anon_sym_LT_EQ] = ACTIONS(935), + [anon_sym_AT] = ACTIONS(935), + [anon_sym__] = ACTIONS(933), + [anon_sym_DOT] = ACTIONS(933), + [anon_sym_DOT_DOT] = ACTIONS(933), + [anon_sym_DOT_DOT_DOT] = ACTIONS(935), + [anon_sym_DOT_DOT_EQ] = ACTIONS(935), + [anon_sym_COMMA] = ACTIONS(935), + [anon_sym_COLON_COLON] = ACTIONS(935), + [anon_sym_DASH_GT] = ACTIONS(935), + [anon_sym_POUND] = ACTIONS(935), + [anon_sym_SQUOTE] = ACTIONS(933), + [anon_sym_as] = ACTIONS(933), + [anon_sym_async] = ACTIONS(933), + [anon_sym_await] = ACTIONS(933), + [anon_sym_break] = ACTIONS(933), + [anon_sym_const] = ACTIONS(933), + [anon_sym_continue] = ACTIONS(933), + [anon_sym_default] = ACTIONS(933), + [anon_sym_enum] = ACTIONS(933), + [anon_sym_fn] = ACTIONS(933), + [anon_sym_for] = ACTIONS(933), + [anon_sym_if] = ACTIONS(933), + [anon_sym_impl] = ACTIONS(933), + [anon_sym_let] = ACTIONS(933), + [anon_sym_loop] = ACTIONS(933), + [anon_sym_match] = ACTIONS(933), + [anon_sym_mod] = ACTIONS(933), + [anon_sym_pub] = ACTIONS(933), + [anon_sym_return] = ACTIONS(933), + [anon_sym_static] = ACTIONS(933), + [anon_sym_struct] = ACTIONS(933), + [anon_sym_trait] = ACTIONS(933), + [anon_sym_type] = ACTIONS(933), + [anon_sym_union] = ACTIONS(933), + [anon_sym_unsafe] = ACTIONS(933), + [anon_sym_use] = ACTIONS(933), + [anon_sym_where] = ACTIONS(933), + [anon_sym_while] = ACTIONS(933), + [sym_mutable_specifier] = ACTIONS(933), + [sym_integer_literal] = ACTIONS(935), + [aux_sym_string_literal_token1] = ACTIONS(935), + [sym_char_literal] = ACTIONS(935), + [anon_sym_true] = ACTIONS(933), + [anon_sym_false] = ACTIONS(933), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(933), + [sym_super] = ACTIONS(933), + [sym_crate] = ACTIONS(933), + [sym__raw_string_literal_start] = ACTIONS(935), + [sym_float_literal] = ACTIONS(935), + }, + [178] = { [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1607), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(187), - [sym_block_comment] = STATE(187), - [aux_sym_enum_variant_list_repeat1] = STATE(211), + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1626), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1268), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), + [sym_line_comment] = STATE(178), + [sym_block_comment] = STATE(178), + [aux_sym_enum_variant_list_repeat1] = STATE(214), [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(991), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(1003), [anon_sym_LBRACE] = ACTIONS(338), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -37795,7 +36777,7 @@ 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(765), + [anon_sym_POUND] = ACTIONS(871), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), [anon_sym_break] = ACTIONS(41), @@ -37828,61 +36810,517 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [188] = { + [179] = { + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2731), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1762), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_let_condition] = STATE(2840), + [sym__let_chain] = STATE(2831), + [sym__condition] = STATE(2573), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(236), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), + [sym_line_comment] = STATE(179), + [sym_block_comment] = STATE(179), + [sym_identifier] = ACTIONS(466), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_STAR] = ACTIONS(973), + [anon_sym_u8] = ACTIONS(468), + [anon_sym_i8] = ACTIONS(468), + [anon_sym_u16] = ACTIONS(468), + [anon_sym_i16] = ACTIONS(468), + [anon_sym_u32] = ACTIONS(468), + [anon_sym_i32] = ACTIONS(468), + [anon_sym_u64] = ACTIONS(468), + [anon_sym_i64] = ACTIONS(468), + [anon_sym_u128] = ACTIONS(468), + [anon_sym_i128] = ACTIONS(468), + [anon_sym_isize] = ACTIONS(468), + [anon_sym_usize] = ACTIONS(468), + [anon_sym_f32] = ACTIONS(468), + [anon_sym_f64] = ACTIONS(468), + [anon_sym_bool] = ACTIONS(468), + [anon_sym_str] = ACTIONS(468), + [anon_sym_char] = ACTIONS(468), + [anon_sym_DASH] = ACTIONS(973), + [anon_sym_BANG] = ACTIONS(973), + [anon_sym_AMP] = ACTIONS(975), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(977), + [anon_sym_COLON_COLON] = ACTIONS(472), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(346), + [anon_sym_break] = ACTIONS(494), + [anon_sym_const] = ACTIONS(348), + [anon_sym_continue] = ACTIONS(496), + [anon_sym_default] = ACTIONS(476), + [anon_sym_for] = ACTIONS(352), + [anon_sym_if] = ACTIONS(354), + [anon_sym_let] = ACTIONS(979), + [anon_sym_loop] = ACTIONS(356), + [anon_sym_match] = ACTIONS(358), + [anon_sym_return] = ACTIONS(498), + [anon_sym_static] = ACTIONS(500), + [anon_sym_union] = ACTIONS(476), + [anon_sym_unsafe] = ACTIONS(362), + [anon_sym_while] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(502), + [anon_sym_move] = ACTIONS(504), + [anon_sym_try] = ACTIONS(366), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(486), + [sym_super] = ACTIONS(488), + [sym_crate] = ACTIONS(488), + [sym_metavariable] = ACTIONS(490), + [sym__raw_string_literal_start] = ACTIONS(115), + [sym_float_literal] = ACTIONS(95), + }, + [180] = { + [sym_bracketed_type] = STATE(3506), + [sym_generic_function] = STATE(1695), + [sym_generic_type_with_turbofish] = STATE(2844), + [sym__expression_except_range] = STATE(1590), + [sym__expression] = STATE(1871), + [sym_macro_invocation] = STATE(1705), + [sym_scoped_identifier] = STATE(1568), + [sym_scoped_type_identifier_in_expression_position] = STATE(3132), + [sym_range_expression] = STATE(1699), + [sym_unary_expression] = STATE(1695), + [sym_try_expression] = STATE(1695), + [sym_reference_expression] = STATE(1695), + [sym_binary_expression] = STATE(1695), + [sym_assignment_expression] = STATE(1695), + [sym_compound_assignment_expr] = STATE(1695), + [sym_type_cast_expression] = STATE(1695), + [sym_return_expression] = STATE(1695), + [sym_yield_expression] = STATE(1695), + [sym_call_expression] = STATE(1695), + [sym_array_expression] = STATE(1695), + [sym_parenthesized_expression] = STATE(1695), + [sym_tuple_expression] = STATE(1695), + [sym_unit_expression] = STATE(1695), + [sym_struct_expression] = STATE(1695), + [sym_if_expression] = STATE(1695), + [sym_let_condition] = STATE(3176), + [sym__let_chain] = STATE(3179), + [sym__condition] = STATE(3435), + [sym_match_expression] = STATE(1695), + [sym_while_expression] = STATE(1695), + [sym_loop_expression] = STATE(1695), + [sym_for_expression] = STATE(1695), + [sym_const_block] = STATE(1695), + [sym_closure_expression] = STATE(1695), + [sym_closure_parameters] = STATE(222), + [sym_label] = STATE(3593), + [sym_break_expression] = STATE(1695), + [sym_continue_expression] = STATE(1695), + [sym_index_expression] = STATE(1695), + [sym_await_expression] = STATE(1695), + [sym_field_expression] = STATE(1583), + [sym_unsafe_block] = STATE(1695), + [sym_async_block] = STATE(1695), + [sym_try_block] = STATE(1695), + [sym_block] = STATE(1695), + [sym__literal] = STATE(1695), + [sym_string_literal] = STATE(1801), + [sym_raw_string_literal] = STATE(1801), + [sym_boolean_literal] = STATE(1801), + [sym_line_comment] = STATE(180), + [sym_block_comment] = STATE(180), + [sym_identifier] = ACTIONS(398), + [anon_sym_LPAREN] = ACTIONS(456), + [anon_sym_LBRACK] = ACTIONS(458), + [anon_sym_LBRACE] = ACTIONS(400), + [anon_sym_STAR] = ACTIONS(993), + [anon_sym_u8] = ACTIONS(404), + [anon_sym_i8] = ACTIONS(404), + [anon_sym_u16] = ACTIONS(404), + [anon_sym_i16] = ACTIONS(404), + [anon_sym_u32] = ACTIONS(404), + [anon_sym_i32] = ACTIONS(404), + [anon_sym_u64] = ACTIONS(404), + [anon_sym_i64] = ACTIONS(404), + [anon_sym_u128] = ACTIONS(404), + [anon_sym_i128] = ACTIONS(404), + [anon_sym_isize] = ACTIONS(404), + [anon_sym_usize] = ACTIONS(404), + [anon_sym_f32] = ACTIONS(404), + [anon_sym_f64] = ACTIONS(404), + [anon_sym_bool] = ACTIONS(404), + [anon_sym_str] = ACTIONS(404), + [anon_sym_char] = ACTIONS(404), + [anon_sym_DASH] = ACTIONS(993), + [anon_sym_BANG] = ACTIONS(993), + [anon_sym_AMP] = ACTIONS(995), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(997), + [anon_sym_COLON_COLON] = ACTIONS(408), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(410), + [anon_sym_break] = ACTIONS(412), + [anon_sym_const] = ACTIONS(414), + [anon_sym_continue] = ACTIONS(416), + [anon_sym_default] = ACTIONS(418), + [anon_sym_for] = ACTIONS(420), + [anon_sym_if] = ACTIONS(422), + [anon_sym_let] = ACTIONS(999), + [anon_sym_loop] = ACTIONS(424), + [anon_sym_match] = ACTIONS(426), + [anon_sym_return] = ACTIONS(428), + [anon_sym_static] = ACTIONS(430), + [anon_sym_union] = ACTIONS(418), + [anon_sym_unsafe] = ACTIONS(432), + [anon_sym_while] = ACTIONS(434), + [anon_sym_yield] = ACTIONS(436), + [anon_sym_move] = ACTIONS(438), + [anon_sym_try] = ACTIONS(440), + [sym_integer_literal] = ACTIONS(442), + [aux_sym_string_literal_token1] = ACTIONS(444), + [sym_char_literal] = ACTIONS(442), + [anon_sym_true] = ACTIONS(446), + [anon_sym_false] = ACTIONS(446), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(448), + [sym_super] = ACTIONS(450), + [sym_crate] = ACTIONS(450), + [sym_metavariable] = ACTIONS(452), + [sym__raw_string_literal_start] = ACTIONS(454), + [sym_float_literal] = ACTIONS(442), + }, + [181] = { + [sym_line_comment] = STATE(181), + [sym_block_comment] = STATE(181), + [sym_identifier] = ACTIONS(1001), + [anon_sym_SEMI] = ACTIONS(1003), + [anon_sym_LPAREN] = ACTIONS(1003), + [anon_sym_RPAREN] = ACTIONS(1003), + [anon_sym_LBRACK] = ACTIONS(1003), + [anon_sym_RBRACK] = ACTIONS(1003), + [anon_sym_LBRACE] = ACTIONS(1003), + [anon_sym_RBRACE] = ACTIONS(1003), + [anon_sym_EQ_GT] = ACTIONS(1003), + [anon_sym_COLON] = ACTIONS(1001), + [anon_sym_DOLLAR] = ACTIONS(1003), + [anon_sym_PLUS] = ACTIONS(1001), + [anon_sym_STAR] = ACTIONS(1001), + [anon_sym_QMARK] = ACTIONS(1003), + [anon_sym_u8] = ACTIONS(1001), + [anon_sym_i8] = ACTIONS(1001), + [anon_sym_u16] = ACTIONS(1001), + [anon_sym_i16] = ACTIONS(1001), + [anon_sym_u32] = ACTIONS(1001), + [anon_sym_i32] = ACTIONS(1001), + [anon_sym_u64] = ACTIONS(1001), + [anon_sym_i64] = ACTIONS(1001), + [anon_sym_u128] = ACTIONS(1001), + [anon_sym_i128] = ACTIONS(1001), + [anon_sym_isize] = ACTIONS(1001), + [anon_sym_usize] = ACTIONS(1001), + [anon_sym_f32] = ACTIONS(1001), + [anon_sym_f64] = ACTIONS(1001), + [anon_sym_bool] = ACTIONS(1001), + [anon_sym_str] = ACTIONS(1001), + [anon_sym_char] = ACTIONS(1001), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_SLASH] = ACTIONS(1001), + [anon_sym_PERCENT] = ACTIONS(1001), + [anon_sym_CARET] = ACTIONS(1001), + [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_AMP] = ACTIONS(1001), + [anon_sym_PIPE] = ACTIONS(1001), + [anon_sym_AMP_AMP] = ACTIONS(1003), + [anon_sym_PIPE_PIPE] = ACTIONS(1003), + [anon_sym_LT_LT] = ACTIONS(1001), + [anon_sym_GT_GT] = ACTIONS(1001), + [anon_sym_PLUS_EQ] = ACTIONS(1003), + [anon_sym_DASH_EQ] = ACTIONS(1003), + [anon_sym_STAR_EQ] = ACTIONS(1003), + [anon_sym_SLASH_EQ] = ACTIONS(1003), + [anon_sym_PERCENT_EQ] = ACTIONS(1003), + [anon_sym_CARET_EQ] = ACTIONS(1003), + [anon_sym_AMP_EQ] = ACTIONS(1003), + [anon_sym_PIPE_EQ] = ACTIONS(1003), + [anon_sym_LT_LT_EQ] = ACTIONS(1003), + [anon_sym_GT_GT_EQ] = ACTIONS(1003), + [anon_sym_EQ] = ACTIONS(1001), + [anon_sym_EQ_EQ] = ACTIONS(1003), + [anon_sym_BANG_EQ] = ACTIONS(1003), + [anon_sym_GT] = ACTIONS(1001), + [anon_sym_LT] = ACTIONS(1001), + [anon_sym_GT_EQ] = ACTIONS(1003), + [anon_sym_LT_EQ] = ACTIONS(1003), + [anon_sym_AT] = ACTIONS(1003), + [anon_sym__] = ACTIONS(1001), + [anon_sym_DOT] = ACTIONS(1001), + [anon_sym_DOT_DOT] = ACTIONS(1001), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1003), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1003), + [anon_sym_COMMA] = ACTIONS(1003), + [anon_sym_COLON_COLON] = ACTIONS(1003), + [anon_sym_DASH_GT] = ACTIONS(1003), + [anon_sym_POUND] = ACTIONS(1003), + [anon_sym_SQUOTE] = ACTIONS(1001), + [anon_sym_as] = ACTIONS(1001), + [anon_sym_async] = ACTIONS(1001), + [anon_sym_await] = ACTIONS(1001), + [anon_sym_break] = ACTIONS(1001), + [anon_sym_const] = ACTIONS(1001), + [anon_sym_continue] = ACTIONS(1001), + [anon_sym_default] = ACTIONS(1001), + [anon_sym_enum] = ACTIONS(1001), + [anon_sym_fn] = ACTIONS(1001), + [anon_sym_for] = ACTIONS(1001), + [anon_sym_if] = ACTIONS(1001), + [anon_sym_impl] = ACTIONS(1001), + [anon_sym_let] = ACTIONS(1001), + [anon_sym_loop] = ACTIONS(1001), + [anon_sym_match] = ACTIONS(1001), + [anon_sym_mod] = ACTIONS(1001), + [anon_sym_pub] = ACTIONS(1001), + [anon_sym_return] = ACTIONS(1001), + [anon_sym_static] = ACTIONS(1001), + [anon_sym_struct] = ACTIONS(1001), + [anon_sym_trait] = ACTIONS(1001), + [anon_sym_type] = ACTIONS(1001), + [anon_sym_union] = ACTIONS(1001), + [anon_sym_unsafe] = ACTIONS(1001), + [anon_sym_use] = ACTIONS(1001), + [anon_sym_where] = ACTIONS(1001), + [anon_sym_while] = ACTIONS(1001), + [sym_mutable_specifier] = ACTIONS(1001), + [sym_integer_literal] = ACTIONS(1003), + [aux_sym_string_literal_token1] = ACTIONS(1003), + [sym_char_literal] = ACTIONS(1003), + [anon_sym_true] = ACTIONS(1001), + [anon_sym_false] = ACTIONS(1001), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1001), + [sym_super] = ACTIONS(1001), + [sym_crate] = ACTIONS(1001), + [sym__raw_string_literal_start] = ACTIONS(1003), + [sym_float_literal] = ACTIONS(1003), + }, + [182] = { + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2731), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1762), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_let_condition] = STATE(2840), + [sym__let_chain] = STATE(2831), + [sym__condition] = STATE(2523), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(236), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), + [sym_line_comment] = STATE(182), + [sym_block_comment] = STATE(182), + [sym_identifier] = ACTIONS(466), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_STAR] = ACTIONS(973), + [anon_sym_u8] = ACTIONS(468), + [anon_sym_i8] = ACTIONS(468), + [anon_sym_u16] = ACTIONS(468), + [anon_sym_i16] = ACTIONS(468), + [anon_sym_u32] = ACTIONS(468), + [anon_sym_i32] = ACTIONS(468), + [anon_sym_u64] = ACTIONS(468), + [anon_sym_i64] = ACTIONS(468), + [anon_sym_u128] = ACTIONS(468), + [anon_sym_i128] = ACTIONS(468), + [anon_sym_isize] = ACTIONS(468), + [anon_sym_usize] = ACTIONS(468), + [anon_sym_f32] = ACTIONS(468), + [anon_sym_f64] = ACTIONS(468), + [anon_sym_bool] = ACTIONS(468), + [anon_sym_str] = ACTIONS(468), + [anon_sym_char] = ACTIONS(468), + [anon_sym_DASH] = ACTIONS(973), + [anon_sym_BANG] = ACTIONS(973), + [anon_sym_AMP] = ACTIONS(975), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(977), + [anon_sym_COLON_COLON] = ACTIONS(472), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(346), + [anon_sym_break] = ACTIONS(494), + [anon_sym_const] = ACTIONS(348), + [anon_sym_continue] = ACTIONS(496), + [anon_sym_default] = ACTIONS(476), + [anon_sym_for] = ACTIONS(352), + [anon_sym_if] = ACTIONS(354), + [anon_sym_let] = ACTIONS(979), + [anon_sym_loop] = ACTIONS(356), + [anon_sym_match] = ACTIONS(358), + [anon_sym_return] = ACTIONS(498), + [anon_sym_static] = ACTIONS(500), + [anon_sym_union] = ACTIONS(476), + [anon_sym_unsafe] = ACTIONS(362), + [anon_sym_while] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(502), + [anon_sym_move] = ACTIONS(504), + [anon_sym_try] = ACTIONS(366), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(486), + [sym_super] = ACTIONS(488), + [sym_crate] = ACTIONS(488), + [sym_metavariable] = ACTIONS(490), + [sym__raw_string_literal_start] = ACTIONS(115), + [sym_float_literal] = ACTIONS(95), + }, + [183] = { [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1607), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(188), - [sym_block_comment] = STATE(188), - [aux_sym_enum_variant_list_repeat1] = STATE(211), + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1626), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1268), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), + [sym_line_comment] = STATE(183), + [sym_block_comment] = STATE(183), + [aux_sym_enum_variant_list_repeat1] = STATE(214), [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1005), [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(1005), [anon_sym_LBRACE] = ACTIONS(338), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -37909,7 +37347,7 @@ 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(765), + [anon_sym_POUND] = ACTIONS(871), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), [anon_sym_break] = ACTIONS(41), @@ -37942,93 +37380,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [189] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1699), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_let_condition] = STATE(2823), - [sym__let_chain] = STATE(2887), - [sym__condition] = STATE(2548), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(189), - [sym_block_comment] = STATE(189), - [sym_identifier] = ACTIONS(456), + [184] = { + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2731), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1762), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_let_condition] = STATE(2840), + [sym__let_chain] = STATE(2831), + [sym__condition] = STATE(2642), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(236), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), + [sym_line_comment] = STATE(184), + [sym_block_comment] = STATE(184), + [sym_identifier] = ACTIONS(466), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), + [anon_sym_u8] = ACTIONS(468), + [anon_sym_i8] = ACTIONS(468), + [anon_sym_u16] = ACTIONS(468), + [anon_sym_i16] = ACTIONS(468), + [anon_sym_u32] = ACTIONS(468), + [anon_sym_i32] = ACTIONS(468), + [anon_sym_u64] = ACTIONS(468), + [anon_sym_i64] = ACTIONS(468), + [anon_sym_u128] = ACTIONS(468), + [anon_sym_i128] = ACTIONS(468), + [anon_sym_isize] = ACTIONS(468), + [anon_sym_usize] = ACTIONS(468), + [anon_sym_f32] = ACTIONS(468), + [anon_sym_f64] = ACTIONS(468), + [anon_sym_bool] = ACTIONS(468), + [anon_sym_str] = ACTIONS(468), + [anon_sym_char] = ACTIONS(468), [anon_sym_DASH] = ACTIONS(973), [anon_sym_BANG] = ACTIONS(973), [anon_sym_AMP] = ACTIONS(975), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(977), - [anon_sym_COLON_COLON] = ACTIONS(462), + [anon_sym_COLON_COLON] = ACTIONS(472), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), [anon_sym_break] = ACTIONS(494), [anon_sym_const] = ACTIONS(348), [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), + [anon_sym_default] = ACTIONS(476), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), [anon_sym_let] = ACTIONS(979), @@ -38036,7 +37474,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(358), [anon_sym_return] = ACTIONS(498), [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), + [anon_sym_union] = ACTIONS(476), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), [anon_sym_yield] = ACTIONS(502), @@ -38049,64 +37487,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), + [sym_self] = ACTIONS(486), + [sym_super] = ACTIONS(488), + [sym_crate] = ACTIONS(488), + [sym_metavariable] = ACTIONS(490), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [190] = { + [185] = { [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1607), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(190), - [sym_block_comment] = STATE(190), - [aux_sym_enum_variant_list_repeat1] = STATE(211), + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1626), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1268), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), + [sym_line_comment] = STATE(185), + [sym_block_comment] = STATE(185), + [aux_sym_enum_variant_list_repeat1] = STATE(214), [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -38137,7 +37575,7 @@ 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(765), + [anon_sym_POUND] = ACTIONS(871), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), [anon_sym_break] = ACTIONS(41), @@ -38170,57 +37608,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [191] = { + [186] = { [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1607), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(191), - [sym_block_comment] = STATE(191), - [aux_sym_enum_variant_list_repeat1] = STATE(211), + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1626), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1268), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), + [sym_line_comment] = STATE(186), + [sym_block_comment] = STATE(186), + [aux_sym_enum_variant_list_repeat1] = STATE(214), [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_RPAREN] = ACTIONS(1009), @@ -38251,7 +37689,7 @@ 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(765), + [anon_sym_POUND] = ACTIONS(871), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), [anon_sym_break] = ACTIONS(41), @@ -38284,61 +37722,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [192] = { + [187] = { [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1607), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(192), - [sym_block_comment] = STATE(192), - [aux_sym_enum_variant_list_repeat1] = STATE(211), + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1825), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1268), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), + [sym_line_comment] = STATE(187), + [sym_block_comment] = STATE(187), + [aux_sym_enum_variant_list_repeat1] = STATE(209), [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(1011), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(1011), [anon_sym_LBRACE] = ACTIONS(338), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -38365,7 +37803,7 @@ 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(765), + [anon_sym_POUND] = ACTIONS(871), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), [anon_sym_break] = ACTIONS(41), @@ -38398,61 +37836,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [193] = { + [188] = { [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1607), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(193), - [sym_block_comment] = STATE(193), - [aux_sym_enum_variant_list_repeat1] = STATE(211), + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1626), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1268), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), + [sym_line_comment] = STATE(188), + [sym_block_comment] = STATE(188), + [aux_sym_enum_variant_list_repeat1] = STATE(214), [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1013), [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(1013), [anon_sym_LBRACE] = ACTIONS(338), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -38479,7 +37917,7 @@ 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(765), + [anon_sym_POUND] = ACTIONS(871), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), [anon_sym_break] = ACTIONS(41), @@ -38512,61 +37950,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [194] = { + [189] = { [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1607), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(194), - [sym_block_comment] = STATE(194), - [aux_sym_enum_variant_list_repeat1] = STATE(211), + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1626), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1268), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), + [sym_line_comment] = STATE(189), + [sym_block_comment] = STATE(189), + [aux_sym_enum_variant_list_repeat1] = STATE(214), [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(1015), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(1015), [anon_sym_LBRACE] = ACTIONS(338), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -38593,7 +38031,7 @@ 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(765), + [anon_sym_POUND] = ACTIONS(871), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), [anon_sym_break] = ACTIONS(41), @@ -38626,61 +38064,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [195] = { + [190] = { [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1607), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(195), - [sym_block_comment] = STATE(195), - [aux_sym_enum_variant_list_repeat1] = STATE(211), + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1626), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1268), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), + [sym_line_comment] = STATE(190), + [sym_block_comment] = STATE(190), + [aux_sym_enum_variant_list_repeat1] = STATE(214), [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(1017), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(1017), [anon_sym_LBRACE] = ACTIONS(338), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -38707,7 +38145,7 @@ 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(765), + [anon_sym_POUND] = ACTIONS(871), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), [anon_sym_break] = ACTIONS(41), @@ -38740,61 +38178,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [196] = { + [191] = { [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1607), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(196), - [sym_block_comment] = STATE(196), - [aux_sym_enum_variant_list_repeat1] = STATE(211), + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1626), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1268), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), + [sym_line_comment] = STATE(191), + [sym_block_comment] = STATE(191), + [aux_sym_enum_variant_list_repeat1] = STATE(214), [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1019), [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(1019), [anon_sym_LBRACE] = ACTIONS(338), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -38821,7 +38259,7 @@ 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(765), + [anon_sym_POUND] = ACTIONS(871), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), [anon_sym_break] = ACTIONS(41), @@ -38854,174 +38292,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [197] = { - [sym_bracketed_type] = STATE(3498), - [sym_generic_function] = STATE(1637), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1604), - [sym__expression] = STATE(1875), - [sym_macro_invocation] = STATE(1641), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3100), - [sym_range_expression] = STATE(1639), - [sym_unary_expression] = STATE(1637), - [sym_try_expression] = STATE(1637), - [sym_reference_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_assignment_expression] = STATE(1637), - [sym_compound_assignment_expr] = STATE(1637), - [sym_type_cast_expression] = STATE(1637), - [sym_return_expression] = STATE(1637), - [sym_yield_expression] = STATE(1637), - [sym_call_expression] = STATE(1637), - [sym_array_expression] = STATE(1637), - [sym_parenthesized_expression] = STATE(1637), - [sym_tuple_expression] = STATE(1637), - [sym_unit_expression] = STATE(1637), - [sym_struct_expression] = STATE(1637), - [sym_if_expression] = STATE(1637), - [sym_let_condition] = STATE(3179), - [sym__let_chain] = STATE(3181), - [sym__condition] = STATE(3594), - [sym_match_expression] = STATE(1637), - [sym_while_expression] = STATE(1637), - [sym_loop_expression] = STATE(1637), - [sym_for_expression] = STATE(1637), - [sym_const_block] = STATE(1637), - [sym_closure_expression] = STATE(1637), - [sym_closure_parameters] = STATE(237), - [sym_label] = STATE(3585), - [sym_break_expression] = STATE(1637), - [sym_continue_expression] = STATE(1637), - [sym_index_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_field_expression] = STATE(1620), - [sym_unsafe_block] = STATE(1637), - [sym_async_block] = STATE(1637), - [sym_try_block] = STATE(1637), - [sym_block] = STATE(1637), - [sym__literal] = STATE(1637), - [sym_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_boolean_literal] = STATE(1778), - [sym_line_comment] = STATE(197), - [sym_block_comment] = STATE(197), - [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_STAR] = ACTIONS(1021), - [anon_sym_u8] = ACTIONS(404), - [anon_sym_i8] = ACTIONS(404), - [anon_sym_u16] = ACTIONS(404), - [anon_sym_i16] = ACTIONS(404), - [anon_sym_u32] = ACTIONS(404), - [anon_sym_i32] = ACTIONS(404), - [anon_sym_u64] = ACTIONS(404), - [anon_sym_i64] = ACTIONS(404), - [anon_sym_u128] = ACTIONS(404), - [anon_sym_i128] = ACTIONS(404), - [anon_sym_isize] = ACTIONS(404), - [anon_sym_usize] = ACTIONS(404), - [anon_sym_f32] = ACTIONS(404), - [anon_sym_f64] = ACTIONS(404), - [anon_sym_bool] = ACTIONS(404), - [anon_sym_str] = ACTIONS(404), - [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_BANG] = ACTIONS(1021), - [anon_sym_AMP] = ACTIONS(1023), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(408), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_const] = ACTIONS(414), - [anon_sym_continue] = ACTIONS(416), - [anon_sym_default] = ACTIONS(418), - [anon_sym_for] = ACTIONS(420), - [anon_sym_if] = ACTIONS(422), - [anon_sym_let] = ACTIONS(1027), - [anon_sym_loop] = ACTIONS(424), - [anon_sym_match] = ACTIONS(426), - [anon_sym_return] = ACTIONS(428), - [anon_sym_static] = ACTIONS(430), - [anon_sym_union] = ACTIONS(418), - [anon_sym_unsafe] = ACTIONS(432), - [anon_sym_while] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_move] = ACTIONS(438), - [anon_sym_try] = ACTIONS(440), - [sym_integer_literal] = ACTIONS(442), - [aux_sym_string_literal_token1] = ACTIONS(444), - [sym_char_literal] = ACTIONS(442), - [anon_sym_true] = ACTIONS(446), - [anon_sym_false] = ACTIONS(446), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(448), - [sym_super] = ACTIONS(450), - [sym_crate] = ACTIONS(450), - [sym_metavariable] = ACTIONS(452), - [sym__raw_string_literal_start] = ACTIONS(454), - [sym_float_literal] = ACTIONS(442), - }, - [198] = { + [192] = { [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1607), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(198), - [sym_block_comment] = STATE(198), - [aux_sym_enum_variant_list_repeat1] = STATE(211), + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1626), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1268), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), + [sym_line_comment] = STATE(192), + [sym_block_comment] = STATE(192), + [aux_sym_enum_variant_list_repeat1] = STATE(214), [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1029), + [anon_sym_RPAREN] = ACTIONS(1021), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), [anon_sym_STAR] = ACTIONS(21), @@ -39049,7 +38373,7 @@ 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(765), + [anon_sym_POUND] = ACTIONS(871), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), [anon_sym_break] = ACTIONS(41), @@ -39082,61 +38406,289 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [199] = { + [193] = { + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2731), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1762), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_let_condition] = STATE(2840), + [sym__let_chain] = STATE(2831), + [sym__condition] = STATE(2521), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(236), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), + [sym_line_comment] = STATE(193), + [sym_block_comment] = STATE(193), + [sym_identifier] = ACTIONS(466), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_STAR] = ACTIONS(973), + [anon_sym_u8] = ACTIONS(468), + [anon_sym_i8] = ACTIONS(468), + [anon_sym_u16] = ACTIONS(468), + [anon_sym_i16] = ACTIONS(468), + [anon_sym_u32] = ACTIONS(468), + [anon_sym_i32] = ACTIONS(468), + [anon_sym_u64] = ACTIONS(468), + [anon_sym_i64] = ACTIONS(468), + [anon_sym_u128] = ACTIONS(468), + [anon_sym_i128] = ACTIONS(468), + [anon_sym_isize] = ACTIONS(468), + [anon_sym_usize] = ACTIONS(468), + [anon_sym_f32] = ACTIONS(468), + [anon_sym_f64] = ACTIONS(468), + [anon_sym_bool] = ACTIONS(468), + [anon_sym_str] = ACTIONS(468), + [anon_sym_char] = ACTIONS(468), + [anon_sym_DASH] = ACTIONS(973), + [anon_sym_BANG] = ACTIONS(973), + [anon_sym_AMP] = ACTIONS(975), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(977), + [anon_sym_COLON_COLON] = ACTIONS(472), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(346), + [anon_sym_break] = ACTIONS(494), + [anon_sym_const] = ACTIONS(348), + [anon_sym_continue] = ACTIONS(496), + [anon_sym_default] = ACTIONS(476), + [anon_sym_for] = ACTIONS(352), + [anon_sym_if] = ACTIONS(354), + [anon_sym_let] = ACTIONS(979), + [anon_sym_loop] = ACTIONS(356), + [anon_sym_match] = ACTIONS(358), + [anon_sym_return] = ACTIONS(498), + [anon_sym_static] = ACTIONS(500), + [anon_sym_union] = ACTIONS(476), + [anon_sym_unsafe] = ACTIONS(362), + [anon_sym_while] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(502), + [anon_sym_move] = ACTIONS(504), + [anon_sym_try] = ACTIONS(366), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(486), + [sym_super] = ACTIONS(488), + [sym_crate] = ACTIONS(488), + [sym_metavariable] = ACTIONS(490), + [sym__raw_string_literal_start] = ACTIONS(115), + [sym_float_literal] = ACTIONS(95), + }, + [194] = { + [sym_line_comment] = STATE(194), + [sym_block_comment] = STATE(194), + [sym_identifier] = ACTIONS(885), + [anon_sym_SEMI] = ACTIONS(887), + [anon_sym_LPAREN] = ACTIONS(887), + [anon_sym_RPAREN] = ACTIONS(887), + [anon_sym_LBRACK] = ACTIONS(887), + [anon_sym_RBRACK] = ACTIONS(887), + [anon_sym_LBRACE] = ACTIONS(887), + [anon_sym_RBRACE] = ACTIONS(887), + [anon_sym_EQ_GT] = ACTIONS(887), + [anon_sym_COLON] = ACTIONS(885), + [anon_sym_DOLLAR] = ACTIONS(887), + [anon_sym_PLUS] = ACTIONS(885), + [anon_sym_STAR] = ACTIONS(885), + [anon_sym_QMARK] = ACTIONS(887), + [anon_sym_u8] = ACTIONS(885), + [anon_sym_i8] = ACTIONS(885), + [anon_sym_u16] = ACTIONS(885), + [anon_sym_i16] = ACTIONS(885), + [anon_sym_u32] = ACTIONS(885), + [anon_sym_i32] = ACTIONS(885), + [anon_sym_u64] = ACTIONS(885), + [anon_sym_i64] = ACTIONS(885), + [anon_sym_u128] = ACTIONS(885), + [anon_sym_i128] = ACTIONS(885), + [anon_sym_isize] = ACTIONS(885), + [anon_sym_usize] = ACTIONS(885), + [anon_sym_f32] = ACTIONS(885), + [anon_sym_f64] = ACTIONS(885), + [anon_sym_bool] = ACTIONS(885), + [anon_sym_str] = ACTIONS(885), + [anon_sym_char] = ACTIONS(885), + [anon_sym_DASH] = ACTIONS(885), + [anon_sym_SLASH] = ACTIONS(885), + [anon_sym_PERCENT] = ACTIONS(885), + [anon_sym_CARET] = ACTIONS(885), + [anon_sym_BANG] = ACTIONS(885), + [anon_sym_AMP] = ACTIONS(885), + [anon_sym_PIPE] = ACTIONS(885), + [anon_sym_AMP_AMP] = ACTIONS(887), + [anon_sym_PIPE_PIPE] = ACTIONS(887), + [anon_sym_LT_LT] = ACTIONS(885), + [anon_sym_GT_GT] = ACTIONS(885), + [anon_sym_PLUS_EQ] = ACTIONS(887), + [anon_sym_DASH_EQ] = ACTIONS(887), + [anon_sym_STAR_EQ] = ACTIONS(887), + [anon_sym_SLASH_EQ] = ACTIONS(887), + [anon_sym_PERCENT_EQ] = ACTIONS(887), + [anon_sym_CARET_EQ] = ACTIONS(887), + [anon_sym_AMP_EQ] = ACTIONS(887), + [anon_sym_PIPE_EQ] = ACTIONS(887), + [anon_sym_LT_LT_EQ] = ACTIONS(887), + [anon_sym_GT_GT_EQ] = ACTIONS(887), + [anon_sym_EQ] = ACTIONS(885), + [anon_sym_EQ_EQ] = ACTIONS(887), + [anon_sym_BANG_EQ] = ACTIONS(887), + [anon_sym_GT] = ACTIONS(885), + [anon_sym_LT] = ACTIONS(885), + [anon_sym_GT_EQ] = ACTIONS(887), + [anon_sym_LT_EQ] = ACTIONS(887), + [anon_sym_AT] = ACTIONS(887), + [anon_sym__] = ACTIONS(885), + [anon_sym_DOT] = ACTIONS(885), + [anon_sym_DOT_DOT] = ACTIONS(885), + [anon_sym_DOT_DOT_DOT] = ACTIONS(887), + [anon_sym_DOT_DOT_EQ] = ACTIONS(887), + [anon_sym_COMMA] = ACTIONS(887), + [anon_sym_COLON_COLON] = ACTIONS(887), + [anon_sym_DASH_GT] = ACTIONS(887), + [anon_sym_POUND] = ACTIONS(887), + [anon_sym_SQUOTE] = ACTIONS(885), + [anon_sym_as] = ACTIONS(885), + [anon_sym_async] = ACTIONS(885), + [anon_sym_await] = ACTIONS(885), + [anon_sym_break] = ACTIONS(885), + [anon_sym_const] = ACTIONS(885), + [anon_sym_continue] = ACTIONS(885), + [anon_sym_default] = ACTIONS(885), + [anon_sym_enum] = ACTIONS(885), + [anon_sym_fn] = ACTIONS(885), + [anon_sym_for] = ACTIONS(885), + [anon_sym_if] = ACTIONS(885), + [anon_sym_impl] = ACTIONS(885), + [anon_sym_let] = ACTIONS(885), + [anon_sym_loop] = ACTIONS(885), + [anon_sym_match] = ACTIONS(885), + [anon_sym_mod] = ACTIONS(885), + [anon_sym_pub] = ACTIONS(885), + [anon_sym_return] = ACTIONS(885), + [anon_sym_static] = ACTIONS(885), + [anon_sym_struct] = ACTIONS(885), + [anon_sym_trait] = ACTIONS(885), + [anon_sym_type] = ACTIONS(885), + [anon_sym_union] = ACTIONS(885), + [anon_sym_unsafe] = ACTIONS(885), + [anon_sym_use] = ACTIONS(885), + [anon_sym_where] = ACTIONS(885), + [anon_sym_while] = ACTIONS(885), + [sym_mutable_specifier] = ACTIONS(885), + [sym_integer_literal] = ACTIONS(887), + [aux_sym_string_literal_token1] = ACTIONS(887), + [sym_char_literal] = ACTIONS(887), + [anon_sym_true] = ACTIONS(885), + [anon_sym_false] = ACTIONS(885), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(885), + [sym_super] = ACTIONS(885), + [sym_crate] = ACTIONS(885), + [sym__raw_string_literal_start] = ACTIONS(887), + [sym_float_literal] = ACTIONS(887), + }, + [195] = { [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1607), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(199), - [sym_block_comment] = STATE(199), - [aux_sym_enum_variant_list_repeat1] = STATE(211), + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1626), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1268), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), + [sym_line_comment] = STATE(195), + [sym_block_comment] = STATE(195), + [aux_sym_enum_variant_list_repeat1] = STATE(214), [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(1031), + [anon_sym_RBRACK] = ACTIONS(1023), [anon_sym_LBRACE] = ACTIONS(338), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -39163,7 +38715,7 @@ 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(765), + [anon_sym_POUND] = ACTIONS(871), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), [anon_sym_break] = ACTIONS(41), @@ -39196,60 +38748,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [200] = { + [196] = { [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1607), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(200), - [sym_block_comment] = STATE(200), - [aux_sym_enum_variant_list_repeat1] = STATE(211), + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1626), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1268), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), + [sym_line_comment] = STATE(196), + [sym_block_comment] = STATE(196), + [aux_sym_enum_variant_list_repeat1] = STATE(214), [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1033), + [anon_sym_RPAREN] = ACTIONS(1025), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), [anon_sym_STAR] = ACTIONS(21), @@ -39277,7 +38829,7 @@ 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(765), + [anon_sym_POUND] = ACTIONS(871), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), [anon_sym_break] = ACTIONS(41), @@ -39310,289 +38862,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [201] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1699), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_let_condition] = STATE(2823), - [sym__let_chain] = STATE(2887), - [sym__condition] = STATE(2722), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(201), - [sym_block_comment] = STATE(201), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(977), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_let] = ACTIONS(979), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [202] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1699), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_let_condition] = STATE(2823), - [sym__let_chain] = STATE(2887), - [sym__condition] = STATE(2495), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(202), - [sym_block_comment] = STATE(202), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(977), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_let] = ACTIONS(979), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [203] = { + [197] = { [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1607), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(203), - [sym_block_comment] = STATE(203), - [aux_sym_enum_variant_list_repeat1] = STATE(211), + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1626), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1268), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), + [sym_line_comment] = STATE(197), + [sym_block_comment] = STATE(197), + [aux_sym_enum_variant_list_repeat1] = STATE(214), [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(1035), + [anon_sym_RBRACK] = ACTIONS(1027), [anon_sym_LBRACE] = ACTIONS(338), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -39619,7 +38943,7 @@ 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(765), + [anon_sym_POUND] = ACTIONS(871), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), [anon_sym_break] = ACTIONS(41), @@ -39652,93 +38976,435 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [204] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1699), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_let_condition] = STATE(2823), - [sym__let_chain] = STATE(2887), - [sym__condition] = STATE(2547), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(204), - [sym_block_comment] = STATE(204), - [sym_identifier] = ACTIONS(456), + [198] = { + [sym_line_comment] = STATE(198), + [sym_block_comment] = STATE(198), + [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(939), + [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_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(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(937), + [sym_super] = ACTIONS(937), + [sym_crate] = ACTIONS(937), + [sym__raw_string_literal_start] = ACTIONS(939), + [sym_float_literal] = ACTIONS(939), + }, + [199] = { + [sym_line_comment] = STATE(199), + [sym_block_comment] = STATE(199), + [sym_identifier] = ACTIONS(945), + [anon_sym_SEMI] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_RPAREN] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_RBRACK] = ACTIONS(947), + [anon_sym_LBRACE] = ACTIONS(947), + [anon_sym_RBRACE] = ACTIONS(947), + [anon_sym_EQ_GT] = ACTIONS(947), + [anon_sym_COLON] = ACTIONS(945), + [anon_sym_DOLLAR] = ACTIONS(947), + [anon_sym_PLUS] = ACTIONS(945), + [anon_sym_STAR] = ACTIONS(945), + [anon_sym_QMARK] = ACTIONS(947), + [anon_sym_u8] = ACTIONS(945), + [anon_sym_i8] = ACTIONS(945), + [anon_sym_u16] = ACTIONS(945), + [anon_sym_i16] = ACTIONS(945), + [anon_sym_u32] = ACTIONS(945), + [anon_sym_i32] = ACTIONS(945), + [anon_sym_u64] = ACTIONS(945), + [anon_sym_i64] = ACTIONS(945), + [anon_sym_u128] = ACTIONS(945), + [anon_sym_i128] = ACTIONS(945), + [anon_sym_isize] = ACTIONS(945), + [anon_sym_usize] = ACTIONS(945), + [anon_sym_f32] = ACTIONS(945), + [anon_sym_f64] = ACTIONS(945), + [anon_sym_bool] = ACTIONS(945), + [anon_sym_str] = ACTIONS(945), + [anon_sym_char] = ACTIONS(945), + [anon_sym_DASH] = ACTIONS(945), + [anon_sym_SLASH] = ACTIONS(945), + [anon_sym_PERCENT] = ACTIONS(945), + [anon_sym_CARET] = ACTIONS(945), + [anon_sym_BANG] = ACTIONS(945), + [anon_sym_AMP] = ACTIONS(945), + [anon_sym_PIPE] = ACTIONS(945), + [anon_sym_AMP_AMP] = ACTIONS(947), + [anon_sym_PIPE_PIPE] = ACTIONS(947), + [anon_sym_LT_LT] = ACTIONS(945), + [anon_sym_GT_GT] = ACTIONS(945), + [anon_sym_PLUS_EQ] = ACTIONS(947), + [anon_sym_DASH_EQ] = ACTIONS(947), + [anon_sym_STAR_EQ] = ACTIONS(947), + [anon_sym_SLASH_EQ] = ACTIONS(947), + [anon_sym_PERCENT_EQ] = ACTIONS(947), + [anon_sym_CARET_EQ] = ACTIONS(947), + [anon_sym_AMP_EQ] = ACTIONS(947), + [anon_sym_PIPE_EQ] = ACTIONS(947), + [anon_sym_LT_LT_EQ] = ACTIONS(947), + [anon_sym_GT_GT_EQ] = ACTIONS(947), + [anon_sym_EQ] = ACTIONS(945), + [anon_sym_EQ_EQ] = ACTIONS(947), + [anon_sym_BANG_EQ] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(945), + [anon_sym_LT] = ACTIONS(945), + [anon_sym_GT_EQ] = ACTIONS(947), + [anon_sym_LT_EQ] = ACTIONS(947), + [anon_sym_AT] = ACTIONS(947), + [anon_sym__] = ACTIONS(945), + [anon_sym_DOT] = ACTIONS(945), + [anon_sym_DOT_DOT] = ACTIONS(945), + [anon_sym_DOT_DOT_DOT] = ACTIONS(947), + [anon_sym_DOT_DOT_EQ] = ACTIONS(947), + [anon_sym_COMMA] = ACTIONS(947), + [anon_sym_COLON_COLON] = ACTIONS(947), + [anon_sym_DASH_GT] = ACTIONS(947), + [anon_sym_POUND] = ACTIONS(947), + [anon_sym_SQUOTE] = ACTIONS(945), + [anon_sym_as] = ACTIONS(945), + [anon_sym_async] = ACTIONS(945), + [anon_sym_await] = ACTIONS(945), + [anon_sym_break] = ACTIONS(945), + [anon_sym_const] = ACTIONS(945), + [anon_sym_continue] = ACTIONS(945), + [anon_sym_default] = ACTIONS(945), + [anon_sym_enum] = ACTIONS(945), + [anon_sym_fn] = ACTIONS(945), + [anon_sym_for] = ACTIONS(945), + [anon_sym_if] = ACTIONS(945), + [anon_sym_impl] = ACTIONS(945), + [anon_sym_let] = ACTIONS(945), + [anon_sym_loop] = ACTIONS(945), + [anon_sym_match] = ACTIONS(945), + [anon_sym_mod] = ACTIONS(945), + [anon_sym_pub] = ACTIONS(945), + [anon_sym_return] = ACTIONS(945), + [anon_sym_static] = ACTIONS(945), + [anon_sym_struct] = ACTIONS(945), + [anon_sym_trait] = ACTIONS(945), + [anon_sym_type] = ACTIONS(945), + [anon_sym_union] = ACTIONS(945), + [anon_sym_unsafe] = ACTIONS(945), + [anon_sym_use] = ACTIONS(945), + [anon_sym_where] = ACTIONS(945), + [anon_sym_while] = ACTIONS(945), + [sym_mutable_specifier] = ACTIONS(945), + [sym_integer_literal] = ACTIONS(947), + [aux_sym_string_literal_token1] = ACTIONS(947), + [sym_char_literal] = ACTIONS(947), + [anon_sym_true] = ACTIONS(945), + [anon_sym_false] = ACTIONS(945), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(945), + [sym_super] = ACTIONS(945), + [sym_crate] = ACTIONS(945), + [sym__raw_string_literal_start] = ACTIONS(947), + [sym_float_literal] = ACTIONS(947), + }, + [200] = { + [sym_line_comment] = STATE(200), + [sym_block_comment] = STATE(200), + [sym_identifier] = ACTIONS(903), + [anon_sym_SEMI] = ACTIONS(905), + [anon_sym_LPAREN] = ACTIONS(905), + [anon_sym_RPAREN] = ACTIONS(905), + [anon_sym_LBRACK] = ACTIONS(905), + [anon_sym_RBRACK] = ACTIONS(905), + [anon_sym_LBRACE] = ACTIONS(905), + [anon_sym_RBRACE] = ACTIONS(905), + [anon_sym_EQ_GT] = ACTIONS(905), + [anon_sym_COLON] = ACTIONS(903), + [anon_sym_DOLLAR] = ACTIONS(905), + [anon_sym_PLUS] = ACTIONS(903), + [anon_sym_STAR] = ACTIONS(903), + [anon_sym_QMARK] = ACTIONS(905), + [anon_sym_u8] = ACTIONS(903), + [anon_sym_i8] = ACTIONS(903), + [anon_sym_u16] = ACTIONS(903), + [anon_sym_i16] = ACTIONS(903), + [anon_sym_u32] = ACTIONS(903), + [anon_sym_i32] = ACTIONS(903), + [anon_sym_u64] = ACTIONS(903), + [anon_sym_i64] = ACTIONS(903), + [anon_sym_u128] = ACTIONS(903), + [anon_sym_i128] = ACTIONS(903), + [anon_sym_isize] = ACTIONS(903), + [anon_sym_usize] = ACTIONS(903), + [anon_sym_f32] = ACTIONS(903), + [anon_sym_f64] = ACTIONS(903), + [anon_sym_bool] = ACTIONS(903), + [anon_sym_str] = ACTIONS(903), + [anon_sym_char] = ACTIONS(903), + [anon_sym_DASH] = ACTIONS(903), + [anon_sym_SLASH] = ACTIONS(903), + [anon_sym_PERCENT] = ACTIONS(903), + [anon_sym_CARET] = ACTIONS(903), + [anon_sym_BANG] = ACTIONS(903), + [anon_sym_AMP] = ACTIONS(903), + [anon_sym_PIPE] = ACTIONS(903), + [anon_sym_AMP_AMP] = ACTIONS(905), + [anon_sym_PIPE_PIPE] = ACTIONS(905), + [anon_sym_LT_LT] = ACTIONS(903), + [anon_sym_GT_GT] = ACTIONS(903), + [anon_sym_PLUS_EQ] = ACTIONS(905), + [anon_sym_DASH_EQ] = ACTIONS(905), + [anon_sym_STAR_EQ] = ACTIONS(905), + [anon_sym_SLASH_EQ] = ACTIONS(905), + [anon_sym_PERCENT_EQ] = ACTIONS(905), + [anon_sym_CARET_EQ] = ACTIONS(905), + [anon_sym_AMP_EQ] = ACTIONS(905), + [anon_sym_PIPE_EQ] = ACTIONS(905), + [anon_sym_LT_LT_EQ] = ACTIONS(905), + [anon_sym_GT_GT_EQ] = ACTIONS(905), + [anon_sym_EQ] = ACTIONS(903), + [anon_sym_EQ_EQ] = ACTIONS(905), + [anon_sym_BANG_EQ] = ACTIONS(905), + [anon_sym_GT] = ACTIONS(903), + [anon_sym_LT] = ACTIONS(903), + [anon_sym_GT_EQ] = ACTIONS(905), + [anon_sym_LT_EQ] = ACTIONS(905), + [anon_sym_AT] = ACTIONS(905), + [anon_sym__] = ACTIONS(903), + [anon_sym_DOT] = ACTIONS(903), + [anon_sym_DOT_DOT] = ACTIONS(903), + [anon_sym_DOT_DOT_DOT] = ACTIONS(905), + [anon_sym_DOT_DOT_EQ] = ACTIONS(905), + [anon_sym_COMMA] = ACTIONS(905), + [anon_sym_COLON_COLON] = ACTIONS(905), + [anon_sym_DASH_GT] = ACTIONS(905), + [anon_sym_POUND] = ACTIONS(905), + [anon_sym_SQUOTE] = ACTIONS(903), + [anon_sym_as] = ACTIONS(903), + [anon_sym_async] = ACTIONS(903), + [anon_sym_await] = ACTIONS(903), + [anon_sym_break] = ACTIONS(903), + [anon_sym_const] = ACTIONS(903), + [anon_sym_continue] = ACTIONS(903), + [anon_sym_default] = ACTIONS(903), + [anon_sym_enum] = ACTIONS(903), + [anon_sym_fn] = ACTIONS(903), + [anon_sym_for] = ACTIONS(903), + [anon_sym_if] = ACTIONS(903), + [anon_sym_impl] = ACTIONS(903), + [anon_sym_let] = ACTIONS(903), + [anon_sym_loop] = ACTIONS(903), + [anon_sym_match] = ACTIONS(903), + [anon_sym_mod] = ACTIONS(903), + [anon_sym_pub] = ACTIONS(903), + [anon_sym_return] = ACTIONS(903), + [anon_sym_static] = ACTIONS(903), + [anon_sym_struct] = ACTIONS(903), + [anon_sym_trait] = ACTIONS(903), + [anon_sym_type] = ACTIONS(903), + [anon_sym_union] = ACTIONS(903), + [anon_sym_unsafe] = ACTIONS(903), + [anon_sym_use] = ACTIONS(903), + [anon_sym_where] = ACTIONS(903), + [anon_sym_while] = ACTIONS(903), + [sym_mutable_specifier] = ACTIONS(903), + [sym_integer_literal] = ACTIONS(905), + [aux_sym_string_literal_token1] = ACTIONS(905), + [sym_char_literal] = ACTIONS(905), + [anon_sym_true] = ACTIONS(903), + [anon_sym_false] = ACTIONS(903), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(903), + [sym_super] = ACTIONS(903), + [sym_crate] = ACTIONS(903), + [sym__raw_string_literal_start] = ACTIONS(905), + [sym_float_literal] = ACTIONS(905), + }, + [201] = { + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2731), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1762), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_let_condition] = STATE(2840), + [sym__let_chain] = STATE(2831), + [sym__condition] = STATE(2654), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(236), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), + [sym_line_comment] = STATE(201), + [sym_block_comment] = STATE(201), + [sym_identifier] = ACTIONS(466), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), + [anon_sym_u8] = ACTIONS(468), + [anon_sym_i8] = ACTIONS(468), + [anon_sym_u16] = ACTIONS(468), + [anon_sym_i16] = ACTIONS(468), + [anon_sym_u32] = ACTIONS(468), + [anon_sym_i32] = ACTIONS(468), + [anon_sym_u64] = ACTIONS(468), + [anon_sym_i64] = ACTIONS(468), + [anon_sym_u128] = ACTIONS(468), + [anon_sym_i128] = ACTIONS(468), + [anon_sym_isize] = ACTIONS(468), + [anon_sym_usize] = ACTIONS(468), + [anon_sym_f32] = ACTIONS(468), + [anon_sym_f64] = ACTIONS(468), + [anon_sym_bool] = ACTIONS(468), + [anon_sym_str] = ACTIONS(468), + [anon_sym_char] = ACTIONS(468), [anon_sym_DASH] = ACTIONS(973), [anon_sym_BANG] = ACTIONS(973), [anon_sym_AMP] = ACTIONS(975), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(977), - [anon_sym_COLON_COLON] = ACTIONS(462), + [anon_sym_COLON_COLON] = ACTIONS(472), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), [anon_sym_break] = ACTIONS(494), [anon_sym_const] = ACTIONS(348), [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), + [anon_sym_default] = ACTIONS(476), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), [anon_sym_let] = ACTIONS(979), @@ -39746,7 +39412,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(358), [anon_sym_return] = ACTIONS(498), [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), + [anon_sym_union] = ACTIONS(476), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), [anon_sym_yield] = ACTIONS(502), @@ -39759,100 +39425,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), + [sym_self] = ACTIONS(486), + [sym_super] = ACTIONS(488), + [sym_crate] = ACTIONS(488), + [sym_metavariable] = ACTIONS(490), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [205] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1699), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_let_condition] = STATE(2823), - [sym__let_chain] = STATE(2887), - [sym__condition] = STATE(2594), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(205), - [sym_block_comment] = STATE(205), - [sym_identifier] = ACTIONS(456), + [202] = { + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2731), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1762), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_let_condition] = STATE(2840), + [sym__let_chain] = STATE(2831), + [sym__condition] = STATE(2595), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(236), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), + [sym_line_comment] = STATE(202), + [sym_block_comment] = STATE(202), + [sym_identifier] = ACTIONS(466), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), + [anon_sym_u8] = ACTIONS(468), + [anon_sym_i8] = ACTIONS(468), + [anon_sym_u16] = ACTIONS(468), + [anon_sym_i16] = ACTIONS(468), + [anon_sym_u32] = ACTIONS(468), + [anon_sym_i32] = ACTIONS(468), + [anon_sym_u64] = ACTIONS(468), + [anon_sym_i64] = ACTIONS(468), + [anon_sym_u128] = ACTIONS(468), + [anon_sym_i128] = ACTIONS(468), + [anon_sym_isize] = ACTIONS(468), + [anon_sym_usize] = ACTIONS(468), + [anon_sym_f32] = ACTIONS(468), + [anon_sym_f64] = ACTIONS(468), + [anon_sym_bool] = ACTIONS(468), + [anon_sym_str] = ACTIONS(468), + [anon_sym_char] = ACTIONS(468), [anon_sym_DASH] = ACTIONS(973), [anon_sym_BANG] = ACTIONS(973), [anon_sym_AMP] = ACTIONS(975), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(977), - [anon_sym_COLON_COLON] = ACTIONS(462), + [anon_sym_COLON_COLON] = ACTIONS(472), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), [anon_sym_break] = ACTIONS(494), [anon_sym_const] = ACTIONS(348), [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), + [anon_sym_default] = ACTIONS(476), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), [anon_sym_let] = ACTIONS(979), @@ -39860,7 +39526,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(358), [anon_sym_return] = ACTIONS(498), [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), + [anon_sym_union] = ACTIONS(476), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), [anon_sym_yield] = ACTIONS(502), @@ -39873,100 +39539,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), + [sym_self] = ACTIONS(486), + [sym_super] = ACTIONS(488), + [sym_crate] = ACTIONS(488), + [sym_metavariable] = ACTIONS(490), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [206] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1699), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_let_condition] = STATE(2823), - [sym__let_chain] = STATE(2887), - [sym__condition] = STATE(2612), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(206), - [sym_block_comment] = STATE(206), - [sym_identifier] = ACTIONS(456), + [203] = { + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2731), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1762), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_let_condition] = STATE(2840), + [sym__let_chain] = STATE(2831), + [sym__condition] = STATE(2628), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(236), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), + [sym_line_comment] = STATE(203), + [sym_block_comment] = STATE(203), + [sym_identifier] = ACTIONS(466), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), + [anon_sym_u8] = ACTIONS(468), + [anon_sym_i8] = ACTIONS(468), + [anon_sym_u16] = ACTIONS(468), + [anon_sym_i16] = ACTIONS(468), + [anon_sym_u32] = ACTIONS(468), + [anon_sym_i32] = ACTIONS(468), + [anon_sym_u64] = ACTIONS(468), + [anon_sym_i64] = ACTIONS(468), + [anon_sym_u128] = ACTIONS(468), + [anon_sym_i128] = ACTIONS(468), + [anon_sym_isize] = ACTIONS(468), + [anon_sym_usize] = ACTIONS(468), + [anon_sym_f32] = ACTIONS(468), + [anon_sym_f64] = ACTIONS(468), + [anon_sym_bool] = ACTIONS(468), + [anon_sym_str] = ACTIONS(468), + [anon_sym_char] = ACTIONS(468), [anon_sym_DASH] = ACTIONS(973), [anon_sym_BANG] = ACTIONS(973), [anon_sym_AMP] = ACTIONS(975), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(977), - [anon_sym_COLON_COLON] = ACTIONS(462), + [anon_sym_COLON_COLON] = ACTIONS(472), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), [anon_sym_break] = ACTIONS(494), [anon_sym_const] = ACTIONS(348), [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), + [anon_sym_default] = ACTIONS(476), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), [anon_sym_let] = ACTIONS(979), @@ -39974,7 +39640,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(358), [anon_sym_return] = ACTIONS(498), [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), + [anon_sym_union] = ACTIONS(476), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), [anon_sym_yield] = ACTIONS(502), @@ -39987,100 +39653,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), + [sym_self] = ACTIONS(486), + [sym_super] = ACTIONS(488), + [sym_crate] = ACTIONS(488), + [sym_metavariable] = ACTIONS(490), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [207] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1699), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_let_condition] = STATE(2823), - [sym__let_chain] = STATE(2887), - [sym__condition] = STATE(2621), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(207), - [sym_block_comment] = STATE(207), - [sym_identifier] = ACTIONS(456), + [204] = { + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2731), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1762), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_let_condition] = STATE(2840), + [sym__let_chain] = STATE(2831), + [sym__condition] = STATE(2627), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(236), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), + [sym_line_comment] = STATE(204), + [sym_block_comment] = STATE(204), + [sym_identifier] = ACTIONS(466), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), + [anon_sym_u8] = ACTIONS(468), + [anon_sym_i8] = ACTIONS(468), + [anon_sym_u16] = ACTIONS(468), + [anon_sym_i16] = ACTIONS(468), + [anon_sym_u32] = ACTIONS(468), + [anon_sym_i32] = ACTIONS(468), + [anon_sym_u64] = ACTIONS(468), + [anon_sym_i64] = ACTIONS(468), + [anon_sym_u128] = ACTIONS(468), + [anon_sym_i128] = ACTIONS(468), + [anon_sym_isize] = ACTIONS(468), + [anon_sym_usize] = ACTIONS(468), + [anon_sym_f32] = ACTIONS(468), + [anon_sym_f64] = ACTIONS(468), + [anon_sym_bool] = ACTIONS(468), + [anon_sym_str] = ACTIONS(468), + [anon_sym_char] = ACTIONS(468), [anon_sym_DASH] = ACTIONS(973), [anon_sym_BANG] = ACTIONS(973), [anon_sym_AMP] = ACTIONS(975), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(977), - [anon_sym_COLON_COLON] = ACTIONS(462), + [anon_sym_COLON_COLON] = ACTIONS(472), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), [anon_sym_break] = ACTIONS(494), [anon_sym_const] = ACTIONS(348), [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), + [anon_sym_default] = ACTIONS(476), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), [anon_sym_let] = ACTIONS(979), @@ -40088,7 +39754,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(358), [anon_sym_return] = ACTIONS(498), [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), + [anon_sym_union] = ACTIONS(476), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), [anon_sym_yield] = ACTIONS(502), @@ -40101,175 +39767,517 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), + [sym_self] = ACTIONS(486), + [sym_super] = ACTIONS(488), + [sym_crate] = ACTIONS(488), + [sym_metavariable] = ACTIONS(490), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, + [205] = { + [sym_line_comment] = STATE(205), + [sym_block_comment] = STATE(205), + [sym_identifier] = ACTIONS(1029), + [anon_sym_SEMI] = ACTIONS(1031), + [anon_sym_LPAREN] = ACTIONS(1031), + [anon_sym_RPAREN] = ACTIONS(1031), + [anon_sym_LBRACK] = ACTIONS(1031), + [anon_sym_RBRACK] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1031), + [anon_sym_RBRACE] = ACTIONS(1031), + [anon_sym_EQ_GT] = ACTIONS(1031), + [anon_sym_COLON] = ACTIONS(1029), + [anon_sym_DOLLAR] = ACTIONS(1031), + [anon_sym_PLUS] = ACTIONS(1029), + [anon_sym_STAR] = ACTIONS(1029), + [anon_sym_QMARK] = ACTIONS(1031), + [anon_sym_u8] = ACTIONS(1029), + [anon_sym_i8] = ACTIONS(1029), + [anon_sym_u16] = ACTIONS(1029), + [anon_sym_i16] = ACTIONS(1029), + [anon_sym_u32] = ACTIONS(1029), + [anon_sym_i32] = ACTIONS(1029), + [anon_sym_u64] = ACTIONS(1029), + [anon_sym_i64] = ACTIONS(1029), + [anon_sym_u128] = ACTIONS(1029), + [anon_sym_i128] = ACTIONS(1029), + [anon_sym_isize] = ACTIONS(1029), + [anon_sym_usize] = ACTIONS(1029), + [anon_sym_f32] = ACTIONS(1029), + [anon_sym_f64] = ACTIONS(1029), + [anon_sym_bool] = ACTIONS(1029), + [anon_sym_str] = ACTIONS(1029), + [anon_sym_char] = ACTIONS(1029), + [anon_sym_DASH] = ACTIONS(1029), + [anon_sym_SLASH] = ACTIONS(1029), + [anon_sym_PERCENT] = ACTIONS(1029), + [anon_sym_CARET] = ACTIONS(1029), + [anon_sym_BANG] = ACTIONS(1029), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_PIPE] = ACTIONS(1029), + [anon_sym_AMP_AMP] = ACTIONS(1031), + [anon_sym_PIPE_PIPE] = ACTIONS(1031), + [anon_sym_LT_LT] = ACTIONS(1029), + [anon_sym_GT_GT] = ACTIONS(1029), + [anon_sym_PLUS_EQ] = ACTIONS(1031), + [anon_sym_DASH_EQ] = ACTIONS(1031), + [anon_sym_STAR_EQ] = ACTIONS(1031), + [anon_sym_SLASH_EQ] = ACTIONS(1031), + [anon_sym_PERCENT_EQ] = ACTIONS(1031), + [anon_sym_CARET_EQ] = ACTIONS(1031), + [anon_sym_AMP_EQ] = ACTIONS(1031), + [anon_sym_PIPE_EQ] = ACTIONS(1031), + [anon_sym_LT_LT_EQ] = ACTIONS(1031), + [anon_sym_GT_GT_EQ] = ACTIONS(1031), + [anon_sym_EQ] = ACTIONS(1029), + [anon_sym_EQ_EQ] = ACTIONS(1031), + [anon_sym_BANG_EQ] = ACTIONS(1031), + [anon_sym_GT] = ACTIONS(1029), + [anon_sym_LT] = ACTIONS(1029), + [anon_sym_GT_EQ] = ACTIONS(1031), + [anon_sym_LT_EQ] = ACTIONS(1031), + [anon_sym_AT] = ACTIONS(1031), + [anon_sym__] = ACTIONS(1029), + [anon_sym_DOT] = ACTIONS(1029), + [anon_sym_DOT_DOT] = ACTIONS(1029), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1031), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1031), + [anon_sym_COMMA] = ACTIONS(1031), + [anon_sym_COLON_COLON] = ACTIONS(1031), + [anon_sym_DASH_GT] = ACTIONS(1031), + [anon_sym_POUND] = ACTIONS(1031), + [anon_sym_SQUOTE] = ACTIONS(1029), + [anon_sym_as] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1029), + [anon_sym_await] = ACTIONS(1029), + [anon_sym_break] = ACTIONS(1029), + [anon_sym_const] = ACTIONS(1029), + [anon_sym_continue] = ACTIONS(1029), + [anon_sym_default] = ACTIONS(1029), + [anon_sym_enum] = ACTIONS(1029), + [anon_sym_fn] = ACTIONS(1029), + [anon_sym_for] = ACTIONS(1029), + [anon_sym_if] = ACTIONS(1029), + [anon_sym_impl] = ACTIONS(1029), + [anon_sym_let] = ACTIONS(1029), + [anon_sym_loop] = ACTIONS(1029), + [anon_sym_match] = ACTIONS(1029), + [anon_sym_mod] = ACTIONS(1029), + [anon_sym_pub] = ACTIONS(1029), + [anon_sym_return] = ACTIONS(1029), + [anon_sym_static] = ACTIONS(1029), + [anon_sym_struct] = ACTIONS(1029), + [anon_sym_trait] = ACTIONS(1029), + [anon_sym_type] = ACTIONS(1029), + [anon_sym_union] = ACTIONS(1029), + [anon_sym_unsafe] = ACTIONS(1029), + [anon_sym_use] = ACTIONS(1029), + [anon_sym_where] = ACTIONS(1029), + [anon_sym_while] = ACTIONS(1029), + [sym_mutable_specifier] = ACTIONS(1029), + [sym_integer_literal] = ACTIONS(1031), + [aux_sym_string_literal_token1] = ACTIONS(1031), + [sym_char_literal] = ACTIONS(1031), + [anon_sym_true] = ACTIONS(1029), + [anon_sym_false] = ACTIONS(1029), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1029), + [sym_super] = ACTIONS(1029), + [sym_crate] = ACTIONS(1029), + [sym__raw_string_literal_start] = ACTIONS(1031), + [sym_float_literal] = ACTIONS(1031), + }, + [206] = { + [sym_line_comment] = STATE(206), + [sym_block_comment] = STATE(206), + [sym_identifier] = ACTIONS(965), + [anon_sym_SEMI] = ACTIONS(967), + [anon_sym_LPAREN] = ACTIONS(967), + [anon_sym_RPAREN] = ACTIONS(967), + [anon_sym_LBRACK] = ACTIONS(967), + [anon_sym_RBRACK] = ACTIONS(967), + [anon_sym_LBRACE] = ACTIONS(967), + [anon_sym_RBRACE] = ACTIONS(967), + [anon_sym_EQ_GT] = ACTIONS(967), + [anon_sym_COLON] = ACTIONS(965), + [anon_sym_DOLLAR] = ACTIONS(967), + [anon_sym_PLUS] = ACTIONS(965), + [anon_sym_STAR] = ACTIONS(965), + [anon_sym_QMARK] = ACTIONS(967), + [anon_sym_u8] = ACTIONS(965), + [anon_sym_i8] = ACTIONS(965), + [anon_sym_u16] = ACTIONS(965), + [anon_sym_i16] = ACTIONS(965), + [anon_sym_u32] = ACTIONS(965), + [anon_sym_i32] = ACTIONS(965), + [anon_sym_u64] = ACTIONS(965), + [anon_sym_i64] = ACTIONS(965), + [anon_sym_u128] = ACTIONS(965), + [anon_sym_i128] = ACTIONS(965), + [anon_sym_isize] = ACTIONS(965), + [anon_sym_usize] = ACTIONS(965), + [anon_sym_f32] = ACTIONS(965), + [anon_sym_f64] = ACTIONS(965), + [anon_sym_bool] = ACTIONS(965), + [anon_sym_str] = ACTIONS(965), + [anon_sym_char] = ACTIONS(965), + [anon_sym_DASH] = ACTIONS(965), + [anon_sym_SLASH] = ACTIONS(965), + [anon_sym_PERCENT] = ACTIONS(965), + [anon_sym_CARET] = ACTIONS(965), + [anon_sym_BANG] = ACTIONS(965), + [anon_sym_AMP] = ACTIONS(965), + [anon_sym_PIPE] = ACTIONS(965), + [anon_sym_AMP_AMP] = ACTIONS(967), + [anon_sym_PIPE_PIPE] = ACTIONS(967), + [anon_sym_LT_LT] = ACTIONS(965), + [anon_sym_GT_GT] = ACTIONS(965), + [anon_sym_PLUS_EQ] = ACTIONS(967), + [anon_sym_DASH_EQ] = ACTIONS(967), + [anon_sym_STAR_EQ] = ACTIONS(967), + [anon_sym_SLASH_EQ] = ACTIONS(967), + [anon_sym_PERCENT_EQ] = ACTIONS(967), + [anon_sym_CARET_EQ] = ACTIONS(967), + [anon_sym_AMP_EQ] = ACTIONS(967), + [anon_sym_PIPE_EQ] = ACTIONS(967), + [anon_sym_LT_LT_EQ] = ACTIONS(967), + [anon_sym_GT_GT_EQ] = ACTIONS(967), + [anon_sym_EQ] = ACTIONS(965), + [anon_sym_EQ_EQ] = ACTIONS(967), + [anon_sym_BANG_EQ] = ACTIONS(967), + [anon_sym_GT] = ACTIONS(965), + [anon_sym_LT] = ACTIONS(965), + [anon_sym_GT_EQ] = ACTIONS(967), + [anon_sym_LT_EQ] = ACTIONS(967), + [anon_sym_AT] = ACTIONS(967), + [anon_sym__] = ACTIONS(965), + [anon_sym_DOT] = ACTIONS(965), + [anon_sym_DOT_DOT] = ACTIONS(965), + [anon_sym_DOT_DOT_DOT] = ACTIONS(967), + [anon_sym_DOT_DOT_EQ] = ACTIONS(967), + [anon_sym_COMMA] = ACTIONS(967), + [anon_sym_COLON_COLON] = ACTIONS(967), + [anon_sym_DASH_GT] = ACTIONS(967), + [anon_sym_POUND] = ACTIONS(967), + [anon_sym_SQUOTE] = ACTIONS(965), + [anon_sym_as] = ACTIONS(965), + [anon_sym_async] = ACTIONS(965), + [anon_sym_await] = ACTIONS(965), + [anon_sym_break] = ACTIONS(965), + [anon_sym_const] = ACTIONS(965), + [anon_sym_continue] = ACTIONS(965), + [anon_sym_default] = ACTIONS(965), + [anon_sym_enum] = ACTIONS(965), + [anon_sym_fn] = ACTIONS(965), + [anon_sym_for] = ACTIONS(965), + [anon_sym_if] = ACTIONS(965), + [anon_sym_impl] = ACTIONS(965), + [anon_sym_let] = ACTIONS(965), + [anon_sym_loop] = ACTIONS(965), + [anon_sym_match] = ACTIONS(965), + [anon_sym_mod] = ACTIONS(965), + [anon_sym_pub] = ACTIONS(965), + [anon_sym_return] = ACTIONS(965), + [anon_sym_static] = ACTIONS(965), + [anon_sym_struct] = ACTIONS(965), + [anon_sym_trait] = ACTIONS(965), + [anon_sym_type] = ACTIONS(965), + [anon_sym_union] = ACTIONS(965), + [anon_sym_unsafe] = ACTIONS(965), + [anon_sym_use] = ACTIONS(965), + [anon_sym_where] = ACTIONS(965), + [anon_sym_while] = ACTIONS(965), + [sym_mutable_specifier] = ACTIONS(965), + [sym_integer_literal] = ACTIONS(967), + [aux_sym_string_literal_token1] = ACTIONS(967), + [sym_char_literal] = ACTIONS(967), + [anon_sym_true] = ACTIONS(965), + [anon_sym_false] = ACTIONS(965), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(965), + [sym_super] = ACTIONS(965), + [sym_crate] = ACTIONS(965), + [sym__raw_string_literal_start] = ACTIONS(967), + [sym_float_literal] = ACTIONS(967), + }, + [207] = { + [sym_line_comment] = STATE(207), + [sym_block_comment] = STATE(207), + [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_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(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(915), + [sym_super] = ACTIONS(915), + [sym_crate] = ACTIONS(915), + [sym__raw_string_literal_start] = ACTIONS(917), + [sym_float_literal] = ACTIONS(917), + }, [208] = { [sym_line_comment] = STATE(208), [sym_block_comment] = STATE(208), - [sym_identifier] = ACTIONS(749), - [anon_sym_SEMI] = ACTIONS(751), - [anon_sym_LPAREN] = ACTIONS(751), - [anon_sym_RPAREN] = ACTIONS(751), - [anon_sym_LBRACK] = ACTIONS(751), - [anon_sym_RBRACK] = ACTIONS(751), - [anon_sym_LBRACE] = ACTIONS(751), - [anon_sym_RBRACE] = ACTIONS(751), - [anon_sym_EQ_GT] = ACTIONS(751), - [anon_sym_COLON] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [anon_sym_PLUS] = ACTIONS(749), - [anon_sym_STAR] = ACTIONS(749), - [anon_sym_QMARK] = ACTIONS(751), - [anon_sym_u8] = ACTIONS(749), - [anon_sym_i8] = ACTIONS(749), - [anon_sym_u16] = ACTIONS(749), - [anon_sym_i16] = ACTIONS(749), - [anon_sym_u32] = ACTIONS(749), - [anon_sym_i32] = ACTIONS(749), - [anon_sym_u64] = ACTIONS(749), - [anon_sym_i64] = ACTIONS(749), - [anon_sym_u128] = ACTIONS(749), - [anon_sym_i128] = ACTIONS(749), - [anon_sym_isize] = ACTIONS(749), - [anon_sym_usize] = ACTIONS(749), - [anon_sym_f32] = ACTIONS(749), - [anon_sym_f64] = ACTIONS(749), - [anon_sym_bool] = ACTIONS(749), - [anon_sym_str] = ACTIONS(749), - [anon_sym_char] = ACTIONS(749), - [anon_sym_DASH] = ACTIONS(749), - [anon_sym_SLASH] = ACTIONS(749), - [anon_sym_PERCENT] = ACTIONS(749), - [anon_sym_CARET] = ACTIONS(749), - [anon_sym_BANG] = ACTIONS(749), - [anon_sym_AMP] = ACTIONS(749), - [anon_sym_PIPE] = ACTIONS(749), - [anon_sym_AMP_AMP] = ACTIONS(751), - [anon_sym_PIPE_PIPE] = ACTIONS(751), - [anon_sym_LT_LT] = ACTIONS(749), - [anon_sym_GT_GT] = ACTIONS(749), - [anon_sym_PLUS_EQ] = ACTIONS(751), - [anon_sym_DASH_EQ] = ACTIONS(751), - [anon_sym_STAR_EQ] = ACTIONS(751), - [anon_sym_SLASH_EQ] = ACTIONS(751), - [anon_sym_PERCENT_EQ] = ACTIONS(751), - [anon_sym_CARET_EQ] = ACTIONS(751), - [anon_sym_AMP_EQ] = ACTIONS(751), - [anon_sym_PIPE_EQ] = ACTIONS(751), - [anon_sym_LT_LT_EQ] = ACTIONS(751), - [anon_sym_GT_GT_EQ] = ACTIONS(751), - [anon_sym_EQ] = ACTIONS(749), - [anon_sym_EQ_EQ] = ACTIONS(751), - [anon_sym_BANG_EQ] = ACTIONS(751), - [anon_sym_GT] = ACTIONS(749), - [anon_sym_LT] = ACTIONS(749), - [anon_sym_GT_EQ] = ACTIONS(751), - [anon_sym_LT_EQ] = ACTIONS(751), - [anon_sym_AT] = ACTIONS(751), - [anon_sym__] = ACTIONS(749), - [anon_sym_DOT] = ACTIONS(749), - [anon_sym_DOT_DOT] = ACTIONS(749), - [anon_sym_DOT_DOT_DOT] = ACTIONS(751), - [anon_sym_DOT_DOT_EQ] = ACTIONS(751), - [anon_sym_COMMA] = ACTIONS(751), - [anon_sym_COLON_COLON] = ACTIONS(751), - [anon_sym_DASH_GT] = ACTIONS(751), - [anon_sym_POUND] = ACTIONS(751), - [anon_sym_SQUOTE] = ACTIONS(749), - [anon_sym_as] = ACTIONS(749), - [anon_sym_async] = ACTIONS(749), - [anon_sym_await] = ACTIONS(749), - [anon_sym_break] = ACTIONS(749), - [anon_sym_const] = ACTIONS(749), - [anon_sym_continue] = ACTIONS(749), - [anon_sym_default] = ACTIONS(749), - [anon_sym_enum] = ACTIONS(749), - [anon_sym_fn] = ACTIONS(749), - [anon_sym_for] = ACTIONS(749), - [anon_sym_if] = ACTIONS(749), - [anon_sym_impl] = ACTIONS(749), - [anon_sym_let] = ACTIONS(749), - [anon_sym_loop] = ACTIONS(749), - [anon_sym_match] = ACTIONS(749), - [anon_sym_mod] = ACTIONS(749), - [anon_sym_pub] = ACTIONS(749), - [anon_sym_return] = ACTIONS(749), - [anon_sym_static] = ACTIONS(749), - [anon_sym_struct] = ACTIONS(749), - [anon_sym_trait] = ACTIONS(749), - [anon_sym_type] = ACTIONS(749), - [anon_sym_union] = ACTIONS(749), - [anon_sym_unsafe] = ACTIONS(749), - [anon_sym_use] = ACTIONS(749), - [anon_sym_where] = ACTIONS(749), - [anon_sym_while] = ACTIONS(749), - [sym_mutable_specifier] = ACTIONS(749), - [sym_integer_literal] = ACTIONS(751), - [aux_sym_string_literal_token1] = ACTIONS(751), - [sym_char_literal] = ACTIONS(751), - [anon_sym_true] = ACTIONS(749), - [anon_sym_false] = ACTIONS(749), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(749), - [sym_super] = ACTIONS(749), - [sym_crate] = ACTIONS(749), - [sym__raw_string_literal_start] = ACTIONS(751), - [sym_float_literal] = ACTIONS(751), + [sym_identifier] = ACTIONS(1033), + [anon_sym_SEMI] = ACTIONS(1035), + [anon_sym_LPAREN] = ACTIONS(1035), + [anon_sym_RPAREN] = ACTIONS(1035), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_RBRACK] = ACTIONS(1035), + [anon_sym_LBRACE] = ACTIONS(1035), + [anon_sym_RBRACE] = ACTIONS(1035), + [anon_sym_EQ_GT] = ACTIONS(1035), + [anon_sym_COLON] = ACTIONS(1033), + [anon_sym_DOLLAR] = ACTIONS(1035), + [anon_sym_PLUS] = ACTIONS(1033), + [anon_sym_STAR] = ACTIONS(1033), + [anon_sym_QMARK] = ACTIONS(1035), + [anon_sym_u8] = ACTIONS(1033), + [anon_sym_i8] = ACTIONS(1033), + [anon_sym_u16] = ACTIONS(1033), + [anon_sym_i16] = ACTIONS(1033), + [anon_sym_u32] = ACTIONS(1033), + [anon_sym_i32] = ACTIONS(1033), + [anon_sym_u64] = ACTIONS(1033), + [anon_sym_i64] = ACTIONS(1033), + [anon_sym_u128] = ACTIONS(1033), + [anon_sym_i128] = ACTIONS(1033), + [anon_sym_isize] = ACTIONS(1033), + [anon_sym_usize] = ACTIONS(1033), + [anon_sym_f32] = ACTIONS(1033), + [anon_sym_f64] = ACTIONS(1033), + [anon_sym_bool] = ACTIONS(1033), + [anon_sym_str] = ACTIONS(1033), + [anon_sym_char] = ACTIONS(1033), + [anon_sym_DASH] = ACTIONS(1033), + [anon_sym_SLASH] = ACTIONS(1033), + [anon_sym_PERCENT] = ACTIONS(1033), + [anon_sym_CARET] = ACTIONS(1033), + [anon_sym_BANG] = ACTIONS(1033), + [anon_sym_AMP] = ACTIONS(1033), + [anon_sym_PIPE] = ACTIONS(1033), + [anon_sym_AMP_AMP] = ACTIONS(1035), + [anon_sym_PIPE_PIPE] = ACTIONS(1035), + [anon_sym_LT_LT] = ACTIONS(1033), + [anon_sym_GT_GT] = ACTIONS(1033), + [anon_sym_PLUS_EQ] = ACTIONS(1035), + [anon_sym_DASH_EQ] = ACTIONS(1035), + [anon_sym_STAR_EQ] = ACTIONS(1035), + [anon_sym_SLASH_EQ] = ACTIONS(1035), + [anon_sym_PERCENT_EQ] = ACTIONS(1035), + [anon_sym_CARET_EQ] = ACTIONS(1035), + [anon_sym_AMP_EQ] = ACTIONS(1035), + [anon_sym_PIPE_EQ] = ACTIONS(1035), + [anon_sym_LT_LT_EQ] = ACTIONS(1035), + [anon_sym_GT_GT_EQ] = ACTIONS(1035), + [anon_sym_EQ] = ACTIONS(1033), + [anon_sym_EQ_EQ] = ACTIONS(1035), + [anon_sym_BANG_EQ] = ACTIONS(1035), + [anon_sym_GT] = ACTIONS(1033), + [anon_sym_LT] = ACTIONS(1033), + [anon_sym_GT_EQ] = ACTIONS(1035), + [anon_sym_LT_EQ] = ACTIONS(1035), + [anon_sym_AT] = ACTIONS(1035), + [anon_sym__] = ACTIONS(1033), + [anon_sym_DOT] = ACTIONS(1033), + [anon_sym_DOT_DOT] = ACTIONS(1033), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1035), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1035), + [anon_sym_COMMA] = ACTIONS(1035), + [anon_sym_COLON_COLON] = ACTIONS(1035), + [anon_sym_DASH_GT] = ACTIONS(1035), + [anon_sym_POUND] = ACTIONS(1035), + [anon_sym_SQUOTE] = ACTIONS(1033), + [anon_sym_as] = ACTIONS(1033), + [anon_sym_async] = ACTIONS(1033), + [anon_sym_await] = ACTIONS(1033), + [anon_sym_break] = ACTIONS(1033), + [anon_sym_const] = ACTIONS(1033), + [anon_sym_continue] = ACTIONS(1033), + [anon_sym_default] = ACTIONS(1033), + [anon_sym_enum] = ACTIONS(1033), + [anon_sym_fn] = ACTIONS(1033), + [anon_sym_for] = ACTIONS(1033), + [anon_sym_if] = ACTIONS(1033), + [anon_sym_impl] = ACTIONS(1033), + [anon_sym_let] = ACTIONS(1033), + [anon_sym_loop] = ACTIONS(1033), + [anon_sym_match] = ACTIONS(1033), + [anon_sym_mod] = ACTIONS(1033), + [anon_sym_pub] = ACTIONS(1033), + [anon_sym_return] = ACTIONS(1033), + [anon_sym_static] = ACTIONS(1033), + [anon_sym_struct] = ACTIONS(1033), + [anon_sym_trait] = ACTIONS(1033), + [anon_sym_type] = ACTIONS(1033), + [anon_sym_union] = ACTIONS(1033), + [anon_sym_unsafe] = ACTIONS(1033), + [anon_sym_use] = ACTIONS(1033), + [anon_sym_where] = ACTIONS(1033), + [anon_sym_while] = ACTIONS(1033), + [sym_mutable_specifier] = ACTIONS(1033), + [sym_integer_literal] = ACTIONS(1035), + [aux_sym_string_literal_token1] = ACTIONS(1035), + [sym_char_literal] = ACTIONS(1035), + [anon_sym_true] = ACTIONS(1033), + [anon_sym_false] = ACTIONS(1033), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1033), + [sym_super] = ACTIONS(1033), + [sym_crate] = ACTIONS(1033), + [sym__raw_string_literal_start] = ACTIONS(1035), + [sym_float_literal] = ACTIONS(1035), }, [209] = { [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1574), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1846), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1268), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), [sym_line_comment] = STATE(209), [sym_block_comment] = STATE(209), [aux_sym_enum_variant_list_repeat1] = STATE(1002), @@ -40302,7 +40310,7 @@ 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(765), + [anon_sym_POUND] = ACTIONS(871), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), [anon_sym_break] = ACTIONS(41), @@ -40337,167 +40345,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [210] = { [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1607), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1869), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1268), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), [sym_line_comment] = STATE(210), [sym_block_comment] = STATE(210), - [aux_sym_enum_variant_list_repeat1] = STATE(211), - [sym_identifier] = ACTIONS(334), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [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_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(765), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [211] = { - [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1610), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(211), - [sym_block_comment] = STATE(211), [aux_sym_enum_variant_list_repeat1] = STATE(1002), [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), @@ -40528,7 +40423,7 @@ 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(765), + [anon_sym_POUND] = ACTIONS(871), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), [anon_sym_break] = ACTIONS(41), @@ -40561,57 +40456,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [212] = { + [211] = { [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1854), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(212), - [sym_block_comment] = STATE(212), - [aux_sym_enum_variant_list_repeat1] = STATE(1002), + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1626), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1268), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), + [sym_line_comment] = STATE(211), + [sym_block_comment] = STATE(211), + [aux_sym_enum_variant_list_repeat1] = STATE(214), [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -40641,7 +40536,7 @@ 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(765), + [anon_sym_POUND] = ACTIONS(871), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), [anon_sym_break] = ACTIONS(41), @@ -40674,56 +40569,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [213] = { + [212] = { [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1589), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(213), - [sym_block_comment] = STATE(213), + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1629), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1268), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), + [sym_line_comment] = STATE(212), + [sym_block_comment] = STATE(212), [aux_sym_enum_variant_list_repeat1] = STATE(1002), [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), @@ -40754,7 +40649,7 @@ 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(765), + [anon_sym_POUND] = ACTIONS(871), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), [anon_sym_break] = ACTIONS(41), @@ -40787,56 +40682,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [214] = { + [213] = { [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1871), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(214), - [sym_block_comment] = STATE(214), + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1609), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1268), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), + [sym_line_comment] = STATE(213), + [sym_block_comment] = STATE(213), [aux_sym_enum_variant_list_repeat1] = STATE(1002), [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), @@ -40867,7 +40762,7 @@ 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(765), + [anon_sym_POUND] = ACTIONS(871), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), [anon_sym_break] = ACTIONS(41), @@ -40900,59 +40795,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [215] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1806), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(215), - [sym_block_comment] = STATE(215), - [aux_sym_tuple_expression_repeat1] = STATE(221), + [214] = { + [sym_attribute_item] = STATE(1003), + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1611), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1268), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), + [sym_line_comment] = STATE(214), + [sym_block_comment] = STATE(214), + [aux_sym_enum_variant_list_repeat1] = STATE(1002), [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1037), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), [anon_sym_STAR] = ACTIONS(21), @@ -40980,6 +40875,7 @@ 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(871), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), [anon_sym_break] = ACTIONS(41), @@ -41012,283 +40908,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [216] = { - [sym_bracketed_type] = STATE(3498), - [sym_generic_function] = STATE(1637), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1604), - [sym__expression] = STATE(1757), - [sym_macro_invocation] = STATE(1641), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3100), - [sym_range_expression] = STATE(1639), - [sym_unary_expression] = STATE(1637), - [sym_try_expression] = STATE(1637), - [sym_reference_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_assignment_expression] = STATE(1637), - [sym_compound_assignment_expr] = STATE(1637), - [sym_type_cast_expression] = STATE(1637), - [sym_return_expression] = STATE(1637), - [sym_yield_expression] = STATE(1637), - [sym_call_expression] = STATE(1637), - [sym_array_expression] = STATE(1637), - [sym_parenthesized_expression] = STATE(1637), - [sym_tuple_expression] = STATE(1637), - [sym_unit_expression] = STATE(1637), - [sym_struct_expression] = STATE(1637), - [sym_if_expression] = STATE(1637), - [sym_let_condition] = STATE(2662), - [sym_match_expression] = STATE(1637), - [sym_while_expression] = STATE(1637), - [sym_loop_expression] = STATE(1637), - [sym_for_expression] = STATE(1637), - [sym_const_block] = STATE(1637), - [sym_closure_expression] = STATE(1637), - [sym_closure_parameters] = STATE(237), - [sym_label] = STATE(3585), - [sym_break_expression] = STATE(1637), - [sym_continue_expression] = STATE(1637), - [sym_index_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_field_expression] = STATE(1620), - [sym_unsafe_block] = STATE(1637), - [sym_async_block] = STATE(1637), - [sym_try_block] = STATE(1637), - [sym_block] = STATE(1637), - [sym__literal] = STATE(1637), - [sym_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_boolean_literal] = STATE(1778), - [sym_line_comment] = STATE(216), - [sym_block_comment] = STATE(216), - [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_STAR] = ACTIONS(1021), - [anon_sym_u8] = ACTIONS(404), - [anon_sym_i8] = ACTIONS(404), - [anon_sym_u16] = ACTIONS(404), - [anon_sym_i16] = ACTIONS(404), - [anon_sym_u32] = ACTIONS(404), - [anon_sym_i32] = ACTIONS(404), - [anon_sym_u64] = ACTIONS(404), - [anon_sym_i64] = ACTIONS(404), - [anon_sym_u128] = ACTIONS(404), - [anon_sym_i128] = ACTIONS(404), - [anon_sym_isize] = ACTIONS(404), - [anon_sym_usize] = ACTIONS(404), - [anon_sym_f32] = ACTIONS(404), - [anon_sym_f64] = ACTIONS(404), - [anon_sym_bool] = ACTIONS(404), - [anon_sym_str] = ACTIONS(404), - [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_BANG] = ACTIONS(1021), - [anon_sym_AMP] = ACTIONS(1023), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1039), - [anon_sym_COLON_COLON] = ACTIONS(408), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_const] = ACTIONS(414), - [anon_sym_continue] = ACTIONS(416), - [anon_sym_default] = ACTIONS(418), - [anon_sym_for] = ACTIONS(420), - [anon_sym_if] = ACTIONS(422), - [anon_sym_let] = ACTIONS(1027), - [anon_sym_loop] = ACTIONS(424), - [anon_sym_match] = ACTIONS(426), - [anon_sym_return] = ACTIONS(428), - [anon_sym_static] = ACTIONS(430), - [anon_sym_union] = ACTIONS(418), - [anon_sym_unsafe] = ACTIONS(432), - [anon_sym_while] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_move] = ACTIONS(438), - [anon_sym_try] = ACTIONS(440), - [sym_integer_literal] = ACTIONS(442), - [aux_sym_string_literal_token1] = ACTIONS(444), - [sym_char_literal] = ACTIONS(442), - [anon_sym_true] = ACTIONS(446), - [anon_sym_false] = ACTIONS(446), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(448), - [sym_super] = ACTIONS(450), - [sym_crate] = ACTIONS(450), - [sym_metavariable] = ACTIONS(452), - [sym__raw_string_literal_start] = ACTIONS(454), - [sym_float_literal] = ACTIONS(442), - }, - [217] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1711), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1214), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(217), - [sym_block_comment] = STATE(217), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(1041), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(460), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_AMP] = ACTIONS(1043), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1045), - [anon_sym_DOT_DOT] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_DASH_GT] = ACTIONS(1049), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(464), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(468), - [anon_sym_static] = ACTIONS(470), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(472), - [anon_sym_move] = ACTIONS(474), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [218] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1803), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(218), - [sym_block_comment] = STATE(218), - [aux_sym_tuple_expression_repeat1] = STATE(222), + [215] = { + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1657), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1268), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), + [sym_line_comment] = STATE(215), + [sym_block_comment] = STATE(215), + [aux_sym_tuple_expression_repeat1] = STATE(241), [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1051), + [anon_sym_RPAREN] = ACTIONS(1037), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), [anon_sym_STAR] = ACTIONS(21), @@ -41348,59 +41020,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [219] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1803), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(219), - [sym_block_comment] = STATE(219), - [aux_sym_tuple_expression_repeat1] = STATE(223), + [216] = { + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1808), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1268), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1323), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), + [sym_line_comment] = STATE(216), + [sym_block_comment] = STATE(216), [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1051), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), [anon_sym_STAR] = ACTIONS(21), @@ -41421,13 +41091,15 @@ 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(344), [anon_sym_BANG] = ACTIONS(21), [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1039), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DASH_GT] = ACTIONS(1041), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), [anon_sym_break] = ACTIONS(41), @@ -41460,215 +41132,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [220] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1573), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1310), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(220), - [sym_block_comment] = STATE(220), - [sym_identifier] = ACTIONS(456), + [217] = { + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2731), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1821), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(223), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1305), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), + [sym_line_comment] = STATE(217), + [sym_block_comment] = STATE(217), + [sym_identifier] = ACTIONS(466), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(492), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), + [anon_sym_STAR] = ACTIONS(1043), + [anon_sym_u8] = ACTIONS(468), + [anon_sym_i8] = ACTIONS(468), + [anon_sym_u16] = ACTIONS(468), + [anon_sym_i16] = ACTIONS(468), + [anon_sym_u32] = ACTIONS(468), + [anon_sym_i32] = ACTIONS(468), + [anon_sym_u64] = ACTIONS(468), + [anon_sym_i64] = ACTIONS(468), + [anon_sym_u128] = ACTIONS(468), + [anon_sym_i128] = ACTIONS(468), + [anon_sym_isize] = ACTIONS(468), + [anon_sym_usize] = ACTIONS(468), + [anon_sym_f32] = ACTIONS(468), + [anon_sym_f64] = ACTIONS(468), + [anon_sym_bool] = ACTIONS(468), + [anon_sym_str] = ACTIONS(468), + [anon_sym_char] = ACTIONS(468), + [anon_sym_DASH] = ACTIONS(470), + [anon_sym_BANG] = ACTIONS(1043), + [anon_sym_AMP] = ACTIONS(1045), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1053), - [anon_sym_DOT_DOT] = ACTIONS(1055), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_DASH_GT] = ACTIONS(1057), + [anon_sym__] = ACTIONS(1047), + [anon_sym_DOT_DOT] = ACTIONS(1049), + [anon_sym_COLON_COLON] = ACTIONS(472), + [anon_sym_DASH_GT] = ACTIONS(1051), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [221] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1682), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(221), - [sym_block_comment] = STATE(221), - [aux_sym_tuple_expression_repeat1] = STATE(222), - [sym_identifier] = ACTIONS(334), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1059), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [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_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), + [anon_sym_break] = ACTIONS(474), [anon_sym_const] = ACTIONS(348), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), + [anon_sym_default] = ACTIONS(476), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), [anon_sym_loop] = ACTIONS(356), [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), + [anon_sym_return] = ACTIONS(478), + [anon_sym_static] = ACTIONS(480), + [anon_sym_union] = ACTIONS(476), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), + [anon_sym_yield] = ACTIONS(482), + [anon_sym_move] = ACTIONS(484), [anon_sym_try] = ACTIONS(366), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -41677,178 +41237,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), + [sym_self] = ACTIONS(486), + [sym_super] = ACTIONS(488), + [sym_crate] = ACTIONS(488), + [sym_metavariable] = ACTIONS(490), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [222] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1848), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(222), - [sym_block_comment] = STATE(222), - [aux_sym_tuple_expression_repeat1] = STATE(222), - [sym_identifier] = ACTIONS(1061), - [anon_sym_LPAREN] = ACTIONS(1064), - [anon_sym_RPAREN] = ACTIONS(1067), - [anon_sym_LBRACK] = ACTIONS(1069), - [anon_sym_LBRACE] = ACTIONS(1072), - [anon_sym_STAR] = ACTIONS(1075), - [anon_sym_u8] = ACTIONS(1078), - [anon_sym_i8] = ACTIONS(1078), - [anon_sym_u16] = ACTIONS(1078), - [anon_sym_i16] = ACTIONS(1078), - [anon_sym_u32] = ACTIONS(1078), - [anon_sym_i32] = ACTIONS(1078), - [anon_sym_u64] = ACTIONS(1078), - [anon_sym_i64] = ACTIONS(1078), - [anon_sym_u128] = ACTIONS(1078), - [anon_sym_i128] = ACTIONS(1078), - [anon_sym_isize] = ACTIONS(1078), - [anon_sym_usize] = ACTIONS(1078), - [anon_sym_f32] = ACTIONS(1078), - [anon_sym_f64] = ACTIONS(1078), - [anon_sym_bool] = ACTIONS(1078), - [anon_sym_str] = ACTIONS(1078), - [anon_sym_char] = ACTIONS(1078), - [anon_sym_DASH] = ACTIONS(1075), - [anon_sym_BANG] = ACTIONS(1075), - [anon_sym_AMP] = ACTIONS(1081), - [anon_sym_PIPE] = ACTIONS(1084), - [anon_sym_LT] = ACTIONS(1087), - [anon_sym_DOT_DOT] = ACTIONS(1090), - [anon_sym_COLON_COLON] = ACTIONS(1093), - [anon_sym_SQUOTE] = ACTIONS(1096), - [anon_sym_async] = ACTIONS(1099), - [anon_sym_break] = ACTIONS(1102), - [anon_sym_const] = ACTIONS(1105), - [anon_sym_continue] = ACTIONS(1108), - [anon_sym_default] = ACTIONS(1111), - [anon_sym_for] = ACTIONS(1114), - [anon_sym_if] = ACTIONS(1117), - [anon_sym_loop] = ACTIONS(1120), - [anon_sym_match] = ACTIONS(1123), - [anon_sym_return] = ACTIONS(1126), - [anon_sym_static] = ACTIONS(1129), - [anon_sym_union] = ACTIONS(1111), - [anon_sym_unsafe] = ACTIONS(1132), - [anon_sym_while] = ACTIONS(1135), - [anon_sym_yield] = ACTIONS(1138), - [anon_sym_move] = ACTIONS(1141), - [anon_sym_try] = ACTIONS(1144), - [sym_integer_literal] = ACTIONS(1147), - [aux_sym_string_literal_token1] = ACTIONS(1150), - [sym_char_literal] = ACTIONS(1147), - [anon_sym_true] = ACTIONS(1153), - [anon_sym_false] = ACTIONS(1153), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1156), - [sym_super] = ACTIONS(1159), - [sym_crate] = ACTIONS(1159), - [sym_metavariable] = ACTIONS(1162), - [sym__raw_string_literal_start] = ACTIONS(1165), - [sym_float_literal] = ACTIONS(1147), - }, - [223] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1807), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(223), - [sym_block_comment] = STATE(223), - [aux_sym_tuple_expression_repeat1] = STATE(222), + [218] = { + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1503), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1268), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1306), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), + [sym_line_comment] = STATE(218), + [sym_block_comment] = STATE(218), [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1168), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), [anon_sym_STAR] = ACTIONS(21), @@ -41869,13 +41315,15 @@ 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(344), [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(1053), + [anon_sym_DOT_DOT] = ACTIONS(1055), [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DASH_GT] = ACTIONS(1057), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), [anon_sym_break] = ACTIONS(41), @@ -41908,99 +41356,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [224] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1585), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1214), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(224), - [sym_block_comment] = STATE(224), - [sym_identifier] = ACTIONS(456), + [219] = { + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2731), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1633), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(236), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1305), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), + [sym_line_comment] = STATE(219), + [sym_block_comment] = STATE(219), + [sym_identifier] = ACTIONS(466), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), + [anon_sym_u8] = ACTIONS(468), + [anon_sym_i8] = ACTIONS(468), + [anon_sym_u16] = ACTIONS(468), + [anon_sym_i16] = ACTIONS(468), + [anon_sym_u32] = ACTIONS(468), + [anon_sym_i32] = ACTIONS(468), + [anon_sym_u64] = ACTIONS(468), + [anon_sym_i64] = ACTIONS(468), + [anon_sym_u128] = ACTIONS(468), + [anon_sym_i128] = ACTIONS(468), + [anon_sym_isize] = ACTIONS(468), + [anon_sym_usize] = ACTIONS(468), + [anon_sym_f32] = ACTIONS(468), + [anon_sym_f64] = ACTIONS(468), + [anon_sym_bool] = ACTIONS(468), + [anon_sym_str] = ACTIONS(468), + [anon_sym_char] = ACTIONS(468), [anon_sym_DASH] = ACTIONS(492), [anon_sym_BANG] = ACTIONS(973), [anon_sym_AMP] = ACTIONS(975), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1045), - [anon_sym_DOT_DOT] = ACTIONS(1055), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_DASH_GT] = ACTIONS(1049), + [anon_sym__] = ACTIONS(1047), + [anon_sym_DOT_DOT] = ACTIONS(1059), + [anon_sym_COLON_COLON] = ACTIONS(472), + [anon_sym_DASH_GT] = ACTIONS(1051), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), [anon_sym_break] = ACTIONS(494), [anon_sym_const] = ACTIONS(348), [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), + [anon_sym_default] = ACTIONS(476), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), [anon_sym_loop] = ACTIONS(356), [anon_sym_match] = ACTIONS(358), [anon_sym_return] = ACTIONS(498), [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), + [anon_sym_union] = ACTIONS(476), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), [anon_sym_yield] = ACTIONS(502), @@ -42013,110 +41461,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), + [sym_self] = ACTIONS(486), + [sym_super] = ACTIONS(488), + [sym_crate] = ACTIONS(488), + [sym_metavariable] = ACTIONS(490), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [225] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1727), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1250), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(225), - [sym_block_comment] = STATE(225), - [sym_identifier] = ACTIONS(456), + [220] = { + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2731), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1693), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(223), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1306), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), + [sym_line_comment] = STATE(220), + [sym_block_comment] = STATE(220), + [sym_identifier] = ACTIONS(466), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(1041), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(460), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_AMP] = ACTIONS(1043), + [anon_sym_STAR] = ACTIONS(1043), + [anon_sym_u8] = ACTIONS(468), + [anon_sym_i8] = ACTIONS(468), + [anon_sym_u16] = ACTIONS(468), + [anon_sym_i16] = ACTIONS(468), + [anon_sym_u32] = ACTIONS(468), + [anon_sym_i32] = ACTIONS(468), + [anon_sym_u64] = ACTIONS(468), + [anon_sym_i64] = ACTIONS(468), + [anon_sym_u128] = ACTIONS(468), + [anon_sym_i128] = ACTIONS(468), + [anon_sym_isize] = ACTIONS(468), + [anon_sym_usize] = ACTIONS(468), + [anon_sym_f32] = ACTIONS(468), + [anon_sym_f64] = ACTIONS(468), + [anon_sym_bool] = ACTIONS(468), + [anon_sym_str] = ACTIONS(468), + [anon_sym_char] = ACTIONS(468), + [anon_sym_DASH] = ACTIONS(470), + [anon_sym_BANG] = ACTIONS(1043), + [anon_sym_AMP] = ACTIONS(1045), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1170), - [anon_sym_DOT_DOT] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_DASH_GT] = ACTIONS(1172), + [anon_sym__] = ACTIONS(1053), + [anon_sym_DOT_DOT] = ACTIONS(1049), + [anon_sym_COLON_COLON] = ACTIONS(472), + [anon_sym_DASH_GT] = ACTIONS(1057), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(464), + [anon_sym_break] = ACTIONS(474), [anon_sym_const] = ACTIONS(348), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(466), + [anon_sym_default] = ACTIONS(476), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), [anon_sym_loop] = ACTIONS(356), [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(468), - [anon_sym_static] = ACTIONS(470), - [anon_sym_union] = ACTIONS(466), + [anon_sym_return] = ACTIONS(478), + [anon_sym_static] = ACTIONS(480), + [anon_sym_union] = ACTIONS(476), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(472), - [anon_sym_move] = ACTIONS(474), + [anon_sym_yield] = ACTIONS(482), + [anon_sym_move] = ACTIONS(484), [anon_sym_try] = ACTIONS(366), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -42125,66 +41573,402 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), + [sym_self] = ACTIONS(486), + [sym_super] = ACTIONS(488), + [sym_crate] = ACTIONS(488), + [sym_metavariable] = ACTIONS(490), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [226] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1704), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(226), - [sym_block_comment] = STATE(226), - [aux_sym_tuple_expression_repeat1] = STATE(222), + [221] = { + [sym_bracketed_type] = STATE(3506), + [sym_generic_function] = STATE(1695), + [sym_generic_type_with_turbofish] = STATE(2844), + [sym__expression_except_range] = STATE(1590), + [sym__expression] = STATE(1672), + [sym_macro_invocation] = STATE(1705), + [sym_scoped_identifier] = STATE(1568), + [sym_scoped_type_identifier_in_expression_position] = STATE(3132), + [sym_range_expression] = STATE(1699), + [sym_unary_expression] = STATE(1695), + [sym_try_expression] = STATE(1695), + [sym_reference_expression] = STATE(1695), + [sym_binary_expression] = STATE(1695), + [sym_assignment_expression] = STATE(1695), + [sym_compound_assignment_expr] = STATE(1695), + [sym_type_cast_expression] = STATE(1695), + [sym_return_expression] = STATE(1695), + [sym_yield_expression] = STATE(1695), + [sym_call_expression] = STATE(1695), + [sym_array_expression] = STATE(1695), + [sym_parenthesized_expression] = STATE(1695), + [sym_tuple_expression] = STATE(1695), + [sym_unit_expression] = STATE(1695), + [sym_struct_expression] = STATE(1695), + [sym_if_expression] = STATE(1695), + [sym_match_expression] = STATE(1695), + [sym_while_expression] = STATE(1695), + [sym_loop_expression] = STATE(1695), + [sym_for_expression] = STATE(1695), + [sym_const_block] = STATE(1695), + [sym_closure_expression] = STATE(1695), + [sym_closure_parameters] = STATE(222), + [sym_label] = STATE(3593), + [sym_break_expression] = STATE(1695), + [sym_continue_expression] = STATE(1695), + [sym_index_expression] = STATE(1695), + [sym_await_expression] = STATE(1695), + [sym_field_expression] = STATE(1583), + [sym_unsafe_block] = STATE(1695), + [sym_async_block] = STATE(1695), + [sym_try_block] = STATE(1695), + [sym_block] = STATE(1719), + [sym__literal] = STATE(1695), + [sym_string_literal] = STATE(1801), + [sym_raw_string_literal] = STATE(1801), + [sym_boolean_literal] = STATE(1801), + [sym_line_comment] = STATE(221), + [sym_block_comment] = STATE(221), + [sym_identifier] = ACTIONS(398), + [anon_sym_LPAREN] = ACTIONS(456), + [anon_sym_LBRACK] = ACTIONS(458), + [anon_sym_LBRACE] = ACTIONS(400), + [anon_sym_STAR] = ACTIONS(993), + [anon_sym_u8] = ACTIONS(404), + [anon_sym_i8] = ACTIONS(404), + [anon_sym_u16] = ACTIONS(404), + [anon_sym_i16] = ACTIONS(404), + [anon_sym_u32] = ACTIONS(404), + [anon_sym_i32] = ACTIONS(404), + [anon_sym_u64] = ACTIONS(404), + [anon_sym_i64] = ACTIONS(404), + [anon_sym_u128] = ACTIONS(404), + [anon_sym_i128] = ACTIONS(404), + [anon_sym_isize] = ACTIONS(404), + [anon_sym_usize] = ACTIONS(404), + [anon_sym_f32] = ACTIONS(404), + [anon_sym_f64] = ACTIONS(404), + [anon_sym_bool] = ACTIONS(404), + [anon_sym_str] = ACTIONS(404), + [anon_sym_char] = ACTIONS(404), + [anon_sym_DASH] = ACTIONS(406), + [anon_sym_BANG] = ACTIONS(993), + [anon_sym_AMP] = ACTIONS(995), + [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(408), + [anon_sym_DASH_GT] = ACTIONS(1065), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(410), + [anon_sym_break] = ACTIONS(412), + [anon_sym_const] = ACTIONS(414), + [anon_sym_continue] = ACTIONS(416), + [anon_sym_default] = ACTIONS(418), + [anon_sym_for] = ACTIONS(420), + [anon_sym_if] = ACTIONS(422), + [anon_sym_loop] = ACTIONS(424), + [anon_sym_match] = ACTIONS(426), + [anon_sym_return] = ACTIONS(428), + [anon_sym_static] = ACTIONS(430), + [anon_sym_union] = ACTIONS(418), + [anon_sym_unsafe] = ACTIONS(432), + [anon_sym_while] = ACTIONS(434), + [anon_sym_yield] = ACTIONS(436), + [anon_sym_move] = ACTIONS(438), + [anon_sym_try] = ACTIONS(440), + [sym_integer_literal] = ACTIONS(442), + [aux_sym_string_literal_token1] = ACTIONS(444), + [sym_char_literal] = ACTIONS(442), + [anon_sym_true] = ACTIONS(446), + [anon_sym_false] = ACTIONS(446), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(448), + [sym_super] = ACTIONS(450), + [sym_crate] = ACTIONS(450), + [sym_metavariable] = ACTIONS(452), + [sym__raw_string_literal_start] = ACTIONS(454), + [sym_float_literal] = ACTIONS(442), + }, + [222] = { + [sym_bracketed_type] = STATE(3506), + [sym_generic_function] = STATE(1695), + [sym_generic_type_with_turbofish] = STATE(2844), + [sym__expression_except_range] = STATE(1590), + [sym__expression] = STATE(1810), + [sym_macro_invocation] = STATE(1705), + [sym_scoped_identifier] = STATE(1568), + [sym_scoped_type_identifier_in_expression_position] = STATE(3132), + [sym_range_expression] = STATE(1699), + [sym_unary_expression] = STATE(1695), + [sym_try_expression] = STATE(1695), + [sym_reference_expression] = STATE(1695), + [sym_binary_expression] = STATE(1695), + [sym_assignment_expression] = STATE(1695), + [sym_compound_assignment_expr] = STATE(1695), + [sym_type_cast_expression] = STATE(1695), + [sym_return_expression] = STATE(1695), + [sym_yield_expression] = STATE(1695), + [sym_call_expression] = STATE(1695), + [sym_array_expression] = STATE(1695), + [sym_parenthesized_expression] = STATE(1695), + [sym_tuple_expression] = STATE(1695), + [sym_unit_expression] = STATE(1695), + [sym_struct_expression] = STATE(1695), + [sym_if_expression] = STATE(1695), + [sym_match_expression] = STATE(1695), + [sym_while_expression] = STATE(1695), + [sym_loop_expression] = STATE(1695), + [sym_for_expression] = STATE(1695), + [sym_const_block] = STATE(1695), + [sym_closure_expression] = STATE(1695), + [sym_closure_parameters] = STATE(222), + [sym_label] = STATE(3593), + [sym_break_expression] = STATE(1695), + [sym_continue_expression] = STATE(1695), + [sym_index_expression] = STATE(1695), + [sym_await_expression] = STATE(1695), + [sym_field_expression] = STATE(1583), + [sym_unsafe_block] = STATE(1695), + [sym_async_block] = STATE(1695), + [sym_try_block] = STATE(1695), + [sym_block] = STATE(1769), + [sym__literal] = STATE(1695), + [sym_string_literal] = STATE(1801), + [sym_raw_string_literal] = STATE(1801), + [sym_boolean_literal] = STATE(1801), + [sym_line_comment] = STATE(222), + [sym_block_comment] = STATE(222), + [sym_identifier] = ACTIONS(398), + [anon_sym_LPAREN] = ACTIONS(456), + [anon_sym_LBRACK] = ACTIONS(458), + [anon_sym_LBRACE] = ACTIONS(400), + [anon_sym_STAR] = ACTIONS(993), + [anon_sym_u8] = ACTIONS(404), + [anon_sym_i8] = ACTIONS(404), + [anon_sym_u16] = ACTIONS(404), + [anon_sym_i16] = ACTIONS(404), + [anon_sym_u32] = ACTIONS(404), + [anon_sym_i32] = ACTIONS(404), + [anon_sym_u64] = ACTIONS(404), + [anon_sym_i64] = ACTIONS(404), + [anon_sym_u128] = ACTIONS(404), + [anon_sym_i128] = ACTIONS(404), + [anon_sym_isize] = ACTIONS(404), + [anon_sym_usize] = ACTIONS(404), + [anon_sym_f32] = ACTIONS(404), + [anon_sym_f64] = ACTIONS(404), + [anon_sym_bool] = ACTIONS(404), + [anon_sym_str] = ACTIONS(404), + [anon_sym_char] = ACTIONS(404), + [anon_sym_DASH] = ACTIONS(406), + [anon_sym_BANG] = ACTIONS(993), + [anon_sym_AMP] = ACTIONS(995), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1067), + [anon_sym_DOT_DOT] = ACTIONS(1063), + [anon_sym_COLON_COLON] = ACTIONS(408), + [anon_sym_DASH_GT] = ACTIONS(1069), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(410), + [anon_sym_break] = ACTIONS(412), + [anon_sym_const] = ACTIONS(414), + [anon_sym_continue] = ACTIONS(416), + [anon_sym_default] = ACTIONS(418), + [anon_sym_for] = ACTIONS(420), + [anon_sym_if] = ACTIONS(422), + [anon_sym_loop] = ACTIONS(424), + [anon_sym_match] = ACTIONS(426), + [anon_sym_return] = ACTIONS(428), + [anon_sym_static] = ACTIONS(430), + [anon_sym_union] = ACTIONS(418), + [anon_sym_unsafe] = ACTIONS(432), + [anon_sym_while] = ACTIONS(434), + [anon_sym_yield] = ACTIONS(436), + [anon_sym_move] = ACTIONS(438), + [anon_sym_try] = ACTIONS(440), + [sym_integer_literal] = ACTIONS(442), + [aux_sym_string_literal_token1] = ACTIONS(444), + [sym_char_literal] = ACTIONS(442), + [anon_sym_true] = ACTIONS(446), + [anon_sym_false] = ACTIONS(446), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(448), + [sym_super] = ACTIONS(450), + [sym_crate] = ACTIONS(450), + [sym_metavariable] = ACTIONS(452), + [sym__raw_string_literal_start] = ACTIONS(454), + [sym_float_literal] = ACTIONS(442), + }, + [223] = { + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2731), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1711), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(223), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1323), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), + [sym_line_comment] = STATE(223), + [sym_block_comment] = STATE(223), + [sym_identifier] = ACTIONS(466), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_STAR] = ACTIONS(1043), + [anon_sym_u8] = ACTIONS(468), + [anon_sym_i8] = ACTIONS(468), + [anon_sym_u16] = ACTIONS(468), + [anon_sym_i16] = ACTIONS(468), + [anon_sym_u32] = ACTIONS(468), + [anon_sym_i32] = ACTIONS(468), + [anon_sym_u64] = ACTIONS(468), + [anon_sym_i64] = ACTIONS(468), + [anon_sym_u128] = ACTIONS(468), + [anon_sym_i128] = ACTIONS(468), + [anon_sym_isize] = ACTIONS(468), + [anon_sym_usize] = ACTIONS(468), + [anon_sym_f32] = ACTIONS(468), + [anon_sym_f64] = ACTIONS(468), + [anon_sym_bool] = ACTIONS(468), + [anon_sym_str] = ACTIONS(468), + [anon_sym_char] = ACTIONS(468), + [anon_sym_DASH] = ACTIONS(470), + [anon_sym_BANG] = ACTIONS(1043), + [anon_sym_AMP] = ACTIONS(1045), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1039), + [anon_sym_DOT_DOT] = ACTIONS(1049), + [anon_sym_COLON_COLON] = ACTIONS(472), + [anon_sym_DASH_GT] = ACTIONS(1041), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(346), + [anon_sym_break] = ACTIONS(474), + [anon_sym_const] = ACTIONS(348), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(476), + [anon_sym_for] = ACTIONS(352), + [anon_sym_if] = ACTIONS(354), + [anon_sym_loop] = ACTIONS(356), + [anon_sym_match] = ACTIONS(358), + [anon_sym_return] = ACTIONS(478), + [anon_sym_static] = ACTIONS(480), + [anon_sym_union] = ACTIONS(476), + [anon_sym_unsafe] = ACTIONS(362), + [anon_sym_while] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(482), + [anon_sym_move] = ACTIONS(484), + [anon_sym_try] = ACTIONS(366), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(486), + [sym_super] = ACTIONS(488), + [sym_crate] = ACTIONS(488), + [sym_metavariable] = ACTIONS(490), + [sym__raw_string_literal_start] = ACTIONS(115), + [sym_float_literal] = ACTIONS(95), + }, + [224] = { + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1652), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1268), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), + [sym_line_comment] = STATE(224), + [sym_block_comment] = STATE(224), + [aux_sym_tuple_expression_repeat1] = STATE(227), [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1174), + [anon_sym_RPAREN] = ACTIONS(1071), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), [anon_sym_STAR] = ACTIONS(21), @@ -42244,59 +42028,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [227] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1682), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(227), - [sym_block_comment] = STATE(227), - [aux_sym_tuple_expression_repeat1] = STATE(226), + [225] = { + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1504), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1268), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1305), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), + [sym_line_comment] = STATE(225), + [sym_block_comment] = STATE(225), [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1059), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), [anon_sym_STAR] = ACTIONS(21), @@ -42317,13 +42099,15 @@ 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(344), [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(1047), + [anon_sym_DOT_DOT] = ACTIONS(1055), [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DASH_GT] = ACTIONS(1051), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), [anon_sym_break] = ACTIONS(41), @@ -42356,55 +42140,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [228] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1505), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1214), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(228), - [sym_block_comment] = STATE(228), + [226] = { + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1482), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1268), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1323), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), + [sym_line_comment] = STATE(226), + [sym_block_comment] = STATE(226), [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -42432,10 +42216,10 @@ 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__] = ACTIONS(1045), - [anon_sym_DOT_DOT] = ACTIONS(1176), + [anon_sym__] = ACTIONS(1039), + [anon_sym_DOT_DOT] = ACTIONS(1055), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_DASH_GT] = ACTIONS(1049), + [anon_sym_DASH_GT] = ACTIONS(1041), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), [anon_sym_break] = ACTIONS(41), @@ -42468,169 +42252,171 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [229] = { - [sym_bracketed_type] = STATE(3498), - [sym_generic_function] = STATE(1637), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1604), - [sym__expression] = STATE(1847), - [sym_macro_invocation] = STATE(1641), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3100), - [sym_range_expression] = STATE(1639), - [sym_unary_expression] = STATE(1637), - [sym_try_expression] = STATE(1637), - [sym_reference_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_assignment_expression] = STATE(1637), - [sym_compound_assignment_expr] = STATE(1637), - [sym_type_cast_expression] = STATE(1637), - [sym_return_expression] = STATE(1637), - [sym_yield_expression] = STATE(1637), - [sym_call_expression] = STATE(1637), - [sym_array_expression] = STATE(1637), - [sym_parenthesized_expression] = STATE(1637), - [sym_tuple_expression] = STATE(1637), - [sym_unit_expression] = STATE(1637), - [sym_struct_expression] = STATE(1637), - [sym_if_expression] = STATE(1637), - [sym_let_condition] = STATE(2662), - [sym_match_expression] = STATE(1637), - [sym_while_expression] = STATE(1637), - [sym_loop_expression] = STATE(1637), - [sym_for_expression] = STATE(1637), - [sym_const_block] = STATE(1637), - [sym_closure_expression] = STATE(1637), - [sym_closure_parameters] = STATE(237), - [sym_label] = STATE(3585), - [sym_break_expression] = STATE(1637), - [sym_continue_expression] = STATE(1637), - [sym_index_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_field_expression] = STATE(1620), - [sym_unsafe_block] = STATE(1637), - [sym_async_block] = STATE(1637), - [sym_try_block] = STATE(1637), - [sym_block] = STATE(1637), - [sym__literal] = STATE(1637), - [sym_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_boolean_literal] = STATE(1778), - [sym_line_comment] = STATE(229), - [sym_block_comment] = STATE(229), - [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_STAR] = ACTIONS(1021), - [anon_sym_u8] = ACTIONS(404), - [anon_sym_i8] = ACTIONS(404), - [anon_sym_u16] = ACTIONS(404), - [anon_sym_i16] = ACTIONS(404), - [anon_sym_u32] = ACTIONS(404), - [anon_sym_i32] = ACTIONS(404), - [anon_sym_u64] = ACTIONS(404), - [anon_sym_i64] = ACTIONS(404), - [anon_sym_u128] = ACTIONS(404), - [anon_sym_i128] = ACTIONS(404), - [anon_sym_isize] = ACTIONS(404), - [anon_sym_usize] = ACTIONS(404), - [anon_sym_f32] = ACTIONS(404), - [anon_sym_f64] = ACTIONS(404), - [anon_sym_bool] = ACTIONS(404), - [anon_sym_str] = ACTIONS(404), - [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_BANG] = ACTIONS(1021), - [anon_sym_AMP] = ACTIONS(1023), + [227] = { + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1651), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1268), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), + [sym_line_comment] = STATE(227), + [sym_block_comment] = STATE(227), + [aux_sym_tuple_expression_repeat1] = STATE(237), + [sym_identifier] = ACTIONS(334), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(1073), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(338), + [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(1025), - [anon_sym_COLON_COLON] = ACTIONS(408), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_const] = ACTIONS(414), - [anon_sym_continue] = ACTIONS(416), - [anon_sym_default] = ACTIONS(418), - [anon_sym_for] = ACTIONS(420), - [anon_sym_if] = ACTIONS(422), - [anon_sym_let] = ACTIONS(1027), - [anon_sym_loop] = ACTIONS(424), - [anon_sym_match] = ACTIONS(426), - [anon_sym_return] = ACTIONS(428), - [anon_sym_static] = ACTIONS(430), - [anon_sym_union] = ACTIONS(418), - [anon_sym_unsafe] = ACTIONS(432), - [anon_sym_while] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_move] = ACTIONS(438), - [anon_sym_try] = ACTIONS(440), - [sym_integer_literal] = ACTIONS(442), - [aux_sym_string_literal_token1] = ACTIONS(444), - [sym_char_literal] = ACTIONS(442), - [anon_sym_true] = ACTIONS(446), - [anon_sym_false] = ACTIONS(446), + [anon_sym_async] = ACTIONS(346), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(348), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(350), + [anon_sym_for] = ACTIONS(352), + [anon_sym_if] = ACTIONS(354), + [anon_sym_loop] = ACTIONS(356), + [anon_sym_match] = ACTIONS(358), + [anon_sym_return] = ACTIONS(69), + [anon_sym_static] = ACTIONS(360), + [anon_sym_union] = ACTIONS(350), + [anon_sym_unsafe] = ACTIONS(362), + [anon_sym_while] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(366), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(448), - [sym_super] = ACTIONS(450), - [sym_crate] = ACTIONS(450), - [sym_metavariable] = ACTIONS(452), - [sym__raw_string_literal_start] = ACTIONS(454), - [sym_float_literal] = ACTIONS(442), + [sym_self] = ACTIONS(107), + [sym_super] = ACTIONS(109), + [sym_crate] = ACTIONS(109), + [sym_metavariable] = ACTIONS(113), + [sym__raw_string_literal_start] = ACTIONS(115), + [sym_float_literal] = ACTIONS(95), }, - [230] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1746), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1310), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(230), - [sym_block_comment] = STATE(230), + [228] = { + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1651), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1268), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), + [sym_line_comment] = STATE(228), + [sym_block_comment] = STATE(228), + [aux_sym_tuple_expression_repeat1] = STATE(238), [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(1073), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), [anon_sym_STAR] = ACTIONS(21), @@ -42651,15 +42437,13 @@ 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(344), + [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(1053), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_DASH_GT] = ACTIONS(1057), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), [anon_sym_break] = ACTIONS(41), @@ -42692,57 +42476,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [231] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1751), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1214), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(231), - [sym_block_comment] = STATE(231), + [229] = { + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1802), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1268), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), + [sym_line_comment] = STATE(229), + [sym_block_comment] = STATE(229), + [aux_sym_tuple_expression_repeat1] = STATE(230), [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(1075), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), [anon_sym_STAR] = ACTIONS(21), @@ -42763,15 +42549,13 @@ 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(344), + [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(1045), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_DASH_GT] = ACTIONS(1049), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), [anon_sym_break] = ACTIONS(41), @@ -42804,57 +42588,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [232] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1768), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1250), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(232), - [sym_block_comment] = STATE(232), + [230] = { + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1657), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1268), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), + [sym_line_comment] = STATE(230), + [sym_block_comment] = STATE(230), + [aux_sym_tuple_expression_repeat1] = STATE(237), [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(1037), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), [anon_sym_STAR] = ACTIONS(21), @@ -42875,15 +42661,13 @@ 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(344), + [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(1170), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_DASH_GT] = ACTIONS(1172), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), [anon_sym_break] = ACTIONS(41), @@ -42916,53 +42700,277 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, + [231] = { + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2731), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1573), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_let_condition] = STATE(2515), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(236), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), + [sym_line_comment] = STATE(231), + [sym_block_comment] = STATE(231), + [sym_identifier] = ACTIONS(466), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_STAR] = ACTIONS(973), + [anon_sym_u8] = ACTIONS(468), + [anon_sym_i8] = ACTIONS(468), + [anon_sym_u16] = ACTIONS(468), + [anon_sym_i16] = ACTIONS(468), + [anon_sym_u32] = ACTIONS(468), + [anon_sym_i32] = ACTIONS(468), + [anon_sym_u64] = ACTIONS(468), + [anon_sym_i64] = ACTIONS(468), + [anon_sym_u128] = ACTIONS(468), + [anon_sym_i128] = ACTIONS(468), + [anon_sym_isize] = ACTIONS(468), + [anon_sym_usize] = ACTIONS(468), + [anon_sym_f32] = ACTIONS(468), + [anon_sym_f64] = ACTIONS(468), + [anon_sym_bool] = ACTIONS(468), + [anon_sym_str] = ACTIONS(468), + [anon_sym_char] = ACTIONS(468), + [anon_sym_DASH] = ACTIONS(973), + [anon_sym_BANG] = ACTIONS(973), + [anon_sym_AMP] = ACTIONS(975), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1059), + [anon_sym_COLON_COLON] = ACTIONS(472), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(346), + [anon_sym_break] = ACTIONS(494), + [anon_sym_const] = ACTIONS(348), + [anon_sym_continue] = ACTIONS(496), + [anon_sym_default] = ACTIONS(476), + [anon_sym_for] = ACTIONS(352), + [anon_sym_if] = ACTIONS(354), + [anon_sym_let] = ACTIONS(979), + [anon_sym_loop] = ACTIONS(356), + [anon_sym_match] = ACTIONS(358), + [anon_sym_return] = ACTIONS(498), + [anon_sym_static] = ACTIONS(500), + [anon_sym_union] = ACTIONS(476), + [anon_sym_unsafe] = ACTIONS(362), + [anon_sym_while] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(502), + [anon_sym_move] = ACTIONS(504), + [anon_sym_try] = ACTIONS(366), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(486), + [sym_super] = ACTIONS(488), + [sym_crate] = ACTIONS(488), + [sym_metavariable] = ACTIONS(490), + [sym__raw_string_literal_start] = ACTIONS(115), + [sym_float_literal] = ACTIONS(95), + }, + [232] = { + [sym_bracketed_type] = STATE(3506), + [sym_generic_function] = STATE(1695), + [sym_generic_type_with_turbofish] = STATE(2844), + [sym__expression_except_range] = STATE(1590), + [sym__expression] = STATE(1786), + [sym_macro_invocation] = STATE(1705), + [sym_scoped_identifier] = STATE(1568), + [sym_scoped_type_identifier_in_expression_position] = STATE(3132), + [sym_range_expression] = STATE(1699), + [sym_unary_expression] = STATE(1695), + [sym_try_expression] = STATE(1695), + [sym_reference_expression] = STATE(1695), + [sym_binary_expression] = STATE(1695), + [sym_assignment_expression] = STATE(1695), + [sym_compound_assignment_expr] = STATE(1695), + [sym_type_cast_expression] = STATE(1695), + [sym_return_expression] = STATE(1695), + [sym_yield_expression] = STATE(1695), + [sym_call_expression] = STATE(1695), + [sym_array_expression] = STATE(1695), + [sym_parenthesized_expression] = STATE(1695), + [sym_tuple_expression] = STATE(1695), + [sym_unit_expression] = STATE(1695), + [sym_struct_expression] = STATE(1695), + [sym_if_expression] = STATE(1695), + [sym_match_expression] = STATE(1695), + [sym_while_expression] = STATE(1695), + [sym_loop_expression] = STATE(1695), + [sym_for_expression] = STATE(1695), + [sym_const_block] = STATE(1695), + [sym_closure_expression] = STATE(1695), + [sym_closure_parameters] = STATE(222), + [sym_label] = STATE(3593), + [sym_break_expression] = STATE(1695), + [sym_continue_expression] = STATE(1695), + [sym_index_expression] = STATE(1695), + [sym_await_expression] = STATE(1695), + [sym_field_expression] = STATE(1583), + [sym_unsafe_block] = STATE(1695), + [sym_async_block] = STATE(1695), + [sym_try_block] = STATE(1695), + [sym_block] = STATE(1833), + [sym__literal] = STATE(1695), + [sym_string_literal] = STATE(1801), + [sym_raw_string_literal] = STATE(1801), + [sym_boolean_literal] = STATE(1801), + [sym_line_comment] = STATE(232), + [sym_block_comment] = STATE(232), + [sym_identifier] = ACTIONS(398), + [anon_sym_LPAREN] = ACTIONS(456), + [anon_sym_LBRACK] = ACTIONS(458), + [anon_sym_LBRACE] = ACTIONS(400), + [anon_sym_STAR] = ACTIONS(993), + [anon_sym_u8] = ACTIONS(404), + [anon_sym_i8] = ACTIONS(404), + [anon_sym_u16] = ACTIONS(404), + [anon_sym_i16] = ACTIONS(404), + [anon_sym_u32] = ACTIONS(404), + [anon_sym_i32] = ACTIONS(404), + [anon_sym_u64] = ACTIONS(404), + [anon_sym_i64] = ACTIONS(404), + [anon_sym_u128] = ACTIONS(404), + [anon_sym_i128] = ACTIONS(404), + [anon_sym_isize] = ACTIONS(404), + [anon_sym_usize] = ACTIONS(404), + [anon_sym_f32] = ACTIONS(404), + [anon_sym_f64] = ACTIONS(404), + [anon_sym_bool] = ACTIONS(404), + [anon_sym_str] = ACTIONS(404), + [anon_sym_char] = ACTIONS(404), + [anon_sym_DASH] = ACTIONS(406), + [anon_sym_BANG] = ACTIONS(993), + [anon_sym_AMP] = ACTIONS(995), + [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(408), + [anon_sym_DASH_GT] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(410), + [anon_sym_break] = ACTIONS(412), + [anon_sym_const] = ACTIONS(414), + [anon_sym_continue] = ACTIONS(416), + [anon_sym_default] = ACTIONS(418), + [anon_sym_for] = ACTIONS(420), + [anon_sym_if] = ACTIONS(422), + [anon_sym_loop] = ACTIONS(424), + [anon_sym_match] = ACTIONS(426), + [anon_sym_return] = ACTIONS(428), + [anon_sym_static] = ACTIONS(430), + [anon_sym_union] = ACTIONS(418), + [anon_sym_unsafe] = ACTIONS(432), + [anon_sym_while] = ACTIONS(434), + [anon_sym_yield] = ACTIONS(436), + [anon_sym_move] = ACTIONS(438), + [anon_sym_try] = ACTIONS(440), + [sym_integer_literal] = ACTIONS(442), + [aux_sym_string_literal_token1] = ACTIONS(444), + [sym_char_literal] = ACTIONS(442), + [anon_sym_true] = ACTIONS(446), + [anon_sym_false] = ACTIONS(446), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(448), + [sym_super] = ACTIONS(450), + [sym_crate] = ACTIONS(450), + [sym_metavariable] = ACTIONS(452), + [sym__raw_string_literal_start] = ACTIONS(454), + [sym_float_literal] = ACTIONS(442), + }, [233] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1496), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1310), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1682), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1268), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1305), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), [sym_line_comment] = STATE(233), [sym_block_comment] = STATE(233), [sym_identifier] = ACTIONS(334), @@ -42992,10 +43000,10 @@ 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__] = ACTIONS(1053), - [anon_sym_DOT_DOT] = ACTIONS(1176), + [anon_sym__] = ACTIONS(1047), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_DASH_GT] = ACTIONS(1057), + [anon_sym_DASH_GT] = ACTIONS(1051), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), [anon_sym_break] = ACTIONS(41), @@ -43029,102 +43037,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(95), }, [234] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1703), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1310), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2731), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1736), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_let_condition] = STATE(2515), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(236), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), [sym_line_comment] = STATE(234), [sym_block_comment] = STATE(234), - [sym_identifier] = ACTIONS(456), + [sym_identifier] = ACTIONS(466), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(1041), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(460), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_AMP] = ACTIONS(1043), + [anon_sym_STAR] = ACTIONS(973), + [anon_sym_u8] = ACTIONS(468), + [anon_sym_i8] = ACTIONS(468), + [anon_sym_u16] = ACTIONS(468), + [anon_sym_i16] = ACTIONS(468), + [anon_sym_u32] = ACTIONS(468), + [anon_sym_i32] = ACTIONS(468), + [anon_sym_u64] = ACTIONS(468), + [anon_sym_i64] = ACTIONS(468), + [anon_sym_u128] = ACTIONS(468), + [anon_sym_i128] = ACTIONS(468), + [anon_sym_isize] = ACTIONS(468), + [anon_sym_usize] = ACTIONS(468), + [anon_sym_f32] = ACTIONS(468), + [anon_sym_f64] = ACTIONS(468), + [anon_sym_bool] = ACTIONS(468), + [anon_sym_str] = ACTIONS(468), + [anon_sym_char] = ACTIONS(468), + [anon_sym_DASH] = ACTIONS(973), + [anon_sym_BANG] = ACTIONS(973), + [anon_sym_AMP] = ACTIONS(975), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1053), - [anon_sym_DOT_DOT] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_DASH_GT] = ACTIONS(1057), + [anon_sym_DOT_DOT] = ACTIONS(977), + [anon_sym_COLON_COLON] = ACTIONS(472), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(464), + [anon_sym_break] = ACTIONS(494), [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(466), + [anon_sym_continue] = ACTIONS(496), + [anon_sym_default] = ACTIONS(476), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), + [anon_sym_let] = ACTIONS(979), [anon_sym_loop] = ACTIONS(356), [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(468), - [anon_sym_static] = ACTIONS(470), - [anon_sym_union] = ACTIONS(466), + [anon_sym_return] = ACTIONS(498), + [anon_sym_static] = ACTIONS(500), + [anon_sym_union] = ACTIONS(476), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(472), - [anon_sym_move] = ACTIONS(474), + [anon_sym_yield] = ACTIONS(502), + [anon_sym_move] = ACTIONS(504), [anon_sym_try] = ACTIONS(366), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -43133,106 +43141,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), + [sym_self] = ACTIONS(486), + [sym_super] = ACTIONS(488), + [sym_crate] = ACTIONS(488), + [sym_metavariable] = ACTIONS(490), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, [235] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1634), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1250), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2731), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1600), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(236), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1306), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), [sym_line_comment] = STATE(235), [sym_block_comment] = STATE(235), - [sym_identifier] = ACTIONS(456), + [sym_identifier] = ACTIONS(466), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), + [anon_sym_u8] = ACTIONS(468), + [anon_sym_i8] = ACTIONS(468), + [anon_sym_u16] = ACTIONS(468), + [anon_sym_i16] = ACTIONS(468), + [anon_sym_u32] = ACTIONS(468), + [anon_sym_i32] = ACTIONS(468), + [anon_sym_u64] = ACTIONS(468), + [anon_sym_i64] = ACTIONS(468), + [anon_sym_u128] = ACTIONS(468), + [anon_sym_i128] = ACTIONS(468), + [anon_sym_isize] = ACTIONS(468), + [anon_sym_usize] = ACTIONS(468), + [anon_sym_f32] = ACTIONS(468), + [anon_sym_f64] = ACTIONS(468), + [anon_sym_bool] = ACTIONS(468), + [anon_sym_str] = ACTIONS(468), + [anon_sym_char] = ACTIONS(468), [anon_sym_DASH] = ACTIONS(492), [anon_sym_BANG] = ACTIONS(973), [anon_sym_AMP] = ACTIONS(975), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1170), - [anon_sym_DOT_DOT] = ACTIONS(1055), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_DASH_GT] = ACTIONS(1172), + [anon_sym__] = ACTIONS(1053), + [anon_sym_DOT_DOT] = ACTIONS(1059), + [anon_sym_COLON_COLON] = ACTIONS(472), + [anon_sym_DASH_GT] = ACTIONS(1057), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), [anon_sym_break] = ACTIONS(494), [anon_sym_const] = ACTIONS(348), [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), + [anon_sym_default] = ACTIONS(476), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), [anon_sym_loop] = ACTIONS(356), [anon_sym_match] = ACTIONS(358), [anon_sym_return] = ACTIONS(498), [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), + [anon_sym_union] = ACTIONS(476), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), [anon_sym_yield] = ACTIONS(502), @@ -43245,64 +43253,290 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), + [sym_self] = ACTIONS(486), + [sym_super] = ACTIONS(488), + [sym_crate] = ACTIONS(488), + [sym_metavariable] = ACTIONS(490), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, [236] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1487), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1250), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2731), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1596), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(236), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1323), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), [sym_line_comment] = STATE(236), [sym_block_comment] = STATE(236), + [sym_identifier] = ACTIONS(466), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_STAR] = ACTIONS(973), + [anon_sym_u8] = ACTIONS(468), + [anon_sym_i8] = ACTIONS(468), + [anon_sym_u16] = ACTIONS(468), + [anon_sym_i16] = ACTIONS(468), + [anon_sym_u32] = ACTIONS(468), + [anon_sym_i32] = ACTIONS(468), + [anon_sym_u64] = ACTIONS(468), + [anon_sym_i64] = ACTIONS(468), + [anon_sym_u128] = ACTIONS(468), + [anon_sym_i128] = ACTIONS(468), + [anon_sym_isize] = ACTIONS(468), + [anon_sym_usize] = ACTIONS(468), + [anon_sym_f32] = ACTIONS(468), + [anon_sym_f64] = ACTIONS(468), + [anon_sym_bool] = ACTIONS(468), + [anon_sym_str] = ACTIONS(468), + [anon_sym_char] = ACTIONS(468), + [anon_sym_DASH] = ACTIONS(492), + [anon_sym_BANG] = ACTIONS(973), + [anon_sym_AMP] = ACTIONS(975), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1039), + [anon_sym_DOT_DOT] = ACTIONS(1059), + [anon_sym_COLON_COLON] = ACTIONS(472), + [anon_sym_DASH_GT] = ACTIONS(1041), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(346), + [anon_sym_break] = ACTIONS(494), + [anon_sym_const] = ACTIONS(348), + [anon_sym_continue] = ACTIONS(496), + [anon_sym_default] = ACTIONS(476), + [anon_sym_for] = ACTIONS(352), + [anon_sym_if] = ACTIONS(354), + [anon_sym_loop] = ACTIONS(356), + [anon_sym_match] = ACTIONS(358), + [anon_sym_return] = ACTIONS(498), + [anon_sym_static] = ACTIONS(500), + [anon_sym_union] = ACTIONS(476), + [anon_sym_unsafe] = ACTIONS(362), + [anon_sym_while] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(502), + [anon_sym_move] = ACTIONS(504), + [anon_sym_try] = ACTIONS(366), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(486), + [sym_super] = ACTIONS(488), + [sym_crate] = ACTIONS(488), + [sym_metavariable] = ACTIONS(490), + [sym__raw_string_literal_start] = ACTIONS(115), + [sym_float_literal] = ACTIONS(95), + }, + [237] = { + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1868), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1268), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), + [sym_line_comment] = STATE(237), + [sym_block_comment] = STATE(237), + [aux_sym_tuple_expression_repeat1] = STATE(237), + [sym_identifier] = ACTIONS(1081), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_RPAREN] = ACTIONS(1087), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LBRACE] = ACTIONS(1092), + [anon_sym_STAR] = ACTIONS(1095), + [anon_sym_u8] = ACTIONS(1098), + [anon_sym_i8] = ACTIONS(1098), + [anon_sym_u16] = ACTIONS(1098), + [anon_sym_i16] = ACTIONS(1098), + [anon_sym_u32] = ACTIONS(1098), + [anon_sym_i32] = ACTIONS(1098), + [anon_sym_u64] = ACTIONS(1098), + [anon_sym_i64] = ACTIONS(1098), + [anon_sym_u128] = ACTIONS(1098), + [anon_sym_i128] = ACTIONS(1098), + [anon_sym_isize] = ACTIONS(1098), + [anon_sym_usize] = ACTIONS(1098), + [anon_sym_f32] = ACTIONS(1098), + [anon_sym_f64] = ACTIONS(1098), + [anon_sym_bool] = ACTIONS(1098), + [anon_sym_str] = ACTIONS(1098), + [anon_sym_char] = ACTIONS(1098), + [anon_sym_DASH] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(1095), + [anon_sym_AMP] = ACTIONS(1101), + [anon_sym_PIPE] = ACTIONS(1104), + [anon_sym_LT] = ACTIONS(1107), + [anon_sym_DOT_DOT] = ACTIONS(1110), + [anon_sym_COLON_COLON] = ACTIONS(1113), + [anon_sym_SQUOTE] = ACTIONS(1116), + [anon_sym_async] = ACTIONS(1119), + [anon_sym_break] = ACTIONS(1122), + [anon_sym_const] = ACTIONS(1125), + [anon_sym_continue] = ACTIONS(1128), + [anon_sym_default] = ACTIONS(1131), + [anon_sym_for] = ACTIONS(1134), + [anon_sym_if] = ACTIONS(1137), + [anon_sym_loop] = ACTIONS(1140), + [anon_sym_match] = ACTIONS(1143), + [anon_sym_return] = ACTIONS(1146), + [anon_sym_static] = ACTIONS(1149), + [anon_sym_union] = ACTIONS(1131), + [anon_sym_unsafe] = ACTIONS(1152), + [anon_sym_while] = ACTIONS(1155), + [anon_sym_yield] = ACTIONS(1158), + [anon_sym_move] = ACTIONS(1161), + [anon_sym_try] = ACTIONS(1164), + [sym_integer_literal] = ACTIONS(1167), + [aux_sym_string_literal_token1] = ACTIONS(1170), + [sym_char_literal] = ACTIONS(1167), + [anon_sym_true] = ACTIONS(1173), + [anon_sym_false] = ACTIONS(1173), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1176), + [sym_super] = ACTIONS(1179), + [sym_crate] = ACTIONS(1179), + [sym_metavariable] = ACTIONS(1182), + [sym__raw_string_literal_start] = ACTIONS(1185), + [sym_float_literal] = ACTIONS(1167), + }, + [238] = { + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1664), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1268), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), + [sym_line_comment] = STATE(238), + [sym_block_comment] = STATE(238), + [aux_sym_tuple_expression_repeat1] = STATE(237), [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(1188), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), [anon_sym_STAR] = ACTIONS(21), @@ -43323,15 +43557,13 @@ 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(344), + [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(1170), - [anon_sym_DOT_DOT] = ACTIONS(1176), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_DASH_GT] = ACTIONS(1172), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), [anon_sym_break] = ACTIONS(41), @@ -43364,60 +43596,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [237] = { - [sym_bracketed_type] = STATE(3498), - [sym_generic_function] = STATE(1637), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1604), - [sym__expression] = STATE(1783), - [sym_macro_invocation] = STATE(1641), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3100), - [sym_range_expression] = STATE(1639), - [sym_unary_expression] = STATE(1637), - [sym_try_expression] = STATE(1637), - [sym_reference_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_assignment_expression] = STATE(1637), - [sym_compound_assignment_expr] = STATE(1637), - [sym_type_cast_expression] = STATE(1637), - [sym_return_expression] = STATE(1637), - [sym_yield_expression] = STATE(1637), - [sym_call_expression] = STATE(1637), - [sym_array_expression] = STATE(1637), - [sym_parenthesized_expression] = STATE(1637), - [sym_tuple_expression] = STATE(1637), - [sym_unit_expression] = STATE(1637), - [sym_struct_expression] = STATE(1637), - [sym_if_expression] = STATE(1637), - [sym_match_expression] = STATE(1637), - [sym_while_expression] = STATE(1637), - [sym_loop_expression] = STATE(1637), - [sym_for_expression] = STATE(1637), - [sym_const_block] = STATE(1637), - [sym_closure_expression] = STATE(1637), - [sym_closure_parameters] = STATE(237), - [sym_label] = STATE(3585), - [sym_break_expression] = STATE(1637), - [sym_continue_expression] = STATE(1637), - [sym_index_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_field_expression] = STATE(1620), - [sym_unsafe_block] = STATE(1637), - [sym_async_block] = STATE(1637), - [sym_try_block] = STATE(1637), - [sym_block] = STATE(1656), - [sym__literal] = STATE(1637), - [sym_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_boolean_literal] = STATE(1778), - [sym_line_comment] = STATE(237), - [sym_block_comment] = STATE(237), + [239] = { + [sym_bracketed_type] = STATE(3506), + [sym_generic_function] = STATE(1695), + [sym_generic_type_with_turbofish] = STATE(2844), + [sym__expression_except_range] = STATE(1590), + [sym__expression] = STATE(1749), + [sym_macro_invocation] = STATE(1705), + [sym_scoped_identifier] = STATE(1568), + [sym_scoped_type_identifier_in_expression_position] = STATE(3132), + [sym_range_expression] = STATE(1699), + [sym_unary_expression] = STATE(1695), + [sym_try_expression] = STATE(1695), + [sym_reference_expression] = STATE(1695), + [sym_binary_expression] = STATE(1695), + [sym_assignment_expression] = STATE(1695), + [sym_compound_assignment_expr] = STATE(1695), + [sym_type_cast_expression] = STATE(1695), + [sym_return_expression] = STATE(1695), + [sym_yield_expression] = STATE(1695), + [sym_call_expression] = STATE(1695), + [sym_array_expression] = STATE(1695), + [sym_parenthesized_expression] = STATE(1695), + [sym_tuple_expression] = STATE(1695), + [sym_unit_expression] = STATE(1695), + [sym_struct_expression] = STATE(1695), + [sym_if_expression] = STATE(1695), + [sym_let_condition] = STATE(2515), + [sym_match_expression] = STATE(1695), + [sym_while_expression] = STATE(1695), + [sym_loop_expression] = STATE(1695), + [sym_for_expression] = STATE(1695), + [sym_const_block] = STATE(1695), + [sym_closure_expression] = STATE(1695), + [sym_closure_parameters] = STATE(222), + [sym_label] = STATE(3593), + [sym_break_expression] = STATE(1695), + [sym_continue_expression] = STATE(1695), + [sym_index_expression] = STATE(1695), + [sym_await_expression] = STATE(1695), + [sym_field_expression] = STATE(1583), + [sym_unsafe_block] = STATE(1695), + [sym_async_block] = STATE(1695), + [sym_try_block] = STATE(1695), + [sym_block] = STATE(1695), + [sym__literal] = STATE(1695), + [sym_string_literal] = STATE(1801), + [sym_raw_string_literal] = STATE(1801), + [sym_boolean_literal] = STATE(1801), + [sym_line_comment] = STATE(239), + [sym_block_comment] = STATE(239), [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(484), + [anon_sym_LPAREN] = ACTIONS(456), + [anon_sym_LBRACK] = ACTIONS(458), [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_STAR] = ACTIONS(1021), + [anon_sym_STAR] = ACTIONS(993), [anon_sym_u8] = ACTIONS(404), [anon_sym_i8] = ACTIONS(404), [anon_sym_u16] = ACTIONS(404), @@ -43435,15 +43668,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(404), [anon_sym_str] = ACTIONS(404), [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(406), - [anon_sym_BANG] = ACTIONS(1021), - [anon_sym_AMP] = ACTIONS(1023), + [anon_sym_DASH] = ACTIONS(993), + [anon_sym_BANG] = ACTIONS(993), + [anon_sym_AMP] = ACTIONS(995), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1178), - [anon_sym_DOT_DOT] = ACTIONS(1039), + [anon_sym_DOT_DOT] = ACTIONS(1063), [anon_sym_COLON_COLON] = ACTIONS(408), - [anon_sym_DASH_GT] = ACTIONS(1180), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(410), [anon_sym_break] = ACTIONS(412), @@ -43452,6 +43683,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(418), [anon_sym_for] = ACTIONS(420), [anon_sym_if] = ACTIONS(422), + [anon_sym_let] = ACTIONS(999), [anon_sym_loop] = ACTIONS(424), [anon_sym_match] = ACTIONS(426), [anon_sym_return] = ACTIONS(428), @@ -43476,172 +43708,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(454), [sym_float_literal] = ACTIONS(442), }, - [238] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1800), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(238), - [sym_block_comment] = STATE(238), - [aux_sym_tuple_expression_repeat1] = STATE(218), - [sym_identifier] = ACTIONS(334), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1182), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [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_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [239] = { - [sym_bracketed_type] = STATE(3498), - [sym_generic_function] = STATE(1637), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1604), - [sym__expression] = STATE(1787), - [sym_macro_invocation] = STATE(1641), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3100), - [sym_range_expression] = STATE(1639), - [sym_unary_expression] = STATE(1637), - [sym_try_expression] = STATE(1637), - [sym_reference_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_assignment_expression] = STATE(1637), - [sym_compound_assignment_expr] = STATE(1637), - [sym_type_cast_expression] = STATE(1637), - [sym_return_expression] = STATE(1637), - [sym_yield_expression] = STATE(1637), - [sym_call_expression] = STATE(1637), - [sym_array_expression] = STATE(1637), - [sym_parenthesized_expression] = STATE(1637), - [sym_tuple_expression] = STATE(1637), - [sym_unit_expression] = STATE(1637), - [sym_struct_expression] = STATE(1637), - [sym_if_expression] = STATE(1637), - [sym_match_expression] = STATE(1637), - [sym_while_expression] = STATE(1637), - [sym_loop_expression] = STATE(1637), - [sym_for_expression] = STATE(1637), - [sym_const_block] = STATE(1637), - [sym_closure_expression] = STATE(1637), - [sym_closure_parameters] = STATE(237), - [sym_label] = STATE(3585), - [sym_break_expression] = STATE(1637), - [sym_continue_expression] = STATE(1637), - [sym_index_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_field_expression] = STATE(1620), - [sym_unsafe_block] = STATE(1637), - [sym_async_block] = STATE(1637), - [sym_try_block] = STATE(1637), - [sym_block] = STATE(1662), - [sym__literal] = STATE(1637), - [sym_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_boolean_literal] = STATE(1778), - [sym_line_comment] = STATE(239), - [sym_block_comment] = STATE(239), + [240] = { + [sym_bracketed_type] = STATE(3506), + [sym_generic_function] = STATE(1695), + [sym_generic_type_with_turbofish] = STATE(2844), + [sym__expression_except_range] = STATE(1590), + [sym__expression] = STATE(1867), + [sym_macro_invocation] = STATE(1705), + [sym_scoped_identifier] = STATE(1568), + [sym_scoped_type_identifier_in_expression_position] = STATE(3132), + [sym_range_expression] = STATE(1699), + [sym_unary_expression] = STATE(1695), + [sym_try_expression] = STATE(1695), + [sym_reference_expression] = STATE(1695), + [sym_binary_expression] = STATE(1695), + [sym_assignment_expression] = STATE(1695), + [sym_compound_assignment_expr] = STATE(1695), + [sym_type_cast_expression] = STATE(1695), + [sym_return_expression] = STATE(1695), + [sym_yield_expression] = STATE(1695), + [sym_call_expression] = STATE(1695), + [sym_array_expression] = STATE(1695), + [sym_parenthesized_expression] = STATE(1695), + [sym_tuple_expression] = STATE(1695), + [sym_unit_expression] = STATE(1695), + [sym_struct_expression] = STATE(1695), + [sym_if_expression] = STATE(1695), + [sym_let_condition] = STATE(2515), + [sym_match_expression] = STATE(1695), + [sym_while_expression] = STATE(1695), + [sym_loop_expression] = STATE(1695), + [sym_for_expression] = STATE(1695), + [sym_const_block] = STATE(1695), + [sym_closure_expression] = STATE(1695), + [sym_closure_parameters] = STATE(222), + [sym_label] = STATE(3593), + [sym_break_expression] = STATE(1695), + [sym_continue_expression] = STATE(1695), + [sym_index_expression] = STATE(1695), + [sym_await_expression] = STATE(1695), + [sym_field_expression] = STATE(1583), + [sym_unsafe_block] = STATE(1695), + [sym_async_block] = STATE(1695), + [sym_try_block] = STATE(1695), + [sym_block] = STATE(1695), + [sym__literal] = STATE(1695), + [sym_string_literal] = STATE(1801), + [sym_raw_string_literal] = STATE(1801), + [sym_boolean_literal] = STATE(1801), + [sym_line_comment] = STATE(240), + [sym_block_comment] = STATE(240), [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(484), + [anon_sym_LPAREN] = ACTIONS(456), + [anon_sym_LBRACK] = ACTIONS(458), [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_STAR] = ACTIONS(1021), + [anon_sym_STAR] = ACTIONS(993), [anon_sym_u8] = ACTIONS(404), [anon_sym_i8] = ACTIONS(404), [anon_sym_u16] = ACTIONS(404), @@ -43659,15 +43780,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(404), [anon_sym_str] = ACTIONS(404), [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(406), - [anon_sym_BANG] = ACTIONS(1021), - [anon_sym_AMP] = ACTIONS(1023), + [anon_sym_DASH] = ACTIONS(993), + [anon_sym_BANG] = ACTIONS(993), + [anon_sym_AMP] = ACTIONS(995), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1184), - [anon_sym_DOT_DOT] = ACTIONS(1039), + [anon_sym_DOT_DOT] = ACTIONS(997), [anon_sym_COLON_COLON] = ACTIONS(408), - [anon_sym_DASH_GT] = ACTIONS(1186), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(410), [anon_sym_break] = ACTIONS(412), @@ -43676,6 +43795,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(418), [anon_sym_for] = ACTIONS(420), [anon_sym_if] = ACTIONS(422), + [anon_sym_let] = ACTIONS(999), [anon_sym_loop] = ACTIONS(424), [anon_sym_match] = ACTIONS(426), [anon_sym_return] = ACTIONS(428), @@ -43700,103 +43820,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(454), [sym_float_literal] = ACTIONS(442), }, - [240] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1590), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_let_condition] = STATE(2662), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(240), - [sym_block_comment] = STATE(240), - [sym_identifier] = ACTIONS(456), + [241] = { + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1658), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1268), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), + [sym_line_comment] = STATE(241), + [sym_block_comment] = STATE(241), + [aux_sym_tuple_expression_repeat1] = STATE(237), + [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(1190), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), + [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(1055), - [anon_sym_COLON_COLON] = ACTIONS(462), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(350), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), - [anon_sym_let] = ACTIONS(979), [anon_sym_loop] = ACTIONS(356), [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), + [anon_sym_return] = ACTIONS(69), + [anon_sym_static] = ACTIONS(360), + [anon_sym_union] = ACTIONS(350), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), [anon_sym_try] = ACTIONS(366), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -43805,222 +43925,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), + [sym_self] = ACTIONS(107), + [sym_super] = ACTIONS(109), + [sym_crate] = ACTIONS(109), + [sym_metavariable] = ACTIONS(113), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [241] = { - [sym_bracketed_type] = STATE(3498), - [sym_generic_function] = STATE(1637), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1604), - [sym__expression] = STATE(1790), - [sym_macro_invocation] = STATE(1641), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3100), - [sym_range_expression] = STATE(1639), - [sym_unary_expression] = STATE(1637), - [sym_try_expression] = STATE(1637), - [sym_reference_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_assignment_expression] = STATE(1637), - [sym_compound_assignment_expr] = STATE(1637), - [sym_type_cast_expression] = STATE(1637), - [sym_return_expression] = STATE(1637), - [sym_yield_expression] = STATE(1637), - [sym_call_expression] = STATE(1637), - [sym_array_expression] = STATE(1637), - [sym_parenthesized_expression] = STATE(1637), - [sym_tuple_expression] = STATE(1637), - [sym_unit_expression] = STATE(1637), - [sym_struct_expression] = STATE(1637), - [sym_if_expression] = STATE(1637), - [sym_match_expression] = STATE(1637), - [sym_while_expression] = STATE(1637), - [sym_loop_expression] = STATE(1637), - [sym_for_expression] = STATE(1637), - [sym_const_block] = STATE(1637), - [sym_closure_expression] = STATE(1637), - [sym_closure_parameters] = STATE(237), - [sym_label] = STATE(3585), - [sym_break_expression] = STATE(1637), - [sym_continue_expression] = STATE(1637), - [sym_index_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_field_expression] = STATE(1620), - [sym_unsafe_block] = STATE(1637), - [sym_async_block] = STATE(1637), - [sym_try_block] = STATE(1637), - [sym_block] = STATE(1673), - [sym__literal] = STATE(1637), - [sym_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_boolean_literal] = STATE(1778), - [sym_line_comment] = STATE(241), - [sym_block_comment] = STATE(241), - [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_STAR] = ACTIONS(1021), - [anon_sym_u8] = ACTIONS(404), - [anon_sym_i8] = ACTIONS(404), - [anon_sym_u16] = ACTIONS(404), - [anon_sym_i16] = ACTIONS(404), - [anon_sym_u32] = ACTIONS(404), - [anon_sym_i32] = ACTIONS(404), - [anon_sym_u64] = ACTIONS(404), - [anon_sym_i64] = ACTIONS(404), - [anon_sym_u128] = ACTIONS(404), - [anon_sym_i128] = ACTIONS(404), - [anon_sym_isize] = ACTIONS(404), - [anon_sym_usize] = ACTIONS(404), - [anon_sym_f32] = ACTIONS(404), - [anon_sym_f64] = ACTIONS(404), - [anon_sym_bool] = ACTIONS(404), - [anon_sym_str] = ACTIONS(404), - [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(406), - [anon_sym_BANG] = ACTIONS(1021), - [anon_sym_AMP] = ACTIONS(1023), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1188), - [anon_sym_DOT_DOT] = ACTIONS(1039), - [anon_sym_COLON_COLON] = ACTIONS(408), - [anon_sym_DASH_GT] = ACTIONS(1190), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_const] = ACTIONS(414), - [anon_sym_continue] = ACTIONS(416), - [anon_sym_default] = ACTIONS(418), - [anon_sym_for] = ACTIONS(420), - [anon_sym_if] = ACTIONS(422), - [anon_sym_loop] = ACTIONS(424), - [anon_sym_match] = ACTIONS(426), - [anon_sym_return] = ACTIONS(428), - [anon_sym_static] = ACTIONS(430), - [anon_sym_union] = ACTIONS(418), - [anon_sym_unsafe] = ACTIONS(432), - [anon_sym_while] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_move] = ACTIONS(438), - [anon_sym_try] = ACTIONS(440), - [sym_integer_literal] = ACTIONS(442), - [aux_sym_string_literal_token1] = ACTIONS(444), - [sym_char_literal] = ACTIONS(442), - [anon_sym_true] = ACTIONS(446), - [anon_sym_false] = ACTIONS(446), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(448), - [sym_super] = ACTIONS(450), - [sym_crate] = ACTIONS(450), - [sym_metavariable] = ACTIONS(452), - [sym__raw_string_literal_start] = ACTIONS(454), - [sym_float_literal] = ACTIONS(442), - }, [242] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1638), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_let_condition] = STATE(2662), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1679), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1268), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1306), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), [sym_line_comment] = STATE(242), [sym_block_comment] = STATE(242), - [sym_identifier] = ACTIONS(456), + [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), + [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(344), + [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(977), - [anon_sym_COLON_COLON] = ACTIONS(462), + [anon_sym__] = ACTIONS(1053), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DASH_GT] = ACTIONS(1057), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(350), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), - [anon_sym_let] = ACTIONS(979), [anon_sym_loop] = ACTIONS(356), [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), + [anon_sym_return] = ACTIONS(69), + [anon_sym_static] = ACTIONS(360), + [anon_sym_union] = ACTIONS(350), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), [anon_sym_try] = ACTIONS(366), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -44029,67 +44037,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), + [sym_self] = ACTIONS(107), + [sym_super] = ACTIONS(109), + [sym_crate] = ACTIONS(109), + [sym_metavariable] = ACTIONS(113), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, [243] = { - [sym_bracketed_type] = STATE(3498), - [sym_generic_function] = STATE(1637), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1604), - [sym__expression] = STATE(1644), - [sym_macro_invocation] = STATE(1641), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3100), - [sym_range_expression] = STATE(1639), - [sym_unary_expression] = STATE(1637), - [sym_try_expression] = STATE(1637), - [sym_reference_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_assignment_expression] = STATE(1637), - [sym_compound_assignment_expr] = STATE(1637), - [sym_type_cast_expression] = STATE(1637), - [sym_return_expression] = STATE(1637), - [sym_yield_expression] = STATE(1637), - [sym_call_expression] = STATE(1637), - [sym_array_expression] = STATE(1637), - [sym_parenthesized_expression] = STATE(1637), - [sym_tuple_expression] = STATE(1637), - [sym_unit_expression] = STATE(1637), - [sym_struct_expression] = STATE(1637), - [sym_if_expression] = STATE(1637), - [sym_match_expression] = STATE(1637), - [sym_while_expression] = STATE(1637), - [sym_loop_expression] = STATE(1637), - [sym_for_expression] = STATE(1637), - [sym_const_block] = STATE(1637), - [sym_closure_expression] = STATE(1637), - [sym_closure_parameters] = STATE(237), - [sym_label] = STATE(3585), - [sym_break_expression] = STATE(1637), - [sym_continue_expression] = STATE(1637), - [sym_index_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_field_expression] = STATE(1620), - [sym_unsafe_block] = STATE(1637), - [sym_async_block] = STATE(1637), - [sym_try_block] = STATE(1637), - [sym_block] = STATE(1637), - [sym__literal] = STATE(1637), - [sym_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_boolean_literal] = STATE(1778), + [sym_bracketed_type] = STATE(3506), + [sym_generic_function] = STATE(1695), + [sym_generic_type_with_turbofish] = STATE(2844), + [sym__expression_except_range] = STATE(1590), + [sym__expression] = STATE(1710), + [sym_macro_invocation] = STATE(1705), + [sym_scoped_identifier] = STATE(1568), + [sym_scoped_type_identifier_in_expression_position] = STATE(3132), + [sym_range_expression] = STATE(1699), + [sym_unary_expression] = STATE(1695), + [sym_try_expression] = STATE(1695), + [sym_reference_expression] = STATE(1695), + [sym_binary_expression] = STATE(1695), + [sym_assignment_expression] = STATE(1695), + [sym_compound_assignment_expr] = STATE(1695), + [sym_type_cast_expression] = STATE(1695), + [sym_return_expression] = STATE(1695), + [sym_yield_expression] = STATE(1695), + [sym_call_expression] = STATE(1695), + [sym_array_expression] = STATE(1695), + [sym_parenthesized_expression] = STATE(1695), + [sym_tuple_expression] = STATE(1695), + [sym_unit_expression] = STATE(1695), + [sym_struct_expression] = STATE(1695), + [sym_if_expression] = STATE(1695), + [sym_match_expression] = STATE(1695), + [sym_while_expression] = STATE(1695), + [sym_loop_expression] = STATE(1695), + [sym_for_expression] = STATE(1695), + [sym_const_block] = STATE(1695), + [sym_closure_expression] = STATE(1695), + [sym_closure_parameters] = STATE(222), + [sym_label] = STATE(3593), + [sym_break_expression] = STATE(1695), + [sym_continue_expression] = STATE(1695), + [sym_index_expression] = STATE(1695), + [sym_await_expression] = STATE(1695), + [sym_field_expression] = STATE(1583), + [sym_unsafe_block] = STATE(1695), + [sym_async_block] = STATE(1695), + [sym_try_block] = STATE(1695), + [sym_block] = STATE(1695), + [sym__literal] = STATE(1695), + [sym_string_literal] = STATE(1801), + [sym_raw_string_literal] = STATE(1801), + [sym_boolean_literal] = STATE(1801), [sym_line_comment] = STATE(243), [sym_block_comment] = STATE(243), [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(484), + [anon_sym_LPAREN] = ACTIONS(456), + [anon_sym_LBRACK] = ACTIONS(458), [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_STAR] = ACTIONS(1021), + [anon_sym_STAR] = ACTIONS(993), [anon_sym_u8] = ACTIONS(404), [anon_sym_i8] = ACTIONS(404), [anon_sym_u16] = ACTIONS(404), @@ -44107,12 +44115,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(404), [anon_sym_str] = ACTIONS(404), [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_BANG] = ACTIONS(1021), - [anon_sym_AMP] = ACTIONS(1023), + [anon_sym_DASH] = ACTIONS(993), + [anon_sym_BANG] = ACTIONS(993), + [anon_sym_AMP] = ACTIONS(995), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1039), + [anon_sym_DOT_DOT] = ACTIONS(1063), [anon_sym_COLON_COLON] = ACTIONS(408), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(410), @@ -44259,101 +44267,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1194), }, [245] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1337), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2731), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1442), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(223), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), [sym_line_comment] = STATE(245), [sym_block_comment] = STATE(245), - [sym_identifier] = ACTIONS(456), + [sym_identifier] = ACTIONS(466), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(1041), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(1041), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_AMP] = ACTIONS(1043), + [anon_sym_STAR] = ACTIONS(1043), + [anon_sym_u8] = ACTIONS(468), + [anon_sym_i8] = ACTIONS(468), + [anon_sym_u16] = ACTIONS(468), + [anon_sym_i16] = ACTIONS(468), + [anon_sym_u32] = ACTIONS(468), + [anon_sym_i32] = ACTIONS(468), + [anon_sym_u64] = ACTIONS(468), + [anon_sym_i64] = ACTIONS(468), + [anon_sym_u128] = ACTIONS(468), + [anon_sym_i128] = ACTIONS(468), + [anon_sym_isize] = ACTIONS(468), + [anon_sym_usize] = ACTIONS(468), + [anon_sym_f32] = ACTIONS(468), + [anon_sym_f64] = ACTIONS(468), + [anon_sym_bool] = ACTIONS(468), + [anon_sym_str] = ACTIONS(468), + [anon_sym_char] = ACTIONS(468), + [anon_sym_DASH] = ACTIONS(1043), + [anon_sym_BANG] = ACTIONS(1043), + [anon_sym_AMP] = ACTIONS(1045), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(462), + [anon_sym_DOT_DOT] = ACTIONS(1049), + [anon_sym_COLON_COLON] = ACTIONS(472), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(464), + [anon_sym_break] = ACTIONS(474), [anon_sym_const] = ACTIONS(348), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(466), + [anon_sym_default] = ACTIONS(476), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), [anon_sym_loop] = ACTIONS(356), [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(468), - [anon_sym_static] = ACTIONS(470), - [anon_sym_union] = ACTIONS(466), + [anon_sym_return] = ACTIONS(478), + [anon_sym_static] = ACTIONS(480), + [anon_sym_union] = ACTIONS(476), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), [sym_mutable_specifier] = ACTIONS(1200), - [anon_sym_yield] = ACTIONS(472), - [anon_sym_move] = ACTIONS(474), + [anon_sym_yield] = ACTIONS(482), + [anon_sym_move] = ACTIONS(484), [anon_sym_try] = ACTIONS(366), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -44362,173 +44370,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), + [sym_self] = ACTIONS(486), + [sym_super] = ACTIONS(488), + [sym_crate] = ACTIONS(488), + [sym_metavariable] = ACTIONS(490), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, [246] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1337), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1442), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1268), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), [sym_line_comment] = STATE(246), [sym_block_comment] = STATE(246), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1055), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [sym_mutable_specifier] = ACTIONS(1202), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [247] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1337), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(247), - [sym_block_comment] = STATE(247), [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -44556,7 +44453,7 @@ 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(1176), + [anon_sym_DOT_DOT] = ACTIONS(1055), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), @@ -44573,7 +44470,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(350), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), - [sym_mutable_specifier] = ACTIONS(1204), + [sym_mutable_specifier] = ACTIONS(1202), [anon_sym_yield] = ACTIONS(89), [anon_sym_move] = ACTIONS(91), [anon_sym_try] = ACTIONS(366), @@ -44591,101 +44488,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [248] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1654), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(248), - [sym_block_comment] = STATE(248), - [sym_identifier] = ACTIONS(334), + [247] = { + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2731), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1442), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(236), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), + [sym_line_comment] = STATE(247), + [sym_block_comment] = STATE(247), + [sym_identifier] = ACTIONS(466), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), - [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_STAR] = ACTIONS(973), + [anon_sym_u8] = ACTIONS(468), + [anon_sym_i8] = ACTIONS(468), + [anon_sym_u16] = ACTIONS(468), + [anon_sym_i16] = ACTIONS(468), + [anon_sym_u32] = ACTIONS(468), + [anon_sym_i32] = ACTIONS(468), + [anon_sym_u64] = ACTIONS(468), + [anon_sym_i64] = ACTIONS(468), + [anon_sym_u128] = ACTIONS(468), + [anon_sym_i128] = ACTIONS(468), + [anon_sym_isize] = ACTIONS(468), + [anon_sym_usize] = ACTIONS(468), + [anon_sym_f32] = ACTIONS(468), + [anon_sym_f64] = ACTIONS(468), + [anon_sym_bool] = ACTIONS(468), + [anon_sym_str] = ACTIONS(468), + [anon_sym_char] = ACTIONS(468), + [anon_sym_DASH] = ACTIONS(973), + [anon_sym_BANG] = ACTIONS(973), + [anon_sym_AMP] = ACTIONS(975), [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(1059), + [anon_sym_COLON_COLON] = ACTIONS(472), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), + [anon_sym_break] = ACTIONS(494), [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), + [anon_sym_continue] = ACTIONS(496), + [anon_sym_default] = ACTIONS(476), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), [anon_sym_loop] = ACTIONS(356), [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), + [anon_sym_return] = ACTIONS(498), + [anon_sym_static] = ACTIONS(500), + [anon_sym_union] = ACTIONS(476), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), + [sym_mutable_specifier] = ACTIONS(1204), + [anon_sym_yield] = ACTIONS(502), + [anon_sym_move] = ACTIONS(504), [anon_sym_try] = ACTIONS(366), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -44694,108 +44592,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), + [sym_self] = ACTIONS(486), + [sym_super] = ACTIONS(488), + [sym_crate] = ACTIONS(488), + [sym_metavariable] = ACTIONS(490), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [249] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1714), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(249), - [sym_block_comment] = STATE(249), - [sym_identifier] = ACTIONS(456), + [248] = { + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2731), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1644), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(236), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), + [sym_line_comment] = STATE(248), + [sym_block_comment] = STATE(248), + [sym_identifier] = ACTIONS(466), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(1041), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(1041), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_AMP] = ACTIONS(1043), + [anon_sym_STAR] = ACTIONS(973), + [anon_sym_u8] = ACTIONS(468), + [anon_sym_i8] = ACTIONS(468), + [anon_sym_u16] = ACTIONS(468), + [anon_sym_i16] = ACTIONS(468), + [anon_sym_u32] = ACTIONS(468), + [anon_sym_i32] = ACTIONS(468), + [anon_sym_u64] = ACTIONS(468), + [anon_sym_i64] = ACTIONS(468), + [anon_sym_u128] = ACTIONS(468), + [anon_sym_i128] = ACTIONS(468), + [anon_sym_isize] = ACTIONS(468), + [anon_sym_usize] = ACTIONS(468), + [anon_sym_f32] = ACTIONS(468), + [anon_sym_f64] = ACTIONS(468), + [anon_sym_bool] = ACTIONS(468), + [anon_sym_str] = ACTIONS(468), + [anon_sym_char] = ACTIONS(468), + [anon_sym_DASH] = ACTIONS(973), + [anon_sym_BANG] = ACTIONS(973), + [anon_sym_AMP] = ACTIONS(975), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(462), + [anon_sym_DOT_DOT] = ACTIONS(977), + [anon_sym_COLON_COLON] = ACTIONS(472), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(464), + [anon_sym_break] = ACTIONS(494), [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(466), + [anon_sym_continue] = ACTIONS(496), + [anon_sym_default] = ACTIONS(476), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), [anon_sym_loop] = ACTIONS(356), [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(468), - [anon_sym_static] = ACTIONS(470), - [anon_sym_union] = ACTIONS(466), + [anon_sym_return] = ACTIONS(498), + [anon_sym_static] = ACTIONS(500), + [anon_sym_union] = ACTIONS(476), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(472), - [anon_sym_move] = ACTIONS(474), + [anon_sym_yield] = ACTIONS(502), + [anon_sym_move] = ACTIONS(504), [anon_sym_try] = ACTIONS(366), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -44804,108 +44702,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), + [sym_self] = ACTIONS(486), + [sym_super] = ACTIONS(488), + [sym_crate] = ACTIONS(488), + [sym_metavariable] = ACTIONS(490), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [250] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1715), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(250), - [sym_block_comment] = STATE(250), - [sym_identifier] = ACTIONS(456), + [249] = { + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1866), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1268), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), + [sym_line_comment] = STATE(249), + [sym_block_comment] = STATE(249), + [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(1041), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(1041), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_AMP] = ACTIONS(1043), + [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(1047), - [anon_sym_COLON_COLON] = ACTIONS(462), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(464), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(348), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(466), + [anon_sym_default] = ACTIONS(350), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), [anon_sym_loop] = ACTIONS(356), [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(468), - [anon_sym_static] = ACTIONS(470), - [anon_sym_union] = ACTIONS(466), + [anon_sym_return] = ACTIONS(69), + [anon_sym_static] = ACTIONS(360), + [anon_sym_union] = ACTIONS(350), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(472), - [anon_sym_move] = ACTIONS(474), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), [anon_sym_try] = ACTIONS(366), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -44914,104 +44812,214 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), + [sym_self] = ACTIONS(107), + [sym_super] = ACTIONS(109), + [sym_crate] = ACTIONS(109), + [sym_metavariable] = ACTIONS(113), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, + [250] = { + [sym_bracketed_type] = STATE(3506), + [sym_generic_function] = STATE(1695), + [sym_generic_type_with_turbofish] = STATE(2844), + [sym__expression_except_range] = STATE(1590), + [sym__expression] = STATE(1818), + [sym_macro_invocation] = STATE(1705), + [sym_scoped_identifier] = STATE(1568), + [sym_scoped_type_identifier_in_expression_position] = STATE(3132), + [sym_range_expression] = STATE(1699), + [sym_unary_expression] = STATE(1695), + [sym_try_expression] = STATE(1695), + [sym_reference_expression] = STATE(1695), + [sym_binary_expression] = STATE(1695), + [sym_assignment_expression] = STATE(1695), + [sym_compound_assignment_expr] = STATE(1695), + [sym_type_cast_expression] = STATE(1695), + [sym_return_expression] = STATE(1695), + [sym_yield_expression] = STATE(1695), + [sym_call_expression] = STATE(1695), + [sym_array_expression] = STATE(1695), + [sym_parenthesized_expression] = STATE(1695), + [sym_tuple_expression] = STATE(1695), + [sym_unit_expression] = STATE(1695), + [sym_struct_expression] = STATE(1695), + [sym_if_expression] = STATE(1695), + [sym_match_expression] = STATE(1695), + [sym_while_expression] = STATE(1695), + [sym_loop_expression] = STATE(1695), + [sym_for_expression] = STATE(1695), + [sym_const_block] = STATE(1695), + [sym_closure_expression] = STATE(1695), + [sym_closure_parameters] = STATE(222), + [sym_label] = STATE(3593), + [sym_break_expression] = STATE(1695), + [sym_continue_expression] = STATE(1695), + [sym_index_expression] = STATE(1695), + [sym_await_expression] = STATE(1695), + [sym_field_expression] = STATE(1583), + [sym_unsafe_block] = STATE(1695), + [sym_async_block] = STATE(1695), + [sym_try_block] = STATE(1695), + [sym_block] = STATE(1695), + [sym__literal] = STATE(1695), + [sym_string_literal] = STATE(1801), + [sym_raw_string_literal] = STATE(1801), + [sym_boolean_literal] = STATE(1801), + [sym_line_comment] = STATE(250), + [sym_block_comment] = STATE(250), + [sym_identifier] = ACTIONS(398), + [anon_sym_LPAREN] = ACTIONS(456), + [anon_sym_LBRACK] = ACTIONS(458), + [anon_sym_LBRACE] = ACTIONS(400), + [anon_sym_STAR] = ACTIONS(993), + [anon_sym_u8] = ACTIONS(404), + [anon_sym_i8] = ACTIONS(404), + [anon_sym_u16] = ACTIONS(404), + [anon_sym_i16] = ACTIONS(404), + [anon_sym_u32] = ACTIONS(404), + [anon_sym_i32] = ACTIONS(404), + [anon_sym_u64] = ACTIONS(404), + [anon_sym_i64] = ACTIONS(404), + [anon_sym_u128] = ACTIONS(404), + [anon_sym_i128] = ACTIONS(404), + [anon_sym_isize] = ACTIONS(404), + [anon_sym_usize] = ACTIONS(404), + [anon_sym_f32] = ACTIONS(404), + [anon_sym_f64] = ACTIONS(404), + [anon_sym_bool] = ACTIONS(404), + [anon_sym_str] = ACTIONS(404), + [anon_sym_char] = ACTIONS(404), + [anon_sym_DASH] = ACTIONS(993), + [anon_sym_BANG] = ACTIONS(993), + [anon_sym_AMP] = ACTIONS(995), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1063), + [anon_sym_COLON_COLON] = ACTIONS(408), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(410), + [anon_sym_break] = ACTIONS(412), + [anon_sym_const] = ACTIONS(414), + [anon_sym_continue] = ACTIONS(416), + [anon_sym_default] = ACTIONS(418), + [anon_sym_for] = ACTIONS(420), + [anon_sym_if] = ACTIONS(422), + [anon_sym_loop] = ACTIONS(424), + [anon_sym_match] = ACTIONS(426), + [anon_sym_return] = ACTIONS(428), + [anon_sym_static] = ACTIONS(430), + [anon_sym_union] = ACTIONS(418), + [anon_sym_unsafe] = ACTIONS(432), + [anon_sym_while] = ACTIONS(434), + [anon_sym_yield] = ACTIONS(436), + [anon_sym_move] = ACTIONS(438), + [anon_sym_try] = ACTIONS(440), + [sym_integer_literal] = ACTIONS(442), + [aux_sym_string_literal_token1] = ACTIONS(444), + [sym_char_literal] = ACTIONS(442), + [anon_sym_true] = ACTIONS(446), + [anon_sym_false] = ACTIONS(446), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(448), + [sym_super] = ACTIONS(450), + [sym_crate] = ACTIONS(450), + [sym_metavariable] = ACTIONS(452), + [sym__raw_string_literal_start] = ACTIONS(454), + [sym_float_literal] = ACTIONS(442), + }, [251] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1590), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2731), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1573), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(236), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), [sym_line_comment] = STATE(251), [sym_block_comment] = STATE(251), - [sym_identifier] = ACTIONS(456), + [sym_identifier] = ACTIONS(466), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), + [anon_sym_u8] = ACTIONS(468), + [anon_sym_i8] = ACTIONS(468), + [anon_sym_u16] = ACTIONS(468), + [anon_sym_i16] = ACTIONS(468), + [anon_sym_u32] = ACTIONS(468), + [anon_sym_i32] = ACTIONS(468), + [anon_sym_u64] = ACTIONS(468), + [anon_sym_i64] = ACTIONS(468), + [anon_sym_u128] = ACTIONS(468), + [anon_sym_i128] = ACTIONS(468), + [anon_sym_isize] = ACTIONS(468), + [anon_sym_usize] = ACTIONS(468), + [anon_sym_f32] = ACTIONS(468), + [anon_sym_f64] = ACTIONS(468), + [anon_sym_bool] = ACTIONS(468), + [anon_sym_str] = ACTIONS(468), + [anon_sym_char] = ACTIONS(468), [anon_sym_DASH] = ACTIONS(973), [anon_sym_BANG] = ACTIONS(973), [anon_sym_AMP] = ACTIONS(975), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1055), - [anon_sym_COLON_COLON] = ACTIONS(462), + [anon_sym_DOT_DOT] = ACTIONS(1059), + [anon_sym_COLON_COLON] = ACTIONS(472), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), [anon_sym_break] = ACTIONS(494), [anon_sym_const] = ACTIONS(348), [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), + [anon_sym_default] = ACTIONS(476), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), [anon_sym_loop] = ACTIONS(356), [anon_sym_match] = ACTIONS(358), [anon_sym_return] = ACTIONS(498), [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), + [anon_sym_union] = ACTIONS(476), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), [anon_sym_yield] = ACTIONS(502), @@ -45024,108 +45032,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), + [sym_self] = ACTIONS(486), + [sym_super] = ACTIONS(488), + [sym_crate] = ACTIONS(488), + [sym_metavariable] = ACTIONS(490), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, [252] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1717), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2731), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1832), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(223), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), [sym_line_comment] = STATE(252), [sym_block_comment] = STATE(252), - [sym_identifier] = ACTIONS(456), + [sym_identifier] = ACTIONS(466), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(1041), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(1041), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_AMP] = ACTIONS(1043), + [anon_sym_STAR] = ACTIONS(1043), + [anon_sym_u8] = ACTIONS(468), + [anon_sym_i8] = ACTIONS(468), + [anon_sym_u16] = ACTIONS(468), + [anon_sym_i16] = ACTIONS(468), + [anon_sym_u32] = ACTIONS(468), + [anon_sym_i32] = ACTIONS(468), + [anon_sym_u64] = ACTIONS(468), + [anon_sym_i64] = ACTIONS(468), + [anon_sym_u128] = ACTIONS(468), + [anon_sym_i128] = ACTIONS(468), + [anon_sym_isize] = ACTIONS(468), + [anon_sym_usize] = ACTIONS(468), + [anon_sym_f32] = ACTIONS(468), + [anon_sym_f64] = ACTIONS(468), + [anon_sym_bool] = ACTIONS(468), + [anon_sym_str] = ACTIONS(468), + [anon_sym_char] = ACTIONS(468), + [anon_sym_DASH] = ACTIONS(1043), + [anon_sym_BANG] = ACTIONS(1043), + [anon_sym_AMP] = ACTIONS(1045), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(462), + [anon_sym_DOT_DOT] = ACTIONS(1049), + [anon_sym_COLON_COLON] = ACTIONS(472), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(464), + [anon_sym_break] = ACTIONS(474), [anon_sym_const] = ACTIONS(348), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(466), + [anon_sym_default] = ACTIONS(476), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), [anon_sym_loop] = ACTIONS(356), [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(468), - [anon_sym_static] = ACTIONS(470), - [anon_sym_union] = ACTIONS(466), + [anon_sym_return] = ACTIONS(478), + [anon_sym_static] = ACTIONS(480), + [anon_sym_union] = ACTIONS(476), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(472), - [anon_sym_move] = ACTIONS(474), + [anon_sym_yield] = ACTIONS(482), + [anon_sym_move] = ACTIONS(484), [anon_sym_try] = ACTIONS(366), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -45134,108 +45142,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), + [sym_self] = ACTIONS(486), + [sym_super] = ACTIONS(488), + [sym_crate] = ACTIONS(488), + [sym_metavariable] = ACTIONS(490), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, [253] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1718), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2731), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1811), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(223), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), [sym_line_comment] = STATE(253), [sym_block_comment] = STATE(253), - [sym_identifier] = ACTIONS(456), + [sym_identifier] = ACTIONS(466), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(1041), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(1041), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_AMP] = ACTIONS(1043), + [anon_sym_STAR] = ACTIONS(1043), + [anon_sym_u8] = ACTIONS(468), + [anon_sym_i8] = ACTIONS(468), + [anon_sym_u16] = ACTIONS(468), + [anon_sym_i16] = ACTIONS(468), + [anon_sym_u32] = ACTIONS(468), + [anon_sym_i32] = ACTIONS(468), + [anon_sym_u64] = ACTIONS(468), + [anon_sym_i64] = ACTIONS(468), + [anon_sym_u128] = ACTIONS(468), + [anon_sym_i128] = ACTIONS(468), + [anon_sym_isize] = ACTIONS(468), + [anon_sym_usize] = ACTIONS(468), + [anon_sym_f32] = ACTIONS(468), + [anon_sym_f64] = ACTIONS(468), + [anon_sym_bool] = ACTIONS(468), + [anon_sym_str] = ACTIONS(468), + [anon_sym_char] = ACTIONS(468), + [anon_sym_DASH] = ACTIONS(1043), + [anon_sym_BANG] = ACTIONS(1043), + [anon_sym_AMP] = ACTIONS(1045), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(462), + [anon_sym_DOT_DOT] = ACTIONS(1049), + [anon_sym_COLON_COLON] = ACTIONS(472), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(464), + [anon_sym_break] = ACTIONS(474), [anon_sym_const] = ACTIONS(348), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(466), + [anon_sym_default] = ACTIONS(476), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), [anon_sym_loop] = ACTIONS(356), [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(468), - [anon_sym_static] = ACTIONS(470), - [anon_sym_union] = ACTIONS(466), + [anon_sym_return] = ACTIONS(478), + [anon_sym_static] = ACTIONS(480), + [anon_sym_union] = ACTIONS(476), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(472), - [anon_sym_move] = ACTIONS(474), + [anon_sym_yield] = ACTIONS(482), + [anon_sym_move] = ACTIONS(484), [anon_sym_try] = ACTIONS(366), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -45244,108 +45252,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), + [sym_self] = ACTIONS(486), + [sym_super] = ACTIONS(488), + [sym_crate] = ACTIONS(488), + [sym_metavariable] = ACTIONS(490), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, [254] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1719), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2731), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1816), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(223), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), [sym_line_comment] = STATE(254), [sym_block_comment] = STATE(254), - [sym_identifier] = ACTIONS(456), + [sym_identifier] = ACTIONS(466), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(1041), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(1041), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_AMP] = ACTIONS(1043), + [anon_sym_STAR] = ACTIONS(1043), + [anon_sym_u8] = ACTIONS(468), + [anon_sym_i8] = ACTIONS(468), + [anon_sym_u16] = ACTIONS(468), + [anon_sym_i16] = ACTIONS(468), + [anon_sym_u32] = ACTIONS(468), + [anon_sym_i32] = ACTIONS(468), + [anon_sym_u64] = ACTIONS(468), + [anon_sym_i64] = ACTIONS(468), + [anon_sym_u128] = ACTIONS(468), + [anon_sym_i128] = ACTIONS(468), + [anon_sym_isize] = ACTIONS(468), + [anon_sym_usize] = ACTIONS(468), + [anon_sym_f32] = ACTIONS(468), + [anon_sym_f64] = ACTIONS(468), + [anon_sym_bool] = ACTIONS(468), + [anon_sym_str] = ACTIONS(468), + [anon_sym_char] = ACTIONS(468), + [anon_sym_DASH] = ACTIONS(1043), + [anon_sym_BANG] = ACTIONS(1043), + [anon_sym_AMP] = ACTIONS(1045), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(462), + [anon_sym_DOT_DOT] = ACTIONS(1049), + [anon_sym_COLON_COLON] = ACTIONS(472), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(464), + [anon_sym_break] = ACTIONS(474), [anon_sym_const] = ACTIONS(348), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(466), + [anon_sym_default] = ACTIONS(476), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), [anon_sym_loop] = ACTIONS(356), [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(468), - [anon_sym_static] = ACTIONS(470), - [anon_sym_union] = ACTIONS(466), + [anon_sym_return] = ACTIONS(478), + [anon_sym_static] = ACTIONS(480), + [anon_sym_union] = ACTIONS(476), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(472), - [anon_sym_move] = ACTIONS(474), + [anon_sym_yield] = ACTIONS(482), + [anon_sym_move] = ACTIONS(484), [anon_sym_try] = ACTIONS(366), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -45354,108 +45362,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), + [sym_self] = ACTIONS(486), + [sym_super] = ACTIONS(488), + [sym_crate] = ACTIONS(488), + [sym_metavariable] = ACTIONS(490), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, [255] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1720), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2731), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1815), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(223), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), [sym_line_comment] = STATE(255), [sym_block_comment] = STATE(255), - [sym_identifier] = ACTIONS(456), + [sym_identifier] = ACTIONS(466), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(1041), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(1041), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_AMP] = ACTIONS(1043), + [anon_sym_STAR] = ACTIONS(1043), + [anon_sym_u8] = ACTIONS(468), + [anon_sym_i8] = ACTIONS(468), + [anon_sym_u16] = ACTIONS(468), + [anon_sym_i16] = ACTIONS(468), + [anon_sym_u32] = ACTIONS(468), + [anon_sym_i32] = ACTIONS(468), + [anon_sym_u64] = ACTIONS(468), + [anon_sym_i64] = ACTIONS(468), + [anon_sym_u128] = ACTIONS(468), + [anon_sym_i128] = ACTIONS(468), + [anon_sym_isize] = ACTIONS(468), + [anon_sym_usize] = ACTIONS(468), + [anon_sym_f32] = ACTIONS(468), + [anon_sym_f64] = ACTIONS(468), + [anon_sym_bool] = ACTIONS(468), + [anon_sym_str] = ACTIONS(468), + [anon_sym_char] = ACTIONS(468), + [anon_sym_DASH] = ACTIONS(1043), + [anon_sym_BANG] = ACTIONS(1043), + [anon_sym_AMP] = ACTIONS(1045), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(462), + [anon_sym_DOT_DOT] = ACTIONS(1049), + [anon_sym_COLON_COLON] = ACTIONS(472), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(464), + [anon_sym_break] = ACTIONS(474), [anon_sym_const] = ACTIONS(348), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(466), + [anon_sym_default] = ACTIONS(476), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), [anon_sym_loop] = ACTIONS(356), [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(468), - [anon_sym_static] = ACTIONS(470), - [anon_sym_union] = ACTIONS(466), + [anon_sym_return] = ACTIONS(478), + [anon_sym_static] = ACTIONS(480), + [anon_sym_union] = ACTIONS(476), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(472), - [anon_sym_move] = ACTIONS(474), + [anon_sym_yield] = ACTIONS(482), + [anon_sym_move] = ACTIONS(484), [anon_sym_try] = ACTIONS(366), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -45464,108 +45472,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), + [sym_self] = ACTIONS(486), + [sym_super] = ACTIONS(488), + [sym_crate] = ACTIONS(488), + [sym_metavariable] = ACTIONS(490), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, [256] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1721), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2731), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1797), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(223), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), [sym_line_comment] = STATE(256), [sym_block_comment] = STATE(256), - [sym_identifier] = ACTIONS(456), + [sym_identifier] = ACTIONS(466), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(1041), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(1041), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_AMP] = ACTIONS(1043), + [anon_sym_STAR] = ACTIONS(1043), + [anon_sym_u8] = ACTIONS(468), + [anon_sym_i8] = ACTIONS(468), + [anon_sym_u16] = ACTIONS(468), + [anon_sym_i16] = ACTIONS(468), + [anon_sym_u32] = ACTIONS(468), + [anon_sym_i32] = ACTIONS(468), + [anon_sym_u64] = ACTIONS(468), + [anon_sym_i64] = ACTIONS(468), + [anon_sym_u128] = ACTIONS(468), + [anon_sym_i128] = ACTIONS(468), + [anon_sym_isize] = ACTIONS(468), + [anon_sym_usize] = ACTIONS(468), + [anon_sym_f32] = ACTIONS(468), + [anon_sym_f64] = ACTIONS(468), + [anon_sym_bool] = ACTIONS(468), + [anon_sym_str] = ACTIONS(468), + [anon_sym_char] = ACTIONS(468), + [anon_sym_DASH] = ACTIONS(1043), + [anon_sym_BANG] = ACTIONS(1043), + [anon_sym_AMP] = ACTIONS(1045), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(462), + [anon_sym_DOT_DOT] = ACTIONS(1049), + [anon_sym_COLON_COLON] = ACTIONS(472), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(464), + [anon_sym_break] = ACTIONS(474), [anon_sym_const] = ACTIONS(348), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(466), + [anon_sym_default] = ACTIONS(476), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), [anon_sym_loop] = ACTIONS(356), [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(468), - [anon_sym_static] = ACTIONS(470), - [anon_sym_union] = ACTIONS(466), + [anon_sym_return] = ACTIONS(478), + [anon_sym_static] = ACTIONS(480), + [anon_sym_union] = ACTIONS(476), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(472), - [anon_sym_move] = ACTIONS(474), + [anon_sym_yield] = ACTIONS(482), + [anon_sym_move] = ACTIONS(484), [anon_sym_try] = ACTIONS(366), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -45574,214 +45582,214 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), + [sym_self] = ACTIONS(486), + [sym_super] = ACTIONS(488), + [sym_crate] = ACTIONS(488), + [sym_metavariable] = ACTIONS(490), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, [257] = { - [sym_bracketed_type] = STATE(3498), - [sym_generic_function] = STATE(1637), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1604), - [sym__expression] = STATE(1643), - [sym_macro_invocation] = STATE(1641), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3100), - [sym_range_expression] = STATE(1639), - [sym_unary_expression] = STATE(1637), - [sym_try_expression] = STATE(1637), - [sym_reference_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_assignment_expression] = STATE(1637), - [sym_compound_assignment_expr] = STATE(1637), - [sym_type_cast_expression] = STATE(1637), - [sym_return_expression] = STATE(1637), - [sym_yield_expression] = STATE(1637), - [sym_call_expression] = STATE(1637), - [sym_array_expression] = STATE(1637), - [sym_parenthesized_expression] = STATE(1637), - [sym_tuple_expression] = STATE(1637), - [sym_unit_expression] = STATE(1637), - [sym_struct_expression] = STATE(1637), - [sym_if_expression] = STATE(1637), - [sym_match_expression] = STATE(1637), - [sym_while_expression] = STATE(1637), - [sym_loop_expression] = STATE(1637), - [sym_for_expression] = STATE(1637), - [sym_const_block] = STATE(1637), - [sym_closure_expression] = STATE(1637), - [sym_closure_parameters] = STATE(237), - [sym_label] = STATE(3585), - [sym_break_expression] = STATE(1637), - [sym_continue_expression] = STATE(1637), - [sym_index_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_field_expression] = STATE(1620), - [sym_unsafe_block] = STATE(1637), - [sym_async_block] = STATE(1637), - [sym_try_block] = STATE(1637), - [sym_block] = STATE(1637), - [sym__literal] = STATE(1637), - [sym_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_boolean_literal] = STATE(1778), [sym_line_comment] = STATE(257), [sym_block_comment] = STATE(257), - [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_STAR] = ACTIONS(1021), - [anon_sym_u8] = ACTIONS(404), - [anon_sym_i8] = ACTIONS(404), - [anon_sym_u16] = ACTIONS(404), - [anon_sym_i16] = ACTIONS(404), - [anon_sym_u32] = ACTIONS(404), - [anon_sym_i32] = ACTIONS(404), - [anon_sym_u64] = ACTIONS(404), - [anon_sym_i64] = ACTIONS(404), - [anon_sym_u128] = ACTIONS(404), - [anon_sym_i128] = ACTIONS(404), - [anon_sym_isize] = ACTIONS(404), - [anon_sym_usize] = ACTIONS(404), - [anon_sym_f32] = ACTIONS(404), - [anon_sym_f64] = ACTIONS(404), - [anon_sym_bool] = ACTIONS(404), - [anon_sym_str] = ACTIONS(404), - [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_BANG] = ACTIONS(1021), - [anon_sym_AMP] = ACTIONS(1023), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1039), - [anon_sym_COLON_COLON] = ACTIONS(408), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_const] = ACTIONS(414), - [anon_sym_continue] = ACTIONS(416), - [anon_sym_default] = ACTIONS(418), - [anon_sym_for] = ACTIONS(420), - [anon_sym_if] = ACTIONS(422), - [anon_sym_loop] = ACTIONS(424), - [anon_sym_match] = ACTIONS(426), - [anon_sym_return] = ACTIONS(428), - [anon_sym_static] = ACTIONS(430), - [anon_sym_union] = ACTIONS(418), - [anon_sym_unsafe] = ACTIONS(432), - [anon_sym_while] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_move] = ACTIONS(438), - [anon_sym_try] = ACTIONS(440), - [sym_integer_literal] = ACTIONS(442), - [aux_sym_string_literal_token1] = ACTIONS(444), - [sym_char_literal] = ACTIONS(442), - [anon_sym_true] = ACTIONS(446), - [anon_sym_false] = ACTIONS(446), - [anon_sym_SLASH_SLASH] = ACTIONS(101), + [ts_builtin_sym_end] = ACTIONS(1206), + [sym_identifier] = ACTIONS(1208), + [anon_sym_SEMI] = ACTIONS(1206), + [anon_sym_macro_rules_BANG] = ACTIONS(1206), + [anon_sym_LPAREN] = ACTIONS(1206), + [anon_sym_LBRACK] = ACTIONS(1206), + [anon_sym_LBRACE] = ACTIONS(1206), + [anon_sym_RBRACE] = ACTIONS(1206), + [anon_sym_PLUS] = ACTIONS(1208), + [anon_sym_STAR] = ACTIONS(1208), + [anon_sym_QMARK] = ACTIONS(1206), + [anon_sym_u8] = ACTIONS(1208), + [anon_sym_i8] = ACTIONS(1208), + [anon_sym_u16] = ACTIONS(1208), + [anon_sym_i16] = ACTIONS(1208), + [anon_sym_u32] = ACTIONS(1208), + [anon_sym_i32] = ACTIONS(1208), + [anon_sym_u64] = ACTIONS(1208), + [anon_sym_i64] = ACTIONS(1208), + [anon_sym_u128] = ACTIONS(1208), + [anon_sym_i128] = ACTIONS(1208), + [anon_sym_isize] = ACTIONS(1208), + [anon_sym_usize] = ACTIONS(1208), + [anon_sym_f32] = ACTIONS(1208), + [anon_sym_f64] = ACTIONS(1208), + [anon_sym_bool] = ACTIONS(1208), + [anon_sym_str] = ACTIONS(1208), + [anon_sym_char] = ACTIONS(1208), + [anon_sym_DASH] = ACTIONS(1208), + [anon_sym_SLASH] = ACTIONS(1208), + [anon_sym_PERCENT] = ACTIONS(1208), + [anon_sym_CARET] = ACTIONS(1208), + [anon_sym_BANG] = ACTIONS(1208), + [anon_sym_AMP] = ACTIONS(1208), + [anon_sym_PIPE] = ACTIONS(1208), + [anon_sym_AMP_AMP] = ACTIONS(1206), + [anon_sym_PIPE_PIPE] = ACTIONS(1206), + [anon_sym_LT_LT] = ACTIONS(1208), + [anon_sym_GT_GT] = ACTIONS(1208), + [anon_sym_PLUS_EQ] = ACTIONS(1206), + [anon_sym_DASH_EQ] = ACTIONS(1206), + [anon_sym_STAR_EQ] = ACTIONS(1206), + [anon_sym_SLASH_EQ] = ACTIONS(1206), + [anon_sym_PERCENT_EQ] = ACTIONS(1206), + [anon_sym_CARET_EQ] = ACTIONS(1206), + [anon_sym_AMP_EQ] = ACTIONS(1206), + [anon_sym_PIPE_EQ] = ACTIONS(1206), + [anon_sym_LT_LT_EQ] = ACTIONS(1206), + [anon_sym_GT_GT_EQ] = ACTIONS(1206), + [anon_sym_EQ] = ACTIONS(1208), + [anon_sym_EQ_EQ] = ACTIONS(1206), + [anon_sym_BANG_EQ] = ACTIONS(1206), + [anon_sym_GT] = ACTIONS(1208), + [anon_sym_LT] = ACTIONS(1208), + [anon_sym_GT_EQ] = ACTIONS(1206), + [anon_sym_LT_EQ] = ACTIONS(1206), + [anon_sym_DOT] = ACTIONS(1208), + [anon_sym_DOT_DOT] = ACTIONS(1208), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1206), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1206), + [anon_sym_COLON_COLON] = ACTIONS(1206), + [anon_sym_POUND] = ACTIONS(1206), + [anon_sym_SQUOTE] = ACTIONS(1208), + [anon_sym_as] = ACTIONS(1208), + [anon_sym_async] = ACTIONS(1208), + [anon_sym_break] = ACTIONS(1208), + [anon_sym_const] = ACTIONS(1208), + [anon_sym_continue] = ACTIONS(1208), + [anon_sym_default] = ACTIONS(1208), + [anon_sym_enum] = ACTIONS(1208), + [anon_sym_fn] = ACTIONS(1208), + [anon_sym_for] = ACTIONS(1208), + [anon_sym_if] = ACTIONS(1208), + [anon_sym_impl] = ACTIONS(1208), + [anon_sym_let] = ACTIONS(1208), + [anon_sym_loop] = ACTIONS(1208), + [anon_sym_match] = ACTIONS(1208), + [anon_sym_mod] = ACTIONS(1208), + [anon_sym_pub] = ACTIONS(1208), + [anon_sym_return] = ACTIONS(1208), + [anon_sym_static] = ACTIONS(1208), + [anon_sym_struct] = ACTIONS(1208), + [anon_sym_trait] = ACTIONS(1208), + [anon_sym_type] = ACTIONS(1208), + [anon_sym_union] = ACTIONS(1208), + [anon_sym_unsafe] = ACTIONS(1208), + [anon_sym_use] = ACTIONS(1208), + [anon_sym_while] = ACTIONS(1208), + [anon_sym_extern] = ACTIONS(1208), + [anon_sym_else] = ACTIONS(1208), + [anon_sym_yield] = ACTIONS(1208), + [anon_sym_move] = ACTIONS(1208), + [anon_sym_try] = ACTIONS(1208), + [sym_integer_literal] = ACTIONS(1206), + [aux_sym_string_literal_token1] = ACTIONS(1206), + [sym_char_literal] = ACTIONS(1206), + [anon_sym_true] = ACTIONS(1208), + [anon_sym_false] = ACTIONS(1208), + [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(448), - [sym_super] = ACTIONS(450), - [sym_crate] = ACTIONS(450), - [sym_metavariable] = ACTIONS(452), - [sym__raw_string_literal_start] = ACTIONS(454), - [sym_float_literal] = ACTIONS(442), + [sym_self] = ACTIONS(1208), + [sym_super] = ACTIONS(1208), + [sym_crate] = ACTIONS(1208), + [sym_metavariable] = ACTIONS(1206), + [sym__raw_string_literal_start] = ACTIONS(1206), + [sym_float_literal] = ACTIONS(1206), }, [258] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1579), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2731), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1602), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(236), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), [sym_line_comment] = STATE(258), [sym_block_comment] = STATE(258), - [sym_identifier] = ACTIONS(456), + [sym_identifier] = ACTIONS(466), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), + [anon_sym_u8] = ACTIONS(468), + [anon_sym_i8] = ACTIONS(468), + [anon_sym_u16] = ACTIONS(468), + [anon_sym_i16] = ACTIONS(468), + [anon_sym_u32] = ACTIONS(468), + [anon_sym_i32] = ACTIONS(468), + [anon_sym_u64] = ACTIONS(468), + [anon_sym_i64] = ACTIONS(468), + [anon_sym_u128] = ACTIONS(468), + [anon_sym_i128] = ACTIONS(468), + [anon_sym_isize] = ACTIONS(468), + [anon_sym_usize] = ACTIONS(468), + [anon_sym_f32] = ACTIONS(468), + [anon_sym_f64] = ACTIONS(468), + [anon_sym_bool] = ACTIONS(468), + [anon_sym_str] = ACTIONS(468), + [anon_sym_char] = ACTIONS(468), [anon_sym_DASH] = ACTIONS(973), [anon_sym_BANG] = ACTIONS(973), [anon_sym_AMP] = ACTIONS(975), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(977), - [anon_sym_COLON_COLON] = ACTIONS(462), + [anon_sym_COLON_COLON] = ACTIONS(472), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), [anon_sym_break] = ACTIONS(494), [anon_sym_const] = ACTIONS(348), [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), + [anon_sym_default] = ACTIONS(476), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), [anon_sym_loop] = ACTIONS(356), [anon_sym_match] = ACTIONS(358), [anon_sym_return] = ACTIONS(498), [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), + [anon_sym_union] = ACTIONS(476), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), [anon_sym_yield] = ACTIONS(502), @@ -45794,60 +45802,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), + [sym_self] = ACTIONS(486), + [sym_super] = ACTIONS(488), + [sym_crate] = ACTIONS(488), + [sym_metavariable] = ACTIONS(490), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, [259] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1839), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1849), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1268), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), [sym_line_comment] = STATE(259), [sym_block_comment] = STATE(259), [sym_identifier] = ACTIONS(334), @@ -45912,54 +45920,164 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(95), }, [260] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1860), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3506), + [sym_generic_function] = STATE(1695), + [sym_generic_type_with_turbofish] = STATE(2844), + [sym__expression_except_range] = STATE(1590), + [sym__expression] = STATE(1763), + [sym_macro_invocation] = STATE(1705), + [sym_scoped_identifier] = STATE(1568), + [sym_scoped_type_identifier_in_expression_position] = STATE(3132), + [sym_range_expression] = STATE(1699), + [sym_unary_expression] = STATE(1695), + [sym_try_expression] = STATE(1695), + [sym_reference_expression] = STATE(1695), + [sym_binary_expression] = STATE(1695), + [sym_assignment_expression] = STATE(1695), + [sym_compound_assignment_expr] = STATE(1695), + [sym_type_cast_expression] = STATE(1695), + [sym_return_expression] = STATE(1695), + [sym_yield_expression] = STATE(1695), + [sym_call_expression] = STATE(1695), + [sym_array_expression] = STATE(1695), + [sym_parenthesized_expression] = STATE(1695), + [sym_tuple_expression] = STATE(1695), + [sym_unit_expression] = STATE(1695), + [sym_struct_expression] = STATE(1695), + [sym_if_expression] = STATE(1695), + [sym_match_expression] = STATE(1695), + [sym_while_expression] = STATE(1695), + [sym_loop_expression] = STATE(1695), + [sym_for_expression] = STATE(1695), + [sym_const_block] = STATE(1695), + [sym_closure_expression] = STATE(1695), + [sym_closure_parameters] = STATE(222), + [sym_label] = STATE(3593), + [sym_break_expression] = STATE(1695), + [sym_continue_expression] = STATE(1695), + [sym_index_expression] = STATE(1695), + [sym_await_expression] = STATE(1695), + [sym_field_expression] = STATE(1583), + [sym_unsafe_block] = STATE(1695), + [sym_async_block] = STATE(1695), + [sym_try_block] = STATE(1695), + [sym_block] = STATE(1695), + [sym__literal] = STATE(1695), + [sym_string_literal] = STATE(1801), + [sym_raw_string_literal] = STATE(1801), + [sym_boolean_literal] = STATE(1801), [sym_line_comment] = STATE(260), [sym_block_comment] = STATE(260), + [sym_identifier] = ACTIONS(398), + [anon_sym_LPAREN] = ACTIONS(456), + [anon_sym_LBRACK] = ACTIONS(458), + [anon_sym_LBRACE] = ACTIONS(400), + [anon_sym_STAR] = ACTIONS(993), + [anon_sym_u8] = ACTIONS(404), + [anon_sym_i8] = ACTIONS(404), + [anon_sym_u16] = ACTIONS(404), + [anon_sym_i16] = ACTIONS(404), + [anon_sym_u32] = ACTIONS(404), + [anon_sym_i32] = ACTIONS(404), + [anon_sym_u64] = ACTIONS(404), + [anon_sym_i64] = ACTIONS(404), + [anon_sym_u128] = ACTIONS(404), + [anon_sym_i128] = ACTIONS(404), + [anon_sym_isize] = ACTIONS(404), + [anon_sym_usize] = ACTIONS(404), + [anon_sym_f32] = ACTIONS(404), + [anon_sym_f64] = ACTIONS(404), + [anon_sym_bool] = ACTIONS(404), + [anon_sym_str] = ACTIONS(404), + [anon_sym_char] = ACTIONS(404), + [anon_sym_DASH] = ACTIONS(993), + [anon_sym_BANG] = ACTIONS(993), + [anon_sym_AMP] = ACTIONS(995), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1063), + [anon_sym_COLON_COLON] = ACTIONS(408), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(410), + [anon_sym_break] = ACTIONS(412), + [anon_sym_const] = ACTIONS(414), + [anon_sym_continue] = ACTIONS(416), + [anon_sym_default] = ACTIONS(418), + [anon_sym_for] = ACTIONS(420), + [anon_sym_if] = ACTIONS(422), + [anon_sym_loop] = ACTIONS(424), + [anon_sym_match] = ACTIONS(426), + [anon_sym_return] = ACTIONS(428), + [anon_sym_static] = ACTIONS(430), + [anon_sym_union] = ACTIONS(418), + [anon_sym_unsafe] = ACTIONS(432), + [anon_sym_while] = ACTIONS(434), + [anon_sym_yield] = ACTIONS(436), + [anon_sym_move] = ACTIONS(438), + [anon_sym_try] = ACTIONS(440), + [sym_integer_literal] = ACTIONS(442), + [aux_sym_string_literal_token1] = ACTIONS(444), + [sym_char_literal] = ACTIONS(442), + [anon_sym_true] = ACTIONS(446), + [anon_sym_false] = ACTIONS(446), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(448), + [sym_super] = ACTIONS(450), + [sym_crate] = ACTIONS(450), + [sym_metavariable] = ACTIONS(452), + [sym__raw_string_literal_start] = ACTIONS(454), + [sym_float_literal] = ACTIONS(442), + }, + [261] = { + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1452), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1268), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), + [sym_line_comment] = STATE(261), + [sym_block_comment] = STATE(261), [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -45987,7 +46105,7 @@ 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(1055), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), @@ -46021,163 +46139,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [261] = { - [sym_line_comment] = STATE(261), - [sym_block_comment] = STATE(261), - [ts_builtin_sym_end] = ACTIONS(1206), - [sym_identifier] = ACTIONS(1208), - [anon_sym_SEMI] = ACTIONS(1206), - [anon_sym_macro_rules_BANG] = ACTIONS(1206), - [anon_sym_LPAREN] = ACTIONS(1206), - [anon_sym_LBRACK] = ACTIONS(1206), - [anon_sym_LBRACE] = ACTIONS(1206), - [anon_sym_RBRACE] = ACTIONS(1206), - [anon_sym_PLUS] = ACTIONS(1208), - [anon_sym_STAR] = ACTIONS(1208), - [anon_sym_QMARK] = ACTIONS(1206), - [anon_sym_u8] = ACTIONS(1208), - [anon_sym_i8] = ACTIONS(1208), - [anon_sym_u16] = ACTIONS(1208), - [anon_sym_i16] = ACTIONS(1208), - [anon_sym_u32] = ACTIONS(1208), - [anon_sym_i32] = ACTIONS(1208), - [anon_sym_u64] = ACTIONS(1208), - [anon_sym_i64] = ACTIONS(1208), - [anon_sym_u128] = ACTIONS(1208), - [anon_sym_i128] = ACTIONS(1208), - [anon_sym_isize] = ACTIONS(1208), - [anon_sym_usize] = ACTIONS(1208), - [anon_sym_f32] = ACTIONS(1208), - [anon_sym_f64] = ACTIONS(1208), - [anon_sym_bool] = ACTIONS(1208), - [anon_sym_str] = ACTIONS(1208), - [anon_sym_char] = ACTIONS(1208), - [anon_sym_DASH] = ACTIONS(1208), - [anon_sym_SLASH] = ACTIONS(1208), - [anon_sym_PERCENT] = ACTIONS(1208), - [anon_sym_CARET] = ACTIONS(1208), - [anon_sym_BANG] = ACTIONS(1208), - [anon_sym_AMP] = ACTIONS(1208), - [anon_sym_PIPE] = ACTIONS(1208), - [anon_sym_AMP_AMP] = ACTIONS(1206), - [anon_sym_PIPE_PIPE] = ACTIONS(1206), - [anon_sym_LT_LT] = ACTIONS(1208), - [anon_sym_GT_GT] = ACTIONS(1208), - [anon_sym_PLUS_EQ] = ACTIONS(1206), - [anon_sym_DASH_EQ] = ACTIONS(1206), - [anon_sym_STAR_EQ] = ACTIONS(1206), - [anon_sym_SLASH_EQ] = ACTIONS(1206), - [anon_sym_PERCENT_EQ] = ACTIONS(1206), - [anon_sym_CARET_EQ] = ACTIONS(1206), - [anon_sym_AMP_EQ] = ACTIONS(1206), - [anon_sym_PIPE_EQ] = ACTIONS(1206), - [anon_sym_LT_LT_EQ] = ACTIONS(1206), - [anon_sym_GT_GT_EQ] = ACTIONS(1206), - [anon_sym_EQ] = ACTIONS(1208), - [anon_sym_EQ_EQ] = ACTIONS(1206), - [anon_sym_BANG_EQ] = ACTIONS(1206), - [anon_sym_GT] = ACTIONS(1208), - [anon_sym_LT] = ACTIONS(1208), - [anon_sym_GT_EQ] = ACTIONS(1206), - [anon_sym_LT_EQ] = ACTIONS(1206), - [anon_sym_DOT] = ACTIONS(1208), - [anon_sym_DOT_DOT] = ACTIONS(1208), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1206), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1206), - [anon_sym_COLON_COLON] = ACTIONS(1206), - [anon_sym_POUND] = ACTIONS(1206), - [anon_sym_SQUOTE] = ACTIONS(1208), - [anon_sym_as] = ACTIONS(1208), - [anon_sym_async] = ACTIONS(1208), - [anon_sym_break] = ACTIONS(1208), - [anon_sym_const] = ACTIONS(1208), - [anon_sym_continue] = ACTIONS(1208), - [anon_sym_default] = ACTIONS(1208), - [anon_sym_enum] = ACTIONS(1208), - [anon_sym_fn] = ACTIONS(1208), - [anon_sym_for] = ACTIONS(1208), - [anon_sym_if] = ACTIONS(1208), - [anon_sym_impl] = ACTIONS(1208), - [anon_sym_let] = ACTIONS(1208), - [anon_sym_loop] = ACTIONS(1208), - [anon_sym_match] = ACTIONS(1208), - [anon_sym_mod] = ACTIONS(1208), - [anon_sym_pub] = ACTIONS(1208), - [anon_sym_return] = ACTIONS(1208), - [anon_sym_static] = ACTIONS(1208), - [anon_sym_struct] = ACTIONS(1208), - [anon_sym_trait] = ACTIONS(1208), - [anon_sym_type] = ACTIONS(1208), - [anon_sym_union] = ACTIONS(1208), - [anon_sym_unsafe] = ACTIONS(1208), - [anon_sym_use] = ACTIONS(1208), - [anon_sym_while] = ACTIONS(1208), - [anon_sym_extern] = ACTIONS(1208), - [anon_sym_else] = ACTIONS(1208), - [anon_sym_yield] = ACTIONS(1208), - [anon_sym_move] = ACTIONS(1208), - [anon_sym_try] = ACTIONS(1208), - [sym_integer_literal] = ACTIONS(1206), - [aux_sym_string_literal_token1] = ACTIONS(1206), - [sym_char_literal] = ACTIONS(1206), - [anon_sym_true] = ACTIONS(1208), - [anon_sym_false] = ACTIONS(1208), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1208), - [sym_super] = ACTIONS(1208), - [sym_crate] = ACTIONS(1208), - [sym_metavariable] = ACTIONS(1206), - [sym__raw_string_literal_start] = ACTIONS(1206), - [sym_float_literal] = ACTIONS(1206), - }, [262] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1867), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1646), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1268), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), [sym_line_comment] = STATE(262), [sym_block_comment] = STATE(262), [sym_identifier] = ACTIONS(334), @@ -46242,58 +46250,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(95), }, [263] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1873), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(464), - [sym_match_expression] = STATE(464), - [sym_while_expression] = STATE(464), - [sym_loop_expression] = STATE(464), - [sym_for_expression] = STATE(464), - [sym_const_block] = STATE(464), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3579), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(464), - [sym_async_block] = STATE(464), - [sym_try_block] = STATE(464), - [sym_block] = STATE(464), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1844), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1268), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), [sym_line_comment] = STATE(263), [sym_block_comment] = STATE(263), [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(1210), + [anon_sym_LBRACE] = ACTIONS(338), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -46320,23 +46328,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(1212), + [anon_sym_async] = ACTIONS(346), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(1214), + [anon_sym_const] = ACTIONS(348), [anon_sym_continue] = ACTIONS(45), [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(1216), - [anon_sym_if] = ACTIONS(1218), - [anon_sym_loop] = ACTIONS(1220), - [anon_sym_match] = ACTIONS(1222), + [anon_sym_for] = ACTIONS(352), + [anon_sym_if] = ACTIONS(354), + [anon_sym_loop] = ACTIONS(356), + [anon_sym_match] = ACTIONS(358), [anon_sym_return] = ACTIONS(69), [anon_sym_static] = ACTIONS(360), [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(1224), - [anon_sym_while] = ACTIONS(1226), + [anon_sym_unsafe] = ACTIONS(362), + [anon_sym_while] = ACTIONS(364), [anon_sym_yield] = ACTIONS(89), [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(1228), + [anon_sym_try] = ACTIONS(366), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), [sym_char_literal] = ACTIONS(95), @@ -46352,210 +46360,210 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(95), }, [264] = { - [sym_bracketed_type] = STATE(3498), - [sym_generic_function] = STATE(1637), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1604), - [sym__expression] = STATE(1659), - [sym_macro_invocation] = STATE(1641), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3100), - [sym_range_expression] = STATE(1639), - [sym_unary_expression] = STATE(1637), - [sym_try_expression] = STATE(1637), - [sym_reference_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_assignment_expression] = STATE(1637), - [sym_compound_assignment_expr] = STATE(1637), - [sym_type_cast_expression] = STATE(1637), - [sym_return_expression] = STATE(1637), - [sym_yield_expression] = STATE(1637), - [sym_call_expression] = STATE(1637), - [sym_array_expression] = STATE(1637), - [sym_parenthesized_expression] = STATE(1637), - [sym_tuple_expression] = STATE(1637), - [sym_unit_expression] = STATE(1637), - [sym_struct_expression] = STATE(1637), - [sym_if_expression] = STATE(1637), - [sym_match_expression] = STATE(1637), - [sym_while_expression] = STATE(1637), - [sym_loop_expression] = STATE(1637), - [sym_for_expression] = STATE(1637), - [sym_const_block] = STATE(1637), - [sym_closure_expression] = STATE(1637), - [sym_closure_parameters] = STATE(237), - [sym_label] = STATE(3585), - [sym_break_expression] = STATE(1637), - [sym_continue_expression] = STATE(1637), - [sym_index_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_field_expression] = STATE(1620), - [sym_unsafe_block] = STATE(1637), - [sym_async_block] = STATE(1637), - [sym_try_block] = STATE(1637), - [sym_block] = STATE(1637), - [sym__literal] = STATE(1637), - [sym_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_boolean_literal] = STATE(1778), + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1493), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1268), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), [sym_line_comment] = STATE(264), [sym_block_comment] = STATE(264), - [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_STAR] = ACTIONS(1021), - [anon_sym_u8] = ACTIONS(404), - [anon_sym_i8] = ACTIONS(404), - [anon_sym_u16] = ACTIONS(404), - [anon_sym_i16] = ACTIONS(404), - [anon_sym_u32] = ACTIONS(404), - [anon_sym_i32] = ACTIONS(404), - [anon_sym_u64] = ACTIONS(404), - [anon_sym_i64] = ACTIONS(404), - [anon_sym_u128] = ACTIONS(404), - [anon_sym_i128] = ACTIONS(404), - [anon_sym_isize] = ACTIONS(404), - [anon_sym_usize] = ACTIONS(404), - [anon_sym_f32] = ACTIONS(404), - [anon_sym_f64] = ACTIONS(404), - [anon_sym_bool] = ACTIONS(404), - [anon_sym_str] = ACTIONS(404), - [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_BANG] = ACTIONS(1021), - [anon_sym_AMP] = ACTIONS(1023), + [sym_identifier] = ACTIONS(334), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(338), + [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(1039), - [anon_sym_COLON_COLON] = ACTIONS(408), + [anon_sym_DOT_DOT] = ACTIONS(1055), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_const] = ACTIONS(414), - [anon_sym_continue] = ACTIONS(416), - [anon_sym_default] = ACTIONS(418), - [anon_sym_for] = ACTIONS(420), - [anon_sym_if] = ACTIONS(422), - [anon_sym_loop] = ACTIONS(424), - [anon_sym_match] = ACTIONS(426), - [anon_sym_return] = ACTIONS(428), - [anon_sym_static] = ACTIONS(430), - [anon_sym_union] = ACTIONS(418), - [anon_sym_unsafe] = ACTIONS(432), - [anon_sym_while] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_move] = ACTIONS(438), - [anon_sym_try] = ACTIONS(440), - [sym_integer_literal] = ACTIONS(442), - [aux_sym_string_literal_token1] = ACTIONS(444), - [sym_char_literal] = ACTIONS(442), - [anon_sym_true] = ACTIONS(446), - [anon_sym_false] = ACTIONS(446), + [anon_sym_async] = ACTIONS(346), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(348), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(350), + [anon_sym_for] = ACTIONS(352), + [anon_sym_if] = ACTIONS(354), + [anon_sym_loop] = ACTIONS(356), + [anon_sym_match] = ACTIONS(358), + [anon_sym_return] = ACTIONS(69), + [anon_sym_static] = ACTIONS(360), + [anon_sym_union] = ACTIONS(350), + [anon_sym_unsafe] = ACTIONS(362), + [anon_sym_while] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(366), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(448), - [sym_super] = ACTIONS(450), - [sym_crate] = ACTIONS(450), - [sym_metavariable] = ACTIONS(452), - [sym__raw_string_literal_start] = ACTIONS(454), - [sym_float_literal] = ACTIONS(442), + [sym_self] = ACTIONS(107), + [sym_super] = ACTIONS(109), + [sym_crate] = ACTIONS(109), + [sym_metavariable] = ACTIONS(113), + [sym__raw_string_literal_start] = ACTIONS(115), + [sym_float_literal] = ACTIONS(95), }, [265] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1353), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1414), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1268), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), [sym_line_comment] = STATE(265), [sym_block_comment] = STATE(265), - [sym_identifier] = ACTIONS(456), + [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), + [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(1055), - [anon_sym_COLON_COLON] = ACTIONS(462), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(350), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), [anon_sym_loop] = ACTIONS(356), [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), + [anon_sym_return] = ACTIONS(69), + [anon_sym_static] = ACTIONS(360), + [anon_sym_union] = ACTIONS(350), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), [anon_sym_try] = ACTIONS(366), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -46564,1167 +46572,1167 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), + [sym_self] = ACTIONS(107), + [sym_super] = ACTIONS(109), + [sym_crate] = ACTIONS(109), + [sym_metavariable] = ACTIONS(113), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, [266] = { - [sym_bracketed_type] = STATE(3498), - [sym_generic_function] = STATE(1637), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1604), - [sym__expression] = STATE(1753), - [sym_macro_invocation] = STATE(1641), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3100), - [sym_range_expression] = STATE(1639), - [sym_unary_expression] = STATE(1637), - [sym_try_expression] = STATE(1637), - [sym_reference_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_assignment_expression] = STATE(1637), - [sym_compound_assignment_expr] = STATE(1637), - [sym_type_cast_expression] = STATE(1637), - [sym_return_expression] = STATE(1637), - [sym_yield_expression] = STATE(1637), - [sym_call_expression] = STATE(1637), - [sym_array_expression] = STATE(1637), - [sym_parenthesized_expression] = STATE(1637), - [sym_tuple_expression] = STATE(1637), - [sym_unit_expression] = STATE(1637), - [sym_struct_expression] = STATE(1637), - [sym_if_expression] = STATE(1637), - [sym_match_expression] = STATE(1637), - [sym_while_expression] = STATE(1637), - [sym_loop_expression] = STATE(1637), - [sym_for_expression] = STATE(1637), - [sym_const_block] = STATE(1637), - [sym_closure_expression] = STATE(1637), - [sym_closure_parameters] = STATE(237), - [sym_label] = STATE(3585), - [sym_break_expression] = STATE(1637), - [sym_continue_expression] = STATE(1637), - [sym_index_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_field_expression] = STATE(1620), - [sym_unsafe_block] = STATE(1637), - [sym_async_block] = STATE(1637), - [sym_try_block] = STATE(1637), - [sym_block] = STATE(1637), - [sym__literal] = STATE(1637), - [sym_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_boolean_literal] = STATE(1778), + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1494), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1268), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), [sym_line_comment] = STATE(266), [sym_block_comment] = STATE(266), - [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_STAR] = ACTIONS(1021), - [anon_sym_u8] = ACTIONS(404), - [anon_sym_i8] = ACTIONS(404), - [anon_sym_u16] = ACTIONS(404), - [anon_sym_i16] = ACTIONS(404), - [anon_sym_u32] = ACTIONS(404), - [anon_sym_i32] = ACTIONS(404), - [anon_sym_u64] = ACTIONS(404), - [anon_sym_i64] = ACTIONS(404), - [anon_sym_u128] = ACTIONS(404), - [anon_sym_i128] = ACTIONS(404), - [anon_sym_isize] = ACTIONS(404), - [anon_sym_usize] = ACTIONS(404), - [anon_sym_f32] = ACTIONS(404), - [anon_sym_f64] = ACTIONS(404), - [anon_sym_bool] = ACTIONS(404), - [anon_sym_str] = ACTIONS(404), - [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_BANG] = ACTIONS(1021), - [anon_sym_AMP] = ACTIONS(1023), + [sym_identifier] = ACTIONS(334), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(338), + [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(1039), - [anon_sym_COLON_COLON] = ACTIONS(408), + [anon_sym_DOT_DOT] = ACTIONS(1055), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_const] = ACTIONS(414), - [anon_sym_continue] = ACTIONS(416), - [anon_sym_default] = ACTIONS(418), - [anon_sym_for] = ACTIONS(420), - [anon_sym_if] = ACTIONS(422), - [anon_sym_loop] = ACTIONS(424), - [anon_sym_match] = ACTIONS(426), - [anon_sym_return] = ACTIONS(428), - [anon_sym_static] = ACTIONS(430), - [anon_sym_union] = ACTIONS(418), - [anon_sym_unsafe] = ACTIONS(432), - [anon_sym_while] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_move] = ACTIONS(438), - [anon_sym_try] = ACTIONS(440), - [sym_integer_literal] = ACTIONS(442), - [aux_sym_string_literal_token1] = ACTIONS(444), - [sym_char_literal] = ACTIONS(442), - [anon_sym_true] = ACTIONS(446), - [anon_sym_false] = ACTIONS(446), + [anon_sym_async] = ACTIONS(346), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(348), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(350), + [anon_sym_for] = ACTIONS(352), + [anon_sym_if] = ACTIONS(354), + [anon_sym_loop] = ACTIONS(356), + [anon_sym_match] = ACTIONS(358), + [anon_sym_return] = ACTIONS(69), + [anon_sym_static] = ACTIONS(360), + [anon_sym_union] = ACTIONS(350), + [anon_sym_unsafe] = ACTIONS(362), + [anon_sym_while] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(366), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(448), - [sym_super] = ACTIONS(450), - [sym_crate] = ACTIONS(450), - [sym_metavariable] = ACTIONS(452), - [sym__raw_string_literal_start] = ACTIONS(454), - [sym_float_literal] = ACTIONS(442), + [sym_self] = ACTIONS(107), + [sym_super] = ACTIONS(109), + [sym_crate] = ACTIONS(109), + [sym_metavariable] = ACTIONS(113), + [sym__raw_string_literal_start] = ACTIONS(115), + [sym_float_literal] = ACTIONS(95), }, [267] = { - [sym_bracketed_type] = STATE(3498), - [sym_generic_function] = STATE(1637), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1604), - [sym__expression] = STATE(1665), - [sym_macro_invocation] = STATE(1641), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3100), - [sym_range_expression] = STATE(1639), - [sym_unary_expression] = STATE(1637), - [sym_try_expression] = STATE(1637), - [sym_reference_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_assignment_expression] = STATE(1637), - [sym_compound_assignment_expr] = STATE(1637), - [sym_type_cast_expression] = STATE(1637), - [sym_return_expression] = STATE(1637), - [sym_yield_expression] = STATE(1637), - [sym_call_expression] = STATE(1637), - [sym_array_expression] = STATE(1637), - [sym_parenthesized_expression] = STATE(1637), - [sym_tuple_expression] = STATE(1637), - [sym_unit_expression] = STATE(1637), - [sym_struct_expression] = STATE(1637), - [sym_if_expression] = STATE(1637), - [sym_match_expression] = STATE(1637), - [sym_while_expression] = STATE(1637), - [sym_loop_expression] = STATE(1637), - [sym_for_expression] = STATE(1637), - [sym_const_block] = STATE(1637), - [sym_closure_expression] = STATE(1637), - [sym_closure_parameters] = STATE(237), - [sym_label] = STATE(3585), - [sym_break_expression] = STATE(1637), - [sym_continue_expression] = STATE(1637), - [sym_index_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_field_expression] = STATE(1620), - [sym_unsafe_block] = STATE(1637), - [sym_async_block] = STATE(1637), - [sym_try_block] = STATE(1637), - [sym_block] = STATE(1637), - [sym__literal] = STATE(1637), - [sym_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_boolean_literal] = STATE(1778), + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1495), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1268), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), [sym_line_comment] = STATE(267), [sym_block_comment] = STATE(267), - [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_STAR] = ACTIONS(1021), - [anon_sym_u8] = ACTIONS(404), - [anon_sym_i8] = ACTIONS(404), - [anon_sym_u16] = ACTIONS(404), - [anon_sym_i16] = ACTIONS(404), - [anon_sym_u32] = ACTIONS(404), - [anon_sym_i32] = ACTIONS(404), - [anon_sym_u64] = ACTIONS(404), - [anon_sym_i64] = ACTIONS(404), - [anon_sym_u128] = ACTIONS(404), - [anon_sym_i128] = ACTIONS(404), - [anon_sym_isize] = ACTIONS(404), - [anon_sym_usize] = ACTIONS(404), - [anon_sym_f32] = ACTIONS(404), - [anon_sym_f64] = ACTIONS(404), - [anon_sym_bool] = ACTIONS(404), - [anon_sym_str] = ACTIONS(404), - [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_BANG] = ACTIONS(1021), - [anon_sym_AMP] = ACTIONS(1023), + [sym_identifier] = ACTIONS(334), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(338), + [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(1039), - [anon_sym_COLON_COLON] = ACTIONS(408), + [anon_sym_DOT_DOT] = ACTIONS(1055), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_const] = ACTIONS(414), - [anon_sym_continue] = ACTIONS(416), - [anon_sym_default] = ACTIONS(418), - [anon_sym_for] = ACTIONS(420), - [anon_sym_if] = ACTIONS(422), - [anon_sym_loop] = ACTIONS(424), - [anon_sym_match] = ACTIONS(426), - [anon_sym_return] = ACTIONS(428), - [anon_sym_static] = ACTIONS(430), - [anon_sym_union] = ACTIONS(418), - [anon_sym_unsafe] = ACTIONS(432), - [anon_sym_while] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_move] = ACTIONS(438), - [anon_sym_try] = ACTIONS(440), - [sym_integer_literal] = ACTIONS(442), - [aux_sym_string_literal_token1] = ACTIONS(444), - [sym_char_literal] = ACTIONS(442), - [anon_sym_true] = ACTIONS(446), - [anon_sym_false] = ACTIONS(446), + [anon_sym_async] = ACTIONS(346), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(348), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(350), + [anon_sym_for] = ACTIONS(352), + [anon_sym_if] = ACTIONS(354), + [anon_sym_loop] = ACTIONS(356), + [anon_sym_match] = ACTIONS(358), + [anon_sym_return] = ACTIONS(69), + [anon_sym_static] = ACTIONS(360), + [anon_sym_union] = ACTIONS(350), + [anon_sym_unsafe] = ACTIONS(362), + [anon_sym_while] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(366), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(448), - [sym_super] = ACTIONS(450), - [sym_crate] = ACTIONS(450), - [sym_metavariable] = ACTIONS(452), - [sym__raw_string_literal_start] = ACTIONS(454), - [sym_float_literal] = ACTIONS(442), + [sym_self] = ACTIONS(107), + [sym_super] = ACTIONS(109), + [sym_crate] = ACTIONS(109), + [sym_metavariable] = ACTIONS(113), + [sym__raw_string_literal_start] = ACTIONS(115), + [sym_float_literal] = ACTIONS(95), }, [268] = { - [sym_bracketed_type] = STATE(3498), - [sym_generic_function] = STATE(1637), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1604), - [sym__expression] = STATE(1754), - [sym_macro_invocation] = STATE(1641), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3100), - [sym_range_expression] = STATE(1639), - [sym_unary_expression] = STATE(1637), - [sym_try_expression] = STATE(1637), - [sym_reference_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_assignment_expression] = STATE(1637), - [sym_compound_assignment_expr] = STATE(1637), - [sym_type_cast_expression] = STATE(1637), - [sym_return_expression] = STATE(1637), - [sym_yield_expression] = STATE(1637), - [sym_call_expression] = STATE(1637), - [sym_array_expression] = STATE(1637), - [sym_parenthesized_expression] = STATE(1637), - [sym_tuple_expression] = STATE(1637), - [sym_unit_expression] = STATE(1637), - [sym_struct_expression] = STATE(1637), - [sym_if_expression] = STATE(1637), - [sym_match_expression] = STATE(1637), - [sym_while_expression] = STATE(1637), - [sym_loop_expression] = STATE(1637), - [sym_for_expression] = STATE(1637), - [sym_const_block] = STATE(1637), - [sym_closure_expression] = STATE(1637), - [sym_closure_parameters] = STATE(237), - [sym_label] = STATE(3585), - [sym_break_expression] = STATE(1637), - [sym_continue_expression] = STATE(1637), - [sym_index_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_field_expression] = STATE(1620), - [sym_unsafe_block] = STATE(1637), - [sym_async_block] = STATE(1637), - [sym_try_block] = STATE(1637), - [sym_block] = STATE(1637), - [sym__literal] = STATE(1637), - [sym_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_boolean_literal] = STATE(1778), + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1496), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1268), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), [sym_line_comment] = STATE(268), [sym_block_comment] = STATE(268), - [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_STAR] = ACTIONS(1021), - [anon_sym_u8] = ACTIONS(404), - [anon_sym_i8] = ACTIONS(404), - [anon_sym_u16] = ACTIONS(404), - [anon_sym_i16] = ACTIONS(404), - [anon_sym_u32] = ACTIONS(404), - [anon_sym_i32] = ACTIONS(404), - [anon_sym_u64] = ACTIONS(404), - [anon_sym_i64] = ACTIONS(404), - [anon_sym_u128] = ACTIONS(404), - [anon_sym_i128] = ACTIONS(404), - [anon_sym_isize] = ACTIONS(404), - [anon_sym_usize] = ACTIONS(404), - [anon_sym_f32] = ACTIONS(404), - [anon_sym_f64] = ACTIONS(404), - [anon_sym_bool] = ACTIONS(404), - [anon_sym_str] = ACTIONS(404), - [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_BANG] = ACTIONS(1021), - [anon_sym_AMP] = ACTIONS(1023), + [sym_identifier] = ACTIONS(334), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(338), + [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(1039), - [anon_sym_COLON_COLON] = ACTIONS(408), + [anon_sym_DOT_DOT] = ACTIONS(1055), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_const] = ACTIONS(414), - [anon_sym_continue] = ACTIONS(416), - [anon_sym_default] = ACTIONS(418), - [anon_sym_for] = ACTIONS(420), - [anon_sym_if] = ACTIONS(422), - [anon_sym_loop] = ACTIONS(424), - [anon_sym_match] = ACTIONS(426), - [anon_sym_return] = ACTIONS(428), - [anon_sym_static] = ACTIONS(430), - [anon_sym_union] = ACTIONS(418), - [anon_sym_unsafe] = ACTIONS(432), - [anon_sym_while] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_move] = ACTIONS(438), - [anon_sym_try] = ACTIONS(440), - [sym_integer_literal] = ACTIONS(442), - [aux_sym_string_literal_token1] = ACTIONS(444), - [sym_char_literal] = ACTIONS(442), - [anon_sym_true] = ACTIONS(446), - [anon_sym_false] = ACTIONS(446), + [anon_sym_async] = ACTIONS(346), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(348), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(350), + [anon_sym_for] = ACTIONS(352), + [anon_sym_if] = ACTIONS(354), + [anon_sym_loop] = ACTIONS(356), + [anon_sym_match] = ACTIONS(358), + [anon_sym_return] = ACTIONS(69), + [anon_sym_static] = ACTIONS(360), + [anon_sym_union] = ACTIONS(350), + [anon_sym_unsafe] = ACTIONS(362), + [anon_sym_while] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(366), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(448), - [sym_super] = ACTIONS(450), - [sym_crate] = ACTIONS(450), - [sym_metavariable] = ACTIONS(452), - [sym__raw_string_literal_start] = ACTIONS(454), - [sym_float_literal] = ACTIONS(442), + [sym_self] = ACTIONS(107), + [sym_super] = ACTIONS(109), + [sym_crate] = ACTIONS(109), + [sym_metavariable] = ACTIONS(113), + [sym__raw_string_literal_start] = ACTIONS(115), + [sym_float_literal] = ACTIONS(95), }, [269] = { - [sym_bracketed_type] = STATE(3498), - [sym_generic_function] = STATE(1637), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1604), - [sym__expression] = STATE(1755), - [sym_macro_invocation] = STATE(1641), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3100), - [sym_range_expression] = STATE(1639), - [sym_unary_expression] = STATE(1637), - [sym_try_expression] = STATE(1637), - [sym_reference_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_assignment_expression] = STATE(1637), - [sym_compound_assignment_expr] = STATE(1637), - [sym_type_cast_expression] = STATE(1637), - [sym_return_expression] = STATE(1637), - [sym_yield_expression] = STATE(1637), - [sym_call_expression] = STATE(1637), - [sym_array_expression] = STATE(1637), - [sym_parenthesized_expression] = STATE(1637), - [sym_tuple_expression] = STATE(1637), - [sym_unit_expression] = STATE(1637), - [sym_struct_expression] = STATE(1637), - [sym_if_expression] = STATE(1637), - [sym_match_expression] = STATE(1637), - [sym_while_expression] = STATE(1637), - [sym_loop_expression] = STATE(1637), - [sym_for_expression] = STATE(1637), - [sym_const_block] = STATE(1637), - [sym_closure_expression] = STATE(1637), - [sym_closure_parameters] = STATE(237), - [sym_label] = STATE(3585), - [sym_break_expression] = STATE(1637), - [sym_continue_expression] = STATE(1637), - [sym_index_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_field_expression] = STATE(1620), - [sym_unsafe_block] = STATE(1637), - [sym_async_block] = STATE(1637), - [sym_try_block] = STATE(1637), - [sym_block] = STATE(1637), - [sym__literal] = STATE(1637), - [sym_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_boolean_literal] = STATE(1778), + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1497), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1268), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), [sym_line_comment] = STATE(269), [sym_block_comment] = STATE(269), - [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_STAR] = ACTIONS(1021), - [anon_sym_u8] = ACTIONS(404), - [anon_sym_i8] = ACTIONS(404), - [anon_sym_u16] = ACTIONS(404), - [anon_sym_i16] = ACTIONS(404), - [anon_sym_u32] = ACTIONS(404), - [anon_sym_i32] = ACTIONS(404), - [anon_sym_u64] = ACTIONS(404), - [anon_sym_i64] = ACTIONS(404), - [anon_sym_u128] = ACTIONS(404), - [anon_sym_i128] = ACTIONS(404), - [anon_sym_isize] = ACTIONS(404), - [anon_sym_usize] = ACTIONS(404), - [anon_sym_f32] = ACTIONS(404), - [anon_sym_f64] = ACTIONS(404), - [anon_sym_bool] = ACTIONS(404), - [anon_sym_str] = ACTIONS(404), - [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_BANG] = ACTIONS(1021), - [anon_sym_AMP] = ACTIONS(1023), + [sym_identifier] = ACTIONS(334), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(338), + [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(1039), - [anon_sym_COLON_COLON] = ACTIONS(408), + [anon_sym_DOT_DOT] = ACTIONS(1055), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_const] = ACTIONS(414), - [anon_sym_continue] = ACTIONS(416), - [anon_sym_default] = ACTIONS(418), - [anon_sym_for] = ACTIONS(420), - [anon_sym_if] = ACTIONS(422), - [anon_sym_loop] = ACTIONS(424), - [anon_sym_match] = ACTIONS(426), - [anon_sym_return] = ACTIONS(428), - [anon_sym_static] = ACTIONS(430), - [anon_sym_union] = ACTIONS(418), - [anon_sym_unsafe] = ACTIONS(432), - [anon_sym_while] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_move] = ACTIONS(438), - [anon_sym_try] = ACTIONS(440), - [sym_integer_literal] = ACTIONS(442), - [aux_sym_string_literal_token1] = ACTIONS(444), - [sym_char_literal] = ACTIONS(442), - [anon_sym_true] = ACTIONS(446), - [anon_sym_false] = ACTIONS(446), + [anon_sym_async] = ACTIONS(346), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(348), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(350), + [anon_sym_for] = ACTIONS(352), + [anon_sym_if] = ACTIONS(354), + [anon_sym_loop] = ACTIONS(356), + [anon_sym_match] = ACTIONS(358), + [anon_sym_return] = ACTIONS(69), + [anon_sym_static] = ACTIONS(360), + [anon_sym_union] = ACTIONS(350), + [anon_sym_unsafe] = ACTIONS(362), + [anon_sym_while] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(366), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(448), - [sym_super] = ACTIONS(450), - [sym_crate] = ACTIONS(450), - [sym_metavariable] = ACTIONS(452), - [sym__raw_string_literal_start] = ACTIONS(454), - [sym_float_literal] = ACTIONS(442), + [sym_self] = ACTIONS(107), + [sym_super] = ACTIONS(109), + [sym_crate] = ACTIONS(109), + [sym_metavariable] = ACTIONS(113), + [sym__raw_string_literal_start] = ACTIONS(115), + [sym_float_literal] = ACTIONS(95), }, [270] = { - [sym_bracketed_type] = STATE(3498), - [sym_generic_function] = STATE(1637), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1604), - [sym__expression] = STATE(1756), - [sym_macro_invocation] = STATE(1641), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3100), - [sym_range_expression] = STATE(1639), - [sym_unary_expression] = STATE(1637), - [sym_try_expression] = STATE(1637), - [sym_reference_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_assignment_expression] = STATE(1637), - [sym_compound_assignment_expr] = STATE(1637), - [sym_type_cast_expression] = STATE(1637), - [sym_return_expression] = STATE(1637), - [sym_yield_expression] = STATE(1637), - [sym_call_expression] = STATE(1637), - [sym_array_expression] = STATE(1637), - [sym_parenthesized_expression] = STATE(1637), - [sym_tuple_expression] = STATE(1637), - [sym_unit_expression] = STATE(1637), - [sym_struct_expression] = STATE(1637), - [sym_if_expression] = STATE(1637), - [sym_match_expression] = STATE(1637), - [sym_while_expression] = STATE(1637), - [sym_loop_expression] = STATE(1637), - [sym_for_expression] = STATE(1637), - [sym_const_block] = STATE(1637), - [sym_closure_expression] = STATE(1637), - [sym_closure_parameters] = STATE(237), - [sym_label] = STATE(3585), - [sym_break_expression] = STATE(1637), - [sym_continue_expression] = STATE(1637), - [sym_index_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_field_expression] = STATE(1620), - [sym_unsafe_block] = STATE(1637), - [sym_async_block] = STATE(1637), - [sym_try_block] = STATE(1637), - [sym_block] = STATE(1637), - [sym__literal] = STATE(1637), - [sym_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_boolean_literal] = STATE(1778), + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1499), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1268), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), [sym_line_comment] = STATE(270), [sym_block_comment] = STATE(270), - [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_STAR] = ACTIONS(1021), - [anon_sym_u8] = ACTIONS(404), - [anon_sym_i8] = ACTIONS(404), - [anon_sym_u16] = ACTIONS(404), - [anon_sym_i16] = ACTIONS(404), - [anon_sym_u32] = ACTIONS(404), - [anon_sym_i32] = ACTIONS(404), - [anon_sym_u64] = ACTIONS(404), - [anon_sym_i64] = ACTIONS(404), - [anon_sym_u128] = ACTIONS(404), - [anon_sym_i128] = ACTIONS(404), - [anon_sym_isize] = ACTIONS(404), - [anon_sym_usize] = ACTIONS(404), - [anon_sym_f32] = ACTIONS(404), - [anon_sym_f64] = ACTIONS(404), - [anon_sym_bool] = ACTIONS(404), - [anon_sym_str] = ACTIONS(404), - [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_BANG] = ACTIONS(1021), - [anon_sym_AMP] = ACTIONS(1023), + [sym_identifier] = ACTIONS(334), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(338), + [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(1039), - [anon_sym_COLON_COLON] = ACTIONS(408), + [anon_sym_DOT_DOT] = ACTIONS(1055), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_const] = ACTIONS(414), - [anon_sym_continue] = ACTIONS(416), - [anon_sym_default] = ACTIONS(418), - [anon_sym_for] = ACTIONS(420), - [anon_sym_if] = ACTIONS(422), - [anon_sym_loop] = ACTIONS(424), - [anon_sym_match] = ACTIONS(426), - [anon_sym_return] = ACTIONS(428), - [anon_sym_static] = ACTIONS(430), - [anon_sym_union] = ACTIONS(418), - [anon_sym_unsafe] = ACTIONS(432), - [anon_sym_while] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_move] = ACTIONS(438), - [anon_sym_try] = ACTIONS(440), - [sym_integer_literal] = ACTIONS(442), - [aux_sym_string_literal_token1] = ACTIONS(444), - [sym_char_literal] = ACTIONS(442), - [anon_sym_true] = ACTIONS(446), - [anon_sym_false] = ACTIONS(446), + [anon_sym_async] = ACTIONS(346), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(348), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(350), + [anon_sym_for] = ACTIONS(352), + [anon_sym_if] = ACTIONS(354), + [anon_sym_loop] = ACTIONS(356), + [anon_sym_match] = ACTIONS(358), + [anon_sym_return] = ACTIONS(69), + [anon_sym_static] = ACTIONS(360), + [anon_sym_union] = ACTIONS(350), + [anon_sym_unsafe] = ACTIONS(362), + [anon_sym_while] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(366), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(448), - [sym_super] = ACTIONS(450), - [sym_crate] = ACTIONS(450), - [sym_metavariable] = ACTIONS(452), - [sym__raw_string_literal_start] = ACTIONS(454), - [sym_float_literal] = ACTIONS(442), + [sym_self] = ACTIONS(107), + [sym_super] = ACTIONS(109), + [sym_crate] = ACTIONS(109), + [sym_metavariable] = ACTIONS(113), + [sym__raw_string_literal_start] = ACTIONS(115), + [sym_float_literal] = ACTIONS(95), }, [271] = { - [sym_bracketed_type] = STATE(3498), - [sym_generic_function] = STATE(1637), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1604), - [sym__expression] = STATE(1757), - [sym_macro_invocation] = STATE(1641), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3100), - [sym_range_expression] = STATE(1639), - [sym_unary_expression] = STATE(1637), - [sym_try_expression] = STATE(1637), - [sym_reference_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_assignment_expression] = STATE(1637), - [sym_compound_assignment_expr] = STATE(1637), - [sym_type_cast_expression] = STATE(1637), - [sym_return_expression] = STATE(1637), - [sym_yield_expression] = STATE(1637), - [sym_call_expression] = STATE(1637), - [sym_array_expression] = STATE(1637), - [sym_parenthesized_expression] = STATE(1637), - [sym_tuple_expression] = STATE(1637), - [sym_unit_expression] = STATE(1637), - [sym_struct_expression] = STATE(1637), - [sym_if_expression] = STATE(1637), - [sym_match_expression] = STATE(1637), - [sym_while_expression] = STATE(1637), - [sym_loop_expression] = STATE(1637), - [sym_for_expression] = STATE(1637), - [sym_const_block] = STATE(1637), - [sym_closure_expression] = STATE(1637), - [sym_closure_parameters] = STATE(237), - [sym_label] = STATE(3585), - [sym_break_expression] = STATE(1637), - [sym_continue_expression] = STATE(1637), - [sym_index_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_field_expression] = STATE(1620), - [sym_unsafe_block] = STATE(1637), - [sym_async_block] = STATE(1637), - [sym_try_block] = STATE(1637), - [sym_block] = STATE(1637), - [sym__literal] = STATE(1637), - [sym_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_boolean_literal] = STATE(1778), + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1500), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1268), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), [sym_line_comment] = STATE(271), [sym_block_comment] = STATE(271), - [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_STAR] = ACTIONS(1021), - [anon_sym_u8] = ACTIONS(404), - [anon_sym_i8] = ACTIONS(404), - [anon_sym_u16] = ACTIONS(404), - [anon_sym_i16] = ACTIONS(404), - [anon_sym_u32] = ACTIONS(404), - [anon_sym_i32] = ACTIONS(404), - [anon_sym_u64] = ACTIONS(404), - [anon_sym_i64] = ACTIONS(404), - [anon_sym_u128] = ACTIONS(404), - [anon_sym_i128] = ACTIONS(404), - [anon_sym_isize] = ACTIONS(404), - [anon_sym_usize] = ACTIONS(404), - [anon_sym_f32] = ACTIONS(404), - [anon_sym_f64] = ACTIONS(404), - [anon_sym_bool] = ACTIONS(404), - [anon_sym_str] = ACTIONS(404), - [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_BANG] = ACTIONS(1021), - [anon_sym_AMP] = ACTIONS(1023), + [sym_identifier] = ACTIONS(334), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(338), + [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(1039), - [anon_sym_COLON_COLON] = ACTIONS(408), + [anon_sym_DOT_DOT] = ACTIONS(1055), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_const] = ACTIONS(414), - [anon_sym_continue] = ACTIONS(416), - [anon_sym_default] = ACTIONS(418), - [anon_sym_for] = ACTIONS(420), - [anon_sym_if] = ACTIONS(422), - [anon_sym_loop] = ACTIONS(424), - [anon_sym_match] = ACTIONS(426), - [anon_sym_return] = ACTIONS(428), - [anon_sym_static] = ACTIONS(430), - [anon_sym_union] = ACTIONS(418), - [anon_sym_unsafe] = ACTIONS(432), - [anon_sym_while] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_move] = ACTIONS(438), - [anon_sym_try] = ACTIONS(440), - [sym_integer_literal] = ACTIONS(442), - [aux_sym_string_literal_token1] = ACTIONS(444), - [sym_char_literal] = ACTIONS(442), - [anon_sym_true] = ACTIONS(446), - [anon_sym_false] = ACTIONS(446), + [anon_sym_async] = ACTIONS(346), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(348), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(350), + [anon_sym_for] = ACTIONS(352), + [anon_sym_if] = ACTIONS(354), + [anon_sym_loop] = ACTIONS(356), + [anon_sym_match] = ACTIONS(358), + [anon_sym_return] = ACTIONS(69), + [anon_sym_static] = ACTIONS(360), + [anon_sym_union] = ACTIONS(350), + [anon_sym_unsafe] = ACTIONS(362), + [anon_sym_while] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(366), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(448), - [sym_super] = ACTIONS(450), - [sym_crate] = ACTIONS(450), - [sym_metavariable] = ACTIONS(452), - [sym__raw_string_literal_start] = ACTIONS(454), - [sym_float_literal] = ACTIONS(442), + [sym_self] = ACTIONS(107), + [sym_super] = ACTIONS(109), + [sym_crate] = ACTIONS(109), + [sym_metavariable] = ACTIONS(113), + [sym__raw_string_literal_start] = ACTIONS(115), + [sym_float_literal] = ACTIONS(95), }, [272] = { - [sym_bracketed_type] = STATE(3498), - [sym_generic_function] = STATE(1637), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1604), - [sym__expression] = STATE(1758), - [sym_macro_invocation] = STATE(1641), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3100), - [sym_range_expression] = STATE(1639), - [sym_unary_expression] = STATE(1637), - [sym_try_expression] = STATE(1637), - [sym_reference_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_assignment_expression] = STATE(1637), - [sym_compound_assignment_expr] = STATE(1637), - [sym_type_cast_expression] = STATE(1637), - [sym_return_expression] = STATE(1637), - [sym_yield_expression] = STATE(1637), - [sym_call_expression] = STATE(1637), - [sym_array_expression] = STATE(1637), - [sym_parenthesized_expression] = STATE(1637), - [sym_tuple_expression] = STATE(1637), - [sym_unit_expression] = STATE(1637), - [sym_struct_expression] = STATE(1637), - [sym_if_expression] = STATE(1637), - [sym_match_expression] = STATE(1637), - [sym_while_expression] = STATE(1637), - [sym_loop_expression] = STATE(1637), - [sym_for_expression] = STATE(1637), - [sym_const_block] = STATE(1637), - [sym_closure_expression] = STATE(1637), - [sym_closure_parameters] = STATE(237), - [sym_label] = STATE(3585), - [sym_break_expression] = STATE(1637), - [sym_continue_expression] = STATE(1637), - [sym_index_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_field_expression] = STATE(1620), - [sym_unsafe_block] = STATE(1637), - [sym_async_block] = STATE(1637), - [sym_try_block] = STATE(1637), - [sym_block] = STATE(1637), - [sym__literal] = STATE(1637), - [sym_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_boolean_literal] = STATE(1778), + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1501), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1268), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), [sym_line_comment] = STATE(272), [sym_block_comment] = STATE(272), - [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_STAR] = ACTIONS(1021), - [anon_sym_u8] = ACTIONS(404), - [anon_sym_i8] = ACTIONS(404), - [anon_sym_u16] = ACTIONS(404), - [anon_sym_i16] = ACTIONS(404), - [anon_sym_u32] = ACTIONS(404), - [anon_sym_i32] = ACTIONS(404), - [anon_sym_u64] = ACTIONS(404), - [anon_sym_i64] = ACTIONS(404), - [anon_sym_u128] = ACTIONS(404), - [anon_sym_i128] = ACTIONS(404), - [anon_sym_isize] = ACTIONS(404), - [anon_sym_usize] = ACTIONS(404), - [anon_sym_f32] = ACTIONS(404), - [anon_sym_f64] = ACTIONS(404), - [anon_sym_bool] = ACTIONS(404), - [anon_sym_str] = ACTIONS(404), - [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_BANG] = ACTIONS(1021), - [anon_sym_AMP] = ACTIONS(1023), + [sym_identifier] = ACTIONS(334), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(338), + [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(1039), - [anon_sym_COLON_COLON] = ACTIONS(408), + [anon_sym_DOT_DOT] = ACTIONS(1055), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_const] = ACTIONS(414), - [anon_sym_continue] = ACTIONS(416), - [anon_sym_default] = ACTIONS(418), - [anon_sym_for] = ACTIONS(420), - [anon_sym_if] = ACTIONS(422), - [anon_sym_loop] = ACTIONS(424), - [anon_sym_match] = ACTIONS(426), - [anon_sym_return] = ACTIONS(428), - [anon_sym_static] = ACTIONS(430), - [anon_sym_union] = ACTIONS(418), - [anon_sym_unsafe] = ACTIONS(432), - [anon_sym_while] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_move] = ACTIONS(438), - [anon_sym_try] = ACTIONS(440), - [sym_integer_literal] = ACTIONS(442), - [aux_sym_string_literal_token1] = ACTIONS(444), - [sym_char_literal] = ACTIONS(442), - [anon_sym_true] = ACTIONS(446), - [anon_sym_false] = ACTIONS(446), + [anon_sym_async] = ACTIONS(346), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(348), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(350), + [anon_sym_for] = ACTIONS(352), + [anon_sym_if] = ACTIONS(354), + [anon_sym_loop] = ACTIONS(356), + [anon_sym_match] = ACTIONS(358), + [anon_sym_return] = ACTIONS(69), + [anon_sym_static] = ACTIONS(360), + [anon_sym_union] = ACTIONS(350), + [anon_sym_unsafe] = ACTIONS(362), + [anon_sym_while] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(366), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(448), - [sym_super] = ACTIONS(450), - [sym_crate] = ACTIONS(450), - [sym_metavariable] = ACTIONS(452), - [sym__raw_string_literal_start] = ACTIONS(454), - [sym_float_literal] = ACTIONS(442), + [sym_self] = ACTIONS(107), + [sym_super] = ACTIONS(109), + [sym_crate] = ACTIONS(109), + [sym_metavariable] = ACTIONS(113), + [sym__raw_string_literal_start] = ACTIONS(115), + [sym_float_literal] = ACTIONS(95), }, [273] = { - [sym_bracketed_type] = STATE(3498), - [sym_generic_function] = STATE(1637), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1604), - [sym__expression] = STATE(1759), - [sym_macro_invocation] = STATE(1641), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3100), - [sym_range_expression] = STATE(1639), - [sym_unary_expression] = STATE(1637), - [sym_try_expression] = STATE(1637), - [sym_reference_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_assignment_expression] = STATE(1637), - [sym_compound_assignment_expr] = STATE(1637), - [sym_type_cast_expression] = STATE(1637), - [sym_return_expression] = STATE(1637), - [sym_yield_expression] = STATE(1637), - [sym_call_expression] = STATE(1637), - [sym_array_expression] = STATE(1637), - [sym_parenthesized_expression] = STATE(1637), - [sym_tuple_expression] = STATE(1637), - [sym_unit_expression] = STATE(1637), - [sym_struct_expression] = STATE(1637), - [sym_if_expression] = STATE(1637), - [sym_match_expression] = STATE(1637), - [sym_while_expression] = STATE(1637), - [sym_loop_expression] = STATE(1637), - [sym_for_expression] = STATE(1637), - [sym_const_block] = STATE(1637), - [sym_closure_expression] = STATE(1637), - [sym_closure_parameters] = STATE(237), - [sym_label] = STATE(3585), - [sym_break_expression] = STATE(1637), - [sym_continue_expression] = STATE(1637), - [sym_index_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_field_expression] = STATE(1620), - [sym_unsafe_block] = STATE(1637), - [sym_async_block] = STATE(1637), - [sym_try_block] = STATE(1637), - [sym_block] = STATE(1637), - [sym__literal] = STATE(1637), - [sym_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_boolean_literal] = STATE(1778), + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1502), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1268), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), [sym_line_comment] = STATE(273), [sym_block_comment] = STATE(273), - [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_STAR] = ACTIONS(1021), - [anon_sym_u8] = ACTIONS(404), - [anon_sym_i8] = ACTIONS(404), - [anon_sym_u16] = ACTIONS(404), - [anon_sym_i16] = ACTIONS(404), - [anon_sym_u32] = ACTIONS(404), - [anon_sym_i32] = ACTIONS(404), - [anon_sym_u64] = ACTIONS(404), - [anon_sym_i64] = ACTIONS(404), - [anon_sym_u128] = ACTIONS(404), - [anon_sym_i128] = ACTIONS(404), - [anon_sym_isize] = ACTIONS(404), - [anon_sym_usize] = ACTIONS(404), - [anon_sym_f32] = ACTIONS(404), - [anon_sym_f64] = ACTIONS(404), - [anon_sym_bool] = ACTIONS(404), - [anon_sym_str] = ACTIONS(404), - [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_BANG] = ACTIONS(1021), - [anon_sym_AMP] = ACTIONS(1023), + [sym_identifier] = ACTIONS(334), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(338), + [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(1039), - [anon_sym_COLON_COLON] = ACTIONS(408), + [anon_sym_DOT_DOT] = ACTIONS(1055), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_const] = ACTIONS(414), - [anon_sym_continue] = ACTIONS(416), - [anon_sym_default] = ACTIONS(418), - [anon_sym_for] = ACTIONS(420), - [anon_sym_if] = ACTIONS(422), - [anon_sym_loop] = ACTIONS(424), - [anon_sym_match] = ACTIONS(426), - [anon_sym_return] = ACTIONS(428), - [anon_sym_static] = ACTIONS(430), - [anon_sym_union] = ACTIONS(418), - [anon_sym_unsafe] = ACTIONS(432), - [anon_sym_while] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_move] = ACTIONS(438), - [anon_sym_try] = ACTIONS(440), - [sym_integer_literal] = ACTIONS(442), - [aux_sym_string_literal_token1] = ACTIONS(444), - [sym_char_literal] = ACTIONS(442), - [anon_sym_true] = ACTIONS(446), - [anon_sym_false] = ACTIONS(446), + [anon_sym_async] = ACTIONS(346), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(348), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(350), + [anon_sym_for] = ACTIONS(352), + [anon_sym_if] = ACTIONS(354), + [anon_sym_loop] = ACTIONS(356), + [anon_sym_match] = ACTIONS(358), + [anon_sym_return] = ACTIONS(69), + [anon_sym_static] = ACTIONS(360), + [anon_sym_union] = ACTIONS(350), + [anon_sym_unsafe] = ACTIONS(362), + [anon_sym_while] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(366), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(448), - [sym_super] = ACTIONS(450), - [sym_crate] = ACTIONS(450), - [sym_metavariable] = ACTIONS(452), - [sym__raw_string_literal_start] = ACTIONS(454), - [sym_float_literal] = ACTIONS(442), + [sym_self] = ACTIONS(107), + [sym_super] = ACTIONS(109), + [sym_crate] = ACTIONS(109), + [sym_metavariable] = ACTIONS(113), + [sym__raw_string_literal_start] = ACTIONS(115), + [sym_float_literal] = ACTIONS(95), }, [274] = { - [sym_bracketed_type] = STATE(3498), - [sym_generic_function] = STATE(1637), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1604), - [sym__expression] = STATE(1760), - [sym_macro_invocation] = STATE(1641), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3100), - [sym_range_expression] = STATE(1639), - [sym_unary_expression] = STATE(1637), - [sym_try_expression] = STATE(1637), - [sym_reference_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_assignment_expression] = STATE(1637), - [sym_compound_assignment_expr] = STATE(1637), - [sym_type_cast_expression] = STATE(1637), - [sym_return_expression] = STATE(1637), - [sym_yield_expression] = STATE(1637), - [sym_call_expression] = STATE(1637), - [sym_array_expression] = STATE(1637), - [sym_parenthesized_expression] = STATE(1637), - [sym_tuple_expression] = STATE(1637), - [sym_unit_expression] = STATE(1637), - [sym_struct_expression] = STATE(1637), - [sym_if_expression] = STATE(1637), - [sym_match_expression] = STATE(1637), - [sym_while_expression] = STATE(1637), - [sym_loop_expression] = STATE(1637), - [sym_for_expression] = STATE(1637), - [sym_const_block] = STATE(1637), - [sym_closure_expression] = STATE(1637), - [sym_closure_parameters] = STATE(237), - [sym_label] = STATE(3585), - [sym_break_expression] = STATE(1637), - [sym_continue_expression] = STATE(1637), - [sym_index_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_field_expression] = STATE(1620), - [sym_unsafe_block] = STATE(1637), - [sym_async_block] = STATE(1637), - [sym_try_block] = STATE(1637), - [sym_block] = STATE(1637), - [sym__literal] = STATE(1637), - [sym_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_boolean_literal] = STATE(1778), + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1483), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1268), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), [sym_line_comment] = STATE(274), [sym_block_comment] = STATE(274), - [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_STAR] = ACTIONS(1021), - [anon_sym_u8] = ACTIONS(404), - [anon_sym_i8] = ACTIONS(404), - [anon_sym_u16] = ACTIONS(404), - [anon_sym_i16] = ACTIONS(404), - [anon_sym_u32] = ACTIONS(404), - [anon_sym_i32] = ACTIONS(404), - [anon_sym_u64] = ACTIONS(404), - [anon_sym_i64] = ACTIONS(404), - [anon_sym_u128] = ACTIONS(404), - [anon_sym_i128] = ACTIONS(404), - [anon_sym_isize] = ACTIONS(404), - [anon_sym_usize] = ACTIONS(404), - [anon_sym_f32] = ACTIONS(404), - [anon_sym_f64] = ACTIONS(404), - [anon_sym_bool] = ACTIONS(404), - [anon_sym_str] = ACTIONS(404), - [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_BANG] = ACTIONS(1021), - [anon_sym_AMP] = ACTIONS(1023), + [sym_identifier] = ACTIONS(334), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(338), + [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(1039), - [anon_sym_COLON_COLON] = ACTIONS(408), + [anon_sym_DOT_DOT] = ACTIONS(1055), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_const] = ACTIONS(414), - [anon_sym_continue] = ACTIONS(416), - [anon_sym_default] = ACTIONS(418), - [anon_sym_for] = ACTIONS(420), - [anon_sym_if] = ACTIONS(422), - [anon_sym_loop] = ACTIONS(424), - [anon_sym_match] = ACTIONS(426), - [anon_sym_return] = ACTIONS(428), - [anon_sym_static] = ACTIONS(430), - [anon_sym_union] = ACTIONS(418), - [anon_sym_unsafe] = ACTIONS(432), - [anon_sym_while] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_move] = ACTIONS(438), - [anon_sym_try] = ACTIONS(440), - [sym_integer_literal] = ACTIONS(442), - [aux_sym_string_literal_token1] = ACTIONS(444), - [sym_char_literal] = ACTIONS(442), - [anon_sym_true] = ACTIONS(446), - [anon_sym_false] = ACTIONS(446), + [anon_sym_async] = ACTIONS(346), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(348), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(350), + [anon_sym_for] = ACTIONS(352), + [anon_sym_if] = ACTIONS(354), + [anon_sym_loop] = ACTIONS(356), + [anon_sym_match] = ACTIONS(358), + [anon_sym_return] = ACTIONS(69), + [anon_sym_static] = ACTIONS(360), + [anon_sym_union] = ACTIONS(350), + [anon_sym_unsafe] = ACTIONS(362), + [anon_sym_while] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(366), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(448), - [sym_super] = ACTIONS(450), - [sym_crate] = ACTIONS(450), - [sym_metavariable] = ACTIONS(452), - [sym__raw_string_literal_start] = ACTIONS(454), - [sym_float_literal] = ACTIONS(442), + [sym_self] = ACTIONS(107), + [sym_super] = ACTIONS(109), + [sym_crate] = ACTIONS(109), + [sym_metavariable] = ACTIONS(113), + [sym__raw_string_literal_start] = ACTIONS(115), + [sym_float_literal] = ACTIONS(95), }, [275] = { - [sym_bracketed_type] = STATE(3498), - [sym_generic_function] = STATE(1637), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1604), - [sym__expression] = STATE(1761), - [sym_macro_invocation] = STATE(1641), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3100), - [sym_range_expression] = STATE(1639), - [sym_unary_expression] = STATE(1637), - [sym_try_expression] = STATE(1637), - [sym_reference_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_assignment_expression] = STATE(1637), - [sym_compound_assignment_expr] = STATE(1637), - [sym_type_cast_expression] = STATE(1637), - [sym_return_expression] = STATE(1637), - [sym_yield_expression] = STATE(1637), - [sym_call_expression] = STATE(1637), - [sym_array_expression] = STATE(1637), - [sym_parenthesized_expression] = STATE(1637), - [sym_tuple_expression] = STATE(1637), - [sym_unit_expression] = STATE(1637), - [sym_struct_expression] = STATE(1637), - [sym_if_expression] = STATE(1637), - [sym_match_expression] = STATE(1637), - [sym_while_expression] = STATE(1637), - [sym_loop_expression] = STATE(1637), - [sym_for_expression] = STATE(1637), - [sym_const_block] = STATE(1637), - [sym_closure_expression] = STATE(1637), - [sym_closure_parameters] = STATE(237), - [sym_label] = STATE(3585), - [sym_break_expression] = STATE(1637), - [sym_continue_expression] = STATE(1637), - [sym_index_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_field_expression] = STATE(1620), - [sym_unsafe_block] = STATE(1637), - [sym_async_block] = STATE(1637), - [sym_try_block] = STATE(1637), - [sym_block] = STATE(1637), - [sym__literal] = STATE(1637), - [sym_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_boolean_literal] = STATE(1778), + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2731), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1452), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(223), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), [sym_line_comment] = STATE(275), [sym_block_comment] = STATE(275), - [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_STAR] = ACTIONS(1021), - [anon_sym_u8] = ACTIONS(404), - [anon_sym_i8] = ACTIONS(404), - [anon_sym_u16] = ACTIONS(404), - [anon_sym_i16] = ACTIONS(404), - [anon_sym_u32] = ACTIONS(404), - [anon_sym_i32] = ACTIONS(404), - [anon_sym_u64] = ACTIONS(404), - [anon_sym_i64] = ACTIONS(404), - [anon_sym_u128] = ACTIONS(404), - [anon_sym_i128] = ACTIONS(404), - [anon_sym_isize] = ACTIONS(404), - [anon_sym_usize] = ACTIONS(404), - [anon_sym_f32] = ACTIONS(404), - [anon_sym_f64] = ACTIONS(404), - [anon_sym_bool] = ACTIONS(404), - [anon_sym_str] = ACTIONS(404), - [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_BANG] = ACTIONS(1021), - [anon_sym_AMP] = ACTIONS(1023), + [sym_identifier] = ACTIONS(466), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_STAR] = ACTIONS(1043), + [anon_sym_u8] = ACTIONS(468), + [anon_sym_i8] = ACTIONS(468), + [anon_sym_u16] = ACTIONS(468), + [anon_sym_i16] = ACTIONS(468), + [anon_sym_u32] = ACTIONS(468), + [anon_sym_i32] = ACTIONS(468), + [anon_sym_u64] = ACTIONS(468), + [anon_sym_i64] = ACTIONS(468), + [anon_sym_u128] = ACTIONS(468), + [anon_sym_i128] = ACTIONS(468), + [anon_sym_isize] = ACTIONS(468), + [anon_sym_usize] = ACTIONS(468), + [anon_sym_f32] = ACTIONS(468), + [anon_sym_f64] = ACTIONS(468), + [anon_sym_bool] = ACTIONS(468), + [anon_sym_str] = ACTIONS(468), + [anon_sym_char] = ACTIONS(468), + [anon_sym_DASH] = ACTIONS(1043), + [anon_sym_BANG] = ACTIONS(1043), + [anon_sym_AMP] = ACTIONS(1045), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1039), - [anon_sym_COLON_COLON] = ACTIONS(408), + [anon_sym_DOT_DOT] = ACTIONS(1049), + [anon_sym_COLON_COLON] = ACTIONS(472), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_const] = ACTIONS(414), - [anon_sym_continue] = ACTIONS(416), - [anon_sym_default] = ACTIONS(418), - [anon_sym_for] = ACTIONS(420), - [anon_sym_if] = ACTIONS(422), - [anon_sym_loop] = ACTIONS(424), - [anon_sym_match] = ACTIONS(426), - [anon_sym_return] = ACTIONS(428), - [anon_sym_static] = ACTIONS(430), - [anon_sym_union] = ACTIONS(418), - [anon_sym_unsafe] = ACTIONS(432), - [anon_sym_while] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_move] = ACTIONS(438), - [anon_sym_try] = ACTIONS(440), - [sym_integer_literal] = ACTIONS(442), - [aux_sym_string_literal_token1] = ACTIONS(444), - [sym_char_literal] = ACTIONS(442), - [anon_sym_true] = ACTIONS(446), - [anon_sym_false] = ACTIONS(446), + [anon_sym_async] = ACTIONS(346), + [anon_sym_break] = ACTIONS(474), + [anon_sym_const] = ACTIONS(348), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(476), + [anon_sym_for] = ACTIONS(352), + [anon_sym_if] = ACTIONS(354), + [anon_sym_loop] = ACTIONS(356), + [anon_sym_match] = ACTIONS(358), + [anon_sym_return] = ACTIONS(478), + [anon_sym_static] = ACTIONS(480), + [anon_sym_union] = ACTIONS(476), + [anon_sym_unsafe] = ACTIONS(362), + [anon_sym_while] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(482), + [anon_sym_move] = ACTIONS(484), + [anon_sym_try] = ACTIONS(366), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(448), - [sym_super] = ACTIONS(450), - [sym_crate] = ACTIONS(450), - [sym_metavariable] = ACTIONS(452), - [sym__raw_string_literal_start] = ACTIONS(454), - [sym_float_literal] = ACTIONS(442), + [sym_self] = ACTIONS(486), + [sym_super] = ACTIONS(488), + [sym_crate] = ACTIONS(488), + [sym_metavariable] = ACTIONS(490), + [sym__raw_string_literal_start] = ACTIONS(115), + [sym_float_literal] = ACTIONS(95), }, [276] = { - [sym_bracketed_type] = STATE(3498), - [sym_generic_function] = STATE(1637), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1604), - [sym__expression] = STATE(1762), - [sym_macro_invocation] = STATE(1641), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3100), - [sym_range_expression] = STATE(1639), - [sym_unary_expression] = STATE(1637), - [sym_try_expression] = STATE(1637), - [sym_reference_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_assignment_expression] = STATE(1637), - [sym_compound_assignment_expr] = STATE(1637), - [sym_type_cast_expression] = STATE(1637), - [sym_return_expression] = STATE(1637), - [sym_yield_expression] = STATE(1637), - [sym_call_expression] = STATE(1637), - [sym_array_expression] = STATE(1637), - [sym_parenthesized_expression] = STATE(1637), - [sym_tuple_expression] = STATE(1637), - [sym_unit_expression] = STATE(1637), - [sym_struct_expression] = STATE(1637), - [sym_if_expression] = STATE(1637), - [sym_match_expression] = STATE(1637), - [sym_while_expression] = STATE(1637), - [sym_loop_expression] = STATE(1637), - [sym_for_expression] = STATE(1637), - [sym_const_block] = STATE(1637), - [sym_closure_expression] = STATE(1637), - [sym_closure_parameters] = STATE(237), - [sym_label] = STATE(3585), - [sym_break_expression] = STATE(1637), - [sym_continue_expression] = STATE(1637), - [sym_index_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_field_expression] = STATE(1620), - [sym_unsafe_block] = STATE(1637), - [sym_async_block] = STATE(1637), - [sym_try_block] = STATE(1637), - [sym_block] = STATE(1637), - [sym__literal] = STATE(1637), - [sym_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_boolean_literal] = STATE(1778), + [sym_bracketed_type] = STATE(3506), + [sym_generic_function] = STATE(1695), + [sym_generic_type_with_turbofish] = STATE(2844), + [sym__expression_except_range] = STATE(1590), + [sym__expression] = STATE(1749), + [sym_macro_invocation] = STATE(1705), + [sym_scoped_identifier] = STATE(1568), + [sym_scoped_type_identifier_in_expression_position] = STATE(3132), + [sym_range_expression] = STATE(1699), + [sym_unary_expression] = STATE(1695), + [sym_try_expression] = STATE(1695), + [sym_reference_expression] = STATE(1695), + [sym_binary_expression] = STATE(1695), + [sym_assignment_expression] = STATE(1695), + [sym_compound_assignment_expr] = STATE(1695), + [sym_type_cast_expression] = STATE(1695), + [sym_return_expression] = STATE(1695), + [sym_yield_expression] = STATE(1695), + [sym_call_expression] = STATE(1695), + [sym_array_expression] = STATE(1695), + [sym_parenthesized_expression] = STATE(1695), + [sym_tuple_expression] = STATE(1695), + [sym_unit_expression] = STATE(1695), + [sym_struct_expression] = STATE(1695), + [sym_if_expression] = STATE(1695), + [sym_match_expression] = STATE(1695), + [sym_while_expression] = STATE(1695), + [sym_loop_expression] = STATE(1695), + [sym_for_expression] = STATE(1695), + [sym_const_block] = STATE(1695), + [sym_closure_expression] = STATE(1695), + [sym_closure_parameters] = STATE(222), + [sym_label] = STATE(3593), + [sym_break_expression] = STATE(1695), + [sym_continue_expression] = STATE(1695), + [sym_index_expression] = STATE(1695), + [sym_await_expression] = STATE(1695), + [sym_field_expression] = STATE(1583), + [sym_unsafe_block] = STATE(1695), + [sym_async_block] = STATE(1695), + [sym_try_block] = STATE(1695), + [sym_block] = STATE(1695), + [sym__literal] = STATE(1695), + [sym_string_literal] = STATE(1801), + [sym_raw_string_literal] = STATE(1801), + [sym_boolean_literal] = STATE(1801), [sym_line_comment] = STATE(276), [sym_block_comment] = STATE(276), [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(484), + [anon_sym_LPAREN] = ACTIONS(456), + [anon_sym_LBRACK] = ACTIONS(458), [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_STAR] = ACTIONS(1021), + [anon_sym_STAR] = ACTIONS(993), [anon_sym_u8] = ACTIONS(404), [anon_sym_i8] = ACTIONS(404), [anon_sym_u16] = ACTIONS(404), @@ -47742,12 +47750,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(404), [anon_sym_str] = ACTIONS(404), [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_BANG] = ACTIONS(1021), - [anon_sym_AMP] = ACTIONS(1023), + [anon_sym_DASH] = ACTIONS(993), + [anon_sym_BANG] = ACTIONS(993), + [anon_sym_AMP] = ACTIONS(995), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1039), + [anon_sym_DOT_DOT] = ACTIONS(1063), [anon_sym_COLON_COLON] = ACTIONS(408), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(410), @@ -47782,100 +47790,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(442), }, [277] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1722), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1505), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1268), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), [sym_line_comment] = STATE(277), [sym_block_comment] = STATE(277), - [sym_identifier] = ACTIONS(456), + [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(1041), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(1041), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_AMP] = ACTIONS(1043), + [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(1230), - [anon_sym_COLON_COLON] = ACTIONS(462), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(464), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(348), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(466), + [anon_sym_default] = ACTIONS(350), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), [anon_sym_loop] = ACTIONS(356), [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(468), - [anon_sym_static] = ACTIONS(470), - [anon_sym_union] = ACTIONS(466), + [anon_sym_return] = ACTIONS(69), + [anon_sym_static] = ACTIONS(360), + [anon_sym_union] = ACTIONS(350), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(472), - [anon_sym_move] = ACTIONS(474), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), [anon_sym_try] = ACTIONS(366), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -47884,60 +47892,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), + [sym_self] = ACTIONS(107), + [sym_super] = ACTIONS(109), + [sym_crate] = ACTIONS(109), + [sym_metavariable] = ACTIONS(113), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, [278] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1843), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1659), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1268), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), [sym_line_comment] = STATE(278), [sym_block_comment] = STATE(278), [sym_identifier] = ACTIONS(334), @@ -48002,52 +48010,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(95), }, [279] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1844), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1856), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1268), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), [sym_line_comment] = STATE(279), [sym_block_comment] = STATE(279), [sym_identifier] = ACTIONS(334), @@ -48112,100 +48120,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(95), }, [280] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1629), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1783), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1268), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), [sym_line_comment] = STATE(280), [sym_block_comment] = STATE(280), - [sym_identifier] = ACTIONS(456), + [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), + [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(1055), - [anon_sym_COLON_COLON] = ACTIONS(462), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(350), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), [anon_sym_loop] = ACTIONS(356), [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), + [anon_sym_return] = ACTIONS(69), + [anon_sym_static] = ACTIONS(360), + [anon_sym_union] = ACTIONS(350), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), [anon_sym_try] = ACTIONS(366), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -48214,108 +48222,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), + [sym_self] = ACTIONS(107), + [sym_super] = ACTIONS(109), + [sym_crate] = ACTIONS(109), + [sym_metavariable] = ACTIONS(113), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, [281] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1251), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2731), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1760), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(223), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), [sym_line_comment] = STATE(281), [sym_block_comment] = STATE(281), - [sym_identifier] = ACTIONS(456), + [sym_identifier] = ACTIONS(466), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), + [anon_sym_STAR] = ACTIONS(1043), + [anon_sym_u8] = ACTIONS(468), + [anon_sym_i8] = ACTIONS(468), + [anon_sym_u16] = ACTIONS(468), + [anon_sym_i16] = ACTIONS(468), + [anon_sym_u32] = ACTIONS(468), + [anon_sym_i32] = ACTIONS(468), + [anon_sym_u64] = ACTIONS(468), + [anon_sym_i64] = ACTIONS(468), + [anon_sym_u128] = ACTIONS(468), + [anon_sym_i128] = ACTIONS(468), + [anon_sym_isize] = ACTIONS(468), + [anon_sym_usize] = ACTIONS(468), + [anon_sym_f32] = ACTIONS(468), + [anon_sym_f64] = ACTIONS(468), + [anon_sym_bool] = ACTIONS(468), + [anon_sym_str] = ACTIONS(468), + [anon_sym_char] = ACTIONS(468), + [anon_sym_DASH] = ACTIONS(1043), + [anon_sym_BANG] = ACTIONS(1043), + [anon_sym_AMP] = ACTIONS(1045), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1055), - [anon_sym_COLON_COLON] = ACTIONS(462), + [anon_sym_DOT_DOT] = ACTIONS(1210), + [anon_sym_COLON_COLON] = ACTIONS(472), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), + [anon_sym_break] = ACTIONS(474), [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(476), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), [anon_sym_loop] = ACTIONS(356), [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), + [anon_sym_return] = ACTIONS(478), + [anon_sym_static] = ACTIONS(480), + [anon_sym_union] = ACTIONS(476), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), + [anon_sym_yield] = ACTIONS(482), + [anon_sym_move] = ACTIONS(484), [anon_sym_try] = ACTIONS(366), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -48324,104 +48332,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), + [sym_self] = ACTIONS(486), + [sym_super] = ACTIONS(488), + [sym_crate] = ACTIONS(488), + [sym_metavariable] = ACTIONS(490), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, [282] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1630), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2731), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1125), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(236), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), [sym_line_comment] = STATE(282), [sym_block_comment] = STATE(282), - [sym_identifier] = ACTIONS(456), + [sym_identifier] = ACTIONS(466), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), + [anon_sym_u8] = ACTIONS(468), + [anon_sym_i8] = ACTIONS(468), + [anon_sym_u16] = ACTIONS(468), + [anon_sym_i16] = ACTIONS(468), + [anon_sym_u32] = ACTIONS(468), + [anon_sym_i32] = ACTIONS(468), + [anon_sym_u64] = ACTIONS(468), + [anon_sym_i64] = ACTIONS(468), + [anon_sym_u128] = ACTIONS(468), + [anon_sym_i128] = ACTIONS(468), + [anon_sym_isize] = ACTIONS(468), + [anon_sym_usize] = ACTIONS(468), + [anon_sym_f32] = ACTIONS(468), + [anon_sym_f64] = ACTIONS(468), + [anon_sym_bool] = ACTIONS(468), + [anon_sym_str] = ACTIONS(468), + [anon_sym_char] = ACTIONS(468), [anon_sym_DASH] = ACTIONS(973), [anon_sym_BANG] = ACTIONS(973), [anon_sym_AMP] = ACTIONS(975), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1055), - [anon_sym_COLON_COLON] = ACTIONS(462), + [anon_sym_DOT_DOT] = ACTIONS(1059), + [anon_sym_COLON_COLON] = ACTIONS(472), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), [anon_sym_break] = ACTIONS(494), [anon_sym_const] = ACTIONS(348), [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), + [anon_sym_default] = ACTIONS(476), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), [anon_sym_loop] = ACTIONS(356), [anon_sym_match] = ACTIONS(358), [anon_sym_return] = ACTIONS(498), [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), + [anon_sym_union] = ACTIONS(476), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), [anon_sym_yield] = ACTIONS(502), @@ -48434,108 +48442,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), + [sym_self] = ACTIONS(486), + [sym_super] = ACTIONS(488), + [sym_crate] = ACTIONS(488), + [sym_metavariable] = ACTIONS(490), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, [283] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1579), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1125), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1268), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), [sym_line_comment] = STATE(283), [sym_block_comment] = STATE(283), - [sym_identifier] = ACTIONS(456), + [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), + [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(1055), - [anon_sym_COLON_COLON] = ACTIONS(462), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(350), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), [anon_sym_loop] = ACTIONS(356), [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), + [anon_sym_return] = ACTIONS(69), + [anon_sym_static] = ACTIONS(360), + [anon_sym_union] = ACTIONS(350), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), [anon_sym_try] = ACTIONS(366), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -48544,108 +48552,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), + [sym_self] = ACTIONS(107), + [sym_super] = ACTIONS(109), + [sym_crate] = ACTIONS(109), + [sym_metavariable] = ACTIONS(113), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, [284] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1580), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1851), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1268), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), [sym_line_comment] = STATE(284), [sym_block_comment] = STATE(284), - [sym_identifier] = ACTIONS(456), + [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), + [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(1055), - [anon_sym_COLON_COLON] = ACTIONS(462), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(350), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), [anon_sym_loop] = ACTIONS(356), [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), + [anon_sym_return] = ACTIONS(69), + [anon_sym_static] = ACTIONS(360), + [anon_sym_union] = ACTIONS(350), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), [anon_sym_try] = ACTIONS(366), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -48654,108 +48662,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), + [sym_self] = ACTIONS(107), + [sym_super] = ACTIONS(109), + [sym_crate] = ACTIONS(109), + [sym_metavariable] = ACTIONS(113), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, [285] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1588), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1668), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1268), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), [sym_line_comment] = STATE(285), [sym_block_comment] = STATE(285), - [sym_identifier] = ACTIONS(456), + [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), + [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(1055), - [anon_sym_COLON_COLON] = ACTIONS(462), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(350), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), [anon_sym_loop] = ACTIONS(356), [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), + [anon_sym_return] = ACTIONS(69), + [anon_sym_static] = ACTIONS(360), + [anon_sym_union] = ACTIONS(350), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), [anon_sym_try] = ACTIONS(366), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -48764,109 +48772,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), + [sym_self] = ACTIONS(107), + [sym_super] = ACTIONS(109), + [sym_crate] = ACTIONS(109), + [sym_metavariable] = ACTIONS(113), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, [286] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1722), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1727), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1268), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(456), + [sym_match_expression] = STATE(456), + [sym_while_expression] = STATE(456), + [sym_loop_expression] = STATE(456), + [sym_for_expression] = STATE(456), + [sym_const_block] = STATE(456), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3587), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(456), + [sym_async_block] = STATE(456), + [sym_try_block] = STATE(456), + [sym_block] = STATE(456), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), [sym_line_comment] = STATE(286), [sym_block_comment] = STATE(286), - [sym_identifier] = ACTIONS(456), + [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(1041), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(1041), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_AMP] = ACTIONS(1043), + [anon_sym_LBRACE] = ACTIONS(1212), + [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(1047), - [anon_sym_COLON_COLON] = ACTIONS(462), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(464), - [anon_sym_const] = ACTIONS(348), + [anon_sym_async] = ACTIONS(1214), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(1216), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(468), - [anon_sym_static] = ACTIONS(470), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(472), - [anon_sym_move] = ACTIONS(474), - [anon_sym_try] = ACTIONS(366), + [anon_sym_default] = ACTIONS(350), + [anon_sym_for] = ACTIONS(1218), + [anon_sym_if] = ACTIONS(1220), + [anon_sym_loop] = ACTIONS(1222), + [anon_sym_match] = ACTIONS(1224), + [anon_sym_return] = ACTIONS(69), + [anon_sym_static] = ACTIONS(360), + [anon_sym_union] = ACTIONS(350), + [anon_sym_unsafe] = ACTIONS(1226), + [anon_sym_while] = ACTIONS(1228), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(1230), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), [sym_char_literal] = ACTIONS(95), @@ -48874,397 +48882,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), + [sym_self] = ACTIONS(107), + [sym_super] = ACTIONS(109), + [sym_crate] = ACTIONS(109), + [sym_metavariable] = ACTIONS(113), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, [287] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1716), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3506), + [sym_generic_function] = STATE(1695), + [sym_generic_type_with_turbofish] = STATE(2844), + [sym__expression_except_range] = STATE(1590), + [sym__expression] = STATE(1687), + [sym_macro_invocation] = STATE(1705), + [sym_scoped_identifier] = STATE(1568), + [sym_scoped_type_identifier_in_expression_position] = STATE(3132), + [sym_range_expression] = STATE(1699), + [sym_unary_expression] = STATE(1695), + [sym_try_expression] = STATE(1695), + [sym_reference_expression] = STATE(1695), + [sym_binary_expression] = STATE(1695), + [sym_assignment_expression] = STATE(1695), + [sym_compound_assignment_expr] = STATE(1695), + [sym_type_cast_expression] = STATE(1695), + [sym_return_expression] = STATE(1695), + [sym_yield_expression] = STATE(1695), + [sym_call_expression] = STATE(1695), + [sym_array_expression] = STATE(1695), + [sym_parenthesized_expression] = STATE(1695), + [sym_tuple_expression] = STATE(1695), + [sym_unit_expression] = STATE(1695), + [sym_struct_expression] = STATE(1695), + [sym_if_expression] = STATE(1695), + [sym_match_expression] = STATE(1695), + [sym_while_expression] = STATE(1695), + [sym_loop_expression] = STATE(1695), + [sym_for_expression] = STATE(1695), + [sym_const_block] = STATE(1695), + [sym_closure_expression] = STATE(1695), + [sym_closure_parameters] = STATE(222), + [sym_label] = STATE(3593), + [sym_break_expression] = STATE(1695), + [sym_continue_expression] = STATE(1695), + [sym_index_expression] = STATE(1695), + [sym_await_expression] = STATE(1695), + [sym_field_expression] = STATE(1583), + [sym_unsafe_block] = STATE(1695), + [sym_async_block] = STATE(1695), + [sym_try_block] = STATE(1695), + [sym_block] = STATE(1695), + [sym__literal] = STATE(1695), + [sym_string_literal] = STATE(1801), + [sym_raw_string_literal] = STATE(1801), + [sym_boolean_literal] = STATE(1801), [sym_line_comment] = STATE(287), [sym_block_comment] = STATE(287), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(1041), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(1041), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_AMP] = ACTIONS(1043), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(464), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(468), - [anon_sym_static] = ACTIONS(470), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(472), - [anon_sym_move] = ACTIONS(474), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [288] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1593), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(288), - [sym_block_comment] = STATE(288), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1055), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [289] = { - [sym_bracketed_type] = STATE(3498), - [sym_generic_function] = STATE(1637), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1604), - [sym__expression] = STATE(1763), - [sym_macro_invocation] = STATE(1641), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3100), - [sym_range_expression] = STATE(1639), - [sym_unary_expression] = STATE(1637), - [sym_try_expression] = STATE(1637), - [sym_reference_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_assignment_expression] = STATE(1637), - [sym_compound_assignment_expr] = STATE(1637), - [sym_type_cast_expression] = STATE(1637), - [sym_return_expression] = STATE(1637), - [sym_yield_expression] = STATE(1637), - [sym_call_expression] = STATE(1637), - [sym_array_expression] = STATE(1637), - [sym_parenthesized_expression] = STATE(1637), - [sym_tuple_expression] = STATE(1637), - [sym_unit_expression] = STATE(1637), - [sym_struct_expression] = STATE(1637), - [sym_if_expression] = STATE(1637), - [sym_match_expression] = STATE(1637), - [sym_while_expression] = STATE(1637), - [sym_loop_expression] = STATE(1637), - [sym_for_expression] = STATE(1637), - [sym_const_block] = STATE(1637), - [sym_closure_expression] = STATE(1637), - [sym_closure_parameters] = STATE(237), - [sym_label] = STATE(3585), - [sym_break_expression] = STATE(1637), - [sym_continue_expression] = STATE(1637), - [sym_index_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_field_expression] = STATE(1620), - [sym_unsafe_block] = STATE(1637), - [sym_async_block] = STATE(1637), - [sym_try_block] = STATE(1637), - [sym_block] = STATE(1637), - [sym__literal] = STATE(1637), - [sym_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_boolean_literal] = STATE(1778), - [sym_line_comment] = STATE(289), - [sym_block_comment] = STATE(289), - [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_STAR] = ACTIONS(1021), - [anon_sym_u8] = ACTIONS(404), - [anon_sym_i8] = ACTIONS(404), - [anon_sym_u16] = ACTIONS(404), - [anon_sym_i16] = ACTIONS(404), - [anon_sym_u32] = ACTIONS(404), - [anon_sym_i32] = ACTIONS(404), - [anon_sym_u64] = ACTIONS(404), - [anon_sym_i64] = ACTIONS(404), - [anon_sym_u128] = ACTIONS(404), - [anon_sym_i128] = ACTIONS(404), - [anon_sym_isize] = ACTIONS(404), - [anon_sym_usize] = ACTIONS(404), - [anon_sym_f32] = ACTIONS(404), - [anon_sym_f64] = ACTIONS(404), - [anon_sym_bool] = ACTIONS(404), - [anon_sym_str] = ACTIONS(404), - [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_BANG] = ACTIONS(1021), - [anon_sym_AMP] = ACTIONS(1023), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(408), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_const] = ACTIONS(414), - [anon_sym_continue] = ACTIONS(416), - [anon_sym_default] = ACTIONS(418), - [anon_sym_for] = ACTIONS(420), - [anon_sym_if] = ACTIONS(422), - [anon_sym_loop] = ACTIONS(424), - [anon_sym_match] = ACTIONS(426), - [anon_sym_return] = ACTIONS(428), - [anon_sym_static] = ACTIONS(430), - [anon_sym_union] = ACTIONS(418), - [anon_sym_unsafe] = ACTIONS(432), - [anon_sym_while] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_move] = ACTIONS(438), - [anon_sym_try] = ACTIONS(440), - [sym_integer_literal] = ACTIONS(442), - [aux_sym_string_literal_token1] = ACTIONS(444), - [sym_char_literal] = ACTIONS(442), - [anon_sym_true] = ACTIONS(446), - [anon_sym_false] = ACTIONS(446), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(448), - [sym_super] = ACTIONS(450), - [sym_crate] = ACTIONS(450), - [sym_metavariable] = ACTIONS(452), - [sym__raw_string_literal_start] = ACTIONS(454), - [sym_float_literal] = ACTIONS(442), - }, - [290] = { - [sym_bracketed_type] = STATE(3498), - [sym_generic_function] = STATE(1637), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1604), - [sym__expression] = STATE(1763), - [sym_macro_invocation] = STATE(1641), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3100), - [sym_range_expression] = STATE(1639), - [sym_unary_expression] = STATE(1637), - [sym_try_expression] = STATE(1637), - [sym_reference_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_assignment_expression] = STATE(1637), - [sym_compound_assignment_expr] = STATE(1637), - [sym_type_cast_expression] = STATE(1637), - [sym_return_expression] = STATE(1637), - [sym_yield_expression] = STATE(1637), - [sym_call_expression] = STATE(1637), - [sym_array_expression] = STATE(1637), - [sym_parenthesized_expression] = STATE(1637), - [sym_tuple_expression] = STATE(1637), - [sym_unit_expression] = STATE(1637), - [sym_struct_expression] = STATE(1637), - [sym_if_expression] = STATE(1637), - [sym_match_expression] = STATE(1637), - [sym_while_expression] = STATE(1637), - [sym_loop_expression] = STATE(1637), - [sym_for_expression] = STATE(1637), - [sym_const_block] = STATE(1637), - [sym_closure_expression] = STATE(1637), - [sym_closure_parameters] = STATE(237), - [sym_label] = STATE(3585), - [sym_break_expression] = STATE(1637), - [sym_continue_expression] = STATE(1637), - [sym_index_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_field_expression] = STATE(1620), - [sym_unsafe_block] = STATE(1637), - [sym_async_block] = STATE(1637), - [sym_try_block] = STATE(1637), - [sym_block] = STATE(1637), - [sym__literal] = STATE(1637), - [sym_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_boolean_literal] = STATE(1778), - [sym_line_comment] = STATE(290), - [sym_block_comment] = STATE(290), [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(484), + [anon_sym_LPAREN] = ACTIONS(456), + [anon_sym_LBRACK] = ACTIONS(458), [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_STAR] = ACTIONS(1021), + [anon_sym_STAR] = ACTIONS(993), [anon_sym_u8] = ACTIONS(404), [anon_sym_i8] = ACTIONS(404), [anon_sym_u16] = ACTIONS(404), @@ -49282,12 +48960,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(404), [anon_sym_str] = ACTIONS(404), [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_BANG] = ACTIONS(1021), - [anon_sym_AMP] = ACTIONS(1023), + [anon_sym_DASH] = ACTIONS(993), + [anon_sym_BANG] = ACTIONS(993), + [anon_sym_AMP] = ACTIONS(995), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1039), + [anon_sym_DOT_DOT] = ACTIONS(1063), [anon_sym_COLON_COLON] = ACTIONS(408), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(410), @@ -49321,101 +48999,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(454), [sym_float_literal] = ACTIONS(442), }, - [291] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1606), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(291), - [sym_block_comment] = STATE(291), - [sym_identifier] = ACTIONS(456), + [288] = { + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1720), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1268), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), + [sym_line_comment] = STATE(288), + [sym_block_comment] = STATE(288), + [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), + [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(1055), - [anon_sym_COLON_COLON] = ACTIONS(462), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(350), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), [anon_sym_loop] = ACTIONS(356), [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), + [anon_sym_return] = ACTIONS(69), + [anon_sym_static] = ACTIONS(360), + [anon_sym_union] = ACTIONS(350), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), [anon_sym_try] = ACTIONS(366), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -49424,108 +49102,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), + [sym_self] = ACTIONS(107), + [sym_super] = ACTIONS(109), + [sym_crate] = ACTIONS(109), + [sym_metavariable] = ACTIONS(113), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [292] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1615), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(292), - [sym_block_comment] = STATE(292), - [sym_identifier] = ACTIONS(456), + [289] = { + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1843), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1268), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), + [sym_line_comment] = STATE(289), + [sym_block_comment] = STATE(289), + [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), + [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(1055), - [anon_sym_COLON_COLON] = ACTIONS(462), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(350), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), [anon_sym_loop] = ACTIONS(356), [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), + [anon_sym_return] = ACTIONS(69), + [anon_sym_static] = ACTIONS(360), + [anon_sym_union] = ACTIONS(350), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), [anon_sym_try] = ACTIONS(366), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -49534,104 +49212,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), + [sym_self] = ACTIONS(107), + [sym_super] = ACTIONS(109), + [sym_crate] = ACTIONS(109), + [sym_metavariable] = ACTIONS(113), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [293] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1323), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(293), - [sym_block_comment] = STATE(293), - [sym_identifier] = ACTIONS(456), + [290] = { + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2731), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1552), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(236), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), + [sym_line_comment] = STATE(290), + [sym_block_comment] = STATE(290), + [sym_identifier] = ACTIONS(466), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), + [anon_sym_u8] = ACTIONS(468), + [anon_sym_i8] = ACTIONS(468), + [anon_sym_u16] = ACTIONS(468), + [anon_sym_i16] = ACTIONS(468), + [anon_sym_u32] = ACTIONS(468), + [anon_sym_i32] = ACTIONS(468), + [anon_sym_u64] = ACTIONS(468), + [anon_sym_i64] = ACTIONS(468), + [anon_sym_u128] = ACTIONS(468), + [anon_sym_i128] = ACTIONS(468), + [anon_sym_isize] = ACTIONS(468), + [anon_sym_usize] = ACTIONS(468), + [anon_sym_f32] = ACTIONS(468), + [anon_sym_f64] = ACTIONS(468), + [anon_sym_bool] = ACTIONS(468), + [anon_sym_str] = ACTIONS(468), + [anon_sym_char] = ACTIONS(468), [anon_sym_DASH] = ACTIONS(973), [anon_sym_BANG] = ACTIONS(973), [anon_sym_AMP] = ACTIONS(975), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1055), - [anon_sym_COLON_COLON] = ACTIONS(462), + [anon_sym_DOT_DOT] = ACTIONS(977), + [anon_sym_COLON_COLON] = ACTIONS(472), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), [anon_sym_break] = ACTIONS(494), [anon_sym_const] = ACTIONS(348), [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), + [anon_sym_default] = ACTIONS(476), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), [anon_sym_loop] = ACTIONS(356), [anon_sym_match] = ACTIONS(358), [anon_sym_return] = ACTIONS(498), [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), + [anon_sym_union] = ACTIONS(476), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), [anon_sym_yield] = ACTIONS(502), @@ -49644,108 +49322,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), + [sym_self] = ACTIONS(486), + [sym_super] = ACTIONS(488), + [sym_crate] = ACTIONS(488), + [sym_metavariable] = ACTIONS(490), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [294] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1616), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(294), - [sym_block_comment] = STATE(294), - [sym_identifier] = ACTIONS(456), + [291] = { + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2731), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1837), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(223), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), + [sym_line_comment] = STATE(291), + [sym_block_comment] = STATE(291), + [sym_identifier] = ACTIONS(466), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), + [anon_sym_STAR] = ACTIONS(1043), + [anon_sym_u8] = ACTIONS(468), + [anon_sym_i8] = ACTIONS(468), + [anon_sym_u16] = ACTIONS(468), + [anon_sym_i16] = ACTIONS(468), + [anon_sym_u32] = ACTIONS(468), + [anon_sym_i32] = ACTIONS(468), + [anon_sym_u64] = ACTIONS(468), + [anon_sym_i64] = ACTIONS(468), + [anon_sym_u128] = ACTIONS(468), + [anon_sym_i128] = ACTIONS(468), + [anon_sym_isize] = ACTIONS(468), + [anon_sym_usize] = ACTIONS(468), + [anon_sym_f32] = ACTIONS(468), + [anon_sym_f64] = ACTIONS(468), + [anon_sym_bool] = ACTIONS(468), + [anon_sym_str] = ACTIONS(468), + [anon_sym_char] = ACTIONS(468), + [anon_sym_DASH] = ACTIONS(1043), + [anon_sym_BANG] = ACTIONS(1043), + [anon_sym_AMP] = ACTIONS(1045), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1055), - [anon_sym_COLON_COLON] = ACTIONS(462), + [anon_sym_DOT_DOT] = ACTIONS(1049), + [anon_sym_COLON_COLON] = ACTIONS(472), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), + [anon_sym_break] = ACTIONS(474), [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(476), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), [anon_sym_loop] = ACTIONS(356), [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), + [anon_sym_return] = ACTIONS(478), + [anon_sym_static] = ACTIONS(480), + [anon_sym_union] = ACTIONS(476), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), + [anon_sym_yield] = ACTIONS(482), + [anon_sym_move] = ACTIONS(484), [anon_sym_try] = ACTIONS(366), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -49754,108 +49432,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), + [sym_self] = ACTIONS(486), + [sym_super] = ACTIONS(488), + [sym_crate] = ACTIONS(488), + [sym_metavariable] = ACTIONS(490), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [295] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1690), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(295), - [sym_block_comment] = STATE(295), - [sym_identifier] = ACTIONS(456), + [292] = { + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2731), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1838), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(223), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), + [sym_line_comment] = STATE(292), + [sym_block_comment] = STATE(292), + [sym_identifier] = ACTIONS(466), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), + [anon_sym_STAR] = ACTIONS(1043), + [anon_sym_u8] = ACTIONS(468), + [anon_sym_i8] = ACTIONS(468), + [anon_sym_u16] = ACTIONS(468), + [anon_sym_i16] = ACTIONS(468), + [anon_sym_u32] = ACTIONS(468), + [anon_sym_i32] = ACTIONS(468), + [anon_sym_u64] = ACTIONS(468), + [anon_sym_i64] = ACTIONS(468), + [anon_sym_u128] = ACTIONS(468), + [anon_sym_i128] = ACTIONS(468), + [anon_sym_isize] = ACTIONS(468), + [anon_sym_usize] = ACTIONS(468), + [anon_sym_f32] = ACTIONS(468), + [anon_sym_f64] = ACTIONS(468), + [anon_sym_bool] = ACTIONS(468), + [anon_sym_str] = ACTIONS(468), + [anon_sym_char] = ACTIONS(468), + [anon_sym_DASH] = ACTIONS(1043), + [anon_sym_BANG] = ACTIONS(1043), + [anon_sym_AMP] = ACTIONS(1045), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(977), - [anon_sym_COLON_COLON] = ACTIONS(462), + [anon_sym_DOT_DOT] = ACTIONS(1049), + [anon_sym_COLON_COLON] = ACTIONS(472), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), + [anon_sym_break] = ACTIONS(474), [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(476), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), [anon_sym_loop] = ACTIONS(356), [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), + [anon_sym_return] = ACTIONS(478), + [anon_sym_static] = ACTIONS(480), + [anon_sym_union] = ACTIONS(476), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), + [anon_sym_yield] = ACTIONS(482), + [anon_sym_move] = ACTIONS(484), [anon_sym_try] = ACTIONS(366), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -49864,108 +49542,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), + [sym_self] = ACTIONS(486), + [sym_super] = ACTIONS(488), + [sym_crate] = ACTIONS(488), + [sym_metavariable] = ACTIONS(490), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [296] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1695), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(296), - [sym_block_comment] = STATE(296), - [sym_identifier] = ACTIONS(334), - [anon_sym_LPAREN] = ACTIONS(15), + [293] = { + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2731), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1795), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(223), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), + [sym_line_comment] = STATE(293), + [sym_block_comment] = STATE(293), + [sym_identifier] = ACTIONS(466), + [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), - [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_STAR] = ACTIONS(1043), + [anon_sym_u8] = ACTIONS(468), + [anon_sym_i8] = ACTIONS(468), + [anon_sym_u16] = ACTIONS(468), + [anon_sym_i16] = ACTIONS(468), + [anon_sym_u32] = ACTIONS(468), + [anon_sym_i32] = ACTIONS(468), + [anon_sym_u64] = ACTIONS(468), + [anon_sym_i64] = ACTIONS(468), + [anon_sym_u128] = ACTIONS(468), + [anon_sym_i128] = ACTIONS(468), + [anon_sym_isize] = ACTIONS(468), + [anon_sym_usize] = ACTIONS(468), + [anon_sym_f32] = ACTIONS(468), + [anon_sym_f64] = ACTIONS(468), + [anon_sym_bool] = ACTIONS(468), + [anon_sym_str] = ACTIONS(468), + [anon_sym_char] = ACTIONS(468), + [anon_sym_DASH] = ACTIONS(1043), + [anon_sym_BANG] = ACTIONS(1043), + [anon_sym_AMP] = ACTIONS(1045), [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(1210), + [anon_sym_COLON_COLON] = ACTIONS(472), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), + [anon_sym_break] = ACTIONS(474), [anon_sym_const] = ACTIONS(348), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), + [anon_sym_default] = ACTIONS(476), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), [anon_sym_loop] = ACTIONS(356), [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), + [anon_sym_return] = ACTIONS(478), + [anon_sym_static] = ACTIONS(480), + [anon_sym_union] = ACTIONS(476), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), + [anon_sym_yield] = ACTIONS(482), + [anon_sym_move] = ACTIONS(484), [anon_sym_try] = ACTIONS(366), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -49974,108 +49652,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), + [sym_self] = ACTIONS(486), + [sym_super] = ACTIONS(488), + [sym_crate] = ACTIONS(488), + [sym_metavariable] = ACTIONS(490), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [297] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1619), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(297), - [sym_block_comment] = STATE(297), - [sym_identifier] = ACTIONS(456), + [294] = { + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2731), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1839), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(223), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), + [sym_line_comment] = STATE(294), + [sym_block_comment] = STATE(294), + [sym_identifier] = ACTIONS(466), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), + [anon_sym_STAR] = ACTIONS(1043), + [anon_sym_u8] = ACTIONS(468), + [anon_sym_i8] = ACTIONS(468), + [anon_sym_u16] = ACTIONS(468), + [anon_sym_i16] = ACTIONS(468), + [anon_sym_u32] = ACTIONS(468), + [anon_sym_i32] = ACTIONS(468), + [anon_sym_u64] = ACTIONS(468), + [anon_sym_i64] = ACTIONS(468), + [anon_sym_u128] = ACTIONS(468), + [anon_sym_i128] = ACTIONS(468), + [anon_sym_isize] = ACTIONS(468), + [anon_sym_usize] = ACTIONS(468), + [anon_sym_f32] = ACTIONS(468), + [anon_sym_f64] = ACTIONS(468), + [anon_sym_bool] = ACTIONS(468), + [anon_sym_str] = ACTIONS(468), + [anon_sym_char] = ACTIONS(468), + [anon_sym_DASH] = ACTIONS(1043), + [anon_sym_BANG] = ACTIONS(1043), + [anon_sym_AMP] = ACTIONS(1045), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1055), - [anon_sym_COLON_COLON] = ACTIONS(462), + [anon_sym_DOT_DOT] = ACTIONS(1049), + [anon_sym_COLON_COLON] = ACTIONS(472), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), + [anon_sym_break] = ACTIONS(474), [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(476), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), [anon_sym_loop] = ACTIONS(356), [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), + [anon_sym_return] = ACTIONS(478), + [anon_sym_static] = ACTIONS(480), + [anon_sym_union] = ACTIONS(476), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), + [anon_sym_yield] = ACTIONS(482), + [anon_sym_move] = ACTIONS(484), [anon_sym_try] = ACTIONS(366), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -50084,62 +49762,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), + [sym_self] = ACTIONS(486), + [sym_super] = ACTIONS(488), + [sym_crate] = ACTIONS(488), + [sym_metavariable] = ACTIONS(490), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [298] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1697), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(298), - [sym_block_comment] = STATE(298), + [295] = { + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1696), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1268), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), + [sym_line_comment] = STATE(295), + [sym_block_comment] = STATE(295), [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -50201,55 +49879,165 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [299] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1698), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(299), - [sym_block_comment] = STATE(299), + [296] = { + [sym_bracketed_type] = STATE(3506), + [sym_generic_function] = STATE(1695), + [sym_generic_type_with_turbofish] = STATE(2844), + [sym__expression_except_range] = STATE(1590), + [sym__expression] = STATE(1708), + [sym_macro_invocation] = STATE(1705), + [sym_scoped_identifier] = STATE(1568), + [sym_scoped_type_identifier_in_expression_position] = STATE(3132), + [sym_range_expression] = STATE(1699), + [sym_unary_expression] = STATE(1695), + [sym_try_expression] = STATE(1695), + [sym_reference_expression] = STATE(1695), + [sym_binary_expression] = STATE(1695), + [sym_assignment_expression] = STATE(1695), + [sym_compound_assignment_expr] = STATE(1695), + [sym_type_cast_expression] = STATE(1695), + [sym_return_expression] = STATE(1695), + [sym_yield_expression] = STATE(1695), + [sym_call_expression] = STATE(1695), + [sym_array_expression] = STATE(1695), + [sym_parenthesized_expression] = STATE(1695), + [sym_tuple_expression] = STATE(1695), + [sym_unit_expression] = STATE(1695), + [sym_struct_expression] = STATE(1695), + [sym_if_expression] = STATE(1695), + [sym_match_expression] = STATE(1695), + [sym_while_expression] = STATE(1695), + [sym_loop_expression] = STATE(1695), + [sym_for_expression] = STATE(1695), + [sym_const_block] = STATE(1695), + [sym_closure_expression] = STATE(1695), + [sym_closure_parameters] = STATE(222), + [sym_label] = STATE(3593), + [sym_break_expression] = STATE(1695), + [sym_continue_expression] = STATE(1695), + [sym_index_expression] = STATE(1695), + [sym_await_expression] = STATE(1695), + [sym_field_expression] = STATE(1583), + [sym_unsafe_block] = STATE(1695), + [sym_async_block] = STATE(1695), + [sym_try_block] = STATE(1695), + [sym_block] = STATE(1695), + [sym__literal] = STATE(1695), + [sym_string_literal] = STATE(1801), + [sym_raw_string_literal] = STATE(1801), + [sym_boolean_literal] = STATE(1801), + [sym_line_comment] = STATE(296), + [sym_block_comment] = STATE(296), + [sym_identifier] = ACTIONS(398), + [anon_sym_LPAREN] = ACTIONS(456), + [anon_sym_LBRACK] = ACTIONS(458), + [anon_sym_LBRACE] = ACTIONS(400), + [anon_sym_STAR] = ACTIONS(993), + [anon_sym_u8] = ACTIONS(404), + [anon_sym_i8] = ACTIONS(404), + [anon_sym_u16] = ACTIONS(404), + [anon_sym_i16] = ACTIONS(404), + [anon_sym_u32] = ACTIONS(404), + [anon_sym_i32] = ACTIONS(404), + [anon_sym_u64] = ACTIONS(404), + [anon_sym_i64] = ACTIONS(404), + [anon_sym_u128] = ACTIONS(404), + [anon_sym_i128] = ACTIONS(404), + [anon_sym_isize] = ACTIONS(404), + [anon_sym_usize] = ACTIONS(404), + [anon_sym_f32] = ACTIONS(404), + [anon_sym_f64] = ACTIONS(404), + [anon_sym_bool] = ACTIONS(404), + [anon_sym_str] = ACTIONS(404), + [anon_sym_char] = ACTIONS(404), + [anon_sym_DASH] = ACTIONS(993), + [anon_sym_BANG] = ACTIONS(993), + [anon_sym_AMP] = ACTIONS(995), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1063), + [anon_sym_COLON_COLON] = ACTIONS(408), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(410), + [anon_sym_break] = ACTIONS(412), + [anon_sym_const] = ACTIONS(414), + [anon_sym_continue] = ACTIONS(416), + [anon_sym_default] = ACTIONS(418), + [anon_sym_for] = ACTIONS(420), + [anon_sym_if] = ACTIONS(422), + [anon_sym_loop] = ACTIONS(424), + [anon_sym_match] = ACTIONS(426), + [anon_sym_return] = ACTIONS(428), + [anon_sym_static] = ACTIONS(430), + [anon_sym_union] = ACTIONS(418), + [anon_sym_unsafe] = ACTIONS(432), + [anon_sym_while] = ACTIONS(434), + [anon_sym_yield] = ACTIONS(436), + [anon_sym_move] = ACTIONS(438), + [anon_sym_try] = ACTIONS(440), + [sym_integer_literal] = ACTIONS(442), + [aux_sym_string_literal_token1] = ACTIONS(444), + [sym_char_literal] = ACTIONS(442), + [anon_sym_true] = ACTIONS(446), + [anon_sym_false] = ACTIONS(446), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(448), + [sym_super] = ACTIONS(450), + [sym_crate] = ACTIONS(450), + [sym_metavariable] = ACTIONS(452), + [sym__raw_string_literal_start] = ACTIONS(454), + [sym_float_literal] = ACTIONS(442), + }, + [297] = { + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1857), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1268), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), + [sym_line_comment] = STATE(297), + [sym_block_comment] = STATE(297), [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -50311,55 +50099,165 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [300] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1482), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(300), - [sym_block_comment] = STATE(300), + [298] = { + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2731), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1725), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(223), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), + [sym_line_comment] = STATE(298), + [sym_block_comment] = STATE(298), + [sym_identifier] = ACTIONS(466), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_STAR] = ACTIONS(1043), + [anon_sym_u8] = ACTIONS(468), + [anon_sym_i8] = ACTIONS(468), + [anon_sym_u16] = ACTIONS(468), + [anon_sym_i16] = ACTIONS(468), + [anon_sym_u32] = ACTIONS(468), + [anon_sym_i32] = ACTIONS(468), + [anon_sym_u64] = ACTIONS(468), + [anon_sym_i64] = ACTIONS(468), + [anon_sym_u128] = ACTIONS(468), + [anon_sym_i128] = ACTIONS(468), + [anon_sym_isize] = ACTIONS(468), + [anon_sym_usize] = ACTIONS(468), + [anon_sym_f32] = ACTIONS(468), + [anon_sym_f64] = ACTIONS(468), + [anon_sym_bool] = ACTIONS(468), + [anon_sym_str] = ACTIONS(468), + [anon_sym_char] = ACTIONS(468), + [anon_sym_DASH] = ACTIONS(1043), + [anon_sym_BANG] = ACTIONS(1043), + [anon_sym_AMP] = ACTIONS(1045), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1210), + [anon_sym_COLON_COLON] = ACTIONS(472), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(346), + [anon_sym_break] = ACTIONS(474), + [anon_sym_const] = ACTIONS(348), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(476), + [anon_sym_for] = ACTIONS(352), + [anon_sym_if] = ACTIONS(354), + [anon_sym_loop] = ACTIONS(356), + [anon_sym_match] = ACTIONS(358), + [anon_sym_return] = ACTIONS(478), + [anon_sym_static] = ACTIONS(480), + [anon_sym_union] = ACTIONS(476), + [anon_sym_unsafe] = ACTIONS(362), + [anon_sym_while] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(482), + [anon_sym_move] = ACTIONS(484), + [anon_sym_try] = ACTIONS(366), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(486), + [sym_super] = ACTIONS(488), + [sym_crate] = ACTIONS(488), + [sym_metavariable] = ACTIONS(490), + [sym__raw_string_literal_start] = ACTIONS(115), + [sym_float_literal] = ACTIONS(95), + }, + [299] = { + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1845), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1268), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), + [sym_line_comment] = STATE(299), + [sym_block_comment] = STATE(299), [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -50387,7 +50285,7 @@ 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(1176), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), @@ -50421,59 +50319,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [301] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1842), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(301), - [sym_block_comment] = STATE(301), + [300] = { + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1781), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1268), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(470), + [sym_match_expression] = STATE(470), + [sym_while_expression] = STATE(470), + [sym_loop_expression] = STATE(470), + [sym_for_expression] = STATE(470), + [sym_const_block] = STATE(470), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3587), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(470), + [sym_async_block] = STATE(470), + [sym_try_block] = STATE(470), + [sym_block] = STATE(470), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), + [sym_line_comment] = STATE(300), + [sym_block_comment] = STATE(300), [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(1212), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -50500,23 +50398,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(1214), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(1216), [anon_sym_continue] = ACTIONS(45), [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), + [anon_sym_for] = ACTIONS(1218), + [anon_sym_if] = ACTIONS(1220), + [anon_sym_loop] = ACTIONS(1222), + [anon_sym_match] = ACTIONS(1224), [anon_sym_return] = ACTIONS(69), [anon_sym_static] = ACTIONS(360), [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), + [anon_sym_unsafe] = ACTIONS(1226), + [anon_sym_while] = ACTIONS(1228), [anon_sym_yield] = ACTIONS(89), [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), + [anon_sym_try] = ACTIONS(1230), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), [sym_char_literal] = ACTIONS(95), @@ -50531,55 +50429,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [302] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1850), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(302), - [sym_block_comment] = STATE(302), + [301] = { + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1842), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1268), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), + [sym_line_comment] = STATE(301), + [sym_block_comment] = STATE(301), [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -50641,101 +50539,211 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, + [302] = { + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2731), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1556), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(236), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), + [sym_line_comment] = STATE(302), + [sym_block_comment] = STATE(302), + [sym_identifier] = ACTIONS(466), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_STAR] = ACTIONS(973), + [anon_sym_u8] = ACTIONS(468), + [anon_sym_i8] = ACTIONS(468), + [anon_sym_u16] = ACTIONS(468), + [anon_sym_i16] = ACTIONS(468), + [anon_sym_u32] = ACTIONS(468), + [anon_sym_i32] = ACTIONS(468), + [anon_sym_u64] = ACTIONS(468), + [anon_sym_i64] = ACTIONS(468), + [anon_sym_u128] = ACTIONS(468), + [anon_sym_i128] = ACTIONS(468), + [anon_sym_isize] = ACTIONS(468), + [anon_sym_usize] = ACTIONS(468), + [anon_sym_f32] = ACTIONS(468), + [anon_sym_f64] = ACTIONS(468), + [anon_sym_bool] = ACTIONS(468), + [anon_sym_str] = ACTIONS(468), + [anon_sym_char] = ACTIONS(468), + [anon_sym_DASH] = ACTIONS(973), + [anon_sym_BANG] = ACTIONS(973), + [anon_sym_AMP] = ACTIONS(975), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(977), + [anon_sym_COLON_COLON] = ACTIONS(472), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(346), + [anon_sym_break] = ACTIONS(494), + [anon_sym_const] = ACTIONS(348), + [anon_sym_continue] = ACTIONS(496), + [anon_sym_default] = ACTIONS(476), + [anon_sym_for] = ACTIONS(352), + [anon_sym_if] = ACTIONS(354), + [anon_sym_loop] = ACTIONS(356), + [anon_sym_match] = ACTIONS(358), + [anon_sym_return] = ACTIONS(498), + [anon_sym_static] = ACTIONS(500), + [anon_sym_union] = ACTIONS(476), + [anon_sym_unsafe] = ACTIONS(362), + [anon_sym_while] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(502), + [anon_sym_move] = ACTIONS(504), + [anon_sym_try] = ACTIONS(366), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(486), + [sym_super] = ACTIONS(488), + [sym_crate] = ACTIONS(488), + [sym_metavariable] = ACTIONS(490), + [sym__raw_string_literal_start] = ACTIONS(115), + [sym_float_literal] = ACTIONS(95), + }, [303] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1495), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2731), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1758), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(223), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), [sym_line_comment] = STATE(303), [sym_block_comment] = STATE(303), - [sym_identifier] = ACTIONS(334), + [sym_identifier] = ACTIONS(466), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), - [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_STAR] = ACTIONS(1043), + [anon_sym_u8] = ACTIONS(468), + [anon_sym_i8] = ACTIONS(468), + [anon_sym_u16] = ACTIONS(468), + [anon_sym_i16] = ACTIONS(468), + [anon_sym_u32] = ACTIONS(468), + [anon_sym_i32] = ACTIONS(468), + [anon_sym_u64] = ACTIONS(468), + [anon_sym_i64] = ACTIONS(468), + [anon_sym_u128] = ACTIONS(468), + [anon_sym_i128] = ACTIONS(468), + [anon_sym_isize] = ACTIONS(468), + [anon_sym_usize] = ACTIONS(468), + [anon_sym_f32] = ACTIONS(468), + [anon_sym_f64] = ACTIONS(468), + [anon_sym_bool] = ACTIONS(468), + [anon_sym_str] = ACTIONS(468), + [anon_sym_char] = ACTIONS(468), + [anon_sym_DASH] = ACTIONS(1043), + [anon_sym_BANG] = ACTIONS(1043), + [anon_sym_AMP] = ACTIONS(1045), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1176), - [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DOT_DOT] = ACTIONS(1210), + [anon_sym_COLON_COLON] = ACTIONS(472), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), + [anon_sym_break] = ACTIONS(474), [anon_sym_const] = ACTIONS(348), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), + [anon_sym_default] = ACTIONS(476), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), [anon_sym_loop] = ACTIONS(356), [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), + [anon_sym_return] = ACTIONS(478), + [anon_sym_static] = ACTIONS(480), + [anon_sym_union] = ACTIONS(476), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), + [anon_sym_yield] = ACTIONS(482), + [anon_sym_move] = ACTIONS(484), [anon_sym_try] = ACTIONS(366), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -50744,60 +50752,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), + [sym_self] = ACTIONS(486), + [sym_super] = ACTIONS(488), + [sym_crate] = ACTIONS(488), + [sym_metavariable] = ACTIONS(490), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, [304] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1251), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1873), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1268), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), [sym_line_comment] = STATE(304), [sym_block_comment] = STATE(304), [sym_identifier] = ACTIONS(334), @@ -50827,7 +50835,7 @@ 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(1176), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), @@ -50862,52 +50870,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(95), }, [305] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1485), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1859), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1268), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), [sym_line_comment] = STATE(305), [sym_block_comment] = STATE(305), [sym_identifier] = ACTIONS(334), @@ -50937,7 +50945,7 @@ 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(1176), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), @@ -50972,52 +50980,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(95), }, [306] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1486), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1717), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1268), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), [sym_line_comment] = STATE(306), [sym_block_comment] = STATE(306), [sym_identifier] = ACTIONS(334), @@ -51047,7 +51055,7 @@ 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(1176), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), @@ -51082,59 +51090,169 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(95), }, [307] = { - [sym_bracketed_type] = STATE(3498), - [sym_generic_function] = STATE(1637), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1604), - [sym__expression] = STATE(1865), - [sym_macro_invocation] = STATE(1641), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3100), - [sym_range_expression] = STATE(1639), - [sym_unary_expression] = STATE(1637), - [sym_try_expression] = STATE(1637), - [sym_reference_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_assignment_expression] = STATE(1637), - [sym_compound_assignment_expr] = STATE(1637), - [sym_type_cast_expression] = STATE(1637), - [sym_return_expression] = STATE(1637), - [sym_yield_expression] = STATE(1637), - [sym_call_expression] = STATE(1637), - [sym_array_expression] = STATE(1637), - [sym_parenthesized_expression] = STATE(1637), - [sym_tuple_expression] = STATE(1637), - [sym_unit_expression] = STATE(1637), - [sym_struct_expression] = STATE(1637), - [sym_if_expression] = STATE(1637), - [sym_match_expression] = STATE(1637), - [sym_while_expression] = STATE(1637), - [sym_loop_expression] = STATE(1637), - [sym_for_expression] = STATE(1637), - [sym_const_block] = STATE(1637), - [sym_closure_expression] = STATE(1637), - [sym_closure_parameters] = STATE(237), - [sym_label] = STATE(3585), - [sym_break_expression] = STATE(1637), - [sym_continue_expression] = STATE(1637), - [sym_index_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_field_expression] = STATE(1620), - [sym_unsafe_block] = STATE(1637), - [sym_async_block] = STATE(1637), - [sym_try_block] = STATE(1637), - [sym_block] = STATE(1637), - [sym__literal] = STATE(1637), - [sym_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_boolean_literal] = STATE(1778), + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2731), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1414), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(223), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), [sym_line_comment] = STATE(307), [sym_block_comment] = STATE(307), + [sym_identifier] = ACTIONS(466), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_STAR] = ACTIONS(1043), + [anon_sym_u8] = ACTIONS(468), + [anon_sym_i8] = ACTIONS(468), + [anon_sym_u16] = ACTIONS(468), + [anon_sym_i16] = ACTIONS(468), + [anon_sym_u32] = ACTIONS(468), + [anon_sym_i32] = ACTIONS(468), + [anon_sym_u64] = ACTIONS(468), + [anon_sym_i64] = ACTIONS(468), + [anon_sym_u128] = ACTIONS(468), + [anon_sym_i128] = ACTIONS(468), + [anon_sym_isize] = ACTIONS(468), + [anon_sym_usize] = ACTIONS(468), + [anon_sym_f32] = ACTIONS(468), + [anon_sym_f64] = ACTIONS(468), + [anon_sym_bool] = ACTIONS(468), + [anon_sym_str] = ACTIONS(468), + [anon_sym_char] = ACTIONS(468), + [anon_sym_DASH] = ACTIONS(1043), + [anon_sym_BANG] = ACTIONS(1043), + [anon_sym_AMP] = ACTIONS(1045), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1049), + [anon_sym_COLON_COLON] = ACTIONS(472), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(346), + [anon_sym_break] = ACTIONS(474), + [anon_sym_const] = ACTIONS(348), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(476), + [anon_sym_for] = ACTIONS(352), + [anon_sym_if] = ACTIONS(354), + [anon_sym_loop] = ACTIONS(356), + [anon_sym_match] = ACTIONS(358), + [anon_sym_return] = ACTIONS(478), + [anon_sym_static] = ACTIONS(480), + [anon_sym_union] = ACTIONS(476), + [anon_sym_unsafe] = ACTIONS(362), + [anon_sym_while] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(482), + [anon_sym_move] = ACTIONS(484), + [anon_sym_try] = ACTIONS(366), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(486), + [sym_super] = ACTIONS(488), + [sym_crate] = ACTIONS(488), + [sym_metavariable] = ACTIONS(490), + [sym__raw_string_literal_start] = ACTIONS(115), + [sym_float_literal] = ACTIONS(95), + }, + [308] = { + [sym_bracketed_type] = STATE(3506), + [sym_generic_function] = STATE(1695), + [sym_generic_type_with_turbofish] = STATE(2844), + [sym__expression_except_range] = STATE(1590), + [sym__expression] = STATE(1777), + [sym_macro_invocation] = STATE(1705), + [sym_scoped_identifier] = STATE(1568), + [sym_scoped_type_identifier_in_expression_position] = STATE(3132), + [sym_range_expression] = STATE(1699), + [sym_unary_expression] = STATE(1695), + [sym_try_expression] = STATE(1695), + [sym_reference_expression] = STATE(1695), + [sym_binary_expression] = STATE(1695), + [sym_assignment_expression] = STATE(1695), + [sym_compound_assignment_expr] = STATE(1695), + [sym_type_cast_expression] = STATE(1695), + [sym_return_expression] = STATE(1695), + [sym_yield_expression] = STATE(1695), + [sym_call_expression] = STATE(1695), + [sym_array_expression] = STATE(1695), + [sym_parenthesized_expression] = STATE(1695), + [sym_tuple_expression] = STATE(1695), + [sym_unit_expression] = STATE(1695), + [sym_struct_expression] = STATE(1695), + [sym_if_expression] = STATE(1695), + [sym_match_expression] = STATE(1695), + [sym_while_expression] = STATE(1695), + [sym_loop_expression] = STATE(1695), + [sym_for_expression] = STATE(1695), + [sym_const_block] = STATE(1695), + [sym_closure_expression] = STATE(1695), + [sym_closure_parameters] = STATE(222), + [sym_label] = STATE(3593), + [sym_break_expression] = STATE(1695), + [sym_continue_expression] = STATE(1695), + [sym_index_expression] = STATE(1695), + [sym_await_expression] = STATE(1695), + [sym_field_expression] = STATE(1583), + [sym_unsafe_block] = STATE(1695), + [sym_async_block] = STATE(1695), + [sym_try_block] = STATE(1695), + [sym_block] = STATE(1695), + [sym__literal] = STATE(1695), + [sym_string_literal] = STATE(1801), + [sym_raw_string_literal] = STATE(1801), + [sym_boolean_literal] = STATE(1801), + [sym_line_comment] = STATE(308), + [sym_block_comment] = STATE(308), [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(484), + [anon_sym_LPAREN] = ACTIONS(456), + [anon_sym_LBRACK] = ACTIONS(458), [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_STAR] = ACTIONS(1021), + [anon_sym_STAR] = ACTIONS(993), [anon_sym_u8] = ACTIONS(404), [anon_sym_i8] = ACTIONS(404), [anon_sym_u16] = ACTIONS(404), @@ -51152,12 +51270,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(404), [anon_sym_str] = ACTIONS(404), [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_BANG] = ACTIONS(1021), - [anon_sym_AMP] = ACTIONS(1023), + [anon_sym_DASH] = ACTIONS(993), + [anon_sym_BANG] = ACTIONS(993), + [anon_sym_AMP] = ACTIONS(995), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1025), + [anon_sym_DOT_DOT] = ACTIONS(1063), [anon_sym_COLON_COLON] = ACTIONS(408), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(410), @@ -51191,55 +51309,165 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(454), [sym_float_literal] = ACTIONS(442), }, - [308] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1671), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(308), - [sym_block_comment] = STATE(308), + [309] = { + [sym_bracketed_type] = STATE(3506), + [sym_generic_function] = STATE(1695), + [sym_generic_type_with_turbofish] = STATE(2844), + [sym__expression_except_range] = STATE(1590), + [sym__expression] = STATE(1714), + [sym_macro_invocation] = STATE(1705), + [sym_scoped_identifier] = STATE(1568), + [sym_scoped_type_identifier_in_expression_position] = STATE(3132), + [sym_range_expression] = STATE(1699), + [sym_unary_expression] = STATE(1695), + [sym_try_expression] = STATE(1695), + [sym_reference_expression] = STATE(1695), + [sym_binary_expression] = STATE(1695), + [sym_assignment_expression] = STATE(1695), + [sym_compound_assignment_expr] = STATE(1695), + [sym_type_cast_expression] = STATE(1695), + [sym_return_expression] = STATE(1695), + [sym_yield_expression] = STATE(1695), + [sym_call_expression] = STATE(1695), + [sym_array_expression] = STATE(1695), + [sym_parenthesized_expression] = STATE(1695), + [sym_tuple_expression] = STATE(1695), + [sym_unit_expression] = STATE(1695), + [sym_struct_expression] = STATE(1695), + [sym_if_expression] = STATE(1695), + [sym_match_expression] = STATE(1695), + [sym_while_expression] = STATE(1695), + [sym_loop_expression] = STATE(1695), + [sym_for_expression] = STATE(1695), + [sym_const_block] = STATE(1695), + [sym_closure_expression] = STATE(1695), + [sym_closure_parameters] = STATE(222), + [sym_label] = STATE(3593), + [sym_break_expression] = STATE(1695), + [sym_continue_expression] = STATE(1695), + [sym_index_expression] = STATE(1695), + [sym_await_expression] = STATE(1695), + [sym_field_expression] = STATE(1583), + [sym_unsafe_block] = STATE(1695), + [sym_async_block] = STATE(1695), + [sym_try_block] = STATE(1695), + [sym_block] = STATE(1695), + [sym__literal] = STATE(1695), + [sym_string_literal] = STATE(1801), + [sym_raw_string_literal] = STATE(1801), + [sym_boolean_literal] = STATE(1801), + [sym_line_comment] = STATE(309), + [sym_block_comment] = STATE(309), + [sym_identifier] = ACTIONS(398), + [anon_sym_LPAREN] = ACTIONS(456), + [anon_sym_LBRACK] = ACTIONS(458), + [anon_sym_LBRACE] = ACTIONS(400), + [anon_sym_STAR] = ACTIONS(993), + [anon_sym_u8] = ACTIONS(404), + [anon_sym_i8] = ACTIONS(404), + [anon_sym_u16] = ACTIONS(404), + [anon_sym_i16] = ACTIONS(404), + [anon_sym_u32] = ACTIONS(404), + [anon_sym_i32] = ACTIONS(404), + [anon_sym_u64] = ACTIONS(404), + [anon_sym_i64] = ACTIONS(404), + [anon_sym_u128] = ACTIONS(404), + [anon_sym_i128] = ACTIONS(404), + [anon_sym_isize] = ACTIONS(404), + [anon_sym_usize] = ACTIONS(404), + [anon_sym_f32] = ACTIONS(404), + [anon_sym_f64] = ACTIONS(404), + [anon_sym_bool] = ACTIONS(404), + [anon_sym_str] = ACTIONS(404), + [anon_sym_char] = ACTIONS(404), + [anon_sym_DASH] = ACTIONS(993), + [anon_sym_BANG] = ACTIONS(993), + [anon_sym_AMP] = ACTIONS(995), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1063), + [anon_sym_COLON_COLON] = ACTIONS(408), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(410), + [anon_sym_break] = ACTIONS(412), + [anon_sym_const] = ACTIONS(414), + [anon_sym_continue] = ACTIONS(416), + [anon_sym_default] = ACTIONS(418), + [anon_sym_for] = ACTIONS(420), + [anon_sym_if] = ACTIONS(422), + [anon_sym_loop] = ACTIONS(424), + [anon_sym_match] = ACTIONS(426), + [anon_sym_return] = ACTIONS(428), + [anon_sym_static] = ACTIONS(430), + [anon_sym_union] = ACTIONS(418), + [anon_sym_unsafe] = ACTIONS(432), + [anon_sym_while] = ACTIONS(434), + [anon_sym_yield] = ACTIONS(436), + [anon_sym_move] = ACTIONS(438), + [anon_sym_try] = ACTIONS(440), + [sym_integer_literal] = ACTIONS(442), + [aux_sym_string_literal_token1] = ACTIONS(444), + [sym_char_literal] = ACTIONS(442), + [anon_sym_true] = ACTIONS(446), + [anon_sym_false] = ACTIONS(446), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(448), + [sym_super] = ACTIONS(450), + [sym_crate] = ACTIONS(450), + [sym_metavariable] = ACTIONS(452), + [sym__raw_string_literal_start] = ACTIONS(454), + [sym_float_literal] = ACTIONS(442), + }, + [310] = { + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1864), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1268), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), + [sym_line_comment] = STATE(310), + [sym_block_comment] = STATE(310), [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -51301,211 +51529,211 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [309] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1853), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(458), - [sym_match_expression] = STATE(458), - [sym_while_expression] = STATE(458), - [sym_loop_expression] = STATE(458), - [sym_for_expression] = STATE(458), - [sym_const_block] = STATE(458), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3579), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(458), - [sym_async_block] = STATE(458), - [sym_try_block] = STATE(458), - [sym_block] = STATE(458), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(309), - [sym_block_comment] = STATE(309), - [sym_identifier] = ACTIONS(334), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(1210), - [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_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(1212), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(1214), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(1216), - [anon_sym_if] = ACTIONS(1218), - [anon_sym_loop] = ACTIONS(1220), - [anon_sym_match] = ACTIONS(1222), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(1224), - [anon_sym_while] = ACTIONS(1226), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(1228), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), + [311] = { + [sym_line_comment] = STATE(311), + [sym_block_comment] = STATE(311), + [ts_builtin_sym_end] = ACTIONS(1232), + [sym_identifier] = ACTIONS(1234), + [anon_sym_SEMI] = ACTIONS(1232), + [anon_sym_macro_rules_BANG] = ACTIONS(1232), + [anon_sym_LPAREN] = ACTIONS(1232), + [anon_sym_LBRACK] = ACTIONS(1232), + [anon_sym_LBRACE] = ACTIONS(1232), + [anon_sym_RBRACE] = ACTIONS(1232), + [anon_sym_PLUS] = ACTIONS(1234), + [anon_sym_STAR] = ACTIONS(1234), + [anon_sym_QMARK] = ACTIONS(1232), + [anon_sym_u8] = ACTIONS(1234), + [anon_sym_i8] = ACTIONS(1234), + [anon_sym_u16] = ACTIONS(1234), + [anon_sym_i16] = ACTIONS(1234), + [anon_sym_u32] = ACTIONS(1234), + [anon_sym_i32] = ACTIONS(1234), + [anon_sym_u64] = ACTIONS(1234), + [anon_sym_i64] = ACTIONS(1234), + [anon_sym_u128] = ACTIONS(1234), + [anon_sym_i128] = ACTIONS(1234), + [anon_sym_isize] = ACTIONS(1234), + [anon_sym_usize] = ACTIONS(1234), + [anon_sym_f32] = ACTIONS(1234), + [anon_sym_f64] = ACTIONS(1234), + [anon_sym_bool] = ACTIONS(1234), + [anon_sym_str] = ACTIONS(1234), + [anon_sym_char] = ACTIONS(1234), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_SLASH] = ACTIONS(1234), + [anon_sym_PERCENT] = ACTIONS(1234), + [anon_sym_CARET] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(1234), + [anon_sym_AMP] = ACTIONS(1234), + [anon_sym_PIPE] = ACTIONS(1234), + [anon_sym_AMP_AMP] = ACTIONS(1232), + [anon_sym_PIPE_PIPE] = ACTIONS(1232), + [anon_sym_LT_LT] = ACTIONS(1234), + [anon_sym_GT_GT] = ACTIONS(1234), + [anon_sym_PLUS_EQ] = ACTIONS(1232), + [anon_sym_DASH_EQ] = ACTIONS(1232), + [anon_sym_STAR_EQ] = ACTIONS(1232), + [anon_sym_SLASH_EQ] = ACTIONS(1232), + [anon_sym_PERCENT_EQ] = ACTIONS(1232), + [anon_sym_CARET_EQ] = ACTIONS(1232), + [anon_sym_AMP_EQ] = ACTIONS(1232), + [anon_sym_PIPE_EQ] = ACTIONS(1232), + [anon_sym_LT_LT_EQ] = ACTIONS(1232), + [anon_sym_GT_GT_EQ] = ACTIONS(1232), + [anon_sym_EQ] = ACTIONS(1234), + [anon_sym_EQ_EQ] = ACTIONS(1232), + [anon_sym_BANG_EQ] = ACTIONS(1232), + [anon_sym_GT] = ACTIONS(1234), + [anon_sym_LT] = ACTIONS(1234), + [anon_sym_GT_EQ] = ACTIONS(1232), + [anon_sym_LT_EQ] = ACTIONS(1232), + [anon_sym_DOT] = ACTIONS(1234), + [anon_sym_DOT_DOT] = ACTIONS(1234), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1232), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1232), + [anon_sym_COLON_COLON] = ACTIONS(1232), + [anon_sym_POUND] = ACTIONS(1232), + [anon_sym_SQUOTE] = ACTIONS(1234), + [anon_sym_as] = ACTIONS(1234), + [anon_sym_async] = ACTIONS(1234), + [anon_sym_break] = ACTIONS(1234), + [anon_sym_const] = ACTIONS(1234), + [anon_sym_continue] = ACTIONS(1234), + [anon_sym_default] = ACTIONS(1234), + [anon_sym_enum] = ACTIONS(1234), + [anon_sym_fn] = ACTIONS(1234), + [anon_sym_for] = ACTIONS(1234), + [anon_sym_if] = ACTIONS(1234), + [anon_sym_impl] = ACTIONS(1234), + [anon_sym_let] = ACTIONS(1234), + [anon_sym_loop] = ACTIONS(1234), + [anon_sym_match] = ACTIONS(1234), + [anon_sym_mod] = ACTIONS(1234), + [anon_sym_pub] = ACTIONS(1234), + [anon_sym_return] = ACTIONS(1234), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_struct] = ACTIONS(1234), + [anon_sym_trait] = ACTIONS(1234), + [anon_sym_type] = ACTIONS(1234), + [anon_sym_union] = ACTIONS(1234), + [anon_sym_unsafe] = ACTIONS(1234), + [anon_sym_use] = ACTIONS(1234), + [anon_sym_while] = ACTIONS(1234), + [anon_sym_extern] = ACTIONS(1234), + [anon_sym_else] = ACTIONS(1234), + [anon_sym_yield] = ACTIONS(1234), + [anon_sym_move] = ACTIONS(1234), + [anon_sym_try] = ACTIONS(1234), + [sym_integer_literal] = ACTIONS(1232), + [aux_sym_string_literal_token1] = ACTIONS(1232), + [sym_char_literal] = ACTIONS(1232), + [anon_sym_true] = ACTIONS(1234), + [anon_sym_false] = ACTIONS(1234), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [sym_self] = ACTIONS(1234), + [sym_super] = ACTIONS(1234), + [sym_crate] = ACTIONS(1234), + [sym_metavariable] = ACTIONS(1232), + [sym__raw_string_literal_start] = ACTIONS(1232), + [sym_float_literal] = ACTIONS(1232), }, - [310] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1323), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(310), - [sym_block_comment] = STATE(310), - [sym_identifier] = ACTIONS(456), + [312] = { + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2731), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1840), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(223), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), + [sym_line_comment] = STATE(312), + [sym_block_comment] = STATE(312), + [sym_identifier] = ACTIONS(466), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(1041), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(1041), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_AMP] = ACTIONS(1043), + [anon_sym_STAR] = ACTIONS(1043), + [anon_sym_u8] = ACTIONS(468), + [anon_sym_i8] = ACTIONS(468), + [anon_sym_u16] = ACTIONS(468), + [anon_sym_i16] = ACTIONS(468), + [anon_sym_u32] = ACTIONS(468), + [anon_sym_i32] = ACTIONS(468), + [anon_sym_u64] = ACTIONS(468), + [anon_sym_i64] = ACTIONS(468), + [anon_sym_u128] = ACTIONS(468), + [anon_sym_i128] = ACTIONS(468), + [anon_sym_isize] = ACTIONS(468), + [anon_sym_usize] = ACTIONS(468), + [anon_sym_f32] = ACTIONS(468), + [anon_sym_f64] = ACTIONS(468), + [anon_sym_bool] = ACTIONS(468), + [anon_sym_str] = ACTIONS(468), + [anon_sym_char] = ACTIONS(468), + [anon_sym_DASH] = ACTIONS(1043), + [anon_sym_BANG] = ACTIONS(1043), + [anon_sym_AMP] = ACTIONS(1045), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(462), + [anon_sym_DOT_DOT] = ACTIONS(1049), + [anon_sym_COLON_COLON] = ACTIONS(472), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(464), + [anon_sym_break] = ACTIONS(474), [anon_sym_const] = ACTIONS(348), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(466), + [anon_sym_default] = ACTIONS(476), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), [anon_sym_loop] = ACTIONS(356), [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(468), - [anon_sym_static] = ACTIONS(470), - [anon_sym_union] = ACTIONS(466), + [anon_sym_return] = ACTIONS(478), + [anon_sym_static] = ACTIONS(480), + [anon_sym_union] = ACTIONS(476), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(472), - [anon_sym_move] = ACTIONS(474), + [anon_sym_yield] = ACTIONS(482), + [anon_sym_move] = ACTIONS(484), [anon_sym_try] = ACTIONS(366), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -51514,62 +51742,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), + [sym_self] = ACTIONS(486), + [sym_super] = ACTIONS(488), + [sym_crate] = ACTIONS(488), + [sym_metavariable] = ACTIONS(490), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [311] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1870), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(311), - [sym_block_comment] = STATE(311), + [313] = { + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1865), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1268), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), + [sym_line_comment] = STATE(313), + [sym_block_comment] = STATE(313), [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -51631,101 +51859,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [312] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1713), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(312), - [sym_block_comment] = STATE(312), - [sym_identifier] = ACTIONS(456), + [314] = { + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2731), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1834), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(223), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), + [sym_line_comment] = STATE(314), + [sym_block_comment] = STATE(314), + [sym_identifier] = ACTIONS(466), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(1041), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(1041), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_AMP] = ACTIONS(1043), + [anon_sym_STAR] = ACTIONS(1043), + [anon_sym_u8] = ACTIONS(468), + [anon_sym_i8] = ACTIONS(468), + [anon_sym_u16] = ACTIONS(468), + [anon_sym_i16] = ACTIONS(468), + [anon_sym_u32] = ACTIONS(468), + [anon_sym_i32] = ACTIONS(468), + [anon_sym_u64] = ACTIONS(468), + [anon_sym_i64] = ACTIONS(468), + [anon_sym_u128] = ACTIONS(468), + [anon_sym_i128] = ACTIONS(468), + [anon_sym_isize] = ACTIONS(468), + [anon_sym_usize] = ACTIONS(468), + [anon_sym_f32] = ACTIONS(468), + [anon_sym_f64] = ACTIONS(468), + [anon_sym_bool] = ACTIONS(468), + [anon_sym_str] = ACTIONS(468), + [anon_sym_char] = ACTIONS(468), + [anon_sym_DASH] = ACTIONS(1043), + [anon_sym_BANG] = ACTIONS(1043), + [anon_sym_AMP] = ACTIONS(1045), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(462), + [anon_sym_DOT_DOT] = ACTIONS(1210), + [anon_sym_COLON_COLON] = ACTIONS(472), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(464), + [anon_sym_break] = ACTIONS(474), [anon_sym_const] = ACTIONS(348), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(466), + [anon_sym_default] = ACTIONS(476), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), [anon_sym_loop] = ACTIONS(356), [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(468), - [anon_sym_static] = ACTIONS(470), - [anon_sym_union] = ACTIONS(466), + [anon_sym_return] = ACTIONS(478), + [anon_sym_static] = ACTIONS(480), + [anon_sym_union] = ACTIONS(476), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(472), - [anon_sym_move] = ACTIONS(474), + [anon_sym_yield] = ACTIONS(482), + [anon_sym_move] = ACTIONS(484), [anon_sym_try] = ACTIONS(366), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -51734,62 +51962,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), + [sym_self] = ACTIONS(486), + [sym_super] = ACTIONS(488), + [sym_crate] = ACTIONS(488), + [sym_metavariable] = ACTIONS(490), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [313] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1868), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(313), - [sym_block_comment] = STATE(313), + [315] = { + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1505), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1268), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), + [sym_line_comment] = STATE(315), + [sym_block_comment] = STATE(315), [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -51817,7 +52045,7 @@ 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(1055), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), @@ -51851,55 +52079,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [314] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1488), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(314), - [sym_block_comment] = STATE(314), + [316] = { + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1853), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1268), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), + [sym_line_comment] = STATE(316), + [sym_block_comment] = STATE(316), [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -51927,7 +52155,7 @@ 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(1176), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), @@ -51961,59 +52189,279 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [315] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1490), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(315), - [sym_block_comment] = STATE(315), - [sym_identifier] = ACTIONS(334), + [317] = { + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2731), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1602), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(236), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), + [sym_line_comment] = STATE(317), + [sym_block_comment] = STATE(317), + [sym_identifier] = ACTIONS(466), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_STAR] = ACTIONS(973), + [anon_sym_u8] = ACTIONS(468), + [anon_sym_i8] = ACTIONS(468), + [anon_sym_u16] = ACTIONS(468), + [anon_sym_i16] = ACTIONS(468), + [anon_sym_u32] = ACTIONS(468), + [anon_sym_i32] = ACTIONS(468), + [anon_sym_u64] = ACTIONS(468), + [anon_sym_i64] = ACTIONS(468), + [anon_sym_u128] = ACTIONS(468), + [anon_sym_i128] = ACTIONS(468), + [anon_sym_isize] = ACTIONS(468), + [anon_sym_usize] = ACTIONS(468), + [anon_sym_f32] = ACTIONS(468), + [anon_sym_f64] = ACTIONS(468), + [anon_sym_bool] = ACTIONS(468), + [anon_sym_str] = ACTIONS(468), + [anon_sym_char] = ACTIONS(468), + [anon_sym_DASH] = ACTIONS(973), + [anon_sym_BANG] = ACTIONS(973), + [anon_sym_AMP] = ACTIONS(975), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1059), + [anon_sym_COLON_COLON] = ACTIONS(472), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(346), + [anon_sym_break] = ACTIONS(494), + [anon_sym_const] = ACTIONS(348), + [anon_sym_continue] = ACTIONS(496), + [anon_sym_default] = ACTIONS(476), + [anon_sym_for] = ACTIONS(352), + [anon_sym_if] = ACTIONS(354), + [anon_sym_loop] = ACTIONS(356), + [anon_sym_match] = ACTIONS(358), + [anon_sym_return] = ACTIONS(498), + [anon_sym_static] = ACTIONS(500), + [anon_sym_union] = ACTIONS(476), + [anon_sym_unsafe] = ACTIONS(362), + [anon_sym_while] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(502), + [anon_sym_move] = ACTIONS(504), + [anon_sym_try] = ACTIONS(366), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(486), + [sym_super] = ACTIONS(488), + [sym_crate] = ACTIONS(488), + [sym_metavariable] = ACTIONS(490), + [sym__raw_string_literal_start] = ACTIONS(115), + [sym_float_literal] = ACTIONS(95), + }, + [318] = { + [sym_bracketed_type] = STATE(3506), + [sym_generic_function] = STATE(1695), + [sym_generic_type_with_turbofish] = STATE(2844), + [sym__expression_except_range] = STATE(1590), + [sym__expression] = STATE(1716), + [sym_macro_invocation] = STATE(1705), + [sym_scoped_identifier] = STATE(1568), + [sym_scoped_type_identifier_in_expression_position] = STATE(3132), + [sym_range_expression] = STATE(1699), + [sym_unary_expression] = STATE(1695), + [sym_try_expression] = STATE(1695), + [sym_reference_expression] = STATE(1695), + [sym_binary_expression] = STATE(1695), + [sym_assignment_expression] = STATE(1695), + [sym_compound_assignment_expr] = STATE(1695), + [sym_type_cast_expression] = STATE(1695), + [sym_return_expression] = STATE(1695), + [sym_yield_expression] = STATE(1695), + [sym_call_expression] = STATE(1695), + [sym_array_expression] = STATE(1695), + [sym_parenthesized_expression] = STATE(1695), + [sym_tuple_expression] = STATE(1695), + [sym_unit_expression] = STATE(1695), + [sym_struct_expression] = STATE(1695), + [sym_if_expression] = STATE(1695), + [sym_match_expression] = STATE(1695), + [sym_while_expression] = STATE(1695), + [sym_loop_expression] = STATE(1695), + [sym_for_expression] = STATE(1695), + [sym_const_block] = STATE(1695), + [sym_closure_expression] = STATE(1695), + [sym_closure_parameters] = STATE(222), + [sym_label] = STATE(3593), + [sym_break_expression] = STATE(1695), + [sym_continue_expression] = STATE(1695), + [sym_index_expression] = STATE(1695), + [sym_await_expression] = STATE(1695), + [sym_field_expression] = STATE(1583), + [sym_unsafe_block] = STATE(1695), + [sym_async_block] = STATE(1695), + [sym_try_block] = STATE(1695), + [sym_block] = STATE(1695), + [sym__literal] = STATE(1695), + [sym_string_literal] = STATE(1801), + [sym_raw_string_literal] = STATE(1801), + [sym_boolean_literal] = STATE(1801), + [sym_line_comment] = STATE(318), + [sym_block_comment] = STATE(318), + [sym_identifier] = ACTIONS(398), + [anon_sym_LPAREN] = ACTIONS(456), + [anon_sym_LBRACK] = ACTIONS(458), + [anon_sym_LBRACE] = ACTIONS(400), + [anon_sym_STAR] = ACTIONS(993), + [anon_sym_u8] = ACTIONS(404), + [anon_sym_i8] = ACTIONS(404), + [anon_sym_u16] = ACTIONS(404), + [anon_sym_i16] = ACTIONS(404), + [anon_sym_u32] = ACTIONS(404), + [anon_sym_i32] = ACTIONS(404), + [anon_sym_u64] = ACTIONS(404), + [anon_sym_i64] = ACTIONS(404), + [anon_sym_u128] = ACTIONS(404), + [anon_sym_i128] = ACTIONS(404), + [anon_sym_isize] = ACTIONS(404), + [anon_sym_usize] = ACTIONS(404), + [anon_sym_f32] = ACTIONS(404), + [anon_sym_f64] = ACTIONS(404), + [anon_sym_bool] = ACTIONS(404), + [anon_sym_str] = ACTIONS(404), + [anon_sym_char] = ACTIONS(404), + [anon_sym_DASH] = ACTIONS(993), + [anon_sym_BANG] = ACTIONS(993), + [anon_sym_AMP] = ACTIONS(995), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(997), + [anon_sym_COLON_COLON] = ACTIONS(408), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(410), + [anon_sym_break] = ACTIONS(412), + [anon_sym_const] = ACTIONS(414), + [anon_sym_continue] = ACTIONS(416), + [anon_sym_default] = ACTIONS(418), + [anon_sym_for] = ACTIONS(420), + [anon_sym_if] = ACTIONS(422), + [anon_sym_loop] = ACTIONS(424), + [anon_sym_match] = ACTIONS(426), + [anon_sym_return] = ACTIONS(428), + [anon_sym_static] = ACTIONS(430), + [anon_sym_union] = ACTIONS(418), + [anon_sym_unsafe] = ACTIONS(432), + [anon_sym_while] = ACTIONS(434), + [anon_sym_yield] = ACTIONS(436), + [anon_sym_move] = ACTIONS(438), + [anon_sym_try] = ACTIONS(440), + [sym_integer_literal] = ACTIONS(442), + [aux_sym_string_literal_token1] = ACTIONS(444), + [sym_char_literal] = ACTIONS(442), + [anon_sym_true] = ACTIONS(446), + [anon_sym_false] = ACTIONS(446), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(448), + [sym_super] = ACTIONS(450), + [sym_crate] = ACTIONS(450), + [sym_metavariable] = ACTIONS(452), + [sym__raw_string_literal_start] = ACTIONS(454), + [sym_float_literal] = ACTIONS(442), + }, + [319] = { + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1870), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1268), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(456), + [sym_match_expression] = STATE(456), + [sym_while_expression] = STATE(456), + [sym_loop_expression] = STATE(456), + [sym_for_expression] = STATE(456), + [sym_const_block] = STATE(456), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3587), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(456), + [sym_async_block] = STATE(456), + [sym_try_block] = STATE(456), + [sym_block] = STATE(456), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), + [sym_line_comment] = STATE(319), + [sym_block_comment] = STATE(319), + [sym_identifier] = ACTIONS(334), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(1212), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -52037,26 +52485,26 @@ 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(1176), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(1214), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(1216), [anon_sym_continue] = ACTIONS(45), [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), + [anon_sym_for] = ACTIONS(1218), + [anon_sym_if] = ACTIONS(1220), + [anon_sym_loop] = ACTIONS(1222), + [anon_sym_match] = ACTIONS(1224), [anon_sym_return] = ACTIONS(69), [anon_sym_static] = ACTIONS(360), [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), + [anon_sym_unsafe] = ACTIONS(1226), + [anon_sym_while] = ACTIONS(1228), [anon_sym_yield] = ACTIONS(89), [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), + [anon_sym_try] = ACTIONS(1230), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), [sym_char_literal] = ACTIONS(95), @@ -52071,55 +52519,275 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [316] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1733), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(316), - [sym_block_comment] = STATE(316), + [320] = { + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2731), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1580), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(236), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), + [sym_line_comment] = STATE(320), + [sym_block_comment] = STATE(320), + [sym_identifier] = ACTIONS(466), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_STAR] = ACTIONS(973), + [anon_sym_u8] = ACTIONS(468), + [anon_sym_i8] = ACTIONS(468), + [anon_sym_u16] = ACTIONS(468), + [anon_sym_i16] = ACTIONS(468), + [anon_sym_u32] = ACTIONS(468), + [anon_sym_i32] = ACTIONS(468), + [anon_sym_u64] = ACTIONS(468), + [anon_sym_i64] = ACTIONS(468), + [anon_sym_u128] = ACTIONS(468), + [anon_sym_i128] = ACTIONS(468), + [anon_sym_isize] = ACTIONS(468), + [anon_sym_usize] = ACTIONS(468), + [anon_sym_f32] = ACTIONS(468), + [anon_sym_f64] = ACTIONS(468), + [anon_sym_bool] = ACTIONS(468), + [anon_sym_str] = ACTIONS(468), + [anon_sym_char] = ACTIONS(468), + [anon_sym_DASH] = ACTIONS(973), + [anon_sym_BANG] = ACTIONS(973), + [anon_sym_AMP] = ACTIONS(975), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1059), + [anon_sym_COLON_COLON] = ACTIONS(472), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(346), + [anon_sym_break] = ACTIONS(494), + [anon_sym_const] = ACTIONS(348), + [anon_sym_continue] = ACTIONS(496), + [anon_sym_default] = ACTIONS(476), + [anon_sym_for] = ACTIONS(352), + [anon_sym_if] = ACTIONS(354), + [anon_sym_loop] = ACTIONS(356), + [anon_sym_match] = ACTIONS(358), + [anon_sym_return] = ACTIONS(498), + [anon_sym_static] = ACTIONS(500), + [anon_sym_union] = ACTIONS(476), + [anon_sym_unsafe] = ACTIONS(362), + [anon_sym_while] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(502), + [anon_sym_move] = ACTIONS(504), + [anon_sym_try] = ACTIONS(366), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(486), + [sym_super] = ACTIONS(488), + [sym_crate] = ACTIONS(488), + [sym_metavariable] = ACTIONS(490), + [sym__raw_string_literal_start] = ACTIONS(115), + [sym_float_literal] = ACTIONS(95), + }, + [321] = { + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2731), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1617), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(236), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), + [sym_line_comment] = STATE(321), + [sym_block_comment] = STATE(321), + [sym_identifier] = ACTIONS(466), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_STAR] = ACTIONS(973), + [anon_sym_u8] = ACTIONS(468), + [anon_sym_i8] = ACTIONS(468), + [anon_sym_u16] = ACTIONS(468), + [anon_sym_i16] = ACTIONS(468), + [anon_sym_u32] = ACTIONS(468), + [anon_sym_i32] = ACTIONS(468), + [anon_sym_u64] = ACTIONS(468), + [anon_sym_i64] = ACTIONS(468), + [anon_sym_u128] = ACTIONS(468), + [anon_sym_i128] = ACTIONS(468), + [anon_sym_isize] = ACTIONS(468), + [anon_sym_usize] = ACTIONS(468), + [anon_sym_f32] = ACTIONS(468), + [anon_sym_f64] = ACTIONS(468), + [anon_sym_bool] = ACTIONS(468), + [anon_sym_str] = ACTIONS(468), + [anon_sym_char] = ACTIONS(468), + [anon_sym_DASH] = ACTIONS(973), + [anon_sym_BANG] = ACTIONS(973), + [anon_sym_AMP] = ACTIONS(975), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1059), + [anon_sym_COLON_COLON] = ACTIONS(472), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(346), + [anon_sym_break] = ACTIONS(494), + [anon_sym_const] = ACTIONS(348), + [anon_sym_continue] = ACTIONS(496), + [anon_sym_default] = ACTIONS(476), + [anon_sym_for] = ACTIONS(352), + [anon_sym_if] = ACTIONS(354), + [anon_sym_loop] = ACTIONS(356), + [anon_sym_match] = ACTIONS(358), + [anon_sym_return] = ACTIONS(498), + [anon_sym_static] = ACTIONS(500), + [anon_sym_union] = ACTIONS(476), + [anon_sym_unsafe] = ACTIONS(362), + [anon_sym_while] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(502), + [anon_sym_move] = ACTIONS(504), + [anon_sym_try] = ACTIONS(366), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(486), + [sym_super] = ACTIONS(488), + [sym_crate] = ACTIONS(488), + [sym_metavariable] = ACTIONS(490), + [sym__raw_string_literal_start] = ACTIONS(115), + [sym_float_literal] = ACTIONS(95), + }, + [322] = { + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1648), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1268), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), + [sym_line_comment] = STATE(322), + [sym_block_comment] = STATE(322), [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -52181,101 +52849,211 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [317] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1782), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(317), - [sym_block_comment] = STATE(317), - [sym_identifier] = ACTIONS(334), + [323] = { + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2731), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1414), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(236), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), + [sym_line_comment] = STATE(323), + [sym_block_comment] = STATE(323), + [sym_identifier] = ACTIONS(466), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), - [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_STAR] = ACTIONS(973), + [anon_sym_u8] = ACTIONS(468), + [anon_sym_i8] = ACTIONS(468), + [anon_sym_u16] = ACTIONS(468), + [anon_sym_i16] = ACTIONS(468), + [anon_sym_u32] = ACTIONS(468), + [anon_sym_i32] = ACTIONS(468), + [anon_sym_u64] = ACTIONS(468), + [anon_sym_i64] = ACTIONS(468), + [anon_sym_u128] = ACTIONS(468), + [anon_sym_i128] = ACTIONS(468), + [anon_sym_isize] = ACTIONS(468), + [anon_sym_usize] = ACTIONS(468), + [anon_sym_f32] = ACTIONS(468), + [anon_sym_f64] = ACTIONS(468), + [anon_sym_bool] = ACTIONS(468), + [anon_sym_str] = ACTIONS(468), + [anon_sym_char] = ACTIONS(468), + [anon_sym_DASH] = ACTIONS(973), + [anon_sym_BANG] = ACTIONS(973), + [anon_sym_AMP] = ACTIONS(975), [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(1059), + [anon_sym_COLON_COLON] = ACTIONS(472), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), + [anon_sym_break] = ACTIONS(494), + [anon_sym_const] = ACTIONS(348), + [anon_sym_continue] = ACTIONS(496), + [anon_sym_default] = ACTIONS(476), + [anon_sym_for] = ACTIONS(352), + [anon_sym_if] = ACTIONS(354), + [anon_sym_loop] = ACTIONS(356), + [anon_sym_match] = ACTIONS(358), + [anon_sym_return] = ACTIONS(498), + [anon_sym_static] = ACTIONS(500), + [anon_sym_union] = ACTIONS(476), + [anon_sym_unsafe] = ACTIONS(362), + [anon_sym_while] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(502), + [anon_sym_move] = ACTIONS(504), + [anon_sym_try] = ACTIONS(366), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(486), + [sym_super] = ACTIONS(488), + [sym_crate] = ACTIONS(488), + [sym_metavariable] = ACTIONS(490), + [sym__raw_string_literal_start] = ACTIONS(115), + [sym_float_literal] = ACTIONS(95), + }, + [324] = { + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2731), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1125), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(223), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), + [sym_line_comment] = STATE(324), + [sym_block_comment] = STATE(324), + [sym_identifier] = ACTIONS(466), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_STAR] = ACTIONS(1043), + [anon_sym_u8] = ACTIONS(468), + [anon_sym_i8] = ACTIONS(468), + [anon_sym_u16] = ACTIONS(468), + [anon_sym_i16] = ACTIONS(468), + [anon_sym_u32] = ACTIONS(468), + [anon_sym_i32] = ACTIONS(468), + [anon_sym_u64] = ACTIONS(468), + [anon_sym_i64] = ACTIONS(468), + [anon_sym_u128] = ACTIONS(468), + [anon_sym_i128] = ACTIONS(468), + [anon_sym_isize] = ACTIONS(468), + [anon_sym_usize] = ACTIONS(468), + [anon_sym_f32] = ACTIONS(468), + [anon_sym_f64] = ACTIONS(468), + [anon_sym_bool] = ACTIONS(468), + [anon_sym_str] = ACTIONS(468), + [anon_sym_char] = ACTIONS(468), + [anon_sym_DASH] = ACTIONS(1043), + [anon_sym_BANG] = ACTIONS(1043), + [anon_sym_AMP] = ACTIONS(1045), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1049), + [anon_sym_COLON_COLON] = ACTIONS(472), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(346), + [anon_sym_break] = ACTIONS(474), [anon_sym_const] = ACTIONS(348), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), + [anon_sym_default] = ACTIONS(476), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), [anon_sym_loop] = ACTIONS(356), [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), + [anon_sym_return] = ACTIONS(478), + [anon_sym_static] = ACTIONS(480), + [anon_sym_union] = ACTIONS(476), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), + [anon_sym_yield] = ACTIONS(482), + [anon_sym_move] = ACTIONS(484), [anon_sym_try] = ACTIONS(366), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -52284,66 +53062,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), + [sym_self] = ACTIONS(486), + [sym_super] = ACTIONS(488), + [sym_crate] = ACTIONS(488), + [sym_metavariable] = ACTIONS(490), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [318] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1786), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(464), - [sym_match_expression] = STATE(464), - [sym_while_expression] = STATE(464), - [sym_loop_expression] = STATE(464), - [sym_for_expression] = STATE(464), - [sym_const_block] = STATE(464), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3579), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(464), - [sym_async_block] = STATE(464), - [sym_try_block] = STATE(464), - [sym_block] = STATE(464), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(318), - [sym_block_comment] = STATE(318), + [325] = { + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1701), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1268), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), + [sym_line_comment] = STATE(325), + [sym_block_comment] = STATE(325), [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(1210), + [anon_sym_LBRACE] = ACTIONS(338), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -52370,23 +53148,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(1212), + [anon_sym_async] = ACTIONS(346), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(1214), + [anon_sym_const] = ACTIONS(348), [anon_sym_continue] = ACTIONS(45), [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(1216), - [anon_sym_if] = ACTIONS(1218), - [anon_sym_loop] = ACTIONS(1220), - [anon_sym_match] = ACTIONS(1222), + [anon_sym_for] = ACTIONS(352), + [anon_sym_if] = ACTIONS(354), + [anon_sym_loop] = ACTIONS(356), + [anon_sym_match] = ACTIONS(358), [anon_sym_return] = ACTIONS(69), [anon_sym_static] = ACTIONS(360), [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(1224), - [anon_sym_while] = ACTIONS(1226), + [anon_sym_unsafe] = ACTIONS(362), + [anon_sym_while] = ACTIONS(364), [anon_sym_yield] = ACTIONS(89), [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(1228), + [anon_sym_try] = ACTIONS(366), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), [sym_char_literal] = ACTIONS(95), @@ -52401,101 +53179,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [319] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1353), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(319), - [sym_block_comment] = STATE(319), - [sym_identifier] = ACTIONS(334), + [326] = { + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2731), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1795), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(223), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), + [sym_line_comment] = STATE(326), + [sym_block_comment] = STATE(326), + [sym_identifier] = ACTIONS(466), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), - [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_STAR] = ACTIONS(1043), + [anon_sym_u8] = ACTIONS(468), + [anon_sym_i8] = ACTIONS(468), + [anon_sym_u16] = ACTIONS(468), + [anon_sym_i16] = ACTIONS(468), + [anon_sym_u32] = ACTIONS(468), + [anon_sym_i32] = ACTIONS(468), + [anon_sym_u64] = ACTIONS(468), + [anon_sym_i64] = ACTIONS(468), + [anon_sym_u128] = ACTIONS(468), + [anon_sym_i128] = ACTIONS(468), + [anon_sym_isize] = ACTIONS(468), + [anon_sym_usize] = ACTIONS(468), + [anon_sym_f32] = ACTIONS(468), + [anon_sym_f64] = ACTIONS(468), + [anon_sym_bool] = ACTIONS(468), + [anon_sym_str] = ACTIONS(468), + [anon_sym_char] = ACTIONS(468), + [anon_sym_DASH] = ACTIONS(1043), + [anon_sym_BANG] = ACTIONS(1043), + [anon_sym_AMP] = ACTIONS(1045), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1176), - [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DOT_DOT] = ACTIONS(1049), + [anon_sym_COLON_COLON] = ACTIONS(472), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), + [anon_sym_break] = ACTIONS(474), [anon_sym_const] = ACTIONS(348), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), + [anon_sym_default] = ACTIONS(476), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), [anon_sym_loop] = ACTIONS(356), [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), + [anon_sym_return] = ACTIONS(478), + [anon_sym_static] = ACTIONS(480), + [anon_sym_union] = ACTIONS(476), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), + [anon_sym_yield] = ACTIONS(482), + [anon_sym_move] = ACTIONS(484), [anon_sym_try] = ACTIONS(366), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -52504,108 +53282,218 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), + [sym_self] = ACTIONS(486), + [sym_super] = ACTIONS(488), + [sym_crate] = ACTIONS(488), + [sym_metavariable] = ACTIONS(490), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [320] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1849), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(320), - [sym_block_comment] = STATE(320), - [sym_identifier] = ACTIONS(334), + [327] = { + [sym_bracketed_type] = STATE(3506), + [sym_generic_function] = STATE(1695), + [sym_generic_type_with_turbofish] = STATE(2844), + [sym__expression_except_range] = STATE(1590), + [sym__expression] = STATE(1861), + [sym_macro_invocation] = STATE(1705), + [sym_scoped_identifier] = STATE(1568), + [sym_scoped_type_identifier_in_expression_position] = STATE(3132), + [sym_range_expression] = STATE(1699), + [sym_unary_expression] = STATE(1695), + [sym_try_expression] = STATE(1695), + [sym_reference_expression] = STATE(1695), + [sym_binary_expression] = STATE(1695), + [sym_assignment_expression] = STATE(1695), + [sym_compound_assignment_expr] = STATE(1695), + [sym_type_cast_expression] = STATE(1695), + [sym_return_expression] = STATE(1695), + [sym_yield_expression] = STATE(1695), + [sym_call_expression] = STATE(1695), + [sym_array_expression] = STATE(1695), + [sym_parenthesized_expression] = STATE(1695), + [sym_tuple_expression] = STATE(1695), + [sym_unit_expression] = STATE(1695), + [sym_struct_expression] = STATE(1695), + [sym_if_expression] = STATE(1695), + [sym_match_expression] = STATE(1695), + [sym_while_expression] = STATE(1695), + [sym_loop_expression] = STATE(1695), + [sym_for_expression] = STATE(1695), + [sym_const_block] = STATE(1695), + [sym_closure_expression] = STATE(1695), + [sym_closure_parameters] = STATE(222), + [sym_label] = STATE(3593), + [sym_break_expression] = STATE(1695), + [sym_continue_expression] = STATE(1695), + [sym_index_expression] = STATE(1695), + [sym_await_expression] = STATE(1695), + [sym_field_expression] = STATE(1583), + [sym_unsafe_block] = STATE(1695), + [sym_async_block] = STATE(1695), + [sym_try_block] = STATE(1695), + [sym_block] = STATE(1695), + [sym__literal] = STATE(1695), + [sym_string_literal] = STATE(1801), + [sym_raw_string_literal] = STATE(1801), + [sym_boolean_literal] = STATE(1801), + [sym_line_comment] = STATE(327), + [sym_block_comment] = STATE(327), + [sym_identifier] = ACTIONS(398), + [anon_sym_LPAREN] = ACTIONS(456), + [anon_sym_LBRACK] = ACTIONS(458), + [anon_sym_LBRACE] = ACTIONS(400), + [anon_sym_STAR] = ACTIONS(993), + [anon_sym_u8] = ACTIONS(404), + [anon_sym_i8] = ACTIONS(404), + [anon_sym_u16] = ACTIONS(404), + [anon_sym_i16] = ACTIONS(404), + [anon_sym_u32] = ACTIONS(404), + [anon_sym_i32] = ACTIONS(404), + [anon_sym_u64] = ACTIONS(404), + [anon_sym_i64] = ACTIONS(404), + [anon_sym_u128] = ACTIONS(404), + [anon_sym_i128] = ACTIONS(404), + [anon_sym_isize] = ACTIONS(404), + [anon_sym_usize] = ACTIONS(404), + [anon_sym_f32] = ACTIONS(404), + [anon_sym_f64] = ACTIONS(404), + [anon_sym_bool] = ACTIONS(404), + [anon_sym_str] = ACTIONS(404), + [anon_sym_char] = ACTIONS(404), + [anon_sym_DASH] = ACTIONS(993), + [anon_sym_BANG] = ACTIONS(993), + [anon_sym_AMP] = ACTIONS(995), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(997), + [anon_sym_COLON_COLON] = ACTIONS(408), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(410), + [anon_sym_break] = ACTIONS(412), + [anon_sym_const] = ACTIONS(414), + [anon_sym_continue] = ACTIONS(416), + [anon_sym_default] = ACTIONS(418), + [anon_sym_for] = ACTIONS(420), + [anon_sym_if] = ACTIONS(422), + [anon_sym_loop] = ACTIONS(424), + [anon_sym_match] = ACTIONS(426), + [anon_sym_return] = ACTIONS(428), + [anon_sym_static] = ACTIONS(430), + [anon_sym_union] = ACTIONS(418), + [anon_sym_unsafe] = ACTIONS(432), + [anon_sym_while] = ACTIONS(434), + [anon_sym_yield] = ACTIONS(436), + [anon_sym_move] = ACTIONS(438), + [anon_sym_try] = ACTIONS(440), + [sym_integer_literal] = ACTIONS(442), + [aux_sym_string_literal_token1] = ACTIONS(444), + [sym_char_literal] = ACTIONS(442), + [anon_sym_true] = ACTIONS(446), + [anon_sym_false] = ACTIONS(446), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(448), + [sym_super] = ACTIONS(450), + [sym_crate] = ACTIONS(450), + [sym_metavariable] = ACTIONS(452), + [sym__raw_string_literal_start] = ACTIONS(454), + [sym_float_literal] = ACTIONS(442), + }, + [328] = { + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2731), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1559), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(236), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), + [sym_line_comment] = STATE(328), + [sym_block_comment] = STATE(328), + [sym_identifier] = ACTIONS(466), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), - [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_STAR] = ACTIONS(973), + [anon_sym_u8] = ACTIONS(468), + [anon_sym_i8] = ACTIONS(468), + [anon_sym_u16] = ACTIONS(468), + [anon_sym_i16] = ACTIONS(468), + [anon_sym_u32] = ACTIONS(468), + [anon_sym_i32] = ACTIONS(468), + [anon_sym_u64] = ACTIONS(468), + [anon_sym_i64] = ACTIONS(468), + [anon_sym_u128] = ACTIONS(468), + [anon_sym_i128] = ACTIONS(468), + [anon_sym_isize] = ACTIONS(468), + [anon_sym_usize] = ACTIONS(468), + [anon_sym_f32] = ACTIONS(468), + [anon_sym_f64] = ACTIONS(468), + [anon_sym_bool] = ACTIONS(468), + [anon_sym_str] = ACTIONS(468), + [anon_sym_char] = ACTIONS(468), + [anon_sym_DASH] = ACTIONS(973), + [anon_sym_BANG] = ACTIONS(973), + [anon_sym_AMP] = ACTIONS(975), [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(977), + [anon_sym_COLON_COLON] = ACTIONS(472), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), + [anon_sym_break] = ACTIONS(494), [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), + [anon_sym_continue] = ACTIONS(496), + [anon_sym_default] = ACTIONS(476), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), [anon_sym_loop] = ACTIONS(356), [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), + [anon_sym_return] = ACTIONS(498), + [anon_sym_static] = ACTIONS(500), + [anon_sym_union] = ACTIONS(476), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), + [anon_sym_yield] = ACTIONS(502), + [anon_sym_move] = ACTIONS(504), [anon_sym_try] = ACTIONS(366), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -52614,62 +53502,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), + [sym_self] = ACTIONS(486), + [sym_super] = ACTIONS(488), + [sym_crate] = ACTIONS(488), + [sym_metavariable] = ACTIONS(490), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [321] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1798), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(321), - [sym_block_comment] = STATE(321), + [329] = { + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1847), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1268), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), + [sym_line_comment] = STATE(329), + [sym_block_comment] = STATE(329), [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -52731,55 +53619,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [322] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1799), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(322), - [sym_block_comment] = STATE(322), + [330] = { + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1848), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1268), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), + [sym_line_comment] = STATE(330), + [sym_block_comment] = STATE(330), [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -52841,207 +53729,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [323] = { - [sym_line_comment] = STATE(323), - [sym_block_comment] = STATE(323), - [ts_builtin_sym_end] = ACTIONS(1232), - [sym_identifier] = ACTIONS(1234), - [anon_sym_SEMI] = ACTIONS(1232), - [anon_sym_macro_rules_BANG] = ACTIONS(1232), - [anon_sym_LPAREN] = ACTIONS(1232), - [anon_sym_LBRACK] = ACTIONS(1232), - [anon_sym_LBRACE] = ACTIONS(1232), - [anon_sym_RBRACE] = ACTIONS(1232), - [anon_sym_PLUS] = ACTIONS(1234), - [anon_sym_STAR] = ACTIONS(1234), - [anon_sym_QMARK] = ACTIONS(1232), - [anon_sym_u8] = ACTIONS(1234), - [anon_sym_i8] = ACTIONS(1234), - [anon_sym_u16] = ACTIONS(1234), - [anon_sym_i16] = ACTIONS(1234), - [anon_sym_u32] = ACTIONS(1234), - [anon_sym_i32] = ACTIONS(1234), - [anon_sym_u64] = ACTIONS(1234), - [anon_sym_i64] = ACTIONS(1234), - [anon_sym_u128] = ACTIONS(1234), - [anon_sym_i128] = ACTIONS(1234), - [anon_sym_isize] = ACTIONS(1234), - [anon_sym_usize] = ACTIONS(1234), - [anon_sym_f32] = ACTIONS(1234), - [anon_sym_f64] = ACTIONS(1234), - [anon_sym_bool] = ACTIONS(1234), - [anon_sym_str] = ACTIONS(1234), - [anon_sym_char] = ACTIONS(1234), - [anon_sym_DASH] = ACTIONS(1234), - [anon_sym_SLASH] = ACTIONS(1234), - [anon_sym_PERCENT] = ACTIONS(1234), - [anon_sym_CARET] = ACTIONS(1234), - [anon_sym_BANG] = ACTIONS(1234), - [anon_sym_AMP] = ACTIONS(1234), - [anon_sym_PIPE] = ACTIONS(1234), - [anon_sym_AMP_AMP] = ACTIONS(1232), - [anon_sym_PIPE_PIPE] = ACTIONS(1232), - [anon_sym_LT_LT] = ACTIONS(1234), - [anon_sym_GT_GT] = ACTIONS(1234), - [anon_sym_PLUS_EQ] = ACTIONS(1232), - [anon_sym_DASH_EQ] = ACTIONS(1232), - [anon_sym_STAR_EQ] = ACTIONS(1232), - [anon_sym_SLASH_EQ] = ACTIONS(1232), - [anon_sym_PERCENT_EQ] = ACTIONS(1232), - [anon_sym_CARET_EQ] = ACTIONS(1232), - [anon_sym_AMP_EQ] = ACTIONS(1232), - [anon_sym_PIPE_EQ] = ACTIONS(1232), - [anon_sym_LT_LT_EQ] = ACTIONS(1232), - [anon_sym_GT_GT_EQ] = ACTIONS(1232), - [anon_sym_EQ] = ACTIONS(1234), - [anon_sym_EQ_EQ] = ACTIONS(1232), - [anon_sym_BANG_EQ] = ACTIONS(1232), - [anon_sym_GT] = ACTIONS(1234), - [anon_sym_LT] = ACTIONS(1234), - [anon_sym_GT_EQ] = ACTIONS(1232), - [anon_sym_LT_EQ] = ACTIONS(1232), - [anon_sym_DOT] = ACTIONS(1234), - [anon_sym_DOT_DOT] = ACTIONS(1234), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1232), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1232), - [anon_sym_COLON_COLON] = ACTIONS(1232), - [anon_sym_POUND] = ACTIONS(1232), - [anon_sym_SQUOTE] = ACTIONS(1234), - [anon_sym_as] = ACTIONS(1234), - [anon_sym_async] = ACTIONS(1234), - [anon_sym_break] = ACTIONS(1234), - [anon_sym_const] = ACTIONS(1234), - [anon_sym_continue] = ACTIONS(1234), - [anon_sym_default] = ACTIONS(1234), - [anon_sym_enum] = ACTIONS(1234), - [anon_sym_fn] = ACTIONS(1234), - [anon_sym_for] = ACTIONS(1234), - [anon_sym_if] = ACTIONS(1234), - [anon_sym_impl] = ACTIONS(1234), - [anon_sym_let] = ACTIONS(1234), - [anon_sym_loop] = ACTIONS(1234), - [anon_sym_match] = ACTIONS(1234), - [anon_sym_mod] = ACTIONS(1234), - [anon_sym_pub] = ACTIONS(1234), - [anon_sym_return] = ACTIONS(1234), - [anon_sym_static] = ACTIONS(1234), - [anon_sym_struct] = ACTIONS(1234), - [anon_sym_trait] = ACTIONS(1234), - [anon_sym_type] = ACTIONS(1234), - [anon_sym_union] = ACTIONS(1234), - [anon_sym_unsafe] = ACTIONS(1234), - [anon_sym_use] = ACTIONS(1234), - [anon_sym_while] = ACTIONS(1234), - [anon_sym_extern] = ACTIONS(1234), - [anon_sym_else] = ACTIONS(1234), - [anon_sym_yield] = ACTIONS(1234), - [anon_sym_move] = ACTIONS(1234), - [anon_sym_try] = ACTIONS(1234), - [sym_integer_literal] = ACTIONS(1232), - [aux_sym_string_literal_token1] = ACTIONS(1232), - [sym_char_literal] = ACTIONS(1232), - [anon_sym_true] = ACTIONS(1234), - [anon_sym_false] = ACTIONS(1234), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1234), - [sym_super] = ACTIONS(1234), - [sym_crate] = ACTIONS(1234), - [sym_metavariable] = ACTIONS(1232), - [sym__raw_string_literal_start] = ACTIONS(1232), - [sym_float_literal] = ACTIONS(1232), - }, - [324] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1567), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(324), - [sym_block_comment] = STATE(324), - [sym_identifier] = ACTIONS(456), + [331] = { + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2731), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1581), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(236), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), + [sym_line_comment] = STATE(331), + [sym_block_comment] = STATE(331), + [sym_identifier] = ACTIONS(466), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), + [anon_sym_u8] = ACTIONS(468), + [anon_sym_i8] = ACTIONS(468), + [anon_sym_u16] = ACTIONS(468), + [anon_sym_i16] = ACTIONS(468), + [anon_sym_u32] = ACTIONS(468), + [anon_sym_i32] = ACTIONS(468), + [anon_sym_u64] = ACTIONS(468), + [anon_sym_i64] = ACTIONS(468), + [anon_sym_u128] = ACTIONS(468), + [anon_sym_i128] = ACTIONS(468), + [anon_sym_isize] = ACTIONS(468), + [anon_sym_usize] = ACTIONS(468), + [anon_sym_f32] = ACTIONS(468), + [anon_sym_f64] = ACTIONS(468), + [anon_sym_bool] = ACTIONS(468), + [anon_sym_str] = ACTIONS(468), + [anon_sym_char] = ACTIONS(468), [anon_sym_DASH] = ACTIONS(973), [anon_sym_BANG] = ACTIONS(973), [anon_sym_AMP] = ACTIONS(975), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(977), - [anon_sym_COLON_COLON] = ACTIONS(462), + [anon_sym_DOT_DOT] = ACTIONS(1059), + [anon_sym_COLON_COLON] = ACTIONS(472), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), [anon_sym_break] = ACTIONS(494), [anon_sym_const] = ACTIONS(348), [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), + [anon_sym_default] = ACTIONS(476), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), [anon_sym_loop] = ACTIONS(356), [anon_sym_match] = ACTIONS(358), [anon_sym_return] = ACTIONS(498), [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), + [anon_sym_union] = ACTIONS(476), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), [anon_sym_yield] = ACTIONS(502), @@ -53054,62 +53832,172 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), + [sym_self] = ACTIONS(486), + [sym_super] = ACTIONS(488), + [sym_crate] = ACTIONS(488), + [sym_metavariable] = ACTIONS(490), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [325] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1500), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(325), - [sym_block_comment] = STATE(325), + [332] = { + [sym_bracketed_type] = STATE(3506), + [sym_generic_function] = STATE(1695), + [sym_generic_type_with_turbofish] = STATE(2844), + [sym__expression_except_range] = STATE(1590), + [sym__expression] = STATE(1713), + [sym_macro_invocation] = STATE(1705), + [sym_scoped_identifier] = STATE(1568), + [sym_scoped_type_identifier_in_expression_position] = STATE(3132), + [sym_range_expression] = STATE(1699), + [sym_unary_expression] = STATE(1695), + [sym_try_expression] = STATE(1695), + [sym_reference_expression] = STATE(1695), + [sym_binary_expression] = STATE(1695), + [sym_assignment_expression] = STATE(1695), + [sym_compound_assignment_expr] = STATE(1695), + [sym_type_cast_expression] = STATE(1695), + [sym_return_expression] = STATE(1695), + [sym_yield_expression] = STATE(1695), + [sym_call_expression] = STATE(1695), + [sym_array_expression] = STATE(1695), + [sym_parenthesized_expression] = STATE(1695), + [sym_tuple_expression] = STATE(1695), + [sym_unit_expression] = STATE(1695), + [sym_struct_expression] = STATE(1695), + [sym_if_expression] = STATE(1695), + [sym_match_expression] = STATE(1695), + [sym_while_expression] = STATE(1695), + [sym_loop_expression] = STATE(1695), + [sym_for_expression] = STATE(1695), + [sym_const_block] = STATE(1695), + [sym_closure_expression] = STATE(1695), + [sym_closure_parameters] = STATE(222), + [sym_label] = STATE(3593), + [sym_break_expression] = STATE(1695), + [sym_continue_expression] = STATE(1695), + [sym_index_expression] = STATE(1695), + [sym_await_expression] = STATE(1695), + [sym_field_expression] = STATE(1583), + [sym_unsafe_block] = STATE(1695), + [sym_async_block] = STATE(1695), + [sym_try_block] = STATE(1695), + [sym_block] = STATE(1695), + [sym__literal] = STATE(1695), + [sym_string_literal] = STATE(1801), + [sym_raw_string_literal] = STATE(1801), + [sym_boolean_literal] = STATE(1801), + [sym_line_comment] = STATE(332), + [sym_block_comment] = STATE(332), + [sym_identifier] = ACTIONS(398), + [anon_sym_LPAREN] = ACTIONS(456), + [anon_sym_LBRACK] = ACTIONS(458), + [anon_sym_LBRACE] = ACTIONS(400), + [anon_sym_STAR] = ACTIONS(993), + [anon_sym_u8] = ACTIONS(404), + [anon_sym_i8] = ACTIONS(404), + [anon_sym_u16] = ACTIONS(404), + [anon_sym_i16] = ACTIONS(404), + [anon_sym_u32] = ACTIONS(404), + [anon_sym_i32] = ACTIONS(404), + [anon_sym_u64] = ACTIONS(404), + [anon_sym_i64] = ACTIONS(404), + [anon_sym_u128] = ACTIONS(404), + [anon_sym_i128] = ACTIONS(404), + [anon_sym_isize] = ACTIONS(404), + [anon_sym_usize] = ACTIONS(404), + [anon_sym_f32] = ACTIONS(404), + [anon_sym_f64] = ACTIONS(404), + [anon_sym_bool] = ACTIONS(404), + [anon_sym_str] = ACTIONS(404), + [anon_sym_char] = ACTIONS(404), + [anon_sym_DASH] = ACTIONS(993), + [anon_sym_BANG] = ACTIONS(993), + [anon_sym_AMP] = ACTIONS(995), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1063), + [anon_sym_COLON_COLON] = ACTIONS(408), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(410), + [anon_sym_break] = ACTIONS(412), + [anon_sym_const] = ACTIONS(414), + [anon_sym_continue] = ACTIONS(416), + [anon_sym_default] = ACTIONS(418), + [anon_sym_for] = ACTIONS(420), + [anon_sym_if] = ACTIONS(422), + [anon_sym_loop] = ACTIONS(424), + [anon_sym_match] = ACTIONS(426), + [anon_sym_return] = ACTIONS(428), + [anon_sym_static] = ACTIONS(430), + [anon_sym_union] = ACTIONS(418), + [anon_sym_unsafe] = ACTIONS(432), + [anon_sym_while] = ACTIONS(434), + [anon_sym_yield] = ACTIONS(436), + [anon_sym_move] = ACTIONS(438), + [anon_sym_try] = ACTIONS(440), + [sym_integer_literal] = ACTIONS(442), + [aux_sym_string_literal_token1] = ACTIONS(444), + [sym_char_literal] = ACTIONS(442), + [anon_sym_true] = ACTIONS(446), + [anon_sym_false] = ACTIONS(446), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(448), + [sym_super] = ACTIONS(450), + [sym_crate] = ACTIONS(450), + [sym_metavariable] = ACTIONS(452), + [sym__raw_string_literal_start] = ACTIONS(454), + [sym_float_literal] = ACTIONS(442), + }, + [333] = { + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1875), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1268), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), + [sym_line_comment] = STATE(333), + [sym_block_comment] = STATE(333), [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -53137,7 +54025,7 @@ 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(1176), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), @@ -53171,59 +54059,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [326] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1501), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(326), - [sym_block_comment] = STATE(326), + [334] = { + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1854), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1268), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(470), + [sym_match_expression] = STATE(470), + [sym_while_expression] = STATE(470), + [sym_loop_expression] = STATE(470), + [sym_for_expression] = STATE(470), + [sym_const_block] = STATE(470), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3587), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(470), + [sym_async_block] = STATE(470), + [sym_try_block] = STATE(470), + [sym_block] = STATE(470), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), + [sym_line_comment] = STATE(334), + [sym_block_comment] = STATE(334), [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(1212), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -53247,26 +54135,26 @@ 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(1176), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(1214), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(1216), [anon_sym_continue] = ACTIONS(45), [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), + [anon_sym_for] = ACTIONS(1218), + [anon_sym_if] = ACTIONS(1220), + [anon_sym_loop] = ACTIONS(1222), + [anon_sym_match] = ACTIONS(1224), [anon_sym_return] = ACTIONS(69), [anon_sym_static] = ACTIONS(360), [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), + [anon_sym_unsafe] = ACTIONS(1226), + [anon_sym_while] = ACTIONS(1228), [anon_sym_yield] = ACTIONS(89), [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), + [anon_sym_try] = ACTIONS(1230), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), [sym_char_literal] = ACTIONS(95), @@ -53281,95 +54169,425 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [327] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1494), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(327), - [sym_block_comment] = STATE(327), - [sym_identifier] = ACTIONS(334), + [335] = { + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2731), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1542), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(236), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), + [sym_line_comment] = STATE(335), + [sym_block_comment] = STATE(335), + [sym_identifier] = ACTIONS(466), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), - [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_STAR] = ACTIONS(973), + [anon_sym_u8] = ACTIONS(468), + [anon_sym_i8] = ACTIONS(468), + [anon_sym_u16] = ACTIONS(468), + [anon_sym_i16] = ACTIONS(468), + [anon_sym_u32] = ACTIONS(468), + [anon_sym_i32] = ACTIONS(468), + [anon_sym_u64] = ACTIONS(468), + [anon_sym_i64] = ACTIONS(468), + [anon_sym_u128] = ACTIONS(468), + [anon_sym_i128] = ACTIONS(468), + [anon_sym_isize] = ACTIONS(468), + [anon_sym_usize] = ACTIONS(468), + [anon_sym_f32] = ACTIONS(468), + [anon_sym_f64] = ACTIONS(468), + [anon_sym_bool] = ACTIONS(468), + [anon_sym_str] = ACTIONS(468), + [anon_sym_char] = ACTIONS(468), + [anon_sym_DASH] = ACTIONS(973), + [anon_sym_BANG] = ACTIONS(973), + [anon_sym_AMP] = ACTIONS(975), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1176), - [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DOT_DOT] = ACTIONS(977), + [anon_sym_COLON_COLON] = ACTIONS(472), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), + [anon_sym_break] = ACTIONS(494), [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), + [anon_sym_continue] = ACTIONS(496), + [anon_sym_default] = ACTIONS(476), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), [anon_sym_loop] = ACTIONS(356), [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), + [anon_sym_return] = ACTIONS(498), + [anon_sym_static] = ACTIONS(500), + [anon_sym_union] = ACTIONS(476), + [anon_sym_unsafe] = ACTIONS(362), + [anon_sym_while] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(502), + [anon_sym_move] = ACTIONS(504), + [anon_sym_try] = ACTIONS(366), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(486), + [sym_super] = ACTIONS(488), + [sym_crate] = ACTIONS(488), + [sym_metavariable] = ACTIONS(490), + [sym__raw_string_literal_start] = ACTIONS(115), + [sym_float_literal] = ACTIONS(95), + }, + [336] = { + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2731), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1584), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(236), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), + [sym_line_comment] = STATE(336), + [sym_block_comment] = STATE(336), + [sym_identifier] = ACTIONS(466), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_STAR] = ACTIONS(973), + [anon_sym_u8] = ACTIONS(468), + [anon_sym_i8] = ACTIONS(468), + [anon_sym_u16] = ACTIONS(468), + [anon_sym_i16] = ACTIONS(468), + [anon_sym_u32] = ACTIONS(468), + [anon_sym_i32] = ACTIONS(468), + [anon_sym_u64] = ACTIONS(468), + [anon_sym_i64] = ACTIONS(468), + [anon_sym_u128] = ACTIONS(468), + [anon_sym_i128] = ACTIONS(468), + [anon_sym_isize] = ACTIONS(468), + [anon_sym_usize] = ACTIONS(468), + [anon_sym_f32] = ACTIONS(468), + [anon_sym_f64] = ACTIONS(468), + [anon_sym_bool] = ACTIONS(468), + [anon_sym_str] = ACTIONS(468), + [anon_sym_char] = ACTIONS(468), + [anon_sym_DASH] = ACTIONS(973), + [anon_sym_BANG] = ACTIONS(973), + [anon_sym_AMP] = ACTIONS(975), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1059), + [anon_sym_COLON_COLON] = ACTIONS(472), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(346), + [anon_sym_break] = ACTIONS(494), + [anon_sym_const] = ACTIONS(348), + [anon_sym_continue] = ACTIONS(496), + [anon_sym_default] = ACTIONS(476), + [anon_sym_for] = ACTIONS(352), + [anon_sym_if] = ACTIONS(354), + [anon_sym_loop] = ACTIONS(356), + [anon_sym_match] = ACTIONS(358), + [anon_sym_return] = ACTIONS(498), + [anon_sym_static] = ACTIONS(500), + [anon_sym_union] = ACTIONS(476), + [anon_sym_unsafe] = ACTIONS(362), + [anon_sym_while] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(502), + [anon_sym_move] = ACTIONS(504), + [anon_sym_try] = ACTIONS(366), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(486), + [sym_super] = ACTIONS(488), + [sym_crate] = ACTIONS(488), + [sym_metavariable] = ACTIONS(490), + [sym__raw_string_literal_start] = ACTIONS(115), + [sym_float_literal] = ACTIONS(95), + }, + [337] = { + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2731), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1566), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(236), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), + [sym_line_comment] = STATE(337), + [sym_block_comment] = STATE(337), + [sym_identifier] = ACTIONS(466), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_STAR] = ACTIONS(973), + [anon_sym_u8] = ACTIONS(468), + [anon_sym_i8] = ACTIONS(468), + [anon_sym_u16] = ACTIONS(468), + [anon_sym_i16] = ACTIONS(468), + [anon_sym_u32] = ACTIONS(468), + [anon_sym_i32] = ACTIONS(468), + [anon_sym_u64] = ACTIONS(468), + [anon_sym_i64] = ACTIONS(468), + [anon_sym_u128] = ACTIONS(468), + [anon_sym_i128] = ACTIONS(468), + [anon_sym_isize] = ACTIONS(468), + [anon_sym_usize] = ACTIONS(468), + [anon_sym_f32] = ACTIONS(468), + [anon_sym_f64] = ACTIONS(468), + [anon_sym_bool] = ACTIONS(468), + [anon_sym_str] = ACTIONS(468), + [anon_sym_char] = ACTIONS(468), + [anon_sym_DASH] = ACTIONS(973), + [anon_sym_BANG] = ACTIONS(973), + [anon_sym_AMP] = ACTIONS(975), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(977), + [anon_sym_COLON_COLON] = ACTIONS(472), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(346), + [anon_sym_break] = ACTIONS(494), + [anon_sym_const] = ACTIONS(348), + [anon_sym_continue] = ACTIONS(496), + [anon_sym_default] = ACTIONS(476), + [anon_sym_for] = ACTIONS(352), + [anon_sym_if] = ACTIONS(354), + [anon_sym_loop] = ACTIONS(356), + [anon_sym_match] = ACTIONS(358), + [anon_sym_return] = ACTIONS(498), + [anon_sym_static] = ACTIONS(500), + [anon_sym_union] = ACTIONS(476), + [anon_sym_unsafe] = ACTIONS(362), + [anon_sym_while] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(502), + [anon_sym_move] = ACTIONS(504), + [anon_sym_try] = ACTIONS(366), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(486), + [sym_super] = ACTIONS(488), + [sym_crate] = ACTIONS(488), + [sym_metavariable] = ACTIONS(490), + [sym__raw_string_literal_start] = ACTIONS(115), + [sym_float_literal] = ACTIONS(95), + }, + [338] = { + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1694), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1268), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), + [sym_line_comment] = STATE(338), + [sym_block_comment] = STATE(338), + [sym_identifier] = ACTIONS(334), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(338), + [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_COLON_COLON] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(346), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(348), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(350), + [anon_sym_for] = ACTIONS(352), + [anon_sym_if] = ACTIONS(354), + [anon_sym_loop] = ACTIONS(356), + [anon_sym_match] = ACTIONS(358), + [anon_sym_return] = ACTIONS(69), [anon_sym_static] = ACTIONS(360), [anon_sym_union] = ACTIONS(350), [anon_sym_unsafe] = ACTIONS(362), @@ -53391,55 +54609,165 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [328] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1503), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(328), - [sym_block_comment] = STATE(328), + [339] = { + [sym_bracketed_type] = STATE(3506), + [sym_generic_function] = STATE(1695), + [sym_generic_type_with_turbofish] = STATE(2844), + [sym__expression_except_range] = STATE(1590), + [sym__expression] = STATE(1715), + [sym_macro_invocation] = STATE(1705), + [sym_scoped_identifier] = STATE(1568), + [sym_scoped_type_identifier_in_expression_position] = STATE(3132), + [sym_range_expression] = STATE(1699), + [sym_unary_expression] = STATE(1695), + [sym_try_expression] = STATE(1695), + [sym_reference_expression] = STATE(1695), + [sym_binary_expression] = STATE(1695), + [sym_assignment_expression] = STATE(1695), + [sym_compound_assignment_expr] = STATE(1695), + [sym_type_cast_expression] = STATE(1695), + [sym_return_expression] = STATE(1695), + [sym_yield_expression] = STATE(1695), + [sym_call_expression] = STATE(1695), + [sym_array_expression] = STATE(1695), + [sym_parenthesized_expression] = STATE(1695), + [sym_tuple_expression] = STATE(1695), + [sym_unit_expression] = STATE(1695), + [sym_struct_expression] = STATE(1695), + [sym_if_expression] = STATE(1695), + [sym_match_expression] = STATE(1695), + [sym_while_expression] = STATE(1695), + [sym_loop_expression] = STATE(1695), + [sym_for_expression] = STATE(1695), + [sym_const_block] = STATE(1695), + [sym_closure_expression] = STATE(1695), + [sym_closure_parameters] = STATE(222), + [sym_label] = STATE(3593), + [sym_break_expression] = STATE(1695), + [sym_continue_expression] = STATE(1695), + [sym_index_expression] = STATE(1695), + [sym_await_expression] = STATE(1695), + [sym_field_expression] = STATE(1583), + [sym_unsafe_block] = STATE(1695), + [sym_async_block] = STATE(1695), + [sym_try_block] = STATE(1695), + [sym_block] = STATE(1695), + [sym__literal] = STATE(1695), + [sym_string_literal] = STATE(1801), + [sym_raw_string_literal] = STATE(1801), + [sym_boolean_literal] = STATE(1801), + [sym_line_comment] = STATE(339), + [sym_block_comment] = STATE(339), + [sym_identifier] = ACTIONS(398), + [anon_sym_LPAREN] = ACTIONS(456), + [anon_sym_LBRACK] = ACTIONS(458), + [anon_sym_LBRACE] = ACTIONS(400), + [anon_sym_STAR] = ACTIONS(993), + [anon_sym_u8] = ACTIONS(404), + [anon_sym_i8] = ACTIONS(404), + [anon_sym_u16] = ACTIONS(404), + [anon_sym_i16] = ACTIONS(404), + [anon_sym_u32] = ACTIONS(404), + [anon_sym_i32] = ACTIONS(404), + [anon_sym_u64] = ACTIONS(404), + [anon_sym_i64] = ACTIONS(404), + [anon_sym_u128] = ACTIONS(404), + [anon_sym_i128] = ACTIONS(404), + [anon_sym_isize] = ACTIONS(404), + [anon_sym_usize] = ACTIONS(404), + [anon_sym_f32] = ACTIONS(404), + [anon_sym_f64] = ACTIONS(404), + [anon_sym_bool] = ACTIONS(404), + [anon_sym_str] = ACTIONS(404), + [anon_sym_char] = ACTIONS(404), + [anon_sym_DASH] = ACTIONS(993), + [anon_sym_BANG] = ACTIONS(993), + [anon_sym_AMP] = ACTIONS(995), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1063), + [anon_sym_COLON_COLON] = ACTIONS(408), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(410), + [anon_sym_break] = ACTIONS(412), + [anon_sym_const] = ACTIONS(414), + [anon_sym_continue] = ACTIONS(416), + [anon_sym_default] = ACTIONS(418), + [anon_sym_for] = ACTIONS(420), + [anon_sym_if] = ACTIONS(422), + [anon_sym_loop] = ACTIONS(424), + [anon_sym_match] = ACTIONS(426), + [anon_sym_return] = ACTIONS(428), + [anon_sym_static] = ACTIONS(430), + [anon_sym_union] = ACTIONS(418), + [anon_sym_unsafe] = ACTIONS(432), + [anon_sym_while] = ACTIONS(434), + [anon_sym_yield] = ACTIONS(436), + [anon_sym_move] = ACTIONS(438), + [anon_sym_try] = ACTIONS(440), + [sym_integer_literal] = ACTIONS(442), + [aux_sym_string_literal_token1] = ACTIONS(444), + [sym_char_literal] = ACTIONS(442), + [anon_sym_true] = ACTIONS(446), + [anon_sym_false] = ACTIONS(446), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(448), + [sym_super] = ACTIONS(450), + [sym_crate] = ACTIONS(450), + [sym_metavariable] = ACTIONS(452), + [sym__raw_string_literal_start] = ACTIONS(454), + [sym_float_literal] = ACTIONS(442), + }, + [340] = { + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1703), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1268), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), + [sym_line_comment] = STATE(340), + [sym_block_comment] = STATE(340), [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -53467,7 +54795,7 @@ 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(1176), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), @@ -53501,55 +54829,385 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [329] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1497), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(329), - [sym_block_comment] = STATE(329), + [341] = { + [sym_bracketed_type] = STATE(3506), + [sym_generic_function] = STATE(1695), + [sym_generic_type_with_turbofish] = STATE(2844), + [sym__expression_except_range] = STATE(1590), + [sym__expression] = STATE(1662), + [sym_macro_invocation] = STATE(1705), + [sym_scoped_identifier] = STATE(1568), + [sym_scoped_type_identifier_in_expression_position] = STATE(3132), + [sym_range_expression] = STATE(1699), + [sym_unary_expression] = STATE(1695), + [sym_try_expression] = STATE(1695), + [sym_reference_expression] = STATE(1695), + [sym_binary_expression] = STATE(1695), + [sym_assignment_expression] = STATE(1695), + [sym_compound_assignment_expr] = STATE(1695), + [sym_type_cast_expression] = STATE(1695), + [sym_return_expression] = STATE(1695), + [sym_yield_expression] = STATE(1695), + [sym_call_expression] = STATE(1695), + [sym_array_expression] = STATE(1695), + [sym_parenthesized_expression] = STATE(1695), + [sym_tuple_expression] = STATE(1695), + [sym_unit_expression] = STATE(1695), + [sym_struct_expression] = STATE(1695), + [sym_if_expression] = STATE(1695), + [sym_match_expression] = STATE(1695), + [sym_while_expression] = STATE(1695), + [sym_loop_expression] = STATE(1695), + [sym_for_expression] = STATE(1695), + [sym_const_block] = STATE(1695), + [sym_closure_expression] = STATE(1695), + [sym_closure_parameters] = STATE(222), + [sym_label] = STATE(3593), + [sym_break_expression] = STATE(1695), + [sym_continue_expression] = STATE(1695), + [sym_index_expression] = STATE(1695), + [sym_await_expression] = STATE(1695), + [sym_field_expression] = STATE(1583), + [sym_unsafe_block] = STATE(1695), + [sym_async_block] = STATE(1695), + [sym_try_block] = STATE(1695), + [sym_block] = STATE(1695), + [sym__literal] = STATE(1695), + [sym_string_literal] = STATE(1801), + [sym_raw_string_literal] = STATE(1801), + [sym_boolean_literal] = STATE(1801), + [sym_line_comment] = STATE(341), + [sym_block_comment] = STATE(341), + [sym_identifier] = ACTIONS(398), + [anon_sym_LPAREN] = ACTIONS(456), + [anon_sym_LBRACK] = ACTIONS(458), + [anon_sym_LBRACE] = ACTIONS(400), + [anon_sym_STAR] = ACTIONS(993), + [anon_sym_u8] = ACTIONS(404), + [anon_sym_i8] = ACTIONS(404), + [anon_sym_u16] = ACTIONS(404), + [anon_sym_i16] = ACTIONS(404), + [anon_sym_u32] = ACTIONS(404), + [anon_sym_i32] = ACTIONS(404), + [anon_sym_u64] = ACTIONS(404), + [anon_sym_i64] = ACTIONS(404), + [anon_sym_u128] = ACTIONS(404), + [anon_sym_i128] = ACTIONS(404), + [anon_sym_isize] = ACTIONS(404), + [anon_sym_usize] = ACTIONS(404), + [anon_sym_f32] = ACTIONS(404), + [anon_sym_f64] = ACTIONS(404), + [anon_sym_bool] = ACTIONS(404), + [anon_sym_str] = ACTIONS(404), + [anon_sym_char] = ACTIONS(404), + [anon_sym_DASH] = ACTIONS(993), + [anon_sym_BANG] = ACTIONS(993), + [anon_sym_AMP] = ACTIONS(995), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1063), + [anon_sym_COLON_COLON] = ACTIONS(408), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(410), + [anon_sym_break] = ACTIONS(412), + [anon_sym_const] = ACTIONS(414), + [anon_sym_continue] = ACTIONS(416), + [anon_sym_default] = ACTIONS(418), + [anon_sym_for] = ACTIONS(420), + [anon_sym_if] = ACTIONS(422), + [anon_sym_loop] = ACTIONS(424), + [anon_sym_match] = ACTIONS(426), + [anon_sym_return] = ACTIONS(428), + [anon_sym_static] = ACTIONS(430), + [anon_sym_union] = ACTIONS(418), + [anon_sym_unsafe] = ACTIONS(432), + [anon_sym_while] = ACTIONS(434), + [anon_sym_yield] = ACTIONS(436), + [anon_sym_move] = ACTIONS(438), + [anon_sym_try] = ACTIONS(440), + [sym_integer_literal] = ACTIONS(442), + [aux_sym_string_literal_token1] = ACTIONS(444), + [sym_char_literal] = ACTIONS(442), + [anon_sym_true] = ACTIONS(446), + [anon_sym_false] = ACTIONS(446), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(448), + [sym_super] = ACTIONS(450), + [sym_crate] = ACTIONS(450), + [sym_metavariable] = ACTIONS(452), + [sym__raw_string_literal_start] = ACTIONS(454), + [sym_float_literal] = ACTIONS(442), + }, + [342] = { + [sym_bracketed_type] = STATE(3506), + [sym_generic_function] = STATE(1695), + [sym_generic_type_with_turbofish] = STATE(2844), + [sym__expression_except_range] = STATE(1590), + [sym__expression] = STATE(1692), + [sym_macro_invocation] = STATE(1705), + [sym_scoped_identifier] = STATE(1568), + [sym_scoped_type_identifier_in_expression_position] = STATE(3132), + [sym_range_expression] = STATE(1699), + [sym_unary_expression] = STATE(1695), + [sym_try_expression] = STATE(1695), + [sym_reference_expression] = STATE(1695), + [sym_binary_expression] = STATE(1695), + [sym_assignment_expression] = STATE(1695), + [sym_compound_assignment_expr] = STATE(1695), + [sym_type_cast_expression] = STATE(1695), + [sym_return_expression] = STATE(1695), + [sym_yield_expression] = STATE(1695), + [sym_call_expression] = STATE(1695), + [sym_array_expression] = STATE(1695), + [sym_parenthesized_expression] = STATE(1695), + [sym_tuple_expression] = STATE(1695), + [sym_unit_expression] = STATE(1695), + [sym_struct_expression] = STATE(1695), + [sym_if_expression] = STATE(1695), + [sym_match_expression] = STATE(1695), + [sym_while_expression] = STATE(1695), + [sym_loop_expression] = STATE(1695), + [sym_for_expression] = STATE(1695), + [sym_const_block] = STATE(1695), + [sym_closure_expression] = STATE(1695), + [sym_closure_parameters] = STATE(222), + [sym_label] = STATE(3593), + [sym_break_expression] = STATE(1695), + [sym_continue_expression] = STATE(1695), + [sym_index_expression] = STATE(1695), + [sym_await_expression] = STATE(1695), + [sym_field_expression] = STATE(1583), + [sym_unsafe_block] = STATE(1695), + [sym_async_block] = STATE(1695), + [sym_try_block] = STATE(1695), + [sym_block] = STATE(1695), + [sym__literal] = STATE(1695), + [sym_string_literal] = STATE(1801), + [sym_raw_string_literal] = STATE(1801), + [sym_boolean_literal] = STATE(1801), + [sym_line_comment] = STATE(342), + [sym_block_comment] = STATE(342), + [sym_identifier] = ACTIONS(398), + [anon_sym_LPAREN] = ACTIONS(456), + [anon_sym_LBRACK] = ACTIONS(458), + [anon_sym_LBRACE] = ACTIONS(400), + [anon_sym_STAR] = ACTIONS(993), + [anon_sym_u8] = ACTIONS(404), + [anon_sym_i8] = ACTIONS(404), + [anon_sym_u16] = ACTIONS(404), + [anon_sym_i16] = ACTIONS(404), + [anon_sym_u32] = ACTIONS(404), + [anon_sym_i32] = ACTIONS(404), + [anon_sym_u64] = ACTIONS(404), + [anon_sym_i64] = ACTIONS(404), + [anon_sym_u128] = ACTIONS(404), + [anon_sym_i128] = ACTIONS(404), + [anon_sym_isize] = ACTIONS(404), + [anon_sym_usize] = ACTIONS(404), + [anon_sym_f32] = ACTIONS(404), + [anon_sym_f64] = ACTIONS(404), + [anon_sym_bool] = ACTIONS(404), + [anon_sym_str] = ACTIONS(404), + [anon_sym_char] = ACTIONS(404), + [anon_sym_DASH] = ACTIONS(993), + [anon_sym_BANG] = ACTIONS(993), + [anon_sym_AMP] = ACTIONS(995), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1063), + [anon_sym_COLON_COLON] = ACTIONS(408), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(410), + [anon_sym_break] = ACTIONS(412), + [anon_sym_const] = ACTIONS(414), + [anon_sym_continue] = ACTIONS(416), + [anon_sym_default] = ACTIONS(418), + [anon_sym_for] = ACTIONS(420), + [anon_sym_if] = ACTIONS(422), + [anon_sym_loop] = ACTIONS(424), + [anon_sym_match] = ACTIONS(426), + [anon_sym_return] = ACTIONS(428), + [anon_sym_static] = ACTIONS(430), + [anon_sym_union] = ACTIONS(418), + [anon_sym_unsafe] = ACTIONS(432), + [anon_sym_while] = ACTIONS(434), + [anon_sym_yield] = ACTIONS(436), + [anon_sym_move] = ACTIONS(438), + [anon_sym_try] = ACTIONS(440), + [sym_integer_literal] = ACTIONS(442), + [aux_sym_string_literal_token1] = ACTIONS(444), + [sym_char_literal] = ACTIONS(442), + [anon_sym_true] = ACTIONS(446), + [anon_sym_false] = ACTIONS(446), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(448), + [sym_super] = ACTIONS(450), + [sym_crate] = ACTIONS(450), + [sym_metavariable] = ACTIONS(452), + [sym__raw_string_literal_start] = ACTIONS(454), + [sym_float_literal] = ACTIONS(442), + }, + [343] = { + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2731), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1616), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(236), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), + [sym_line_comment] = STATE(343), + [sym_block_comment] = STATE(343), + [sym_identifier] = ACTIONS(466), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_STAR] = ACTIONS(973), + [anon_sym_u8] = ACTIONS(468), + [anon_sym_i8] = ACTIONS(468), + [anon_sym_u16] = ACTIONS(468), + [anon_sym_i16] = ACTIONS(468), + [anon_sym_u32] = ACTIONS(468), + [anon_sym_i32] = ACTIONS(468), + [anon_sym_u64] = ACTIONS(468), + [anon_sym_i64] = ACTIONS(468), + [anon_sym_u128] = ACTIONS(468), + [anon_sym_i128] = ACTIONS(468), + [anon_sym_isize] = ACTIONS(468), + [anon_sym_usize] = ACTIONS(468), + [anon_sym_f32] = ACTIONS(468), + [anon_sym_f64] = ACTIONS(468), + [anon_sym_bool] = ACTIONS(468), + [anon_sym_str] = ACTIONS(468), + [anon_sym_char] = ACTIONS(468), + [anon_sym_DASH] = ACTIONS(973), + [anon_sym_BANG] = ACTIONS(973), + [anon_sym_AMP] = ACTIONS(975), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1059), + [anon_sym_COLON_COLON] = ACTIONS(472), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(346), + [anon_sym_break] = ACTIONS(494), + [anon_sym_const] = ACTIONS(348), + [anon_sym_continue] = ACTIONS(496), + [anon_sym_default] = ACTIONS(476), + [anon_sym_for] = ACTIONS(352), + [anon_sym_if] = ACTIONS(354), + [anon_sym_loop] = ACTIONS(356), + [anon_sym_match] = ACTIONS(358), + [anon_sym_return] = ACTIONS(498), + [anon_sym_static] = ACTIONS(500), + [anon_sym_union] = ACTIONS(476), + [anon_sym_unsafe] = ACTIONS(362), + [anon_sym_while] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(502), + [anon_sym_move] = ACTIONS(504), + [anon_sym_try] = ACTIONS(366), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(486), + [sym_super] = ACTIONS(488), + [sym_crate] = ACTIONS(488), + [sym_metavariable] = ACTIONS(490), + [sym__raw_string_literal_start] = ACTIONS(115), + [sym_float_literal] = ACTIONS(95), + }, + [344] = { + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1654), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1268), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), + [sym_line_comment] = STATE(344), + [sym_block_comment] = STATE(344), [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -53577,7 +55235,7 @@ 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(1176), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), @@ -53611,55 +55269,165 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [330] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1817), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(330), - [sym_block_comment] = STATE(330), + [345] = { + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2731), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1545), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(236), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), + [sym_line_comment] = STATE(345), + [sym_block_comment] = STATE(345), + [sym_identifier] = ACTIONS(466), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_STAR] = ACTIONS(973), + [anon_sym_u8] = ACTIONS(468), + [anon_sym_i8] = ACTIONS(468), + [anon_sym_u16] = ACTIONS(468), + [anon_sym_i16] = ACTIONS(468), + [anon_sym_u32] = ACTIONS(468), + [anon_sym_i32] = ACTIONS(468), + [anon_sym_u64] = ACTIONS(468), + [anon_sym_i64] = ACTIONS(468), + [anon_sym_u128] = ACTIONS(468), + [anon_sym_i128] = ACTIONS(468), + [anon_sym_isize] = ACTIONS(468), + [anon_sym_usize] = ACTIONS(468), + [anon_sym_f32] = ACTIONS(468), + [anon_sym_f64] = ACTIONS(468), + [anon_sym_bool] = ACTIONS(468), + [anon_sym_str] = ACTIONS(468), + [anon_sym_char] = ACTIONS(468), + [anon_sym_DASH] = ACTIONS(973), + [anon_sym_BANG] = ACTIONS(973), + [anon_sym_AMP] = ACTIONS(975), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(977), + [anon_sym_COLON_COLON] = ACTIONS(472), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(346), + [anon_sym_break] = ACTIONS(494), + [anon_sym_const] = ACTIONS(348), + [anon_sym_continue] = ACTIONS(496), + [anon_sym_default] = ACTIONS(476), + [anon_sym_for] = ACTIONS(352), + [anon_sym_if] = ACTIONS(354), + [anon_sym_loop] = ACTIONS(356), + [anon_sym_match] = ACTIONS(358), + [anon_sym_return] = ACTIONS(498), + [anon_sym_static] = ACTIONS(500), + [anon_sym_union] = ACTIONS(476), + [anon_sym_unsafe] = ACTIONS(362), + [anon_sym_while] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(502), + [anon_sym_move] = ACTIONS(504), + [anon_sym_try] = ACTIONS(366), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(486), + [sym_super] = ACTIONS(488), + [sym_crate] = ACTIONS(488), + [sym_metavariable] = ACTIONS(490), + [sym__raw_string_literal_start] = ACTIONS(115), + [sym_float_literal] = ACTIONS(95), + }, + [346] = { + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1653), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1268), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), + [sym_line_comment] = STATE(346), + [sym_block_comment] = STATE(346), [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -53721,55 +55489,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [331] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1818), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(331), - [sym_block_comment] = STATE(331), + [347] = { + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1860), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1268), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), + [sym_line_comment] = STATE(347), + [sym_block_comment] = STATE(347), [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -53831,55 +55599,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [332] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1825), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(332), - [sym_block_comment] = STATE(332), + [348] = { + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1788), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1268), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), + [sym_line_comment] = STATE(348), + [sym_block_comment] = STATE(348), [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -53941,59 +55709,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [333] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1829), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(458), - [sym_match_expression] = STATE(458), - [sym_while_expression] = STATE(458), - [sym_loop_expression] = STATE(458), - [sym_for_expression] = STATE(458), - [sym_const_block] = STATE(458), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3579), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(458), - [sym_async_block] = STATE(458), - [sym_try_block] = STATE(458), - [sym_block] = STATE(458), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(333), - [sym_block_comment] = STATE(333), + [349] = { + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1863), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1268), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), + [sym_line_comment] = STATE(349), + [sym_block_comment] = STATE(349), [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(1210), + [anon_sym_LBRACE] = ACTIONS(338), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -54020,23 +55788,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(1212), + [anon_sym_async] = ACTIONS(346), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(1214), + [anon_sym_const] = ACTIONS(348), [anon_sym_continue] = ACTIONS(45), [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(1216), - [anon_sym_if] = ACTIONS(1218), - [anon_sym_loop] = ACTIONS(1220), - [anon_sym_match] = ACTIONS(1222), + [anon_sym_for] = ACTIONS(352), + [anon_sym_if] = ACTIONS(354), + [anon_sym_loop] = ACTIONS(356), + [anon_sym_match] = ACTIONS(358), [anon_sym_return] = ACTIONS(69), [anon_sym_static] = ACTIONS(360), [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(1224), - [anon_sym_while] = ACTIONS(1226), + [anon_sym_unsafe] = ACTIONS(362), + [anon_sym_while] = ACTIONS(364), [anon_sym_yield] = ACTIONS(89), [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(1228), + [anon_sym_try] = ACTIONS(366), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), [sym_char_literal] = ACTIONS(95), @@ -54051,55 +55819,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [334] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1869), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(334), - [sym_block_comment] = STATE(334), + [350] = { + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1855), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1268), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), + [sym_line_comment] = STATE(350), + [sym_block_comment] = STATE(350), [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -54161,55 +55929,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [335] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1872), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(335), - [sym_block_comment] = STATE(335), + [351] = { + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1809), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1268), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), + [sym_line_comment] = STATE(351), + [sym_block_comment] = STATE(351), [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -54271,9 +56039,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [336] = { - [sym_line_comment] = STATE(336), - [sym_block_comment] = STATE(336), + [352] = { + [sym_line_comment] = STATE(352), + [sym_block_comment] = STATE(352), [ts_builtin_sym_end] = ACTIONS(1236), [sym_identifier] = ACTIONS(1238), [anon_sym_SEMI] = ACTIONS(1236), @@ -54381,101 +56149,211 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1236), [sym_float_literal] = ACTIONS(1236), }, - [337] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1482), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(337), - [sym_block_comment] = STATE(337), - [sym_identifier] = ACTIONS(334), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [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_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), + [353] = { + [sym_bracketed_type] = STATE(3506), + [sym_generic_function] = STATE(1695), + [sym_generic_type_with_turbofish] = STATE(2844), + [sym__expression_except_range] = STATE(1590), + [sym__expression] = STATE(1716), + [sym_macro_invocation] = STATE(1705), + [sym_scoped_identifier] = STATE(1568), + [sym_scoped_type_identifier_in_expression_position] = STATE(3132), + [sym_range_expression] = STATE(1699), + [sym_unary_expression] = STATE(1695), + [sym_try_expression] = STATE(1695), + [sym_reference_expression] = STATE(1695), + [sym_binary_expression] = STATE(1695), + [sym_assignment_expression] = STATE(1695), + [sym_compound_assignment_expr] = STATE(1695), + [sym_type_cast_expression] = STATE(1695), + [sym_return_expression] = STATE(1695), + [sym_yield_expression] = STATE(1695), + [sym_call_expression] = STATE(1695), + [sym_array_expression] = STATE(1695), + [sym_parenthesized_expression] = STATE(1695), + [sym_tuple_expression] = STATE(1695), + [sym_unit_expression] = STATE(1695), + [sym_struct_expression] = STATE(1695), + [sym_if_expression] = STATE(1695), + [sym_match_expression] = STATE(1695), + [sym_while_expression] = STATE(1695), + [sym_loop_expression] = STATE(1695), + [sym_for_expression] = STATE(1695), + [sym_const_block] = STATE(1695), + [sym_closure_expression] = STATE(1695), + [sym_closure_parameters] = STATE(222), + [sym_label] = STATE(3593), + [sym_break_expression] = STATE(1695), + [sym_continue_expression] = STATE(1695), + [sym_index_expression] = STATE(1695), + [sym_await_expression] = STATE(1695), + [sym_field_expression] = STATE(1583), + [sym_unsafe_block] = STATE(1695), + [sym_async_block] = STATE(1695), + [sym_try_block] = STATE(1695), + [sym_block] = STATE(1695), + [sym__literal] = STATE(1695), + [sym_string_literal] = STATE(1801), + [sym_raw_string_literal] = STATE(1801), + [sym_boolean_literal] = STATE(1801), + [sym_line_comment] = STATE(353), + [sym_block_comment] = STATE(353), + [sym_identifier] = ACTIONS(398), + [anon_sym_LPAREN] = ACTIONS(456), + [anon_sym_LBRACK] = ACTIONS(458), + [anon_sym_LBRACE] = ACTIONS(400), + [anon_sym_STAR] = ACTIONS(993), + [anon_sym_u8] = ACTIONS(404), + [anon_sym_i8] = ACTIONS(404), + [anon_sym_u16] = ACTIONS(404), + [anon_sym_i16] = ACTIONS(404), + [anon_sym_u32] = ACTIONS(404), + [anon_sym_i32] = ACTIONS(404), + [anon_sym_u64] = ACTIONS(404), + [anon_sym_i64] = ACTIONS(404), + [anon_sym_u128] = ACTIONS(404), + [anon_sym_i128] = ACTIONS(404), + [anon_sym_isize] = ACTIONS(404), + [anon_sym_usize] = ACTIONS(404), + [anon_sym_f32] = ACTIONS(404), + [anon_sym_f64] = ACTIONS(404), + [anon_sym_bool] = ACTIONS(404), + [anon_sym_str] = ACTIONS(404), + [anon_sym_char] = ACTIONS(404), + [anon_sym_DASH] = ACTIONS(993), + [anon_sym_BANG] = ACTIONS(993), + [anon_sym_AMP] = ACTIONS(995), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1063), + [anon_sym_COLON_COLON] = ACTIONS(408), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(410), + [anon_sym_break] = ACTIONS(412), + [anon_sym_const] = ACTIONS(414), + [anon_sym_continue] = ACTIONS(416), + [anon_sym_default] = ACTIONS(418), + [anon_sym_for] = ACTIONS(420), + [anon_sym_if] = ACTIONS(422), + [anon_sym_loop] = ACTIONS(424), + [anon_sym_match] = ACTIONS(426), + [anon_sym_return] = ACTIONS(428), + [anon_sym_static] = ACTIONS(430), + [anon_sym_union] = ACTIONS(418), + [anon_sym_unsafe] = ACTIONS(432), + [anon_sym_while] = ACTIONS(434), + [anon_sym_yield] = ACTIONS(436), + [anon_sym_move] = ACTIONS(438), + [anon_sym_try] = ACTIONS(440), + [sym_integer_literal] = ACTIONS(442), + [aux_sym_string_literal_token1] = ACTIONS(444), + [sym_char_literal] = ACTIONS(442), + [anon_sym_true] = ACTIONS(446), + [anon_sym_false] = ACTIONS(446), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(448), + [sym_super] = ACTIONS(450), + [sym_crate] = ACTIONS(450), + [sym_metavariable] = ACTIONS(452), + [sym__raw_string_literal_start] = ACTIONS(454), + [sym_float_literal] = ACTIONS(442), + }, + [354] = { + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2731), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1571), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(236), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), + [sym_line_comment] = STATE(354), + [sym_block_comment] = STATE(354), + [sym_identifier] = ACTIONS(466), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_STAR] = ACTIONS(973), + [anon_sym_u8] = ACTIONS(468), + [anon_sym_i8] = ACTIONS(468), + [anon_sym_u16] = ACTIONS(468), + [anon_sym_i16] = ACTIONS(468), + [anon_sym_u32] = ACTIONS(468), + [anon_sym_i32] = ACTIONS(468), + [anon_sym_u64] = ACTIONS(468), + [anon_sym_i64] = ACTIONS(468), + [anon_sym_u128] = ACTIONS(468), + [anon_sym_i128] = ACTIONS(468), + [anon_sym_isize] = ACTIONS(468), + [anon_sym_usize] = ACTIONS(468), + [anon_sym_f32] = ACTIONS(468), + [anon_sym_f64] = ACTIONS(468), + [anon_sym_bool] = ACTIONS(468), + [anon_sym_str] = ACTIONS(468), + [anon_sym_char] = ACTIONS(468), + [anon_sym_DASH] = ACTIONS(973), + [anon_sym_BANG] = ACTIONS(973), + [anon_sym_AMP] = ACTIONS(975), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(977), + [anon_sym_COLON_COLON] = ACTIONS(472), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(346), + [anon_sym_break] = ACTIONS(494), [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), + [anon_sym_continue] = ACTIONS(496), + [anon_sym_default] = ACTIONS(476), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), [anon_sym_loop] = ACTIONS(356), [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), + [anon_sym_return] = ACTIONS(498), + [anon_sym_static] = ACTIONS(500), + [anon_sym_union] = ACTIONS(476), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), + [anon_sym_yield] = ACTIONS(502), + [anon_sym_move] = ACTIONS(504), [anon_sym_try] = ACTIONS(366), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -54484,218 +56362,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), + [sym_self] = ACTIONS(486), + [sym_super] = ACTIONS(488), + [sym_crate] = ACTIONS(488), + [sym_metavariable] = ACTIONS(490), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [338] = { - [sym_line_comment] = STATE(338), - [sym_block_comment] = STATE(338), - [ts_builtin_sym_end] = ACTIONS(1240), - [sym_identifier] = ACTIONS(1242), - [anon_sym_SEMI] = ACTIONS(1240), - [anon_sym_macro_rules_BANG] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(1240), - [anon_sym_LBRACK] = ACTIONS(1240), - [anon_sym_LBRACE] = ACTIONS(1240), - [anon_sym_RBRACE] = ACTIONS(1240), - [anon_sym_PLUS] = ACTIONS(1242), - [anon_sym_STAR] = ACTIONS(1242), - [anon_sym_QMARK] = ACTIONS(1240), - [anon_sym_u8] = ACTIONS(1242), - [anon_sym_i8] = ACTIONS(1242), - [anon_sym_u16] = ACTIONS(1242), - [anon_sym_i16] = ACTIONS(1242), - [anon_sym_u32] = ACTIONS(1242), - [anon_sym_i32] = ACTIONS(1242), - [anon_sym_u64] = ACTIONS(1242), - [anon_sym_i64] = ACTIONS(1242), - [anon_sym_u128] = ACTIONS(1242), - [anon_sym_i128] = ACTIONS(1242), - [anon_sym_isize] = ACTIONS(1242), - [anon_sym_usize] = ACTIONS(1242), - [anon_sym_f32] = ACTIONS(1242), - [anon_sym_f64] = ACTIONS(1242), - [anon_sym_bool] = ACTIONS(1242), - [anon_sym_str] = ACTIONS(1242), - [anon_sym_char] = ACTIONS(1242), - [anon_sym_DASH] = ACTIONS(1242), - [anon_sym_SLASH] = ACTIONS(1242), - [anon_sym_PERCENT] = ACTIONS(1242), - [anon_sym_CARET] = ACTIONS(1242), - [anon_sym_BANG] = ACTIONS(1242), - [anon_sym_AMP] = ACTIONS(1242), - [anon_sym_PIPE] = ACTIONS(1242), - [anon_sym_AMP_AMP] = ACTIONS(1240), - [anon_sym_PIPE_PIPE] = ACTIONS(1240), - [anon_sym_LT_LT] = ACTIONS(1242), - [anon_sym_GT_GT] = ACTIONS(1242), - [anon_sym_PLUS_EQ] = ACTIONS(1240), - [anon_sym_DASH_EQ] = ACTIONS(1240), - [anon_sym_STAR_EQ] = ACTIONS(1240), - [anon_sym_SLASH_EQ] = ACTIONS(1240), - [anon_sym_PERCENT_EQ] = ACTIONS(1240), - [anon_sym_CARET_EQ] = ACTIONS(1240), - [anon_sym_AMP_EQ] = ACTIONS(1240), - [anon_sym_PIPE_EQ] = ACTIONS(1240), - [anon_sym_LT_LT_EQ] = ACTIONS(1240), - [anon_sym_GT_GT_EQ] = ACTIONS(1240), - [anon_sym_EQ] = ACTIONS(1242), - [anon_sym_EQ_EQ] = ACTIONS(1240), - [anon_sym_BANG_EQ] = ACTIONS(1240), - [anon_sym_GT] = ACTIONS(1242), - [anon_sym_LT] = ACTIONS(1242), - [anon_sym_GT_EQ] = ACTIONS(1240), - [anon_sym_LT_EQ] = ACTIONS(1240), - [anon_sym_DOT] = ACTIONS(1242), - [anon_sym_DOT_DOT] = ACTIONS(1242), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1240), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1240), - [anon_sym_COLON_COLON] = ACTIONS(1240), - [anon_sym_POUND] = ACTIONS(1240), - [anon_sym_SQUOTE] = ACTIONS(1242), - [anon_sym_as] = ACTIONS(1242), - [anon_sym_async] = ACTIONS(1242), - [anon_sym_break] = ACTIONS(1242), - [anon_sym_const] = ACTIONS(1242), - [anon_sym_continue] = ACTIONS(1242), - [anon_sym_default] = ACTIONS(1242), - [anon_sym_enum] = ACTIONS(1242), - [anon_sym_fn] = ACTIONS(1242), - [anon_sym_for] = ACTIONS(1242), - [anon_sym_if] = ACTIONS(1242), - [anon_sym_impl] = ACTIONS(1242), - [anon_sym_let] = ACTIONS(1242), - [anon_sym_loop] = ACTIONS(1242), - [anon_sym_match] = ACTIONS(1242), - [anon_sym_mod] = ACTIONS(1242), - [anon_sym_pub] = ACTIONS(1242), - [anon_sym_return] = ACTIONS(1242), - [anon_sym_static] = ACTIONS(1242), - [anon_sym_struct] = ACTIONS(1242), - [anon_sym_trait] = ACTIONS(1242), - [anon_sym_type] = ACTIONS(1242), - [anon_sym_union] = ACTIONS(1242), - [anon_sym_unsafe] = ACTIONS(1242), - [anon_sym_use] = ACTIONS(1242), - [anon_sym_while] = ACTIONS(1242), - [anon_sym_extern] = ACTIONS(1242), - [anon_sym_else] = ACTIONS(1242), - [anon_sym_yield] = ACTIONS(1242), - [anon_sym_move] = ACTIONS(1242), - [anon_sym_try] = ACTIONS(1242), - [sym_integer_literal] = ACTIONS(1240), - [aux_sym_string_literal_token1] = ACTIONS(1240), - [sym_char_literal] = ACTIONS(1240), - [anon_sym_true] = ACTIONS(1242), - [anon_sym_false] = ACTIONS(1242), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1242), - [sym_super] = ACTIONS(1242), - [sym_crate] = ACTIONS(1242), - [sym_metavariable] = ACTIONS(1240), - [sym__raw_string_literal_start] = ACTIONS(1240), - [sym_float_literal] = ACTIONS(1240), - }, - [339] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1323), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(339), - [sym_block_comment] = STATE(339), - [sym_identifier] = ACTIONS(334), + [355] = { + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2731), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1585), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(236), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), + [sym_line_comment] = STATE(355), + [sym_block_comment] = STATE(355), + [sym_identifier] = ACTIONS(466), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), - [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_STAR] = ACTIONS(973), + [anon_sym_u8] = ACTIONS(468), + [anon_sym_i8] = ACTIONS(468), + [anon_sym_u16] = ACTIONS(468), + [anon_sym_i16] = ACTIONS(468), + [anon_sym_u32] = ACTIONS(468), + [anon_sym_i32] = ACTIONS(468), + [anon_sym_u64] = ACTIONS(468), + [anon_sym_i64] = ACTIONS(468), + [anon_sym_u128] = ACTIONS(468), + [anon_sym_i128] = ACTIONS(468), + [anon_sym_isize] = ACTIONS(468), + [anon_sym_usize] = ACTIONS(468), + [anon_sym_f32] = ACTIONS(468), + [anon_sym_f64] = ACTIONS(468), + [anon_sym_bool] = ACTIONS(468), + [anon_sym_str] = ACTIONS(468), + [anon_sym_char] = ACTIONS(468), + [anon_sym_DASH] = ACTIONS(973), + [anon_sym_BANG] = ACTIONS(973), + [anon_sym_AMP] = ACTIONS(975), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1176), - [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DOT_DOT] = ACTIONS(1059), + [anon_sym_COLON_COLON] = ACTIONS(472), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), + [anon_sym_break] = ACTIONS(494), [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), + [anon_sym_continue] = ACTIONS(496), + [anon_sym_default] = ACTIONS(476), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), [anon_sym_loop] = ACTIONS(356), [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), + [anon_sym_return] = ACTIONS(498), + [anon_sym_static] = ACTIONS(500), + [anon_sym_union] = ACTIONS(476), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), + [anon_sym_yield] = ACTIONS(502), + [anon_sym_move] = ACTIONS(504), [anon_sym_try] = ACTIONS(366), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -54704,62 +56472,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), + [sym_self] = ACTIONS(486), + [sym_super] = ACTIONS(488), + [sym_crate] = ACTIONS(488), + [sym_metavariable] = ACTIONS(490), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [340] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1857), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(340), - [sym_block_comment] = STATE(340), + [356] = { + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1872), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1268), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), + [sym_line_comment] = STATE(356), + [sym_block_comment] = STATE(356), [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -54821,211 +56589,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [341] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1353), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(341), - [sym_block_comment] = STATE(341), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(1041), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(1041), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_AMP] = ACTIONS(1043), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(464), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(468), - [anon_sym_static] = ACTIONS(470), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(472), - [anon_sym_move] = ACTIONS(474), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [342] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1796), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(342), - [sym_block_comment] = STATE(342), - [sym_identifier] = ACTIONS(456), + [357] = { + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2731), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1612), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(236), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), + [sym_line_comment] = STATE(357), + [sym_block_comment] = STATE(357), + [sym_identifier] = ACTIONS(466), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(1041), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(1041), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_AMP] = ACTIONS(1043), + [anon_sym_STAR] = ACTIONS(973), + [anon_sym_u8] = ACTIONS(468), + [anon_sym_i8] = ACTIONS(468), + [anon_sym_u16] = ACTIONS(468), + [anon_sym_i16] = ACTIONS(468), + [anon_sym_u32] = ACTIONS(468), + [anon_sym_i32] = ACTIONS(468), + [anon_sym_u64] = ACTIONS(468), + [anon_sym_i64] = ACTIONS(468), + [anon_sym_u128] = ACTIONS(468), + [anon_sym_i128] = ACTIONS(468), + [anon_sym_isize] = ACTIONS(468), + [anon_sym_usize] = ACTIONS(468), + [anon_sym_f32] = ACTIONS(468), + [anon_sym_f64] = ACTIONS(468), + [anon_sym_bool] = ACTIONS(468), + [anon_sym_str] = ACTIONS(468), + [anon_sym_char] = ACTIONS(468), + [anon_sym_DASH] = ACTIONS(973), + [anon_sym_BANG] = ACTIONS(973), + [anon_sym_AMP] = ACTIONS(975), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1230), - [anon_sym_COLON_COLON] = ACTIONS(462), + [anon_sym_DOT_DOT] = ACTIONS(1059), + [anon_sym_COLON_COLON] = ACTIONS(472), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(464), + [anon_sym_break] = ACTIONS(494), [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(466), + [anon_sym_continue] = ACTIONS(496), + [anon_sym_default] = ACTIONS(476), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), [anon_sym_loop] = ACTIONS(356), [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(468), - [anon_sym_static] = ACTIONS(470), - [anon_sym_union] = ACTIONS(466), + [anon_sym_return] = ACTIONS(498), + [anon_sym_static] = ACTIONS(500), + [anon_sym_union] = ACTIONS(476), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(472), - [anon_sym_move] = ACTIONS(474), + [anon_sym_yield] = ACTIONS(502), + [anon_sym_move] = ACTIONS(504), [anon_sym_try] = ACTIONS(366), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -55034,62 +56692,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), + [sym_self] = ACTIONS(486), + [sym_super] = ACTIONS(488), + [sym_crate] = ACTIONS(488), + [sym_metavariable] = ACTIONS(490), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [343] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1851), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(343), - [sym_block_comment] = STATE(343), + [358] = { + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1850), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1268), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), + [sym_line_comment] = STATE(358), + [sym_block_comment] = STATE(358), [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -55151,55 +56809,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [344] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1852), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(344), - [sym_block_comment] = STATE(344), + [359] = { + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1804), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1268), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), + [sym_line_comment] = STATE(359), + [sym_block_comment] = STATE(359), [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -55261,97 +56919,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [345] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1571), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(345), - [sym_block_comment] = STATE(345), - [sym_identifier] = ACTIONS(456), + [360] = { + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2731), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1586), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(236), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), + [sym_line_comment] = STATE(360), + [sym_block_comment] = STATE(360), + [sym_identifier] = ACTIONS(466), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), + [anon_sym_u8] = ACTIONS(468), + [anon_sym_i8] = ACTIONS(468), + [anon_sym_u16] = ACTIONS(468), + [anon_sym_i16] = ACTIONS(468), + [anon_sym_u32] = ACTIONS(468), + [anon_sym_i32] = ACTIONS(468), + [anon_sym_u64] = ACTIONS(468), + [anon_sym_i64] = ACTIONS(468), + [anon_sym_u128] = ACTIONS(468), + [anon_sym_i128] = ACTIONS(468), + [anon_sym_isize] = ACTIONS(468), + [anon_sym_usize] = ACTIONS(468), + [anon_sym_f32] = ACTIONS(468), + [anon_sym_f64] = ACTIONS(468), + [anon_sym_bool] = ACTIONS(468), + [anon_sym_str] = ACTIONS(468), + [anon_sym_char] = ACTIONS(468), [anon_sym_DASH] = ACTIONS(973), [anon_sym_BANG] = ACTIONS(973), [anon_sym_AMP] = ACTIONS(975), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(977), - [anon_sym_COLON_COLON] = ACTIONS(462), + [anon_sym_DOT_DOT] = ACTIONS(1059), + [anon_sym_COLON_COLON] = ACTIONS(472), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), [anon_sym_break] = ACTIONS(494), [anon_sym_const] = ACTIONS(348), [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), + [anon_sym_default] = ACTIONS(476), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), [anon_sym_loop] = ACTIONS(356), [anon_sym_match] = ACTIONS(358), [anon_sym_return] = ACTIONS(498), [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), + [anon_sym_union] = ACTIONS(476), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), [anon_sym_yield] = ACTIONS(502), @@ -55364,108 +57022,218 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), + [sym_self] = ACTIONS(486), + [sym_super] = ACTIONS(488), + [sym_crate] = ACTIONS(488), + [sym_metavariable] = ACTIONS(490), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [346] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1801), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(346), - [sym_block_comment] = STATE(346), - [sym_identifier] = ACTIONS(334), + [361] = { + [sym_line_comment] = STATE(361), + [sym_block_comment] = STATE(361), + [ts_builtin_sym_end] = ACTIONS(1240), + [sym_identifier] = ACTIONS(1242), + [anon_sym_SEMI] = ACTIONS(1240), + [anon_sym_macro_rules_BANG] = ACTIONS(1240), + [anon_sym_LPAREN] = ACTIONS(1240), + [anon_sym_LBRACK] = ACTIONS(1240), + [anon_sym_LBRACE] = ACTIONS(1240), + [anon_sym_RBRACE] = ACTIONS(1240), + [anon_sym_PLUS] = ACTIONS(1242), + [anon_sym_STAR] = ACTIONS(1242), + [anon_sym_QMARK] = ACTIONS(1240), + [anon_sym_u8] = ACTIONS(1242), + [anon_sym_i8] = ACTIONS(1242), + [anon_sym_u16] = ACTIONS(1242), + [anon_sym_i16] = ACTIONS(1242), + [anon_sym_u32] = ACTIONS(1242), + [anon_sym_i32] = ACTIONS(1242), + [anon_sym_u64] = ACTIONS(1242), + [anon_sym_i64] = ACTIONS(1242), + [anon_sym_u128] = ACTIONS(1242), + [anon_sym_i128] = ACTIONS(1242), + [anon_sym_isize] = ACTIONS(1242), + [anon_sym_usize] = ACTIONS(1242), + [anon_sym_f32] = ACTIONS(1242), + [anon_sym_f64] = ACTIONS(1242), + [anon_sym_bool] = ACTIONS(1242), + [anon_sym_str] = ACTIONS(1242), + [anon_sym_char] = ACTIONS(1242), + [anon_sym_DASH] = ACTIONS(1242), + [anon_sym_SLASH] = ACTIONS(1242), + [anon_sym_PERCENT] = ACTIONS(1242), + [anon_sym_CARET] = ACTIONS(1242), + [anon_sym_BANG] = ACTIONS(1242), + [anon_sym_AMP] = ACTIONS(1242), + [anon_sym_PIPE] = ACTIONS(1242), + [anon_sym_AMP_AMP] = ACTIONS(1240), + [anon_sym_PIPE_PIPE] = ACTIONS(1240), + [anon_sym_LT_LT] = ACTIONS(1242), + [anon_sym_GT_GT] = ACTIONS(1242), + [anon_sym_PLUS_EQ] = ACTIONS(1240), + [anon_sym_DASH_EQ] = ACTIONS(1240), + [anon_sym_STAR_EQ] = ACTIONS(1240), + [anon_sym_SLASH_EQ] = ACTIONS(1240), + [anon_sym_PERCENT_EQ] = ACTIONS(1240), + [anon_sym_CARET_EQ] = ACTIONS(1240), + [anon_sym_AMP_EQ] = ACTIONS(1240), + [anon_sym_PIPE_EQ] = ACTIONS(1240), + [anon_sym_LT_LT_EQ] = ACTIONS(1240), + [anon_sym_GT_GT_EQ] = ACTIONS(1240), + [anon_sym_EQ] = ACTIONS(1242), + [anon_sym_EQ_EQ] = ACTIONS(1240), + [anon_sym_BANG_EQ] = ACTIONS(1240), + [anon_sym_GT] = ACTIONS(1242), + [anon_sym_LT] = ACTIONS(1242), + [anon_sym_GT_EQ] = ACTIONS(1240), + [anon_sym_LT_EQ] = ACTIONS(1240), + [anon_sym_DOT] = ACTIONS(1242), + [anon_sym_DOT_DOT] = ACTIONS(1242), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1240), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1240), + [anon_sym_COLON_COLON] = ACTIONS(1240), + [anon_sym_POUND] = ACTIONS(1240), + [anon_sym_SQUOTE] = ACTIONS(1242), + [anon_sym_as] = ACTIONS(1242), + [anon_sym_async] = ACTIONS(1242), + [anon_sym_break] = ACTIONS(1242), + [anon_sym_const] = ACTIONS(1242), + [anon_sym_continue] = ACTIONS(1242), + [anon_sym_default] = ACTIONS(1242), + [anon_sym_enum] = ACTIONS(1242), + [anon_sym_fn] = ACTIONS(1242), + [anon_sym_for] = ACTIONS(1242), + [anon_sym_if] = ACTIONS(1242), + [anon_sym_impl] = ACTIONS(1242), + [anon_sym_let] = ACTIONS(1242), + [anon_sym_loop] = ACTIONS(1242), + [anon_sym_match] = ACTIONS(1242), + [anon_sym_mod] = ACTIONS(1242), + [anon_sym_pub] = ACTIONS(1242), + [anon_sym_return] = ACTIONS(1242), + [anon_sym_static] = ACTIONS(1242), + [anon_sym_struct] = ACTIONS(1242), + [anon_sym_trait] = ACTIONS(1242), + [anon_sym_type] = ACTIONS(1242), + [anon_sym_union] = ACTIONS(1242), + [anon_sym_unsafe] = ACTIONS(1242), + [anon_sym_use] = ACTIONS(1242), + [anon_sym_while] = ACTIONS(1242), + [anon_sym_extern] = ACTIONS(1242), + [anon_sym_else] = ACTIONS(1242), + [anon_sym_yield] = ACTIONS(1242), + [anon_sym_move] = ACTIONS(1242), + [anon_sym_try] = ACTIONS(1242), + [sym_integer_literal] = ACTIONS(1240), + [aux_sym_string_literal_token1] = ACTIONS(1240), + [sym_char_literal] = ACTIONS(1240), + [anon_sym_true] = ACTIONS(1242), + [anon_sym_false] = ACTIONS(1242), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1242), + [sym_super] = ACTIONS(1242), + [sym_crate] = ACTIONS(1242), + [sym_metavariable] = ACTIONS(1240), + [sym__raw_string_literal_start] = ACTIONS(1240), + [sym_float_literal] = ACTIONS(1240), + }, + [362] = { + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2731), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1597), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(236), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), + [sym_line_comment] = STATE(362), + [sym_block_comment] = STATE(362), + [sym_identifier] = ACTIONS(466), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), - [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_STAR] = ACTIONS(973), + [anon_sym_u8] = ACTIONS(468), + [anon_sym_i8] = ACTIONS(468), + [anon_sym_u16] = ACTIONS(468), + [anon_sym_i16] = ACTIONS(468), + [anon_sym_u32] = ACTIONS(468), + [anon_sym_i32] = ACTIONS(468), + [anon_sym_u64] = ACTIONS(468), + [anon_sym_i64] = ACTIONS(468), + [anon_sym_u128] = ACTIONS(468), + [anon_sym_i128] = ACTIONS(468), + [anon_sym_isize] = ACTIONS(468), + [anon_sym_usize] = ACTIONS(468), + [anon_sym_f32] = ACTIONS(468), + [anon_sym_f64] = ACTIONS(468), + [anon_sym_bool] = ACTIONS(468), + [anon_sym_str] = ACTIONS(468), + [anon_sym_char] = ACTIONS(468), + [anon_sym_DASH] = ACTIONS(973), + [anon_sym_BANG] = ACTIONS(973), + [anon_sym_AMP] = ACTIONS(975), [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(1059), + [anon_sym_COLON_COLON] = ACTIONS(472), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), + [anon_sym_break] = ACTIONS(494), [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), + [anon_sym_continue] = ACTIONS(496), + [anon_sym_default] = ACTIONS(476), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), [anon_sym_loop] = ACTIONS(356), [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), + [anon_sym_return] = ACTIONS(498), + [anon_sym_static] = ACTIONS(500), + [anon_sym_union] = ACTIONS(476), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), + [anon_sym_yield] = ACTIONS(502), + [anon_sym_move] = ACTIONS(504), [anon_sym_try] = ACTIONS(366), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -55474,218 +57242,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), + [sym_self] = ACTIONS(486), + [sym_super] = ACTIONS(488), + [sym_crate] = ACTIONS(488), + [sym_metavariable] = ACTIONS(490), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [347] = { - [sym_line_comment] = STATE(347), - [sym_block_comment] = STATE(347), - [ts_builtin_sym_end] = ACTIONS(1244), - [sym_identifier] = ACTIONS(1246), - [anon_sym_SEMI] = ACTIONS(1244), - [anon_sym_macro_rules_BANG] = ACTIONS(1244), - [anon_sym_LPAREN] = ACTIONS(1244), - [anon_sym_LBRACK] = ACTIONS(1244), - [anon_sym_LBRACE] = ACTIONS(1244), - [anon_sym_RBRACE] = ACTIONS(1244), - [anon_sym_PLUS] = ACTIONS(1246), - [anon_sym_STAR] = ACTIONS(1246), - [anon_sym_QMARK] = ACTIONS(1244), - [anon_sym_u8] = ACTIONS(1246), - [anon_sym_i8] = ACTIONS(1246), - [anon_sym_u16] = ACTIONS(1246), - [anon_sym_i16] = ACTIONS(1246), - [anon_sym_u32] = ACTIONS(1246), - [anon_sym_i32] = ACTIONS(1246), - [anon_sym_u64] = ACTIONS(1246), - [anon_sym_i64] = ACTIONS(1246), - [anon_sym_u128] = ACTIONS(1246), - [anon_sym_i128] = ACTIONS(1246), - [anon_sym_isize] = ACTIONS(1246), - [anon_sym_usize] = ACTIONS(1246), - [anon_sym_f32] = ACTIONS(1246), - [anon_sym_f64] = ACTIONS(1246), - [anon_sym_bool] = ACTIONS(1246), - [anon_sym_str] = ACTIONS(1246), - [anon_sym_char] = ACTIONS(1246), - [anon_sym_DASH] = ACTIONS(1246), - [anon_sym_SLASH] = ACTIONS(1246), - [anon_sym_PERCENT] = ACTIONS(1246), - [anon_sym_CARET] = ACTIONS(1246), - [anon_sym_BANG] = ACTIONS(1246), - [anon_sym_AMP] = ACTIONS(1246), - [anon_sym_PIPE] = ACTIONS(1246), - [anon_sym_AMP_AMP] = ACTIONS(1244), - [anon_sym_PIPE_PIPE] = ACTIONS(1244), - [anon_sym_LT_LT] = ACTIONS(1246), - [anon_sym_GT_GT] = ACTIONS(1246), - [anon_sym_PLUS_EQ] = ACTIONS(1244), - [anon_sym_DASH_EQ] = ACTIONS(1244), - [anon_sym_STAR_EQ] = ACTIONS(1244), - [anon_sym_SLASH_EQ] = ACTIONS(1244), - [anon_sym_PERCENT_EQ] = ACTIONS(1244), - [anon_sym_CARET_EQ] = ACTIONS(1244), - [anon_sym_AMP_EQ] = ACTIONS(1244), - [anon_sym_PIPE_EQ] = ACTIONS(1244), - [anon_sym_LT_LT_EQ] = ACTIONS(1244), - [anon_sym_GT_GT_EQ] = ACTIONS(1244), - [anon_sym_EQ] = ACTIONS(1246), - [anon_sym_EQ_EQ] = ACTIONS(1244), - [anon_sym_BANG_EQ] = ACTIONS(1244), - [anon_sym_GT] = ACTIONS(1246), - [anon_sym_LT] = ACTIONS(1246), - [anon_sym_GT_EQ] = ACTIONS(1244), - [anon_sym_LT_EQ] = ACTIONS(1244), - [anon_sym_DOT] = ACTIONS(1246), - [anon_sym_DOT_DOT] = ACTIONS(1246), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1244), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1244), - [anon_sym_COLON_COLON] = ACTIONS(1244), - [anon_sym_POUND] = ACTIONS(1244), - [anon_sym_SQUOTE] = ACTIONS(1246), - [anon_sym_as] = ACTIONS(1246), - [anon_sym_async] = ACTIONS(1246), - [anon_sym_break] = ACTIONS(1246), - [anon_sym_const] = ACTIONS(1246), - [anon_sym_continue] = ACTIONS(1246), - [anon_sym_default] = ACTIONS(1246), - [anon_sym_enum] = ACTIONS(1246), - [anon_sym_fn] = ACTIONS(1246), - [anon_sym_for] = ACTIONS(1246), - [anon_sym_if] = ACTIONS(1246), - [anon_sym_impl] = ACTIONS(1246), - [anon_sym_let] = ACTIONS(1246), - [anon_sym_loop] = ACTIONS(1246), - [anon_sym_match] = ACTIONS(1246), - [anon_sym_mod] = ACTIONS(1246), - [anon_sym_pub] = ACTIONS(1246), - [anon_sym_return] = ACTIONS(1246), - [anon_sym_static] = ACTIONS(1246), - [anon_sym_struct] = ACTIONS(1246), - [anon_sym_trait] = ACTIONS(1246), - [anon_sym_type] = ACTIONS(1246), - [anon_sym_union] = ACTIONS(1246), - [anon_sym_unsafe] = ACTIONS(1246), - [anon_sym_use] = ACTIONS(1246), - [anon_sym_while] = ACTIONS(1246), - [anon_sym_extern] = ACTIONS(1246), - [anon_sym_else] = ACTIONS(1246), - [anon_sym_yield] = ACTIONS(1246), - [anon_sym_move] = ACTIONS(1246), - [anon_sym_try] = ACTIONS(1246), - [sym_integer_literal] = ACTIONS(1244), - [aux_sym_string_literal_token1] = ACTIONS(1244), - [sym_char_literal] = ACTIONS(1244), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1246), - [sym_super] = ACTIONS(1246), - [sym_crate] = ACTIONS(1246), - [sym_metavariable] = ACTIONS(1244), - [sym__raw_string_literal_start] = ACTIONS(1244), - [sym_float_literal] = ACTIONS(1244), - }, - [348] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1855), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(348), - [sym_block_comment] = STATE(348), - [sym_identifier] = ACTIONS(334), + [363] = { + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2731), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1549), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(236), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), + [sym_line_comment] = STATE(363), + [sym_block_comment] = STATE(363), + [sym_identifier] = ACTIONS(466), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), - [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_STAR] = ACTIONS(973), + [anon_sym_u8] = ACTIONS(468), + [anon_sym_i8] = ACTIONS(468), + [anon_sym_u16] = ACTIONS(468), + [anon_sym_i16] = ACTIONS(468), + [anon_sym_u32] = ACTIONS(468), + [anon_sym_i32] = ACTIONS(468), + [anon_sym_u64] = ACTIONS(468), + [anon_sym_i64] = ACTIONS(468), + [anon_sym_u128] = ACTIONS(468), + [anon_sym_i128] = ACTIONS(468), + [anon_sym_isize] = ACTIONS(468), + [anon_sym_usize] = ACTIONS(468), + [anon_sym_f32] = ACTIONS(468), + [anon_sym_f64] = ACTIONS(468), + [anon_sym_bool] = ACTIONS(468), + [anon_sym_str] = ACTIONS(468), + [anon_sym_char] = ACTIONS(468), + [anon_sym_DASH] = ACTIONS(973), + [anon_sym_BANG] = ACTIONS(973), + [anon_sym_AMP] = ACTIONS(975), [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(977), + [anon_sym_COLON_COLON] = ACTIONS(472), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), + [anon_sym_break] = ACTIONS(494), [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), + [anon_sym_continue] = ACTIONS(496), + [anon_sym_default] = ACTIONS(476), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), [anon_sym_loop] = ACTIONS(356), [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), + [anon_sym_return] = ACTIONS(498), + [anon_sym_static] = ACTIONS(500), + [anon_sym_union] = ACTIONS(476), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), + [anon_sym_yield] = ACTIONS(502), + [anon_sym_move] = ACTIONS(504), [anon_sym_try] = ACTIONS(366), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -55694,62 +57352,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), + [sym_self] = ACTIONS(486), + [sym_super] = ACTIONS(488), + [sym_crate] = ACTIONS(488), + [sym_metavariable] = ACTIONS(490), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [349] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1856), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(349), - [sym_block_comment] = STATE(349), + [364] = { + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1862), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1268), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), + [sym_line_comment] = STATE(364), + [sym_block_comment] = STATE(364), [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -55811,101 +57469,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [350] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1804), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(350), - [sym_block_comment] = STATE(350), - [sym_identifier] = ACTIONS(334), + [365] = { + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2731), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1452), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(236), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), + [sym_line_comment] = STATE(365), + [sym_block_comment] = STATE(365), + [sym_identifier] = ACTIONS(466), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), - [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_STAR] = ACTIONS(973), + [anon_sym_u8] = ACTIONS(468), + [anon_sym_i8] = ACTIONS(468), + [anon_sym_u16] = ACTIONS(468), + [anon_sym_i16] = ACTIONS(468), + [anon_sym_u32] = ACTIONS(468), + [anon_sym_i32] = ACTIONS(468), + [anon_sym_u64] = ACTIONS(468), + [anon_sym_i64] = ACTIONS(468), + [anon_sym_u128] = ACTIONS(468), + [anon_sym_i128] = ACTIONS(468), + [anon_sym_isize] = ACTIONS(468), + [anon_sym_usize] = ACTIONS(468), + [anon_sym_f32] = ACTIONS(468), + [anon_sym_f64] = ACTIONS(468), + [anon_sym_bool] = ACTIONS(468), + [anon_sym_str] = ACTIONS(468), + [anon_sym_char] = ACTIONS(468), + [anon_sym_DASH] = ACTIONS(973), + [anon_sym_BANG] = ACTIONS(973), + [anon_sym_AMP] = ACTIONS(975), [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(1059), + [anon_sym_COLON_COLON] = ACTIONS(472), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), + [anon_sym_break] = ACTIONS(494), [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), + [anon_sym_continue] = ACTIONS(496), + [anon_sym_default] = ACTIONS(476), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), [anon_sym_loop] = ACTIONS(356), [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), + [anon_sym_return] = ACTIONS(498), + [anon_sym_static] = ACTIONS(500), + [anon_sym_union] = ACTIONS(476), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), + [anon_sym_yield] = ACTIONS(502), + [anon_sym_move] = ACTIONS(504), [anon_sym_try] = ACTIONS(366), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -55914,62 +57572,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), + [sym_self] = ACTIONS(486), + [sym_super] = ACTIONS(488), + [sym_crate] = ACTIONS(488), + [sym_metavariable] = ACTIONS(490), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [351] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1858), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(351), - [sym_block_comment] = STATE(351), + [366] = { + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1799), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1268), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), + [sym_line_comment] = STATE(366), + [sym_block_comment] = STATE(366), [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -56031,211 +57689,321 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [352] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1808), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(352), - [sym_block_comment] = STATE(352), - [sym_identifier] = ACTIONS(334), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [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), + [367] = { + [sym_bracketed_type] = STATE(3506), + [sym_generic_function] = STATE(1695), + [sym_generic_type_with_turbofish] = STATE(2844), + [sym__expression_except_range] = STATE(1590), + [sym__expression] = STATE(1638), + [sym_macro_invocation] = STATE(1705), + [sym_scoped_identifier] = STATE(1568), + [sym_scoped_type_identifier_in_expression_position] = STATE(3132), + [sym_range_expression] = STATE(1699), + [sym_unary_expression] = STATE(1695), + [sym_try_expression] = STATE(1695), + [sym_reference_expression] = STATE(1695), + [sym_binary_expression] = STATE(1695), + [sym_assignment_expression] = STATE(1695), + [sym_compound_assignment_expr] = STATE(1695), + [sym_type_cast_expression] = STATE(1695), + [sym_return_expression] = STATE(1695), + [sym_yield_expression] = STATE(1695), + [sym_call_expression] = STATE(1695), + [sym_array_expression] = STATE(1695), + [sym_parenthesized_expression] = STATE(1695), + [sym_tuple_expression] = STATE(1695), + [sym_unit_expression] = STATE(1695), + [sym_struct_expression] = STATE(1695), + [sym_if_expression] = STATE(1695), + [sym_match_expression] = STATE(1695), + [sym_while_expression] = STATE(1695), + [sym_loop_expression] = STATE(1695), + [sym_for_expression] = STATE(1695), + [sym_const_block] = STATE(1695), + [sym_closure_expression] = STATE(1695), + [sym_closure_parameters] = STATE(222), + [sym_label] = STATE(3593), + [sym_break_expression] = STATE(1695), + [sym_continue_expression] = STATE(1695), + [sym_index_expression] = STATE(1695), + [sym_await_expression] = STATE(1695), + [sym_field_expression] = STATE(1583), + [sym_unsafe_block] = STATE(1695), + [sym_async_block] = STATE(1695), + [sym_try_block] = STATE(1695), + [sym_block] = STATE(1695), + [sym__literal] = STATE(1695), + [sym_string_literal] = STATE(1801), + [sym_raw_string_literal] = STATE(1801), + [sym_boolean_literal] = STATE(1801), + [sym_line_comment] = STATE(367), + [sym_block_comment] = STATE(367), + [sym_identifier] = ACTIONS(398), + [anon_sym_LPAREN] = ACTIONS(456), + [anon_sym_LBRACK] = ACTIONS(458), + [anon_sym_LBRACE] = ACTIONS(400), + [anon_sym_STAR] = ACTIONS(993), + [anon_sym_u8] = ACTIONS(404), + [anon_sym_i8] = ACTIONS(404), + [anon_sym_u16] = ACTIONS(404), + [anon_sym_i16] = ACTIONS(404), + [anon_sym_u32] = ACTIONS(404), + [anon_sym_i32] = ACTIONS(404), + [anon_sym_u64] = ACTIONS(404), + [anon_sym_i64] = ACTIONS(404), + [anon_sym_u128] = ACTIONS(404), + [anon_sym_i128] = ACTIONS(404), + [anon_sym_isize] = ACTIONS(404), + [anon_sym_usize] = ACTIONS(404), + [anon_sym_f32] = ACTIONS(404), + [anon_sym_f64] = ACTIONS(404), + [anon_sym_bool] = ACTIONS(404), + [anon_sym_str] = ACTIONS(404), + [anon_sym_char] = ACTIONS(404), + [anon_sym_DASH] = ACTIONS(993), + [anon_sym_BANG] = ACTIONS(993), + [anon_sym_AMP] = ACTIONS(995), [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(1063), + [anon_sym_COLON_COLON] = ACTIONS(408), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), + [anon_sym_async] = ACTIONS(410), + [anon_sym_break] = ACTIONS(412), + [anon_sym_const] = ACTIONS(414), + [anon_sym_continue] = ACTIONS(416), + [anon_sym_default] = ACTIONS(418), + [anon_sym_for] = ACTIONS(420), + [anon_sym_if] = ACTIONS(422), + [anon_sym_loop] = ACTIONS(424), + [anon_sym_match] = ACTIONS(426), + [anon_sym_return] = ACTIONS(428), + [anon_sym_static] = ACTIONS(430), + [anon_sym_union] = ACTIONS(418), + [anon_sym_unsafe] = ACTIONS(432), + [anon_sym_while] = ACTIONS(434), + [anon_sym_yield] = ACTIONS(436), + [anon_sym_move] = ACTIONS(438), + [anon_sym_try] = ACTIONS(440), + [sym_integer_literal] = ACTIONS(442), + [aux_sym_string_literal_token1] = ACTIONS(444), + [sym_char_literal] = ACTIONS(442), + [anon_sym_true] = ACTIONS(446), + [anon_sym_false] = ACTIONS(446), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [sym_self] = ACTIONS(448), + [sym_super] = ACTIONS(450), + [sym_crate] = ACTIONS(450), + [sym_metavariable] = ACTIONS(452), + [sym__raw_string_literal_start] = ACTIONS(454), + [sym_float_literal] = ACTIONS(442), }, - [353] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1859), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(353), - [sym_block_comment] = STATE(353), - [sym_identifier] = ACTIONS(334), + [368] = { + [sym_line_comment] = STATE(368), + [sym_block_comment] = STATE(368), + [ts_builtin_sym_end] = ACTIONS(1244), + [sym_identifier] = ACTIONS(1246), + [anon_sym_SEMI] = ACTIONS(1244), + [anon_sym_macro_rules_BANG] = ACTIONS(1244), + [anon_sym_LPAREN] = ACTIONS(1244), + [anon_sym_LBRACK] = ACTIONS(1244), + [anon_sym_LBRACE] = ACTIONS(1244), + [anon_sym_RBRACE] = ACTIONS(1244), + [anon_sym_PLUS] = ACTIONS(1246), + [anon_sym_STAR] = ACTIONS(1246), + [anon_sym_QMARK] = ACTIONS(1244), + [anon_sym_u8] = ACTIONS(1246), + [anon_sym_i8] = ACTIONS(1246), + [anon_sym_u16] = ACTIONS(1246), + [anon_sym_i16] = ACTIONS(1246), + [anon_sym_u32] = ACTIONS(1246), + [anon_sym_i32] = ACTIONS(1246), + [anon_sym_u64] = ACTIONS(1246), + [anon_sym_i64] = ACTIONS(1246), + [anon_sym_u128] = ACTIONS(1246), + [anon_sym_i128] = ACTIONS(1246), + [anon_sym_isize] = ACTIONS(1246), + [anon_sym_usize] = ACTIONS(1246), + [anon_sym_f32] = ACTIONS(1246), + [anon_sym_f64] = ACTIONS(1246), + [anon_sym_bool] = ACTIONS(1246), + [anon_sym_str] = ACTIONS(1246), + [anon_sym_char] = ACTIONS(1246), + [anon_sym_DASH] = ACTIONS(1246), + [anon_sym_SLASH] = ACTIONS(1246), + [anon_sym_PERCENT] = ACTIONS(1246), + [anon_sym_CARET] = ACTIONS(1246), + [anon_sym_BANG] = ACTIONS(1246), + [anon_sym_AMP] = ACTIONS(1246), + [anon_sym_PIPE] = ACTIONS(1246), + [anon_sym_AMP_AMP] = ACTIONS(1244), + [anon_sym_PIPE_PIPE] = ACTIONS(1244), + [anon_sym_LT_LT] = ACTIONS(1246), + [anon_sym_GT_GT] = ACTIONS(1246), + [anon_sym_PLUS_EQ] = ACTIONS(1244), + [anon_sym_DASH_EQ] = ACTIONS(1244), + [anon_sym_STAR_EQ] = ACTIONS(1244), + [anon_sym_SLASH_EQ] = ACTIONS(1244), + [anon_sym_PERCENT_EQ] = ACTIONS(1244), + [anon_sym_CARET_EQ] = ACTIONS(1244), + [anon_sym_AMP_EQ] = ACTIONS(1244), + [anon_sym_PIPE_EQ] = ACTIONS(1244), + [anon_sym_LT_LT_EQ] = ACTIONS(1244), + [anon_sym_GT_GT_EQ] = ACTIONS(1244), + [anon_sym_EQ] = ACTIONS(1246), + [anon_sym_EQ_EQ] = ACTIONS(1244), + [anon_sym_BANG_EQ] = ACTIONS(1244), + [anon_sym_GT] = ACTIONS(1246), + [anon_sym_LT] = ACTIONS(1246), + [anon_sym_GT_EQ] = ACTIONS(1244), + [anon_sym_LT_EQ] = ACTIONS(1244), + [anon_sym_DOT] = ACTIONS(1246), + [anon_sym_DOT_DOT] = ACTIONS(1246), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1244), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1244), + [anon_sym_COLON_COLON] = ACTIONS(1244), + [anon_sym_POUND] = ACTIONS(1244), + [anon_sym_SQUOTE] = ACTIONS(1246), + [anon_sym_as] = ACTIONS(1246), + [anon_sym_async] = ACTIONS(1246), + [anon_sym_break] = ACTIONS(1246), + [anon_sym_const] = ACTIONS(1246), + [anon_sym_continue] = ACTIONS(1246), + [anon_sym_default] = ACTIONS(1246), + [anon_sym_enum] = ACTIONS(1246), + [anon_sym_fn] = ACTIONS(1246), + [anon_sym_for] = ACTIONS(1246), + [anon_sym_if] = ACTIONS(1246), + [anon_sym_impl] = ACTIONS(1246), + [anon_sym_let] = ACTIONS(1246), + [anon_sym_loop] = ACTIONS(1246), + [anon_sym_match] = ACTIONS(1246), + [anon_sym_mod] = ACTIONS(1246), + [anon_sym_pub] = ACTIONS(1246), + [anon_sym_return] = ACTIONS(1246), + [anon_sym_static] = ACTIONS(1246), + [anon_sym_struct] = ACTIONS(1246), + [anon_sym_trait] = ACTIONS(1246), + [anon_sym_type] = ACTIONS(1246), + [anon_sym_union] = ACTIONS(1246), + [anon_sym_unsafe] = ACTIONS(1246), + [anon_sym_use] = ACTIONS(1246), + [anon_sym_while] = ACTIONS(1246), + [anon_sym_extern] = ACTIONS(1246), + [anon_sym_else] = ACTIONS(1246), + [anon_sym_yield] = ACTIONS(1246), + [anon_sym_move] = ACTIONS(1246), + [anon_sym_try] = ACTIONS(1246), + [sym_integer_literal] = ACTIONS(1244), + [aux_sym_string_literal_token1] = ACTIONS(1244), + [sym_char_literal] = ACTIONS(1244), + [anon_sym_true] = ACTIONS(1246), + [anon_sym_false] = ACTIONS(1246), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1246), + [sym_super] = ACTIONS(1246), + [sym_crate] = ACTIONS(1246), + [sym_metavariable] = ACTIONS(1244), + [sym__raw_string_literal_start] = ACTIONS(1244), + [sym_float_literal] = ACTIONS(1244), + }, + [369] = { + [sym_bracketed_type] = STATE(3562), + [sym_generic_function] = STATE(1384), + [sym_generic_type_with_turbofish] = STATE(2731), + [sym__expression_except_range] = STATE(1060), + [sym__expression] = STATE(1835), + [sym_macro_invocation] = STATE(1462), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3083), + [sym_range_expression] = STATE(1396), + [sym_unary_expression] = STATE(1384), + [sym_try_expression] = STATE(1384), + [sym_reference_expression] = STATE(1384), + [sym_binary_expression] = STATE(1384), + [sym_assignment_expression] = STATE(1384), + [sym_compound_assignment_expr] = STATE(1384), + [sym_type_cast_expression] = STATE(1384), + [sym_return_expression] = STATE(1384), + [sym_yield_expression] = STATE(1384), + [sym_call_expression] = STATE(1384), + [sym_array_expression] = STATE(1384), + [sym_parenthesized_expression] = STATE(1384), + [sym_tuple_expression] = STATE(1384), + [sym_unit_expression] = STATE(1384), + [sym_struct_expression] = STATE(1384), + [sym_if_expression] = STATE(1384), + [sym_match_expression] = STATE(1384), + [sym_while_expression] = STATE(1384), + [sym_loop_expression] = STATE(1384), + [sym_for_expression] = STATE(1384), + [sym_const_block] = STATE(1384), + [sym_closure_expression] = STATE(1384), + [sym_closure_parameters] = STATE(223), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1384), + [sym_continue_expression] = STATE(1384), + [sym_index_expression] = STATE(1384), + [sym_await_expression] = STATE(1384), + [sym_field_expression] = STATE(1055), + [sym_unsafe_block] = STATE(1384), + [sym_async_block] = STATE(1384), + [sym_try_block] = STATE(1384), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1384), + [sym_string_literal] = STATE(1102), + [sym_raw_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), + [sym_line_comment] = STATE(369), + [sym_block_comment] = STATE(369), + [sym_identifier] = ACTIONS(466), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), - [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_STAR] = ACTIONS(1043), + [anon_sym_u8] = ACTIONS(468), + [anon_sym_i8] = ACTIONS(468), + [anon_sym_u16] = ACTIONS(468), + [anon_sym_i16] = ACTIONS(468), + [anon_sym_u32] = ACTIONS(468), + [anon_sym_i32] = ACTIONS(468), + [anon_sym_u64] = ACTIONS(468), + [anon_sym_i64] = ACTIONS(468), + [anon_sym_u128] = ACTIONS(468), + [anon_sym_i128] = ACTIONS(468), + [anon_sym_isize] = ACTIONS(468), + [anon_sym_usize] = ACTIONS(468), + [anon_sym_f32] = ACTIONS(468), + [anon_sym_f64] = ACTIONS(468), + [anon_sym_bool] = ACTIONS(468), + [anon_sym_str] = ACTIONS(468), + [anon_sym_char] = ACTIONS(468), + [anon_sym_DASH] = ACTIONS(1043), + [anon_sym_BANG] = ACTIONS(1043), + [anon_sym_AMP] = ACTIONS(1045), [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(1049), + [anon_sym_COLON_COLON] = ACTIONS(472), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), + [anon_sym_break] = ACTIONS(474), [anon_sym_const] = ACTIONS(348), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), + [anon_sym_default] = ACTIONS(476), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), [anon_sym_loop] = ACTIONS(356), [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), + [anon_sym_return] = ACTIONS(478), + [anon_sym_static] = ACTIONS(480), + [anon_sym_union] = ACTIONS(476), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), + [anon_sym_yield] = ACTIONS(482), + [anon_sym_move] = ACTIONS(484), [anon_sym_try] = ACTIONS(366), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -56244,1912 +58012,479 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [354] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1562), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(354), - [sym_block_comment] = STATE(354), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(977), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [355] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1809), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(355), - [sym_block_comment] = STATE(355), - [sym_identifier] = ACTIONS(334), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [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_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [356] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1861), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(356), - [sym_block_comment] = STATE(356), - [sym_identifier] = ACTIONS(334), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [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_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [357] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1862), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(357), - [sym_block_comment] = STATE(357), - [sym_identifier] = ACTIONS(334), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [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_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [358] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1863), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(358), - [sym_block_comment] = STATE(358), - [sym_identifier] = ACTIONS(334), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [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_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [359] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1864), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(359), - [sym_block_comment] = STATE(359), - [sym_identifier] = ACTIONS(334), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [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_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [360] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1813), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(360), - [sym_block_comment] = STATE(360), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(1041), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(1041), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_AMP] = ACTIONS(1043), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1230), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(464), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(468), - [anon_sym_static] = ACTIONS(470), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(472), - [anon_sym_move] = ACTIONS(474), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [361] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1551), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(361), - [sym_block_comment] = STATE(361), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(977), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [362] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1866), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(362), - [sym_block_comment] = STATE(362), - [sym_identifier] = ACTIONS(334), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [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_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [363] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1572), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(363), - [sym_block_comment] = STATE(363), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(977), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [364] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1560), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(364), - [sym_block_comment] = STATE(364), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(977), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [365] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1822), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(365), - [sym_block_comment] = STATE(365), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(1041), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(1041), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_AMP] = ACTIONS(1043), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1230), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(464), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(468), - [anon_sym_static] = ACTIONS(470), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(472), - [anon_sym_move] = ACTIONS(474), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [366] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1712), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(366), - [sym_block_comment] = STATE(366), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(1041), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(1041), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_AMP] = ACTIONS(1043), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(464), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(468), - [anon_sym_static] = ACTIONS(470), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(472), - [anon_sym_move] = ACTIONS(474), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [367] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1566), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(367), - [sym_block_comment] = STATE(367), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(977), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [368] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1251), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(368), - [sym_block_comment] = STATE(368), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(1041), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(1041), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_AMP] = ACTIONS(1043), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(464), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(468), - [anon_sym_static] = ACTIONS(470), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(472), - [anon_sym_move] = ACTIONS(474), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [369] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1563), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), - [sym_line_comment] = STATE(369), - [sym_block_comment] = STATE(369), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(977), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), + [sym_self] = ACTIONS(486), + [sym_super] = ACTIONS(488), + [sym_crate] = ACTIONS(488), + [sym_metavariable] = ACTIONS(490), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, [370] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1740), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3506), + [sym_generic_function] = STATE(1695), + [sym_generic_type_with_turbofish] = STATE(2844), + [sym__expression_except_range] = STATE(1590), + [sym__expression] = STATE(1826), + [sym_macro_invocation] = STATE(1705), + [sym_scoped_identifier] = STATE(1568), + [sym_scoped_type_identifier_in_expression_position] = STATE(3132), + [sym_range_expression] = STATE(1699), + [sym_unary_expression] = STATE(1695), + [sym_try_expression] = STATE(1695), + [sym_reference_expression] = STATE(1695), + [sym_binary_expression] = STATE(1695), + [sym_assignment_expression] = STATE(1695), + [sym_compound_assignment_expr] = STATE(1695), + [sym_type_cast_expression] = STATE(1695), + [sym_return_expression] = STATE(1695), + [sym_yield_expression] = STATE(1695), + [sym_call_expression] = STATE(1695), + [sym_array_expression] = STATE(1695), + [sym_parenthesized_expression] = STATE(1695), + [sym_tuple_expression] = STATE(1695), + [sym_unit_expression] = STATE(1695), + [sym_struct_expression] = STATE(1695), + [sym_if_expression] = STATE(1695), + [sym_match_expression] = STATE(1695), + [sym_while_expression] = STATE(1695), + [sym_loop_expression] = STATE(1695), + [sym_for_expression] = STATE(1695), + [sym_const_block] = STATE(1695), + [sym_closure_expression] = STATE(1695), + [sym_closure_parameters] = STATE(222), + [sym_label] = STATE(3593), + [sym_break_expression] = STATE(1695), + [sym_continue_expression] = STATE(1695), + [sym_index_expression] = STATE(1695), + [sym_await_expression] = STATE(1695), + [sym_field_expression] = STATE(1583), + [sym_unsafe_block] = STATE(1695), + [sym_async_block] = STATE(1695), + [sym_try_block] = STATE(1695), + [sym_block] = STATE(1695), + [sym__literal] = STATE(1695), + [sym_string_literal] = STATE(1801), + [sym_raw_string_literal] = STATE(1801), + [sym_boolean_literal] = STATE(1801), [sym_line_comment] = STATE(370), [sym_block_comment] = STATE(370), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(1041), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(1041), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_AMP] = ACTIONS(1043), + [sym_identifier] = ACTIONS(398), + [anon_sym_LPAREN] = ACTIONS(456), + [anon_sym_LBRACK] = ACTIONS(458), + [anon_sym_LBRACE] = ACTIONS(400), + [anon_sym_STAR] = ACTIONS(993), + [anon_sym_u8] = ACTIONS(404), + [anon_sym_i8] = ACTIONS(404), + [anon_sym_u16] = ACTIONS(404), + [anon_sym_i16] = ACTIONS(404), + [anon_sym_u32] = ACTIONS(404), + [anon_sym_i32] = ACTIONS(404), + [anon_sym_u64] = ACTIONS(404), + [anon_sym_i64] = ACTIONS(404), + [anon_sym_u128] = ACTIONS(404), + [anon_sym_i128] = ACTIONS(404), + [anon_sym_isize] = ACTIONS(404), + [anon_sym_usize] = ACTIONS(404), + [anon_sym_f32] = ACTIONS(404), + [anon_sym_f64] = ACTIONS(404), + [anon_sym_bool] = ACTIONS(404), + [anon_sym_str] = ACTIONS(404), + [anon_sym_char] = ACTIONS(404), + [anon_sym_DASH] = ACTIONS(993), + [anon_sym_BANG] = ACTIONS(993), + [anon_sym_AMP] = ACTIONS(995), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1230), - [anon_sym_COLON_COLON] = ACTIONS(462), + [anon_sym_DOT_DOT] = ACTIONS(1063), + [anon_sym_COLON_COLON] = ACTIONS(408), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(464), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(468), - [anon_sym_static] = ACTIONS(470), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(472), - [anon_sym_move] = ACTIONS(474), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), + [anon_sym_async] = ACTIONS(410), + [anon_sym_break] = ACTIONS(412), + [anon_sym_const] = ACTIONS(414), + [anon_sym_continue] = ACTIONS(416), + [anon_sym_default] = ACTIONS(418), + [anon_sym_for] = ACTIONS(420), + [anon_sym_if] = ACTIONS(422), + [anon_sym_loop] = ACTIONS(424), + [anon_sym_match] = ACTIONS(426), + [anon_sym_return] = ACTIONS(428), + [anon_sym_static] = ACTIONS(430), + [anon_sym_union] = ACTIONS(418), + [anon_sym_unsafe] = ACTIONS(432), + [anon_sym_while] = ACTIONS(434), + [anon_sym_yield] = ACTIONS(436), + [anon_sym_move] = ACTIONS(438), + [anon_sym_try] = ACTIONS(440), + [sym_integer_literal] = ACTIONS(442), + [aux_sym_string_literal_token1] = ACTIONS(444), + [sym_char_literal] = ACTIONS(442), + [anon_sym_true] = ACTIONS(446), + [anon_sym_false] = ACTIONS(446), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [sym_self] = ACTIONS(448), + [sym_super] = ACTIONS(450), + [sym_crate] = ACTIONS(450), + [sym_metavariable] = ACTIONS(452), + [sym__raw_string_literal_start] = ACTIONS(454), + [sym_float_literal] = ACTIONS(442), }, [371] = { - [sym_attribute_item] = STATE(414), - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_self_parameter] = STATE(2981), - [sym_variadic_parameter] = STATE(2981), - [sym_parameter] = STATE(2981), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2705), - [sym_bracketed_type] = STATE(3527), - [sym_lifetime] = STATE(2985), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3273), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(2487), - [sym_scoped_identifier] = STATE(2113), - [sym_scoped_type_identifier] = STATE(2114), + [sym_line_comment] = STATE(371), + [sym_block_comment] = STATE(371), + [ts_builtin_sym_end] = ACTIONS(1248), + [sym_identifier] = ACTIONS(1250), + [anon_sym_SEMI] = ACTIONS(1248), + [anon_sym_macro_rules_BANG] = ACTIONS(1248), + [anon_sym_LPAREN] = ACTIONS(1248), + [anon_sym_LBRACK] = ACTIONS(1248), + [anon_sym_LBRACE] = ACTIONS(1248), + [anon_sym_RBRACE] = ACTIONS(1248), + [anon_sym_PLUS] = ACTIONS(1250), + [anon_sym_STAR] = ACTIONS(1250), + [anon_sym_QMARK] = ACTIONS(1248), + [anon_sym_u8] = ACTIONS(1250), + [anon_sym_i8] = ACTIONS(1250), + [anon_sym_u16] = ACTIONS(1250), + [anon_sym_i16] = ACTIONS(1250), + [anon_sym_u32] = ACTIONS(1250), + [anon_sym_i32] = ACTIONS(1250), + [anon_sym_u64] = ACTIONS(1250), + [anon_sym_i64] = ACTIONS(1250), + [anon_sym_u128] = ACTIONS(1250), + [anon_sym_i128] = ACTIONS(1250), + [anon_sym_isize] = ACTIONS(1250), + [anon_sym_usize] = ACTIONS(1250), + [anon_sym_f32] = ACTIONS(1250), + [anon_sym_f64] = ACTIONS(1250), + [anon_sym_bool] = ACTIONS(1250), + [anon_sym_str] = ACTIONS(1250), + [anon_sym_char] = ACTIONS(1250), + [anon_sym_DASH] = ACTIONS(1250), + [anon_sym_SLASH] = ACTIONS(1250), + [anon_sym_PERCENT] = ACTIONS(1250), + [anon_sym_CARET] = ACTIONS(1250), + [anon_sym_BANG] = ACTIONS(1250), + [anon_sym_AMP] = ACTIONS(1250), + [anon_sym_PIPE] = ACTIONS(1250), + [anon_sym_AMP_AMP] = ACTIONS(1248), + [anon_sym_PIPE_PIPE] = ACTIONS(1248), + [anon_sym_LT_LT] = ACTIONS(1250), + [anon_sym_GT_GT] = ACTIONS(1250), + [anon_sym_PLUS_EQ] = ACTIONS(1248), + [anon_sym_DASH_EQ] = ACTIONS(1248), + [anon_sym_STAR_EQ] = ACTIONS(1248), + [anon_sym_SLASH_EQ] = ACTIONS(1248), + [anon_sym_PERCENT_EQ] = ACTIONS(1248), + [anon_sym_CARET_EQ] = ACTIONS(1248), + [anon_sym_AMP_EQ] = ACTIONS(1248), + [anon_sym_PIPE_EQ] = ACTIONS(1248), + [anon_sym_LT_LT_EQ] = ACTIONS(1248), + [anon_sym_GT_GT_EQ] = ACTIONS(1248), + [anon_sym_EQ] = ACTIONS(1250), + [anon_sym_EQ_EQ] = ACTIONS(1248), + [anon_sym_BANG_EQ] = ACTIONS(1248), + [anon_sym_GT] = ACTIONS(1250), + [anon_sym_LT] = ACTIONS(1250), + [anon_sym_GT_EQ] = ACTIONS(1248), + [anon_sym_LT_EQ] = ACTIONS(1248), + [anon_sym_DOT] = ACTIONS(1250), + [anon_sym_DOT_DOT] = ACTIONS(1250), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1248), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1248), + [anon_sym_COLON_COLON] = ACTIONS(1248), + [anon_sym_POUND] = ACTIONS(1248), + [anon_sym_SQUOTE] = ACTIONS(1250), + [anon_sym_as] = ACTIONS(1250), + [anon_sym_async] = ACTIONS(1250), + [anon_sym_break] = ACTIONS(1250), + [anon_sym_const] = ACTIONS(1250), + [anon_sym_continue] = ACTIONS(1250), + [anon_sym_default] = ACTIONS(1250), + [anon_sym_enum] = ACTIONS(1250), + [anon_sym_fn] = ACTIONS(1250), + [anon_sym_for] = ACTIONS(1250), + [anon_sym_if] = ACTIONS(1250), + [anon_sym_impl] = ACTIONS(1250), + [anon_sym_let] = ACTIONS(1250), + [anon_sym_loop] = ACTIONS(1250), + [anon_sym_match] = ACTIONS(1250), + [anon_sym_mod] = ACTIONS(1250), + [anon_sym_pub] = ACTIONS(1250), + [anon_sym_return] = ACTIONS(1250), + [anon_sym_static] = ACTIONS(1250), + [anon_sym_struct] = ACTIONS(1250), + [anon_sym_trait] = ACTIONS(1250), + [anon_sym_type] = ACTIONS(1250), + [anon_sym_union] = ACTIONS(1250), + [anon_sym_unsafe] = ACTIONS(1250), + [anon_sym_use] = ACTIONS(1250), + [anon_sym_while] = ACTIONS(1250), + [anon_sym_extern] = ACTIONS(1250), + [anon_sym_yield] = ACTIONS(1250), + [anon_sym_move] = ACTIONS(1250), + [anon_sym_try] = ACTIONS(1250), + [sym_integer_literal] = ACTIONS(1248), + [aux_sym_string_literal_token1] = ACTIONS(1248), + [sym_char_literal] = ACTIONS(1248), + [anon_sym_true] = ACTIONS(1250), + [anon_sym_false] = ACTIONS(1250), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1250), + [sym_super] = ACTIONS(1250), + [sym_crate] = ACTIONS(1250), + [sym_metavariable] = ACTIONS(1248), + [sym__raw_string_literal_start] = ACTIONS(1248), + [sym_float_literal] = ACTIONS(1248), + }, + [372] = { + [sym_line_comment] = STATE(372), + [sym_block_comment] = STATE(372), + [ts_builtin_sym_end] = ACTIONS(1252), + [sym_identifier] = ACTIONS(1254), + [anon_sym_SEMI] = ACTIONS(1252), + [anon_sym_macro_rules_BANG] = ACTIONS(1252), + [anon_sym_LPAREN] = ACTIONS(1252), + [anon_sym_LBRACK] = ACTIONS(1252), + [anon_sym_LBRACE] = ACTIONS(1252), + [anon_sym_RBRACE] = ACTIONS(1252), + [anon_sym_PLUS] = ACTIONS(1254), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_QMARK] = ACTIONS(1252), + [anon_sym_u8] = ACTIONS(1254), + [anon_sym_i8] = ACTIONS(1254), + [anon_sym_u16] = ACTIONS(1254), + [anon_sym_i16] = ACTIONS(1254), + [anon_sym_u32] = ACTIONS(1254), + [anon_sym_i32] = ACTIONS(1254), + [anon_sym_u64] = ACTIONS(1254), + [anon_sym_i64] = ACTIONS(1254), + [anon_sym_u128] = ACTIONS(1254), + [anon_sym_i128] = ACTIONS(1254), + [anon_sym_isize] = ACTIONS(1254), + [anon_sym_usize] = ACTIONS(1254), + [anon_sym_f32] = ACTIONS(1254), + [anon_sym_f64] = ACTIONS(1254), + [anon_sym_bool] = ACTIONS(1254), + [anon_sym_str] = ACTIONS(1254), + [anon_sym_char] = ACTIONS(1254), + [anon_sym_DASH] = ACTIONS(1254), + [anon_sym_SLASH] = ACTIONS(1254), + [anon_sym_PERCENT] = ACTIONS(1254), + [anon_sym_CARET] = ACTIONS(1254), + [anon_sym_BANG] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym_PIPE] = ACTIONS(1254), + [anon_sym_AMP_AMP] = ACTIONS(1252), + [anon_sym_PIPE_PIPE] = ACTIONS(1252), + [anon_sym_LT_LT] = ACTIONS(1254), + [anon_sym_GT_GT] = ACTIONS(1254), + [anon_sym_PLUS_EQ] = ACTIONS(1252), + [anon_sym_DASH_EQ] = ACTIONS(1252), + [anon_sym_STAR_EQ] = ACTIONS(1252), + [anon_sym_SLASH_EQ] = ACTIONS(1252), + [anon_sym_PERCENT_EQ] = ACTIONS(1252), + [anon_sym_CARET_EQ] = ACTIONS(1252), + [anon_sym_AMP_EQ] = ACTIONS(1252), + [anon_sym_PIPE_EQ] = ACTIONS(1252), + [anon_sym_LT_LT_EQ] = ACTIONS(1252), + [anon_sym_GT_GT_EQ] = ACTIONS(1252), + [anon_sym_EQ] = ACTIONS(1254), + [anon_sym_EQ_EQ] = ACTIONS(1252), + [anon_sym_BANG_EQ] = ACTIONS(1252), + [anon_sym_GT] = ACTIONS(1254), + [anon_sym_LT] = ACTIONS(1254), + [anon_sym_GT_EQ] = ACTIONS(1252), + [anon_sym_LT_EQ] = ACTIONS(1252), + [anon_sym_DOT] = ACTIONS(1254), + [anon_sym_DOT_DOT] = ACTIONS(1254), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1252), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1252), + [anon_sym_COLON_COLON] = ACTIONS(1252), + [anon_sym_POUND] = ACTIONS(1252), + [anon_sym_SQUOTE] = ACTIONS(1254), + [anon_sym_as] = ACTIONS(1254), + [anon_sym_async] = ACTIONS(1254), + [anon_sym_break] = ACTIONS(1254), + [anon_sym_const] = ACTIONS(1254), + [anon_sym_continue] = ACTIONS(1254), + [anon_sym_default] = ACTIONS(1254), + [anon_sym_enum] = ACTIONS(1254), + [anon_sym_fn] = ACTIONS(1254), + [anon_sym_for] = ACTIONS(1254), + [anon_sym_if] = ACTIONS(1254), + [anon_sym_impl] = ACTIONS(1254), + [anon_sym_let] = ACTIONS(1254), + [anon_sym_loop] = ACTIONS(1254), + [anon_sym_match] = ACTIONS(1254), + [anon_sym_mod] = ACTIONS(1254), + [anon_sym_pub] = ACTIONS(1254), + [anon_sym_return] = ACTIONS(1254), + [anon_sym_static] = ACTIONS(1254), + [anon_sym_struct] = ACTIONS(1254), + [anon_sym_trait] = ACTIONS(1254), + [anon_sym_type] = ACTIONS(1254), + [anon_sym_union] = ACTIONS(1254), + [anon_sym_unsafe] = ACTIONS(1254), + [anon_sym_use] = ACTIONS(1254), + [anon_sym_while] = ACTIONS(1254), + [anon_sym_extern] = ACTIONS(1254), + [anon_sym_yield] = ACTIONS(1254), + [anon_sym_move] = ACTIONS(1254), + [anon_sym_try] = ACTIONS(1254), + [sym_integer_literal] = ACTIONS(1252), + [aux_sym_string_literal_token1] = ACTIONS(1252), + [sym_char_literal] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1254), + [anon_sym_false] = ACTIONS(1254), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1254), + [sym_super] = ACTIONS(1254), + [sym_crate] = ACTIONS(1254), + [sym_metavariable] = ACTIONS(1252), + [sym__raw_string_literal_start] = ACTIONS(1252), + [sym_float_literal] = ACTIONS(1252), + }, + [373] = { + [sym_line_comment] = STATE(373), + [sym_block_comment] = STATE(373), + [ts_builtin_sym_end] = ACTIONS(1256), + [sym_identifier] = ACTIONS(1258), + [anon_sym_SEMI] = ACTIONS(1256), + [anon_sym_macro_rules_BANG] = ACTIONS(1256), + [anon_sym_LPAREN] = ACTIONS(1256), + [anon_sym_LBRACK] = ACTIONS(1256), + [anon_sym_LBRACE] = ACTIONS(1256), + [anon_sym_RBRACE] = ACTIONS(1256), + [anon_sym_PLUS] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1258), + [anon_sym_QMARK] = ACTIONS(1256), + [anon_sym_u8] = ACTIONS(1258), + [anon_sym_i8] = ACTIONS(1258), + [anon_sym_u16] = ACTIONS(1258), + [anon_sym_i16] = ACTIONS(1258), + [anon_sym_u32] = ACTIONS(1258), + [anon_sym_i32] = ACTIONS(1258), + [anon_sym_u64] = ACTIONS(1258), + [anon_sym_i64] = ACTIONS(1258), + [anon_sym_u128] = ACTIONS(1258), + [anon_sym_i128] = ACTIONS(1258), + [anon_sym_isize] = ACTIONS(1258), + [anon_sym_usize] = ACTIONS(1258), + [anon_sym_f32] = ACTIONS(1258), + [anon_sym_f64] = ACTIONS(1258), + [anon_sym_bool] = ACTIONS(1258), + [anon_sym_str] = ACTIONS(1258), + [anon_sym_char] = ACTIONS(1258), + [anon_sym_DASH] = ACTIONS(1258), + [anon_sym_SLASH] = ACTIONS(1258), + [anon_sym_PERCENT] = ACTIONS(1258), + [anon_sym_CARET] = ACTIONS(1258), + [anon_sym_BANG] = ACTIONS(1258), + [anon_sym_AMP] = ACTIONS(1258), + [anon_sym_PIPE] = ACTIONS(1258), + [anon_sym_AMP_AMP] = ACTIONS(1256), + [anon_sym_PIPE_PIPE] = ACTIONS(1256), + [anon_sym_LT_LT] = ACTIONS(1258), + [anon_sym_GT_GT] = ACTIONS(1258), + [anon_sym_PLUS_EQ] = ACTIONS(1256), + [anon_sym_DASH_EQ] = ACTIONS(1256), + [anon_sym_STAR_EQ] = ACTIONS(1256), + [anon_sym_SLASH_EQ] = ACTIONS(1256), + [anon_sym_PERCENT_EQ] = ACTIONS(1256), + [anon_sym_CARET_EQ] = ACTIONS(1256), + [anon_sym_AMP_EQ] = ACTIONS(1256), + [anon_sym_PIPE_EQ] = ACTIONS(1256), + [anon_sym_LT_LT_EQ] = ACTIONS(1256), + [anon_sym_GT_GT_EQ] = ACTIONS(1256), + [anon_sym_EQ] = ACTIONS(1258), + [anon_sym_EQ_EQ] = ACTIONS(1256), + [anon_sym_BANG_EQ] = ACTIONS(1256), + [anon_sym_GT] = ACTIONS(1258), + [anon_sym_LT] = ACTIONS(1258), + [anon_sym_GT_EQ] = ACTIONS(1256), + [anon_sym_LT_EQ] = ACTIONS(1256), + [anon_sym_DOT] = ACTIONS(1258), + [anon_sym_DOT_DOT] = ACTIONS(1258), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1256), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1256), + [anon_sym_COLON_COLON] = ACTIONS(1256), + [anon_sym_POUND] = ACTIONS(1256), + [anon_sym_SQUOTE] = ACTIONS(1258), + [anon_sym_as] = ACTIONS(1258), + [anon_sym_async] = ACTIONS(1258), + [anon_sym_break] = ACTIONS(1258), + [anon_sym_const] = ACTIONS(1258), + [anon_sym_continue] = ACTIONS(1258), + [anon_sym_default] = ACTIONS(1258), + [anon_sym_enum] = ACTIONS(1258), + [anon_sym_fn] = ACTIONS(1258), + [anon_sym_for] = ACTIONS(1258), + [anon_sym_if] = ACTIONS(1258), + [anon_sym_impl] = ACTIONS(1258), + [anon_sym_let] = ACTIONS(1258), + [anon_sym_loop] = ACTIONS(1258), + [anon_sym_match] = ACTIONS(1258), + [anon_sym_mod] = ACTIONS(1258), + [anon_sym_pub] = ACTIONS(1258), + [anon_sym_return] = ACTIONS(1258), + [anon_sym_static] = ACTIONS(1258), + [anon_sym_struct] = ACTIONS(1258), + [anon_sym_trait] = ACTIONS(1258), + [anon_sym_type] = ACTIONS(1258), + [anon_sym_union] = ACTIONS(1258), + [anon_sym_unsafe] = ACTIONS(1258), + [anon_sym_use] = ACTIONS(1258), + [anon_sym_while] = ACTIONS(1258), + [anon_sym_extern] = ACTIONS(1258), + [anon_sym_yield] = ACTIONS(1258), + [anon_sym_move] = ACTIONS(1258), + [anon_sym_try] = ACTIONS(1258), + [sym_integer_literal] = ACTIONS(1256), + [aux_sym_string_literal_token1] = ACTIONS(1256), + [sym_char_literal] = ACTIONS(1256), + [anon_sym_true] = ACTIONS(1258), + [anon_sym_false] = ACTIONS(1258), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1258), + [sym_super] = ACTIONS(1258), + [sym_crate] = ACTIONS(1258), + [sym_metavariable] = ACTIONS(1256), + [sym__raw_string_literal_start] = ACTIONS(1256), + [sym_float_literal] = ACTIONS(1256), + }, + [374] = { + [sym_attribute_item] = STATE(416), + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_self_parameter] = STATE(2927), + [sym_variadic_parameter] = STATE(2927), + [sym_parameter] = STATE(2927), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2556), + [sym_bracketed_type] = STATE(3528), + [sym_lifetime] = STATE(2931), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3289), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(2436), + [sym_scoped_identifier] = STATE(2212), + [sym_scoped_type_identifier] = STATE(2104), [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2464), + [sym__pattern] = STATE(3137), [sym_tuple_pattern] = STATE(2079), [sym_slice_pattern] = STATE(2079), [sym_tuple_struct_pattern] = STATE(2079), @@ -58161,213 +58496,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_captured_pattern] = STATE(2079), [sym_reference_pattern] = STATE(2079), [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), - [sym_line_comment] = STATE(371), - [sym_block_comment] = STATE(371), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1248), - [anon_sym_LPAREN] = ACTIONS(1250), - [anon_sym_RPAREN] = ACTIONS(1252), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1260), - [anon_sym_i8] = ACTIONS(1260), - [anon_sym_u16] = ACTIONS(1260), - [anon_sym_i16] = ACTIONS(1260), - [anon_sym_u32] = ACTIONS(1260), - [anon_sym_i32] = ACTIONS(1260), - [anon_sym_u64] = ACTIONS(1260), - [anon_sym_i64] = ACTIONS(1260), - [anon_sym_u128] = ACTIONS(1260), - [anon_sym_i128] = ACTIONS(1260), - [anon_sym_isize] = ACTIONS(1260), - [anon_sym_usize] = ACTIONS(1260), - [anon_sym_f32] = ACTIONS(1260), - [anon_sym_f64] = ACTIONS(1260), - [anon_sym_bool] = ACTIONS(1260), - [anon_sym_str] = ACTIONS(1260), - [anon_sym_char] = ACTIONS(1260), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1266), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1270), - [anon_sym_DOT_DOT] = ACTIONS(1272), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1274), - [anon_sym_COMMA] = ACTIONS(1276), - [anon_sym_COLON_COLON] = ACTIONS(1278), - [anon_sym_POUND] = ACTIONS(1280), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1288), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1296), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_ref] = ACTIONS(1300), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(1304), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1312), - [sym_super] = ACTIONS(1314), - [sym_crate] = ACTIONS(1314), - [sym_metavariable] = ACTIONS(1316), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), - }, - [372] = { - [sym_line_comment] = STATE(372), - [sym_block_comment] = STATE(372), - [ts_builtin_sym_end] = ACTIONS(1320), - [sym_identifier] = ACTIONS(1322), - [anon_sym_SEMI] = ACTIONS(1320), - [anon_sym_macro_rules_BANG] = ACTIONS(1320), - [anon_sym_LPAREN] = ACTIONS(1320), - [anon_sym_LBRACK] = ACTIONS(1320), - [anon_sym_LBRACE] = ACTIONS(1320), - [anon_sym_RBRACE] = ACTIONS(1320), - [anon_sym_PLUS] = ACTIONS(1322), - [anon_sym_STAR] = ACTIONS(1322), - [anon_sym_QMARK] = ACTIONS(1320), - [anon_sym_u8] = ACTIONS(1322), - [anon_sym_i8] = ACTIONS(1322), - [anon_sym_u16] = ACTIONS(1322), - [anon_sym_i16] = ACTIONS(1322), - [anon_sym_u32] = ACTIONS(1322), - [anon_sym_i32] = ACTIONS(1322), - [anon_sym_u64] = ACTIONS(1322), - [anon_sym_i64] = ACTIONS(1322), - [anon_sym_u128] = ACTIONS(1322), - [anon_sym_i128] = ACTIONS(1322), - [anon_sym_isize] = ACTIONS(1322), - [anon_sym_usize] = ACTIONS(1322), - [anon_sym_f32] = ACTIONS(1322), - [anon_sym_f64] = ACTIONS(1322), - [anon_sym_bool] = ACTIONS(1322), - [anon_sym_str] = ACTIONS(1322), - [anon_sym_char] = ACTIONS(1322), - [anon_sym_DASH] = ACTIONS(1322), - [anon_sym_SLASH] = ACTIONS(1322), - [anon_sym_PERCENT] = ACTIONS(1322), - [anon_sym_CARET] = ACTIONS(1322), - [anon_sym_BANG] = ACTIONS(1322), - [anon_sym_AMP] = ACTIONS(1322), - [anon_sym_PIPE] = ACTIONS(1322), - [anon_sym_AMP_AMP] = ACTIONS(1320), - [anon_sym_PIPE_PIPE] = ACTIONS(1320), - [anon_sym_LT_LT] = ACTIONS(1322), - [anon_sym_GT_GT] = ACTIONS(1322), - [anon_sym_PLUS_EQ] = ACTIONS(1320), - [anon_sym_DASH_EQ] = ACTIONS(1320), - [anon_sym_STAR_EQ] = ACTIONS(1320), - [anon_sym_SLASH_EQ] = ACTIONS(1320), - [anon_sym_PERCENT_EQ] = ACTIONS(1320), - [anon_sym_CARET_EQ] = ACTIONS(1320), - [anon_sym_AMP_EQ] = ACTIONS(1320), - [anon_sym_PIPE_EQ] = ACTIONS(1320), - [anon_sym_LT_LT_EQ] = ACTIONS(1320), - [anon_sym_GT_GT_EQ] = ACTIONS(1320), - [anon_sym_EQ] = ACTIONS(1322), - [anon_sym_EQ_EQ] = ACTIONS(1320), - [anon_sym_BANG_EQ] = ACTIONS(1320), - [anon_sym_GT] = ACTIONS(1322), - [anon_sym_LT] = ACTIONS(1322), - [anon_sym_GT_EQ] = ACTIONS(1320), - [anon_sym_LT_EQ] = ACTIONS(1320), - [anon_sym_DOT] = ACTIONS(1322), - [anon_sym_DOT_DOT] = ACTIONS(1322), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1320), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1320), - [anon_sym_COLON_COLON] = ACTIONS(1320), - [anon_sym_POUND] = ACTIONS(1320), - [anon_sym_SQUOTE] = ACTIONS(1322), - [anon_sym_as] = ACTIONS(1322), - [anon_sym_async] = ACTIONS(1322), - [anon_sym_break] = ACTIONS(1322), - [anon_sym_const] = ACTIONS(1322), - [anon_sym_continue] = ACTIONS(1322), - [anon_sym_default] = ACTIONS(1322), - [anon_sym_enum] = ACTIONS(1322), - [anon_sym_fn] = ACTIONS(1322), - [anon_sym_for] = ACTIONS(1322), - [anon_sym_if] = ACTIONS(1322), - [anon_sym_impl] = ACTIONS(1322), - [anon_sym_let] = ACTIONS(1322), - [anon_sym_loop] = ACTIONS(1322), - [anon_sym_match] = ACTIONS(1322), - [anon_sym_mod] = ACTIONS(1322), - [anon_sym_pub] = ACTIONS(1322), - [anon_sym_return] = ACTIONS(1322), - [anon_sym_static] = ACTIONS(1322), - [anon_sym_struct] = ACTIONS(1322), - [anon_sym_trait] = ACTIONS(1322), - [anon_sym_type] = ACTIONS(1322), - [anon_sym_union] = ACTIONS(1322), - [anon_sym_unsafe] = ACTIONS(1322), - [anon_sym_use] = ACTIONS(1322), - [anon_sym_while] = ACTIONS(1322), - [anon_sym_extern] = ACTIONS(1322), - [anon_sym_yield] = ACTIONS(1322), - [anon_sym_move] = ACTIONS(1322), - [anon_sym_try] = ACTIONS(1322), - [sym_integer_literal] = ACTIONS(1320), + [sym__literal_pattern] = STATE(2006), + [sym_negative_literal] = STATE(2009), + [sym_string_literal] = STATE(2009), + [sym_raw_string_literal] = STATE(2009), + [sym_boolean_literal] = STATE(2009), + [sym_line_comment] = STATE(374), + [sym_block_comment] = STATE(374), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(1260), + [anon_sym_LPAREN] = ACTIONS(1262), + [anon_sym_RPAREN] = ACTIONS(1264), + [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), + [anon_sym_u8] = ACTIONS(1272), + [anon_sym_i8] = ACTIONS(1272), + [anon_sym_u16] = ACTIONS(1272), + [anon_sym_i16] = ACTIONS(1272), + [anon_sym_u32] = ACTIONS(1272), + [anon_sym_i32] = ACTIONS(1272), + [anon_sym_u64] = ACTIONS(1272), + [anon_sym_i64] = ACTIONS(1272), + [anon_sym_u128] = ACTIONS(1272), + [anon_sym_i128] = ACTIONS(1272), + [anon_sym_isize] = ACTIONS(1272), + [anon_sym_usize] = ACTIONS(1272), + [anon_sym_f32] = ACTIONS(1272), + [anon_sym_f64] = ACTIONS(1272), + [anon_sym_bool] = ACTIONS(1272), + [anon_sym_str] = ACTIONS(1272), + [anon_sym_char] = ACTIONS(1272), + [anon_sym_DASH] = ACTIONS(1274), + [anon_sym_BANG] = ACTIONS(1276), + [anon_sym_AMP] = ACTIONS(1278), + [anon_sym_PIPE] = ACTIONS(1280), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1282), + [anon_sym_DOT_DOT] = ACTIONS(1284), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1286), + [anon_sym_COMMA] = ACTIONS(1288), + [anon_sym_COLON_COLON] = ACTIONS(1290), + [anon_sym_POUND] = ACTIONS(1292), + [anon_sym_SQUOTE] = ACTIONS(1294), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1300), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1308), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_ref] = ACTIONS(1312), + [anon_sym_dyn] = ACTIONS(1314), + [sym_mutable_specifier] = ACTIONS(1316), + [sym_integer_literal] = ACTIONS(1318), [aux_sym_string_literal_token1] = ACTIONS(1320), - [sym_char_literal] = ACTIONS(1320), + [sym_char_literal] = ACTIONS(1318), [anon_sym_true] = ACTIONS(1322), [anon_sym_false] = ACTIONS(1322), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1322), - [sym_super] = ACTIONS(1322), - [sym_crate] = ACTIONS(1322), - [sym_metavariable] = ACTIONS(1320), - [sym__raw_string_literal_start] = ACTIONS(1320), - [sym_float_literal] = ACTIONS(1320), + [sym_self] = ACTIONS(1324), + [sym_super] = ACTIONS(1326), + [sym_crate] = ACTIONS(1326), + [sym_metavariable] = ACTIONS(1328), + [sym__raw_string_literal_start] = ACTIONS(1330), + [sym_float_literal] = ACTIONS(1318), }, - [373] = { - [sym_attribute_item] = STATE(417), - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_self_parameter] = STATE(2798), - [sym_variadic_parameter] = STATE(2798), - [sym_parameter] = STATE(2798), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2610), - [sym_bracketed_type] = STATE(3520), - [sym_lifetime] = STATE(2985), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3198), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(2480), - [sym_scoped_identifier] = STATE(2216), - [sym_scoped_type_identifier] = STATE(2114), + [375] = { + [sym_attribute_item] = STATE(416), + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_self_parameter] = STATE(2927), + [sym_variadic_parameter] = STATE(2927), + [sym_parameter] = STATE(2927), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2556), + [sym_bracketed_type] = STATE(3535), + [sym_lifetime] = STATE(2931), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3115), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(2428), + [sym_scoped_identifier] = STATE(2082), + [sym_scoped_type_identifier] = STATE(2104), [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(3268), + [sym__pattern] = STATE(2389), [sym_tuple_pattern] = STATE(2079), [sym_slice_pattern] = STATE(2079), [sym_tuple_struct_pattern] = STATE(2079), @@ -58379,623 +58605,187 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_captured_pattern] = STATE(2079), [sym_reference_pattern] = STATE(2079), [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), - [sym_line_comment] = STATE(373), - [sym_block_comment] = STATE(373), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1326), - [anon_sym_RPAREN] = ACTIONS(1328), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1330), - [anon_sym_i8] = ACTIONS(1330), - [anon_sym_u16] = ACTIONS(1330), - [anon_sym_i16] = ACTIONS(1330), - [anon_sym_u32] = ACTIONS(1330), - [anon_sym_i32] = ACTIONS(1330), - [anon_sym_u64] = ACTIONS(1330), - [anon_sym_i64] = ACTIONS(1330), - [anon_sym_u128] = ACTIONS(1330), - [anon_sym_i128] = ACTIONS(1330), - [anon_sym_isize] = ACTIONS(1330), - [anon_sym_usize] = ACTIONS(1330), - [anon_sym_f32] = ACTIONS(1330), - [anon_sym_f64] = ACTIONS(1330), - [anon_sym_bool] = ACTIONS(1330), - [anon_sym_str] = ACTIONS(1330), - [anon_sym_char] = ACTIONS(1330), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1332), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1334), - [anon_sym_DOT_DOT] = ACTIONS(1272), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1274), - [anon_sym_COMMA] = ACTIONS(1336), - [anon_sym_COLON_COLON] = ACTIONS(1338), - [anon_sym_POUND] = ACTIONS(1280), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1340), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1342), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_ref] = ACTIONS(1300), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(1304), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1344), - [sym_super] = ACTIONS(1346), - [sym_crate] = ACTIONS(1346), - [sym_metavariable] = ACTIONS(1348), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), - }, - [374] = { - [sym_line_comment] = STATE(374), - [sym_block_comment] = STATE(374), - [ts_builtin_sym_end] = ACTIONS(991), - [sym_identifier] = ACTIONS(989), - [anon_sym_SEMI] = ACTIONS(991), - [anon_sym_macro_rules_BANG] = ACTIONS(991), - [anon_sym_LPAREN] = ACTIONS(991), - [anon_sym_LBRACK] = ACTIONS(991), - [anon_sym_LBRACE] = ACTIONS(991), - [anon_sym_RBRACE] = ACTIONS(991), - [anon_sym_PLUS] = ACTIONS(989), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_QMARK] = ACTIONS(991), - [anon_sym_u8] = ACTIONS(989), - [anon_sym_i8] = ACTIONS(989), - [anon_sym_u16] = ACTIONS(989), - [anon_sym_i16] = ACTIONS(989), - [anon_sym_u32] = ACTIONS(989), - [anon_sym_i32] = ACTIONS(989), - [anon_sym_u64] = ACTIONS(989), - [anon_sym_i64] = ACTIONS(989), - [anon_sym_u128] = ACTIONS(989), - [anon_sym_i128] = ACTIONS(989), - [anon_sym_isize] = ACTIONS(989), - [anon_sym_usize] = ACTIONS(989), - [anon_sym_f32] = ACTIONS(989), - [anon_sym_f64] = ACTIONS(989), - [anon_sym_bool] = ACTIONS(989), - [anon_sym_str] = ACTIONS(989), - [anon_sym_char] = ACTIONS(989), - [anon_sym_DASH] = ACTIONS(989), - [anon_sym_SLASH] = ACTIONS(989), - [anon_sym_PERCENT] = ACTIONS(989), - [anon_sym_CARET] = ACTIONS(989), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(989), - [anon_sym_PIPE] = ACTIONS(989), - [anon_sym_AMP_AMP] = ACTIONS(991), - [anon_sym_PIPE_PIPE] = ACTIONS(991), - [anon_sym_LT_LT] = ACTIONS(989), - [anon_sym_GT_GT] = ACTIONS(989), - [anon_sym_PLUS_EQ] = ACTIONS(991), - [anon_sym_DASH_EQ] = ACTIONS(991), - [anon_sym_STAR_EQ] = ACTIONS(991), - [anon_sym_SLASH_EQ] = ACTIONS(991), - [anon_sym_PERCENT_EQ] = ACTIONS(991), - [anon_sym_CARET_EQ] = ACTIONS(991), - [anon_sym_AMP_EQ] = ACTIONS(991), - [anon_sym_PIPE_EQ] = ACTIONS(991), - [anon_sym_LT_LT_EQ] = ACTIONS(991), - [anon_sym_GT_GT_EQ] = ACTIONS(991), - [anon_sym_EQ] = ACTIONS(989), - [anon_sym_EQ_EQ] = ACTIONS(991), - [anon_sym_BANG_EQ] = ACTIONS(991), - [anon_sym_GT] = ACTIONS(989), - [anon_sym_LT] = ACTIONS(989), - [anon_sym_GT_EQ] = ACTIONS(991), - [anon_sym_LT_EQ] = ACTIONS(991), - [anon_sym_DOT] = ACTIONS(989), - [anon_sym_DOT_DOT] = ACTIONS(989), - [anon_sym_DOT_DOT_DOT] = ACTIONS(991), - [anon_sym_DOT_DOT_EQ] = ACTIONS(991), - [anon_sym_COLON_COLON] = ACTIONS(991), - [anon_sym_POUND] = ACTIONS(991), - [anon_sym_SQUOTE] = ACTIONS(989), - [anon_sym_as] = ACTIONS(989), - [anon_sym_async] = ACTIONS(989), - [anon_sym_break] = ACTIONS(989), - [anon_sym_const] = ACTIONS(989), - [anon_sym_continue] = ACTIONS(989), - [anon_sym_default] = ACTIONS(989), - [anon_sym_enum] = ACTIONS(989), - [anon_sym_fn] = ACTIONS(989), - [anon_sym_for] = ACTIONS(989), - [anon_sym_if] = ACTIONS(989), - [anon_sym_impl] = ACTIONS(989), - [anon_sym_let] = ACTIONS(989), - [anon_sym_loop] = ACTIONS(989), - [anon_sym_match] = ACTIONS(989), - [anon_sym_mod] = ACTIONS(989), - [anon_sym_pub] = ACTIONS(989), - [anon_sym_return] = ACTIONS(989), - [anon_sym_static] = ACTIONS(989), - [anon_sym_struct] = ACTIONS(989), - [anon_sym_trait] = ACTIONS(989), - [anon_sym_type] = ACTIONS(989), - [anon_sym_union] = ACTIONS(989), - [anon_sym_unsafe] = ACTIONS(989), - [anon_sym_use] = ACTIONS(989), - [anon_sym_while] = ACTIONS(989), - [anon_sym_extern] = ACTIONS(989), - [anon_sym_yield] = ACTIONS(989), - [anon_sym_move] = ACTIONS(989), - [anon_sym_try] = ACTIONS(989), - [sym_integer_literal] = ACTIONS(991), - [aux_sym_string_literal_token1] = ACTIONS(991), - [sym_char_literal] = ACTIONS(991), - [anon_sym_true] = ACTIONS(989), - [anon_sym_false] = ACTIONS(989), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(989), - [sym_super] = ACTIONS(989), - [sym_crate] = ACTIONS(989), - [sym_metavariable] = ACTIONS(991), - [sym__raw_string_literal_start] = ACTIONS(991), - [sym_float_literal] = ACTIONS(991), - }, - [375] = { + [sym__literal_pattern] = STATE(2006), + [sym_negative_literal] = STATE(2009), + [sym_string_literal] = STATE(2009), + [sym_raw_string_literal] = STATE(2009), + [sym_boolean_literal] = STATE(2009), [sym_line_comment] = STATE(375), [sym_block_comment] = STATE(375), - [ts_builtin_sym_end] = ACTIONS(987), - [sym_identifier] = ACTIONS(985), - [anon_sym_SEMI] = ACTIONS(987), - [anon_sym_macro_rules_BANG] = ACTIONS(987), - [anon_sym_LPAREN] = ACTIONS(987), - [anon_sym_LBRACK] = ACTIONS(987), - [anon_sym_LBRACE] = ACTIONS(987), - [anon_sym_RBRACE] = ACTIONS(987), - [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_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_COLON_COLON] = ACTIONS(987), - [anon_sym_POUND] = ACTIONS(987), - [anon_sym_SQUOTE] = ACTIONS(985), - [anon_sym_as] = ACTIONS(985), - [anon_sym_async] = 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_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_while] = ACTIONS(985), - [anon_sym_extern] = ACTIONS(985), - [anon_sym_yield] = ACTIONS(985), - [anon_sym_move] = ACTIONS(985), - [anon_sym_try] = 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(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(1332), + [anon_sym_LPAREN] = ACTIONS(1334), + [anon_sym_RPAREN] = ACTIONS(1336), + [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), + [anon_sym_u8] = ACTIONS(1338), + [anon_sym_i8] = ACTIONS(1338), + [anon_sym_u16] = ACTIONS(1338), + [anon_sym_i16] = ACTIONS(1338), + [anon_sym_u32] = ACTIONS(1338), + [anon_sym_i32] = ACTIONS(1338), + [anon_sym_u64] = ACTIONS(1338), + [anon_sym_i64] = ACTIONS(1338), + [anon_sym_u128] = ACTIONS(1338), + [anon_sym_i128] = ACTIONS(1338), + [anon_sym_isize] = ACTIONS(1338), + [anon_sym_usize] = ACTIONS(1338), + [anon_sym_f32] = ACTIONS(1338), + [anon_sym_f64] = ACTIONS(1338), + [anon_sym_bool] = ACTIONS(1338), + [anon_sym_str] = ACTIONS(1338), + [anon_sym_char] = ACTIONS(1338), + [anon_sym_DASH] = ACTIONS(1274), + [anon_sym_BANG] = ACTIONS(1276), + [anon_sym_AMP] = ACTIONS(1340), + [anon_sym_PIPE] = ACTIONS(1280), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1342), + [anon_sym_DOT_DOT] = ACTIONS(1284), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1286), + [anon_sym_COMMA] = ACTIONS(1344), + [anon_sym_COLON_COLON] = ACTIONS(1346), + [anon_sym_POUND] = ACTIONS(1292), + [anon_sym_SQUOTE] = ACTIONS(1294), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1348), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1350), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_ref] = ACTIONS(1312), + [anon_sym_dyn] = ACTIONS(1314), + [sym_mutable_specifier] = ACTIONS(1316), + [sym_integer_literal] = ACTIONS(1318), + [aux_sym_string_literal_token1] = ACTIONS(1320), + [sym_char_literal] = ACTIONS(1318), + [anon_sym_true] = ACTIONS(1322), + [anon_sym_false] = ACTIONS(1322), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1352), + [sym_super] = ACTIONS(1354), + [sym_crate] = ACTIONS(1354), + [sym_metavariable] = ACTIONS(1356), + [sym__raw_string_literal_start] = ACTIONS(1330), + [sym_float_literal] = ACTIONS(1318), }, [376] = { [sym_line_comment] = STATE(376), [sym_block_comment] = STATE(376), - [ts_builtin_sym_end] = ACTIONS(1350), - [sym_identifier] = ACTIONS(1352), - [anon_sym_SEMI] = ACTIONS(1350), - [anon_sym_macro_rules_BANG] = ACTIONS(1350), - [anon_sym_LPAREN] = ACTIONS(1350), - [anon_sym_LBRACK] = ACTIONS(1350), - [anon_sym_LBRACE] = ACTIONS(1350), - [anon_sym_RBRACE] = ACTIONS(1350), - [anon_sym_PLUS] = ACTIONS(1352), - [anon_sym_STAR] = ACTIONS(1352), - [anon_sym_QMARK] = ACTIONS(1350), - [anon_sym_u8] = ACTIONS(1352), - [anon_sym_i8] = ACTIONS(1352), - [anon_sym_u16] = ACTIONS(1352), - [anon_sym_i16] = ACTIONS(1352), - [anon_sym_u32] = ACTIONS(1352), - [anon_sym_i32] = ACTIONS(1352), - [anon_sym_u64] = ACTIONS(1352), - [anon_sym_i64] = ACTIONS(1352), - [anon_sym_u128] = ACTIONS(1352), - [anon_sym_i128] = ACTIONS(1352), - [anon_sym_isize] = ACTIONS(1352), - [anon_sym_usize] = ACTIONS(1352), - [anon_sym_f32] = ACTIONS(1352), - [anon_sym_f64] = ACTIONS(1352), - [anon_sym_bool] = ACTIONS(1352), - [anon_sym_str] = ACTIONS(1352), - [anon_sym_char] = ACTIONS(1352), - [anon_sym_DASH] = ACTIONS(1352), - [anon_sym_SLASH] = ACTIONS(1352), - [anon_sym_PERCENT] = ACTIONS(1352), - [anon_sym_CARET] = ACTIONS(1352), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_AMP] = ACTIONS(1352), - [anon_sym_PIPE] = ACTIONS(1352), - [anon_sym_AMP_AMP] = ACTIONS(1350), - [anon_sym_PIPE_PIPE] = ACTIONS(1350), - [anon_sym_LT_LT] = ACTIONS(1352), - [anon_sym_GT_GT] = ACTIONS(1352), - [anon_sym_PLUS_EQ] = ACTIONS(1350), - [anon_sym_DASH_EQ] = ACTIONS(1350), - [anon_sym_STAR_EQ] = ACTIONS(1350), - [anon_sym_SLASH_EQ] = ACTIONS(1350), - [anon_sym_PERCENT_EQ] = ACTIONS(1350), - [anon_sym_CARET_EQ] = ACTIONS(1350), - [anon_sym_AMP_EQ] = ACTIONS(1350), - [anon_sym_PIPE_EQ] = ACTIONS(1350), - [anon_sym_LT_LT_EQ] = ACTIONS(1350), - [anon_sym_GT_GT_EQ] = ACTIONS(1350), - [anon_sym_EQ] = ACTIONS(1352), - [anon_sym_EQ_EQ] = ACTIONS(1350), - [anon_sym_BANG_EQ] = ACTIONS(1350), - [anon_sym_GT] = ACTIONS(1352), - [anon_sym_LT] = ACTIONS(1352), - [anon_sym_GT_EQ] = ACTIONS(1350), - [anon_sym_LT_EQ] = ACTIONS(1350), - [anon_sym_DOT] = ACTIONS(1352), - [anon_sym_DOT_DOT] = ACTIONS(1352), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1350), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1350), - [anon_sym_COLON_COLON] = ACTIONS(1350), - [anon_sym_POUND] = ACTIONS(1350), - [anon_sym_SQUOTE] = ACTIONS(1352), - [anon_sym_as] = ACTIONS(1352), - [anon_sym_async] = ACTIONS(1352), - [anon_sym_break] = ACTIONS(1352), - [anon_sym_const] = ACTIONS(1352), - [anon_sym_continue] = ACTIONS(1352), - [anon_sym_default] = ACTIONS(1352), - [anon_sym_enum] = ACTIONS(1352), - [anon_sym_fn] = ACTIONS(1352), - [anon_sym_for] = ACTIONS(1352), - [anon_sym_if] = ACTIONS(1352), - [anon_sym_impl] = ACTIONS(1352), - [anon_sym_let] = ACTIONS(1352), - [anon_sym_loop] = ACTIONS(1352), - [anon_sym_match] = ACTIONS(1352), - [anon_sym_mod] = ACTIONS(1352), - [anon_sym_pub] = ACTIONS(1352), - [anon_sym_return] = ACTIONS(1352), - [anon_sym_static] = ACTIONS(1352), - [anon_sym_struct] = ACTIONS(1352), - [anon_sym_trait] = ACTIONS(1352), - [anon_sym_type] = ACTIONS(1352), - [anon_sym_union] = ACTIONS(1352), - [anon_sym_unsafe] = ACTIONS(1352), - [anon_sym_use] = ACTIONS(1352), - [anon_sym_while] = ACTIONS(1352), - [anon_sym_extern] = ACTIONS(1352), - [anon_sym_yield] = ACTIONS(1352), - [anon_sym_move] = ACTIONS(1352), - [anon_sym_try] = ACTIONS(1352), - [sym_integer_literal] = ACTIONS(1350), - [aux_sym_string_literal_token1] = ACTIONS(1350), - [sym_char_literal] = ACTIONS(1350), - [anon_sym_true] = ACTIONS(1352), - [anon_sym_false] = ACTIONS(1352), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1352), - [sym_super] = ACTIONS(1352), - [sym_crate] = ACTIONS(1352), - [sym_metavariable] = ACTIONS(1350), - [sym__raw_string_literal_start] = ACTIONS(1350), - [sym_float_literal] = ACTIONS(1350), + [ts_builtin_sym_end] = ACTIONS(1358), + [sym_identifier] = ACTIONS(1360), + [anon_sym_SEMI] = ACTIONS(1358), + [anon_sym_macro_rules_BANG] = ACTIONS(1358), + [anon_sym_LPAREN] = ACTIONS(1358), + [anon_sym_LBRACK] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1358), + [anon_sym_RBRACE] = ACTIONS(1358), + [anon_sym_PLUS] = ACTIONS(1360), + [anon_sym_STAR] = ACTIONS(1360), + [anon_sym_QMARK] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1360), + [anon_sym_i8] = ACTIONS(1360), + [anon_sym_u16] = ACTIONS(1360), + [anon_sym_i16] = ACTIONS(1360), + [anon_sym_u32] = ACTIONS(1360), + [anon_sym_i32] = ACTIONS(1360), + [anon_sym_u64] = ACTIONS(1360), + [anon_sym_i64] = ACTIONS(1360), + [anon_sym_u128] = ACTIONS(1360), + [anon_sym_i128] = ACTIONS(1360), + [anon_sym_isize] = ACTIONS(1360), + [anon_sym_usize] = ACTIONS(1360), + [anon_sym_f32] = ACTIONS(1360), + [anon_sym_f64] = ACTIONS(1360), + [anon_sym_bool] = ACTIONS(1360), + [anon_sym_str] = ACTIONS(1360), + [anon_sym_char] = ACTIONS(1360), + [anon_sym_DASH] = ACTIONS(1360), + [anon_sym_SLASH] = ACTIONS(1360), + [anon_sym_PERCENT] = ACTIONS(1360), + [anon_sym_CARET] = ACTIONS(1360), + [anon_sym_BANG] = ACTIONS(1360), + [anon_sym_AMP] = ACTIONS(1360), + [anon_sym_PIPE] = ACTIONS(1360), + [anon_sym_AMP_AMP] = ACTIONS(1358), + [anon_sym_PIPE_PIPE] = ACTIONS(1358), + [anon_sym_LT_LT] = ACTIONS(1360), + [anon_sym_GT_GT] = ACTIONS(1360), + [anon_sym_PLUS_EQ] = ACTIONS(1358), + [anon_sym_DASH_EQ] = ACTIONS(1358), + [anon_sym_STAR_EQ] = ACTIONS(1358), + [anon_sym_SLASH_EQ] = ACTIONS(1358), + [anon_sym_PERCENT_EQ] = ACTIONS(1358), + [anon_sym_CARET_EQ] = ACTIONS(1358), + [anon_sym_AMP_EQ] = ACTIONS(1358), + [anon_sym_PIPE_EQ] = ACTIONS(1358), + [anon_sym_LT_LT_EQ] = ACTIONS(1358), + [anon_sym_GT_GT_EQ] = ACTIONS(1358), + [anon_sym_EQ] = ACTIONS(1360), + [anon_sym_EQ_EQ] = ACTIONS(1358), + [anon_sym_BANG_EQ] = ACTIONS(1358), + [anon_sym_GT] = ACTIONS(1360), + [anon_sym_LT] = ACTIONS(1360), + [anon_sym_GT_EQ] = ACTIONS(1358), + [anon_sym_LT_EQ] = ACTIONS(1358), + [anon_sym_DOT] = ACTIONS(1360), + [anon_sym_DOT_DOT] = ACTIONS(1360), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1358), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1358), + [anon_sym_COLON_COLON] = ACTIONS(1358), + [anon_sym_POUND] = ACTIONS(1358), + [anon_sym_SQUOTE] = ACTIONS(1360), + [anon_sym_as] = ACTIONS(1360), + [anon_sym_async] = ACTIONS(1360), + [anon_sym_break] = ACTIONS(1360), + [anon_sym_const] = ACTIONS(1360), + [anon_sym_continue] = ACTIONS(1360), + [anon_sym_default] = ACTIONS(1360), + [anon_sym_enum] = ACTIONS(1360), + [anon_sym_fn] = ACTIONS(1360), + [anon_sym_for] = ACTIONS(1360), + [anon_sym_if] = ACTIONS(1360), + [anon_sym_impl] = ACTIONS(1360), + [anon_sym_let] = ACTIONS(1360), + [anon_sym_loop] = ACTIONS(1360), + [anon_sym_match] = ACTIONS(1360), + [anon_sym_mod] = ACTIONS(1360), + [anon_sym_pub] = ACTIONS(1360), + [anon_sym_return] = ACTIONS(1360), + [anon_sym_static] = ACTIONS(1360), + [anon_sym_struct] = ACTIONS(1360), + [anon_sym_trait] = ACTIONS(1360), + [anon_sym_type] = ACTIONS(1360), + [anon_sym_union] = ACTIONS(1360), + [anon_sym_unsafe] = ACTIONS(1360), + [anon_sym_use] = ACTIONS(1360), + [anon_sym_while] = ACTIONS(1360), + [anon_sym_extern] = ACTIONS(1360), + [anon_sym_yield] = ACTIONS(1360), + [anon_sym_move] = ACTIONS(1360), + [anon_sym_try] = ACTIONS(1360), + [sym_integer_literal] = ACTIONS(1358), + [aux_sym_string_literal_token1] = ACTIONS(1358), + [sym_char_literal] = ACTIONS(1358), + [anon_sym_true] = ACTIONS(1360), + [anon_sym_false] = ACTIONS(1360), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1360), + [sym_super] = ACTIONS(1360), + [sym_crate] = ACTIONS(1360), + [sym_metavariable] = ACTIONS(1358), + [sym__raw_string_literal_start] = ACTIONS(1358), + [sym_float_literal] = ACTIONS(1358), }, [377] = { [sym_line_comment] = STATE(377), [sym_block_comment] = STATE(377), - [ts_builtin_sym_end] = ACTIONS(1354), - [sym_identifier] = ACTIONS(1356), - [anon_sym_SEMI] = ACTIONS(1354), - [anon_sym_macro_rules_BANG] = ACTIONS(1354), - [anon_sym_LPAREN] = ACTIONS(1354), - [anon_sym_LBRACK] = ACTIONS(1354), - [anon_sym_LBRACE] = ACTIONS(1354), - [anon_sym_RBRACE] = ACTIONS(1354), - [anon_sym_PLUS] = ACTIONS(1356), - [anon_sym_STAR] = ACTIONS(1356), - [anon_sym_QMARK] = ACTIONS(1354), - [anon_sym_u8] = ACTIONS(1356), - [anon_sym_i8] = ACTIONS(1356), - [anon_sym_u16] = ACTIONS(1356), - [anon_sym_i16] = ACTIONS(1356), - [anon_sym_u32] = ACTIONS(1356), - [anon_sym_i32] = ACTIONS(1356), - [anon_sym_u64] = ACTIONS(1356), - [anon_sym_i64] = ACTIONS(1356), - [anon_sym_u128] = ACTIONS(1356), - [anon_sym_i128] = ACTIONS(1356), - [anon_sym_isize] = ACTIONS(1356), - [anon_sym_usize] = ACTIONS(1356), - [anon_sym_f32] = ACTIONS(1356), - [anon_sym_f64] = ACTIONS(1356), - [anon_sym_bool] = ACTIONS(1356), - [anon_sym_str] = ACTIONS(1356), - [anon_sym_char] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1356), - [anon_sym_SLASH] = ACTIONS(1356), - [anon_sym_PERCENT] = ACTIONS(1356), - [anon_sym_CARET] = ACTIONS(1356), - [anon_sym_BANG] = ACTIONS(1356), - [anon_sym_AMP] = ACTIONS(1356), - [anon_sym_PIPE] = ACTIONS(1356), - [anon_sym_AMP_AMP] = ACTIONS(1354), - [anon_sym_PIPE_PIPE] = ACTIONS(1354), - [anon_sym_LT_LT] = ACTIONS(1356), - [anon_sym_GT_GT] = ACTIONS(1356), - [anon_sym_PLUS_EQ] = ACTIONS(1354), - [anon_sym_DASH_EQ] = ACTIONS(1354), - [anon_sym_STAR_EQ] = ACTIONS(1354), - [anon_sym_SLASH_EQ] = ACTIONS(1354), - [anon_sym_PERCENT_EQ] = ACTIONS(1354), - [anon_sym_CARET_EQ] = ACTIONS(1354), - [anon_sym_AMP_EQ] = ACTIONS(1354), - [anon_sym_PIPE_EQ] = ACTIONS(1354), - [anon_sym_LT_LT_EQ] = ACTIONS(1354), - [anon_sym_GT_GT_EQ] = ACTIONS(1354), - [anon_sym_EQ] = ACTIONS(1356), - [anon_sym_EQ_EQ] = ACTIONS(1354), - [anon_sym_BANG_EQ] = ACTIONS(1354), - [anon_sym_GT] = ACTIONS(1356), - [anon_sym_LT] = ACTIONS(1356), - [anon_sym_GT_EQ] = ACTIONS(1354), - [anon_sym_LT_EQ] = ACTIONS(1354), - [anon_sym_DOT] = ACTIONS(1356), - [anon_sym_DOT_DOT] = ACTIONS(1356), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1354), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1354), - [anon_sym_COLON_COLON] = ACTIONS(1354), - [anon_sym_POUND] = ACTIONS(1354), - [anon_sym_SQUOTE] = ACTIONS(1356), - [anon_sym_as] = ACTIONS(1356), - [anon_sym_async] = ACTIONS(1356), - [anon_sym_break] = ACTIONS(1356), - [anon_sym_const] = ACTIONS(1356), - [anon_sym_continue] = ACTIONS(1356), - [anon_sym_default] = ACTIONS(1356), - [anon_sym_enum] = ACTIONS(1356), - [anon_sym_fn] = ACTIONS(1356), - [anon_sym_for] = ACTIONS(1356), - [anon_sym_if] = ACTIONS(1356), - [anon_sym_impl] = ACTIONS(1356), - [anon_sym_let] = ACTIONS(1356), - [anon_sym_loop] = ACTIONS(1356), - [anon_sym_match] = ACTIONS(1356), - [anon_sym_mod] = ACTIONS(1356), - [anon_sym_pub] = ACTIONS(1356), - [anon_sym_return] = ACTIONS(1356), - [anon_sym_static] = ACTIONS(1356), - [anon_sym_struct] = ACTIONS(1356), - [anon_sym_trait] = ACTIONS(1356), - [anon_sym_type] = ACTIONS(1356), - [anon_sym_union] = ACTIONS(1356), - [anon_sym_unsafe] = ACTIONS(1356), - [anon_sym_use] = ACTIONS(1356), - [anon_sym_while] = ACTIONS(1356), - [anon_sym_extern] = ACTIONS(1356), - [anon_sym_yield] = ACTIONS(1356), - [anon_sym_move] = ACTIONS(1356), - [anon_sym_try] = ACTIONS(1356), - [sym_integer_literal] = ACTIONS(1354), - [aux_sym_string_literal_token1] = ACTIONS(1354), - [sym_char_literal] = ACTIONS(1354), - [anon_sym_true] = ACTIONS(1356), - [anon_sym_false] = ACTIONS(1356), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1356), - [sym_super] = ACTIONS(1356), - [sym_crate] = ACTIONS(1356), - [sym_metavariable] = ACTIONS(1354), - [sym__raw_string_literal_start] = ACTIONS(1354), - [sym_float_literal] = ACTIONS(1354), - }, - [378] = { - [sym_attribute_item] = STATE(414), - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_self_parameter] = STATE(2981), - [sym_variadic_parameter] = STATE(2981), - [sym_parameter] = STATE(2981), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2705), - [sym_bracketed_type] = STATE(3527), - [sym_lifetime] = STATE(2985), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3273), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(2487), - [sym_scoped_identifier] = STATE(2113), - [sym_scoped_type_identifier] = STATE(2114), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2464), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), - [sym_line_comment] = STATE(378), - [sym_block_comment] = STATE(378), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1248), - [anon_sym_LPAREN] = ACTIONS(1250), - [anon_sym_RPAREN] = ACTIONS(1358), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1260), - [anon_sym_i8] = ACTIONS(1260), - [anon_sym_u16] = ACTIONS(1260), - [anon_sym_i16] = ACTIONS(1260), - [anon_sym_u32] = ACTIONS(1260), - [anon_sym_i32] = ACTIONS(1260), - [anon_sym_u64] = ACTIONS(1260), - [anon_sym_i64] = ACTIONS(1260), - [anon_sym_u128] = ACTIONS(1260), - [anon_sym_i128] = ACTIONS(1260), - [anon_sym_isize] = ACTIONS(1260), - [anon_sym_usize] = ACTIONS(1260), - [anon_sym_f32] = ACTIONS(1260), - [anon_sym_f64] = ACTIONS(1260), - [anon_sym_bool] = ACTIONS(1260), - [anon_sym_str] = ACTIONS(1260), - [anon_sym_char] = ACTIONS(1260), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1266), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1270), - [anon_sym_DOT_DOT] = ACTIONS(1272), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1274), - [anon_sym_COMMA] = ACTIONS(1360), - [anon_sym_COLON_COLON] = ACTIONS(1278), - [anon_sym_POUND] = ACTIONS(1280), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1288), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1296), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_ref] = ACTIONS(1300), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(1304), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1312), - [sym_super] = ACTIONS(1314), - [sym_crate] = ACTIONS(1314), - [sym_metavariable] = ACTIONS(1316), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), - }, - [379] = { - [sym_line_comment] = STATE(379), - [sym_block_comment] = STATE(379), [ts_builtin_sym_end] = ACTIONS(1362), [sym_identifier] = ACTIONS(1364), [anon_sym_SEMI] = ACTIONS(1362), @@ -59102,9 +58892,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1362), [sym_float_literal] = ACTIONS(1362), }, - [380] = { - [sym_line_comment] = STATE(380), - [sym_block_comment] = STATE(380), + [378] = { + [sym_line_comment] = STATE(378), + [sym_block_comment] = STATE(378), + [ts_builtin_sym_end] = ACTIONS(983), + [sym_identifier] = ACTIONS(981), + [anon_sym_SEMI] = ACTIONS(983), + [anon_sym_macro_rules_BANG] = ACTIONS(983), + [anon_sym_LPAREN] = ACTIONS(983), + [anon_sym_LBRACK] = ACTIONS(983), + [anon_sym_LBRACE] = ACTIONS(983), + [anon_sym_RBRACE] = ACTIONS(983), + [anon_sym_PLUS] = ACTIONS(981), + [anon_sym_STAR] = ACTIONS(981), + [anon_sym_QMARK] = ACTIONS(983), + [anon_sym_u8] = ACTIONS(981), + [anon_sym_i8] = ACTIONS(981), + [anon_sym_u16] = ACTIONS(981), + [anon_sym_i16] = ACTIONS(981), + [anon_sym_u32] = ACTIONS(981), + [anon_sym_i32] = ACTIONS(981), + [anon_sym_u64] = ACTIONS(981), + [anon_sym_i64] = ACTIONS(981), + [anon_sym_u128] = ACTIONS(981), + [anon_sym_i128] = ACTIONS(981), + [anon_sym_isize] = ACTIONS(981), + [anon_sym_usize] = ACTIONS(981), + [anon_sym_f32] = ACTIONS(981), + [anon_sym_f64] = ACTIONS(981), + [anon_sym_bool] = ACTIONS(981), + [anon_sym_str] = ACTIONS(981), + [anon_sym_char] = ACTIONS(981), + [anon_sym_DASH] = ACTIONS(981), + [anon_sym_SLASH] = ACTIONS(981), + [anon_sym_PERCENT] = ACTIONS(981), + [anon_sym_CARET] = ACTIONS(981), + [anon_sym_BANG] = ACTIONS(981), + [anon_sym_AMP] = ACTIONS(981), + [anon_sym_PIPE] = ACTIONS(981), + [anon_sym_AMP_AMP] = ACTIONS(983), + [anon_sym_PIPE_PIPE] = ACTIONS(983), + [anon_sym_LT_LT] = ACTIONS(981), + [anon_sym_GT_GT] = ACTIONS(981), + [anon_sym_PLUS_EQ] = ACTIONS(983), + [anon_sym_DASH_EQ] = ACTIONS(983), + [anon_sym_STAR_EQ] = ACTIONS(983), + [anon_sym_SLASH_EQ] = ACTIONS(983), + [anon_sym_PERCENT_EQ] = ACTIONS(983), + [anon_sym_CARET_EQ] = ACTIONS(983), + [anon_sym_AMP_EQ] = ACTIONS(983), + [anon_sym_PIPE_EQ] = ACTIONS(983), + [anon_sym_LT_LT_EQ] = ACTIONS(983), + [anon_sym_GT_GT_EQ] = ACTIONS(983), + [anon_sym_EQ] = ACTIONS(981), + [anon_sym_EQ_EQ] = ACTIONS(983), + [anon_sym_BANG_EQ] = ACTIONS(983), + [anon_sym_GT] = ACTIONS(981), + [anon_sym_LT] = ACTIONS(981), + [anon_sym_GT_EQ] = ACTIONS(983), + [anon_sym_LT_EQ] = ACTIONS(983), + [anon_sym_DOT] = ACTIONS(981), + [anon_sym_DOT_DOT] = ACTIONS(981), + [anon_sym_DOT_DOT_DOT] = ACTIONS(983), + [anon_sym_DOT_DOT_EQ] = ACTIONS(983), + [anon_sym_COLON_COLON] = ACTIONS(983), + [anon_sym_POUND] = ACTIONS(983), + [anon_sym_SQUOTE] = ACTIONS(981), + [anon_sym_as] = ACTIONS(981), + [anon_sym_async] = ACTIONS(981), + [anon_sym_break] = ACTIONS(981), + [anon_sym_const] = ACTIONS(981), + [anon_sym_continue] = ACTIONS(981), + [anon_sym_default] = ACTIONS(981), + [anon_sym_enum] = ACTIONS(981), + [anon_sym_fn] = ACTIONS(981), + [anon_sym_for] = ACTIONS(981), + [anon_sym_if] = ACTIONS(981), + [anon_sym_impl] = ACTIONS(981), + [anon_sym_let] = ACTIONS(981), + [anon_sym_loop] = ACTIONS(981), + [anon_sym_match] = ACTIONS(981), + [anon_sym_mod] = ACTIONS(981), + [anon_sym_pub] = ACTIONS(981), + [anon_sym_return] = ACTIONS(981), + [anon_sym_static] = ACTIONS(981), + [anon_sym_struct] = ACTIONS(981), + [anon_sym_trait] = ACTIONS(981), + [anon_sym_type] = ACTIONS(981), + [anon_sym_union] = ACTIONS(981), + [anon_sym_unsafe] = ACTIONS(981), + [anon_sym_use] = ACTIONS(981), + [anon_sym_while] = ACTIONS(981), + [anon_sym_extern] = ACTIONS(981), + [anon_sym_yield] = ACTIONS(981), + [anon_sym_move] = ACTIONS(981), + [anon_sym_try] = ACTIONS(981), + [sym_integer_literal] = ACTIONS(983), + [aux_sym_string_literal_token1] = ACTIONS(983), + [sym_char_literal] = ACTIONS(983), + [anon_sym_true] = ACTIONS(981), + [anon_sym_false] = ACTIONS(981), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(981), + [sym_super] = ACTIONS(981), + [sym_crate] = ACTIONS(981), + [sym_metavariable] = ACTIONS(983), + [sym__raw_string_literal_start] = ACTIONS(983), + [sym_float_literal] = ACTIONS(983), + }, + [379] = { + [sym_line_comment] = STATE(379), + [sym_block_comment] = STATE(379), [ts_builtin_sym_end] = ACTIONS(1366), [sym_identifier] = ACTIONS(1368), [anon_sym_SEMI] = ACTIONS(1366), @@ -59211,9 +59110,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1366), [sym_float_literal] = ACTIONS(1366), }, - [381] = { - [sym_line_comment] = STATE(381), - [sym_block_comment] = STATE(381), + [380] = { + [sym_line_comment] = STATE(380), + [sym_block_comment] = STATE(380), [ts_builtin_sym_end] = ACTIONS(1370), [sym_identifier] = ACTIONS(1372), [anon_sym_SEMI] = ACTIONS(1370), @@ -59320,9 +59219,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1370), [sym_float_literal] = ACTIONS(1370), }, - [382] = { - [sym_line_comment] = STATE(382), - [sym_block_comment] = STATE(382), + [381] = { + [sym_line_comment] = STATE(381), + [sym_block_comment] = STATE(381), [ts_builtin_sym_end] = ACTIONS(1374), [sym_identifier] = ACTIONS(1376), [anon_sym_SEMI] = ACTIONS(1374), @@ -59429,445 +59328,336 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1374), [sym_float_literal] = ACTIONS(1374), }, + [382] = { + [sym_attribute_item] = STATE(415), + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_self_parameter] = STATE(2935), + [sym_variadic_parameter] = STATE(2935), + [sym_parameter] = STATE(2935), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2553), + [sym_bracketed_type] = STATE(3528), + [sym_lifetime] = STATE(2931), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3289), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(2436), + [sym_scoped_identifier] = STATE(2212), + [sym_scoped_type_identifier] = STATE(2104), + [sym_const_block] = STATE(2079), + [sym__pattern] = STATE(3137), + [sym_tuple_pattern] = STATE(2079), + [sym_slice_pattern] = STATE(2079), + [sym_tuple_struct_pattern] = STATE(2079), + [sym_struct_pattern] = STATE(2079), + [sym_remaining_field_pattern] = STATE(2079), + [sym_mut_pattern] = STATE(2079), + [sym_range_pattern] = STATE(2079), + [sym_ref_pattern] = STATE(2079), + [sym_captured_pattern] = STATE(2079), + [sym_reference_pattern] = STATE(2079), + [sym_or_pattern] = STATE(2079), + [sym__literal_pattern] = STATE(2006), + [sym_negative_literal] = STATE(2009), + [sym_string_literal] = STATE(2009), + [sym_raw_string_literal] = STATE(2009), + [sym_boolean_literal] = STATE(2009), + [sym_line_comment] = STATE(382), + [sym_block_comment] = STATE(382), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(1260), + [anon_sym_LPAREN] = ACTIONS(1262), + [anon_sym_RPAREN] = ACTIONS(1378), + [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), + [anon_sym_u8] = ACTIONS(1272), + [anon_sym_i8] = ACTIONS(1272), + [anon_sym_u16] = ACTIONS(1272), + [anon_sym_i16] = ACTIONS(1272), + [anon_sym_u32] = ACTIONS(1272), + [anon_sym_i32] = ACTIONS(1272), + [anon_sym_u64] = ACTIONS(1272), + [anon_sym_i64] = ACTIONS(1272), + [anon_sym_u128] = ACTIONS(1272), + [anon_sym_i128] = ACTIONS(1272), + [anon_sym_isize] = ACTIONS(1272), + [anon_sym_usize] = ACTIONS(1272), + [anon_sym_f32] = ACTIONS(1272), + [anon_sym_f64] = ACTIONS(1272), + [anon_sym_bool] = ACTIONS(1272), + [anon_sym_str] = ACTIONS(1272), + [anon_sym_char] = ACTIONS(1272), + [anon_sym_DASH] = ACTIONS(1274), + [anon_sym_BANG] = ACTIONS(1276), + [anon_sym_AMP] = ACTIONS(1278), + [anon_sym_PIPE] = ACTIONS(1280), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1380), + [anon_sym_DOT_DOT] = ACTIONS(1284), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1286), + [anon_sym_COMMA] = ACTIONS(1382), + [anon_sym_COLON_COLON] = ACTIONS(1290), + [anon_sym_POUND] = ACTIONS(1292), + [anon_sym_SQUOTE] = ACTIONS(1294), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1300), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1308), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_ref] = ACTIONS(1312), + [anon_sym_dyn] = ACTIONS(1314), + [sym_mutable_specifier] = ACTIONS(1316), + [sym_integer_literal] = ACTIONS(1318), + [aux_sym_string_literal_token1] = ACTIONS(1320), + [sym_char_literal] = ACTIONS(1318), + [anon_sym_true] = ACTIONS(1322), + [anon_sym_false] = ACTIONS(1322), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1324), + [sym_super] = ACTIONS(1326), + [sym_crate] = ACTIONS(1326), + [sym_metavariable] = ACTIONS(1328), + [sym__raw_string_literal_start] = ACTIONS(1330), + [sym_float_literal] = ACTIONS(1318), + }, [383] = { + [sym_attribute_item] = STATE(417), + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_self_parameter] = STATE(2793), + [sym_variadic_parameter] = STATE(2793), + [sym_parameter] = STATE(2793), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2670), + [sym_bracketed_type] = STATE(3528), + [sym_lifetime] = STATE(2931), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3289), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(2436), + [sym_scoped_identifier] = STATE(2212), + [sym_scoped_type_identifier] = STATE(2104), + [sym_const_block] = STATE(2079), + [sym__pattern] = STATE(3137), + [sym_tuple_pattern] = STATE(2079), + [sym_slice_pattern] = STATE(2079), + [sym_tuple_struct_pattern] = STATE(2079), + [sym_struct_pattern] = STATE(2079), + [sym_remaining_field_pattern] = STATE(2079), + [sym_mut_pattern] = STATE(2079), + [sym_range_pattern] = STATE(2079), + [sym_ref_pattern] = STATE(2079), + [sym_captured_pattern] = STATE(2079), + [sym_reference_pattern] = STATE(2079), + [sym_or_pattern] = STATE(2079), + [sym__literal_pattern] = STATE(2006), + [sym_negative_literal] = STATE(2009), + [sym_string_literal] = STATE(2009), + [sym_raw_string_literal] = STATE(2009), + [sym_boolean_literal] = STATE(2009), [sym_line_comment] = STATE(383), [sym_block_comment] = STATE(383), - [ts_builtin_sym_end] = ACTIONS(1378), - [sym_identifier] = ACTIONS(1380), - [anon_sym_SEMI] = ACTIONS(1378), - [anon_sym_macro_rules_BANG] = ACTIONS(1378), - [anon_sym_LPAREN] = ACTIONS(1378), - [anon_sym_LBRACK] = ACTIONS(1378), - [anon_sym_LBRACE] = ACTIONS(1378), - [anon_sym_RBRACE] = ACTIONS(1378), - [anon_sym_PLUS] = ACTIONS(1380), - [anon_sym_STAR] = ACTIONS(1380), - [anon_sym_QMARK] = ACTIONS(1378), - [anon_sym_u8] = ACTIONS(1380), - [anon_sym_i8] = ACTIONS(1380), - [anon_sym_u16] = ACTIONS(1380), - [anon_sym_i16] = ACTIONS(1380), - [anon_sym_u32] = ACTIONS(1380), - [anon_sym_i32] = ACTIONS(1380), - [anon_sym_u64] = ACTIONS(1380), - [anon_sym_i64] = ACTIONS(1380), - [anon_sym_u128] = ACTIONS(1380), - [anon_sym_i128] = ACTIONS(1380), - [anon_sym_isize] = ACTIONS(1380), - [anon_sym_usize] = ACTIONS(1380), - [anon_sym_f32] = ACTIONS(1380), - [anon_sym_f64] = ACTIONS(1380), - [anon_sym_bool] = ACTIONS(1380), - [anon_sym_str] = ACTIONS(1380), - [anon_sym_char] = ACTIONS(1380), - [anon_sym_DASH] = ACTIONS(1380), - [anon_sym_SLASH] = ACTIONS(1380), - [anon_sym_PERCENT] = ACTIONS(1380), - [anon_sym_CARET] = ACTIONS(1380), - [anon_sym_BANG] = ACTIONS(1380), - [anon_sym_AMP] = ACTIONS(1380), - [anon_sym_PIPE] = ACTIONS(1380), - [anon_sym_AMP_AMP] = ACTIONS(1378), - [anon_sym_PIPE_PIPE] = ACTIONS(1378), - [anon_sym_LT_LT] = ACTIONS(1380), - [anon_sym_GT_GT] = ACTIONS(1380), - [anon_sym_PLUS_EQ] = ACTIONS(1378), - [anon_sym_DASH_EQ] = ACTIONS(1378), - [anon_sym_STAR_EQ] = ACTIONS(1378), - [anon_sym_SLASH_EQ] = ACTIONS(1378), - [anon_sym_PERCENT_EQ] = ACTIONS(1378), - [anon_sym_CARET_EQ] = ACTIONS(1378), - [anon_sym_AMP_EQ] = ACTIONS(1378), - [anon_sym_PIPE_EQ] = ACTIONS(1378), - [anon_sym_LT_LT_EQ] = ACTIONS(1378), - [anon_sym_GT_GT_EQ] = ACTIONS(1378), - [anon_sym_EQ] = ACTIONS(1380), - [anon_sym_EQ_EQ] = ACTIONS(1378), - [anon_sym_BANG_EQ] = ACTIONS(1378), - [anon_sym_GT] = ACTIONS(1380), - [anon_sym_LT] = ACTIONS(1380), - [anon_sym_GT_EQ] = ACTIONS(1378), - [anon_sym_LT_EQ] = ACTIONS(1378), - [anon_sym_DOT] = ACTIONS(1380), - [anon_sym_DOT_DOT] = ACTIONS(1380), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1378), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1378), - [anon_sym_COLON_COLON] = ACTIONS(1378), - [anon_sym_POUND] = ACTIONS(1378), - [anon_sym_SQUOTE] = ACTIONS(1380), - [anon_sym_as] = ACTIONS(1380), - [anon_sym_async] = ACTIONS(1380), - [anon_sym_break] = ACTIONS(1380), - [anon_sym_const] = ACTIONS(1380), - [anon_sym_continue] = ACTIONS(1380), - [anon_sym_default] = ACTIONS(1380), - [anon_sym_enum] = ACTIONS(1380), - [anon_sym_fn] = ACTIONS(1380), - [anon_sym_for] = ACTIONS(1380), - [anon_sym_if] = ACTIONS(1380), - [anon_sym_impl] = ACTIONS(1380), - [anon_sym_let] = ACTIONS(1380), - [anon_sym_loop] = ACTIONS(1380), - [anon_sym_match] = ACTIONS(1380), - [anon_sym_mod] = ACTIONS(1380), - [anon_sym_pub] = ACTIONS(1380), - [anon_sym_return] = ACTIONS(1380), - [anon_sym_static] = ACTIONS(1380), - [anon_sym_struct] = ACTIONS(1380), - [anon_sym_trait] = ACTIONS(1380), - [anon_sym_type] = ACTIONS(1380), - [anon_sym_union] = ACTIONS(1380), - [anon_sym_unsafe] = ACTIONS(1380), - [anon_sym_use] = ACTIONS(1380), - [anon_sym_while] = ACTIONS(1380), - [anon_sym_extern] = ACTIONS(1380), - [anon_sym_yield] = ACTIONS(1380), - [anon_sym_move] = ACTIONS(1380), - [anon_sym_try] = ACTIONS(1380), - [sym_integer_literal] = ACTIONS(1378), - [aux_sym_string_literal_token1] = ACTIONS(1378), - [sym_char_literal] = ACTIONS(1378), - [anon_sym_true] = ACTIONS(1380), - [anon_sym_false] = ACTIONS(1380), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1380), - [sym_super] = ACTIONS(1380), - [sym_crate] = ACTIONS(1380), - [sym_metavariable] = ACTIONS(1378), - [sym__raw_string_literal_start] = ACTIONS(1378), - [sym_float_literal] = ACTIONS(1378), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(1260), + [anon_sym_LPAREN] = ACTIONS(1262), + [anon_sym_RPAREN] = ACTIONS(1384), + [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), + [anon_sym_u8] = ACTIONS(1272), + [anon_sym_i8] = ACTIONS(1272), + [anon_sym_u16] = ACTIONS(1272), + [anon_sym_i16] = ACTIONS(1272), + [anon_sym_u32] = ACTIONS(1272), + [anon_sym_i32] = ACTIONS(1272), + [anon_sym_u64] = ACTIONS(1272), + [anon_sym_i64] = ACTIONS(1272), + [anon_sym_u128] = ACTIONS(1272), + [anon_sym_i128] = ACTIONS(1272), + [anon_sym_isize] = ACTIONS(1272), + [anon_sym_usize] = ACTIONS(1272), + [anon_sym_f32] = ACTIONS(1272), + [anon_sym_f64] = ACTIONS(1272), + [anon_sym_bool] = ACTIONS(1272), + [anon_sym_str] = ACTIONS(1272), + [anon_sym_char] = ACTIONS(1272), + [anon_sym_DASH] = ACTIONS(1274), + [anon_sym_BANG] = ACTIONS(1276), + [anon_sym_AMP] = ACTIONS(1278), + [anon_sym_PIPE] = ACTIONS(1280), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1386), + [anon_sym_DOT_DOT] = ACTIONS(1284), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1286), + [anon_sym_COMMA] = ACTIONS(1388), + [anon_sym_COLON_COLON] = ACTIONS(1290), + [anon_sym_POUND] = ACTIONS(1292), + [anon_sym_SQUOTE] = ACTIONS(1294), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1300), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1308), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_ref] = ACTIONS(1312), + [anon_sym_dyn] = ACTIONS(1314), + [sym_mutable_specifier] = ACTIONS(1316), + [sym_integer_literal] = ACTIONS(1318), + [aux_sym_string_literal_token1] = ACTIONS(1320), + [sym_char_literal] = ACTIONS(1318), + [anon_sym_true] = ACTIONS(1322), + [anon_sym_false] = ACTIONS(1322), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1324), + [sym_super] = ACTIONS(1326), + [sym_crate] = ACTIONS(1326), + [sym_metavariable] = ACTIONS(1328), + [sym__raw_string_literal_start] = ACTIONS(1330), + [sym_float_literal] = ACTIONS(1318), }, [384] = { + [sym_attribute_item] = STATE(416), + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_self_parameter] = STATE(2927), + [sym_variadic_parameter] = STATE(2927), + [sym_parameter] = STATE(2927), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2556), + [sym_bracketed_type] = STATE(3535), + [sym_lifetime] = STATE(2931), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3115), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(2428), + [sym_scoped_identifier] = STATE(2082), + [sym_scoped_type_identifier] = STATE(2104), + [sym_const_block] = STATE(2079), + [sym__pattern] = STATE(2389), + [sym_tuple_pattern] = STATE(2079), + [sym_slice_pattern] = STATE(2079), + [sym_tuple_struct_pattern] = STATE(2079), + [sym_struct_pattern] = STATE(2079), + [sym_remaining_field_pattern] = STATE(2079), + [sym_mut_pattern] = STATE(2079), + [sym_range_pattern] = STATE(2079), + [sym_ref_pattern] = STATE(2079), + [sym_captured_pattern] = STATE(2079), + [sym_reference_pattern] = STATE(2079), + [sym_or_pattern] = STATE(2079), + [sym__literal_pattern] = STATE(2006), + [sym_negative_literal] = STATE(2009), + [sym_string_literal] = STATE(2009), + [sym_raw_string_literal] = STATE(2009), + [sym_boolean_literal] = STATE(2009), [sym_line_comment] = STATE(384), [sym_block_comment] = STATE(384), - [ts_builtin_sym_end] = ACTIONS(1382), - [sym_identifier] = ACTIONS(1384), - [anon_sym_SEMI] = ACTIONS(1382), - [anon_sym_macro_rules_BANG] = ACTIONS(1382), - [anon_sym_LPAREN] = ACTIONS(1382), - [anon_sym_LBRACK] = ACTIONS(1382), - [anon_sym_LBRACE] = ACTIONS(1382), - [anon_sym_RBRACE] = ACTIONS(1382), - [anon_sym_PLUS] = ACTIONS(1384), - [anon_sym_STAR] = ACTIONS(1384), - [anon_sym_QMARK] = ACTIONS(1382), - [anon_sym_u8] = ACTIONS(1384), - [anon_sym_i8] = ACTIONS(1384), - [anon_sym_u16] = ACTIONS(1384), - [anon_sym_i16] = ACTIONS(1384), - [anon_sym_u32] = ACTIONS(1384), - [anon_sym_i32] = ACTIONS(1384), - [anon_sym_u64] = ACTIONS(1384), - [anon_sym_i64] = ACTIONS(1384), - [anon_sym_u128] = ACTIONS(1384), - [anon_sym_i128] = ACTIONS(1384), - [anon_sym_isize] = ACTIONS(1384), - [anon_sym_usize] = ACTIONS(1384), - [anon_sym_f32] = ACTIONS(1384), - [anon_sym_f64] = ACTIONS(1384), - [anon_sym_bool] = ACTIONS(1384), - [anon_sym_str] = ACTIONS(1384), - [anon_sym_char] = ACTIONS(1384), - [anon_sym_DASH] = ACTIONS(1384), - [anon_sym_SLASH] = ACTIONS(1384), - [anon_sym_PERCENT] = ACTIONS(1384), - [anon_sym_CARET] = ACTIONS(1384), - [anon_sym_BANG] = ACTIONS(1384), - [anon_sym_AMP] = ACTIONS(1384), - [anon_sym_PIPE] = ACTIONS(1384), - [anon_sym_AMP_AMP] = ACTIONS(1382), - [anon_sym_PIPE_PIPE] = ACTIONS(1382), - [anon_sym_LT_LT] = ACTIONS(1384), - [anon_sym_GT_GT] = ACTIONS(1384), - [anon_sym_PLUS_EQ] = ACTIONS(1382), - [anon_sym_DASH_EQ] = ACTIONS(1382), - [anon_sym_STAR_EQ] = ACTIONS(1382), - [anon_sym_SLASH_EQ] = ACTIONS(1382), - [anon_sym_PERCENT_EQ] = ACTIONS(1382), - [anon_sym_CARET_EQ] = ACTIONS(1382), - [anon_sym_AMP_EQ] = ACTIONS(1382), - [anon_sym_PIPE_EQ] = ACTIONS(1382), - [anon_sym_LT_LT_EQ] = ACTIONS(1382), - [anon_sym_GT_GT_EQ] = ACTIONS(1382), - [anon_sym_EQ] = ACTIONS(1384), - [anon_sym_EQ_EQ] = ACTIONS(1382), - [anon_sym_BANG_EQ] = ACTIONS(1382), - [anon_sym_GT] = ACTIONS(1384), - [anon_sym_LT] = ACTIONS(1384), - [anon_sym_GT_EQ] = ACTIONS(1382), - [anon_sym_LT_EQ] = ACTIONS(1382), - [anon_sym_DOT] = ACTIONS(1384), - [anon_sym_DOT_DOT] = ACTIONS(1384), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1382), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1382), - [anon_sym_COLON_COLON] = ACTIONS(1382), - [anon_sym_POUND] = ACTIONS(1382), - [anon_sym_SQUOTE] = ACTIONS(1384), - [anon_sym_as] = ACTIONS(1384), - [anon_sym_async] = ACTIONS(1384), - [anon_sym_break] = ACTIONS(1384), - [anon_sym_const] = ACTIONS(1384), - [anon_sym_continue] = ACTIONS(1384), - [anon_sym_default] = ACTIONS(1384), - [anon_sym_enum] = ACTIONS(1384), - [anon_sym_fn] = ACTIONS(1384), - [anon_sym_for] = ACTIONS(1384), - [anon_sym_if] = ACTIONS(1384), - [anon_sym_impl] = ACTIONS(1384), - [anon_sym_let] = ACTIONS(1384), - [anon_sym_loop] = ACTIONS(1384), - [anon_sym_match] = ACTIONS(1384), - [anon_sym_mod] = ACTIONS(1384), - [anon_sym_pub] = ACTIONS(1384), - [anon_sym_return] = ACTIONS(1384), - [anon_sym_static] = ACTIONS(1384), - [anon_sym_struct] = ACTIONS(1384), - [anon_sym_trait] = ACTIONS(1384), - [anon_sym_type] = ACTIONS(1384), - [anon_sym_union] = ACTIONS(1384), - [anon_sym_unsafe] = ACTIONS(1384), - [anon_sym_use] = ACTIONS(1384), - [anon_sym_while] = ACTIONS(1384), - [anon_sym_extern] = ACTIONS(1384), - [anon_sym_yield] = ACTIONS(1384), - [anon_sym_move] = ACTIONS(1384), - [anon_sym_try] = ACTIONS(1384), - [sym_integer_literal] = ACTIONS(1382), - [aux_sym_string_literal_token1] = ACTIONS(1382), - [sym_char_literal] = ACTIONS(1382), - [anon_sym_true] = ACTIONS(1384), - [anon_sym_false] = ACTIONS(1384), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1384), - [sym_super] = ACTIONS(1384), - [sym_crate] = ACTIONS(1384), - [sym_metavariable] = ACTIONS(1382), - [sym__raw_string_literal_start] = ACTIONS(1382), - [sym_float_literal] = ACTIONS(1382), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(1332), + [anon_sym_LPAREN] = ACTIONS(1334), + [anon_sym_RPAREN] = ACTIONS(1390), + [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), + [anon_sym_u8] = ACTIONS(1338), + [anon_sym_i8] = ACTIONS(1338), + [anon_sym_u16] = ACTIONS(1338), + [anon_sym_i16] = ACTIONS(1338), + [anon_sym_u32] = ACTIONS(1338), + [anon_sym_i32] = ACTIONS(1338), + [anon_sym_u64] = ACTIONS(1338), + [anon_sym_i64] = ACTIONS(1338), + [anon_sym_u128] = ACTIONS(1338), + [anon_sym_i128] = ACTIONS(1338), + [anon_sym_isize] = ACTIONS(1338), + [anon_sym_usize] = ACTIONS(1338), + [anon_sym_f32] = ACTIONS(1338), + [anon_sym_f64] = ACTIONS(1338), + [anon_sym_bool] = ACTIONS(1338), + [anon_sym_str] = ACTIONS(1338), + [anon_sym_char] = ACTIONS(1338), + [anon_sym_DASH] = ACTIONS(1274), + [anon_sym_BANG] = ACTIONS(1276), + [anon_sym_AMP] = ACTIONS(1340), + [anon_sym_PIPE] = ACTIONS(1280), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1342), + [anon_sym_DOT_DOT] = ACTIONS(1284), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1286), + [anon_sym_COMMA] = ACTIONS(1392), + [anon_sym_COLON_COLON] = ACTIONS(1346), + [anon_sym_POUND] = ACTIONS(1292), + [anon_sym_SQUOTE] = ACTIONS(1294), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1348), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1350), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_ref] = ACTIONS(1312), + [anon_sym_dyn] = ACTIONS(1314), + [sym_mutable_specifier] = ACTIONS(1316), + [sym_integer_literal] = ACTIONS(1318), + [aux_sym_string_literal_token1] = ACTIONS(1320), + [sym_char_literal] = ACTIONS(1318), + [anon_sym_true] = ACTIONS(1322), + [anon_sym_false] = ACTIONS(1322), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1352), + [sym_super] = ACTIONS(1354), + [sym_crate] = ACTIONS(1354), + [sym_metavariable] = ACTIONS(1356), + [sym__raw_string_literal_start] = ACTIONS(1330), + [sym_float_literal] = ACTIONS(1318), }, [385] = { [sym_line_comment] = STATE(385), [sym_block_comment] = STATE(385), - [ts_builtin_sym_end] = ACTIONS(1386), - [sym_identifier] = ACTIONS(1388), - [anon_sym_SEMI] = ACTIONS(1386), - [anon_sym_macro_rules_BANG] = ACTIONS(1386), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_LBRACK] = ACTIONS(1386), - [anon_sym_LBRACE] = ACTIONS(1386), - [anon_sym_RBRACE] = ACTIONS(1386), - [anon_sym_PLUS] = ACTIONS(1388), - [anon_sym_STAR] = ACTIONS(1388), - [anon_sym_QMARK] = ACTIONS(1386), - [anon_sym_u8] = ACTIONS(1388), - [anon_sym_i8] = ACTIONS(1388), - [anon_sym_u16] = ACTIONS(1388), - [anon_sym_i16] = ACTIONS(1388), - [anon_sym_u32] = ACTIONS(1388), - [anon_sym_i32] = ACTIONS(1388), - [anon_sym_u64] = ACTIONS(1388), - [anon_sym_i64] = ACTIONS(1388), - [anon_sym_u128] = ACTIONS(1388), - [anon_sym_i128] = ACTIONS(1388), - [anon_sym_isize] = ACTIONS(1388), - [anon_sym_usize] = ACTIONS(1388), - [anon_sym_f32] = ACTIONS(1388), - [anon_sym_f64] = ACTIONS(1388), - [anon_sym_bool] = ACTIONS(1388), - [anon_sym_str] = ACTIONS(1388), - [anon_sym_char] = ACTIONS(1388), - [anon_sym_DASH] = ACTIONS(1388), - [anon_sym_SLASH] = ACTIONS(1388), - [anon_sym_PERCENT] = ACTIONS(1388), - [anon_sym_CARET] = ACTIONS(1388), - [anon_sym_BANG] = ACTIONS(1388), - [anon_sym_AMP] = ACTIONS(1388), - [anon_sym_PIPE] = ACTIONS(1388), - [anon_sym_AMP_AMP] = ACTIONS(1386), - [anon_sym_PIPE_PIPE] = ACTIONS(1386), - [anon_sym_LT_LT] = ACTIONS(1388), - [anon_sym_GT_GT] = ACTIONS(1388), - [anon_sym_PLUS_EQ] = ACTIONS(1386), - [anon_sym_DASH_EQ] = ACTIONS(1386), - [anon_sym_STAR_EQ] = ACTIONS(1386), - [anon_sym_SLASH_EQ] = ACTIONS(1386), - [anon_sym_PERCENT_EQ] = ACTIONS(1386), - [anon_sym_CARET_EQ] = ACTIONS(1386), - [anon_sym_AMP_EQ] = ACTIONS(1386), - [anon_sym_PIPE_EQ] = ACTIONS(1386), - [anon_sym_LT_LT_EQ] = ACTIONS(1386), - [anon_sym_GT_GT_EQ] = ACTIONS(1386), - [anon_sym_EQ] = ACTIONS(1388), - [anon_sym_EQ_EQ] = ACTIONS(1386), - [anon_sym_BANG_EQ] = ACTIONS(1386), - [anon_sym_GT] = ACTIONS(1388), - [anon_sym_LT] = ACTIONS(1388), - [anon_sym_GT_EQ] = ACTIONS(1386), - [anon_sym_LT_EQ] = ACTIONS(1386), - [anon_sym_DOT] = ACTIONS(1388), - [anon_sym_DOT_DOT] = ACTIONS(1388), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1386), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1386), - [anon_sym_COLON_COLON] = ACTIONS(1386), - [anon_sym_POUND] = ACTIONS(1386), - [anon_sym_SQUOTE] = ACTIONS(1388), - [anon_sym_as] = ACTIONS(1388), - [anon_sym_async] = ACTIONS(1388), - [anon_sym_break] = ACTIONS(1388), - [anon_sym_const] = ACTIONS(1388), - [anon_sym_continue] = ACTIONS(1388), - [anon_sym_default] = ACTIONS(1388), - [anon_sym_enum] = ACTIONS(1388), - [anon_sym_fn] = ACTIONS(1388), - [anon_sym_for] = ACTIONS(1388), - [anon_sym_if] = ACTIONS(1388), - [anon_sym_impl] = ACTIONS(1388), - [anon_sym_let] = ACTIONS(1388), - [anon_sym_loop] = ACTIONS(1388), - [anon_sym_match] = ACTIONS(1388), - [anon_sym_mod] = ACTIONS(1388), - [anon_sym_pub] = ACTIONS(1388), - [anon_sym_return] = ACTIONS(1388), - [anon_sym_static] = ACTIONS(1388), - [anon_sym_struct] = ACTIONS(1388), - [anon_sym_trait] = ACTIONS(1388), - [anon_sym_type] = ACTIONS(1388), - [anon_sym_union] = ACTIONS(1388), - [anon_sym_unsafe] = ACTIONS(1388), - [anon_sym_use] = ACTIONS(1388), - [anon_sym_while] = ACTIONS(1388), - [anon_sym_extern] = ACTIONS(1388), - [anon_sym_yield] = ACTIONS(1388), - [anon_sym_move] = ACTIONS(1388), - [anon_sym_try] = ACTIONS(1388), - [sym_integer_literal] = ACTIONS(1386), - [aux_sym_string_literal_token1] = ACTIONS(1386), - [sym_char_literal] = ACTIONS(1386), - [anon_sym_true] = ACTIONS(1388), - [anon_sym_false] = ACTIONS(1388), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1388), - [sym_super] = ACTIONS(1388), - [sym_crate] = ACTIONS(1388), - [sym_metavariable] = ACTIONS(1386), - [sym__raw_string_literal_start] = ACTIONS(1386), - [sym_float_literal] = ACTIONS(1386), - }, - [386] = { - [sym_line_comment] = STATE(386), - [sym_block_comment] = STATE(386), - [ts_builtin_sym_end] = ACTIONS(1390), - [sym_identifier] = ACTIONS(1392), - [anon_sym_SEMI] = ACTIONS(1390), - [anon_sym_macro_rules_BANG] = ACTIONS(1390), - [anon_sym_LPAREN] = ACTIONS(1390), - [anon_sym_LBRACK] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1390), - [anon_sym_RBRACE] = ACTIONS(1390), - [anon_sym_PLUS] = ACTIONS(1392), - [anon_sym_STAR] = ACTIONS(1392), - [anon_sym_QMARK] = ACTIONS(1390), - [anon_sym_u8] = ACTIONS(1392), - [anon_sym_i8] = ACTIONS(1392), - [anon_sym_u16] = ACTIONS(1392), - [anon_sym_i16] = ACTIONS(1392), - [anon_sym_u32] = ACTIONS(1392), - [anon_sym_i32] = ACTIONS(1392), - [anon_sym_u64] = ACTIONS(1392), - [anon_sym_i64] = ACTIONS(1392), - [anon_sym_u128] = ACTIONS(1392), - [anon_sym_i128] = ACTIONS(1392), - [anon_sym_isize] = ACTIONS(1392), - [anon_sym_usize] = ACTIONS(1392), - [anon_sym_f32] = ACTIONS(1392), - [anon_sym_f64] = ACTIONS(1392), - [anon_sym_bool] = ACTIONS(1392), - [anon_sym_str] = ACTIONS(1392), - [anon_sym_char] = ACTIONS(1392), - [anon_sym_DASH] = ACTIONS(1392), - [anon_sym_SLASH] = ACTIONS(1392), - [anon_sym_PERCENT] = ACTIONS(1392), - [anon_sym_CARET] = ACTIONS(1392), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_PIPE] = ACTIONS(1392), - [anon_sym_AMP_AMP] = ACTIONS(1390), - [anon_sym_PIPE_PIPE] = ACTIONS(1390), - [anon_sym_LT_LT] = ACTIONS(1392), - [anon_sym_GT_GT] = ACTIONS(1392), - [anon_sym_PLUS_EQ] = ACTIONS(1390), - [anon_sym_DASH_EQ] = ACTIONS(1390), - [anon_sym_STAR_EQ] = ACTIONS(1390), - [anon_sym_SLASH_EQ] = ACTIONS(1390), - [anon_sym_PERCENT_EQ] = ACTIONS(1390), - [anon_sym_CARET_EQ] = ACTIONS(1390), - [anon_sym_AMP_EQ] = ACTIONS(1390), - [anon_sym_PIPE_EQ] = ACTIONS(1390), - [anon_sym_LT_LT_EQ] = ACTIONS(1390), - [anon_sym_GT_GT_EQ] = ACTIONS(1390), - [anon_sym_EQ] = ACTIONS(1392), - [anon_sym_EQ_EQ] = ACTIONS(1390), - [anon_sym_BANG_EQ] = ACTIONS(1390), - [anon_sym_GT] = ACTIONS(1392), - [anon_sym_LT] = ACTIONS(1392), - [anon_sym_GT_EQ] = ACTIONS(1390), - [anon_sym_LT_EQ] = ACTIONS(1390), - [anon_sym_DOT] = ACTIONS(1392), - [anon_sym_DOT_DOT] = ACTIONS(1392), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1390), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1390), - [anon_sym_COLON_COLON] = ACTIONS(1390), - [anon_sym_POUND] = ACTIONS(1390), - [anon_sym_SQUOTE] = ACTIONS(1392), - [anon_sym_as] = ACTIONS(1392), - [anon_sym_async] = ACTIONS(1392), - [anon_sym_break] = ACTIONS(1392), - [anon_sym_const] = ACTIONS(1392), - [anon_sym_continue] = ACTIONS(1392), - [anon_sym_default] = ACTIONS(1392), - [anon_sym_enum] = ACTIONS(1392), - [anon_sym_fn] = ACTIONS(1392), - [anon_sym_for] = ACTIONS(1392), - [anon_sym_if] = ACTIONS(1392), - [anon_sym_impl] = ACTIONS(1392), - [anon_sym_let] = ACTIONS(1392), - [anon_sym_loop] = ACTIONS(1392), - [anon_sym_match] = ACTIONS(1392), - [anon_sym_mod] = ACTIONS(1392), - [anon_sym_pub] = ACTIONS(1392), - [anon_sym_return] = ACTIONS(1392), - [anon_sym_static] = ACTIONS(1392), - [anon_sym_struct] = ACTIONS(1392), - [anon_sym_trait] = ACTIONS(1392), - [anon_sym_type] = ACTIONS(1392), - [anon_sym_union] = ACTIONS(1392), - [anon_sym_unsafe] = ACTIONS(1392), - [anon_sym_use] = ACTIONS(1392), - [anon_sym_while] = ACTIONS(1392), - [anon_sym_extern] = ACTIONS(1392), - [anon_sym_yield] = ACTIONS(1392), - [anon_sym_move] = ACTIONS(1392), - [anon_sym_try] = ACTIONS(1392), - [sym_integer_literal] = ACTIONS(1390), - [aux_sym_string_literal_token1] = ACTIONS(1390), - [sym_char_literal] = ACTIONS(1390), - [anon_sym_true] = ACTIONS(1392), - [anon_sym_false] = ACTIONS(1392), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1392), - [sym_super] = ACTIONS(1392), - [sym_crate] = ACTIONS(1392), - [sym_metavariable] = ACTIONS(1390), - [sym__raw_string_literal_start] = ACTIONS(1390), - [sym_float_literal] = ACTIONS(1390), - }, - [387] = { - [sym_line_comment] = STATE(387), - [sym_block_comment] = STATE(387), [ts_builtin_sym_end] = ACTIONS(1394), [sym_identifier] = ACTIONS(1396), [anon_sym_SEMI] = ACTIONS(1394), @@ -59974,9 +59764,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1394), [sym_float_literal] = ACTIONS(1394), }, - [388] = { - [sym_line_comment] = STATE(388), - [sym_block_comment] = STATE(388), + [386] = { + [sym_line_comment] = STATE(386), + [sym_block_comment] = STATE(386), [ts_builtin_sym_end] = ACTIONS(1398), [sym_identifier] = ACTIONS(1400), [anon_sym_SEMI] = ACTIONS(1398), @@ -60083,9 +59873,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1398), [sym_float_literal] = ACTIONS(1398), }, - [389] = { - [sym_line_comment] = STATE(389), - [sym_block_comment] = STATE(389), + [387] = { + [sym_line_comment] = STATE(387), + [sym_block_comment] = STATE(387), [ts_builtin_sym_end] = ACTIONS(1402), [sym_identifier] = ACTIONS(1404), [anon_sym_SEMI] = ACTIONS(1402), @@ -60094,9 +59884,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1402), [anon_sym_LBRACE] = ACTIONS(1402), [anon_sym_RBRACE] = ACTIONS(1402), - [anon_sym_PLUS] = ACTIONS(1404), + [anon_sym_PLUS] = ACTIONS(1406), [anon_sym_STAR] = ACTIONS(1404), - [anon_sym_QMARK] = ACTIONS(1402), + [anon_sym_QMARK] = ACTIONS(1408), [anon_sym_u8] = ACTIONS(1404), [anon_sym_i8] = ACTIONS(1404), [anon_sym_u16] = ACTIONS(1404), @@ -60115,41 +59905,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(1404), [anon_sym_char] = ACTIONS(1404), [anon_sym_DASH] = ACTIONS(1404), - [anon_sym_SLASH] = ACTIONS(1404), - [anon_sym_PERCENT] = ACTIONS(1404), - [anon_sym_CARET] = ACTIONS(1404), + [anon_sym_SLASH] = ACTIONS(1406), + [anon_sym_PERCENT] = ACTIONS(1406), + [anon_sym_CARET] = ACTIONS(1406), [anon_sym_BANG] = ACTIONS(1404), [anon_sym_AMP] = ACTIONS(1404), [anon_sym_PIPE] = ACTIONS(1404), - [anon_sym_AMP_AMP] = ACTIONS(1402), - [anon_sym_PIPE_PIPE] = ACTIONS(1402), - [anon_sym_LT_LT] = ACTIONS(1404), - [anon_sym_GT_GT] = ACTIONS(1404), - [anon_sym_PLUS_EQ] = ACTIONS(1402), - [anon_sym_DASH_EQ] = ACTIONS(1402), - [anon_sym_STAR_EQ] = ACTIONS(1402), - [anon_sym_SLASH_EQ] = ACTIONS(1402), - [anon_sym_PERCENT_EQ] = ACTIONS(1402), - [anon_sym_CARET_EQ] = ACTIONS(1402), - [anon_sym_AMP_EQ] = ACTIONS(1402), - [anon_sym_PIPE_EQ] = ACTIONS(1402), - [anon_sym_LT_LT_EQ] = ACTIONS(1402), - [anon_sym_GT_GT_EQ] = ACTIONS(1402), - [anon_sym_EQ] = ACTIONS(1404), - [anon_sym_EQ_EQ] = ACTIONS(1402), - [anon_sym_BANG_EQ] = ACTIONS(1402), - [anon_sym_GT] = ACTIONS(1404), + [anon_sym_AMP_AMP] = ACTIONS(1408), + [anon_sym_PIPE_PIPE] = ACTIONS(1408), + [anon_sym_LT_LT] = ACTIONS(1406), + [anon_sym_GT_GT] = ACTIONS(1406), + [anon_sym_PLUS_EQ] = ACTIONS(1408), + [anon_sym_DASH_EQ] = ACTIONS(1408), + [anon_sym_STAR_EQ] = ACTIONS(1408), + [anon_sym_SLASH_EQ] = ACTIONS(1408), + [anon_sym_PERCENT_EQ] = ACTIONS(1408), + [anon_sym_CARET_EQ] = ACTIONS(1408), + [anon_sym_AMP_EQ] = ACTIONS(1408), + [anon_sym_PIPE_EQ] = ACTIONS(1408), + [anon_sym_LT_LT_EQ] = ACTIONS(1408), + [anon_sym_GT_GT_EQ] = ACTIONS(1408), + [anon_sym_EQ] = ACTIONS(1406), + [anon_sym_EQ_EQ] = ACTIONS(1408), + [anon_sym_BANG_EQ] = ACTIONS(1408), + [anon_sym_GT] = ACTIONS(1406), [anon_sym_LT] = ACTIONS(1404), - [anon_sym_GT_EQ] = ACTIONS(1402), - [anon_sym_LT_EQ] = ACTIONS(1402), - [anon_sym_DOT] = ACTIONS(1404), + [anon_sym_GT_EQ] = ACTIONS(1408), + [anon_sym_LT_EQ] = ACTIONS(1408), + [anon_sym_DOT] = ACTIONS(1406), [anon_sym_DOT_DOT] = ACTIONS(1404), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1402), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1402), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1408), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1408), [anon_sym_COLON_COLON] = ACTIONS(1402), [anon_sym_POUND] = ACTIONS(1402), [anon_sym_SQUOTE] = ACTIONS(1404), - [anon_sym_as] = ACTIONS(1404), + [anon_sym_as] = ACTIONS(1406), [anon_sym_async] = ACTIONS(1404), [anon_sym_break] = ACTIONS(1404), [anon_sym_const] = ACTIONS(1404), @@ -60192,35 +59982,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1402), [sym_float_literal] = ACTIONS(1402), }, - [390] = { + [388] = { [sym_attribute_item] = STATE(416), - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_self_parameter] = STATE(2751), - [sym_variadic_parameter] = STATE(2751), - [sym_parameter] = STATE(2751), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2526), - [sym_bracketed_type] = STATE(3520), - [sym_lifetime] = STATE(2985), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3198), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(2480), - [sym_scoped_identifier] = STATE(2216), - [sym_scoped_type_identifier] = STATE(2114), + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_self_parameter] = STATE(2927), + [sym_variadic_parameter] = STATE(2927), + [sym_parameter] = STATE(2927), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2556), + [sym_bracketed_type] = STATE(3535), + [sym_lifetime] = STATE(2931), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3115), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(2428), + [sym_scoped_identifier] = STATE(2082), + [sym_scoped_type_identifier] = STATE(2104), [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(3268), + [sym__pattern] = STATE(2389), [sym_tuple_pattern] = STATE(2079), [sym_slice_pattern] = STATE(2079), [sym_tuple_struct_pattern] = STATE(2079), @@ -60232,117 +60022,226 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_captured_pattern] = STATE(2079), [sym_reference_pattern] = STATE(2079), [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), - [sym_line_comment] = STATE(390), - [sym_block_comment] = STATE(390), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1326), - [anon_sym_RPAREN] = ACTIONS(1406), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1330), - [anon_sym_i8] = ACTIONS(1330), - [anon_sym_u16] = ACTIONS(1330), - [anon_sym_i16] = ACTIONS(1330), - [anon_sym_u32] = ACTIONS(1330), - [anon_sym_i32] = ACTIONS(1330), - [anon_sym_u64] = ACTIONS(1330), - [anon_sym_i64] = ACTIONS(1330), - [anon_sym_u128] = ACTIONS(1330), - [anon_sym_i128] = ACTIONS(1330), - [anon_sym_isize] = ACTIONS(1330), - [anon_sym_usize] = ACTIONS(1330), - [anon_sym_f32] = ACTIONS(1330), - [anon_sym_f64] = ACTIONS(1330), - [anon_sym_bool] = ACTIONS(1330), - [anon_sym_str] = ACTIONS(1330), - [anon_sym_char] = ACTIONS(1330), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1332), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1408), - [anon_sym_DOT_DOT] = ACTIONS(1272), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1274), - [anon_sym_COMMA] = ACTIONS(1410), - [anon_sym_COLON_COLON] = ACTIONS(1338), - [anon_sym_POUND] = ACTIONS(1280), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1340), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1342), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_ref] = ACTIONS(1300), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(1304), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1344), - [sym_super] = ACTIONS(1346), - [sym_crate] = ACTIONS(1346), - [sym_metavariable] = ACTIONS(1348), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym__literal_pattern] = STATE(2006), + [sym_negative_literal] = STATE(2009), + [sym_string_literal] = STATE(2009), + [sym_raw_string_literal] = STATE(2009), + [sym_boolean_literal] = STATE(2009), + [sym_line_comment] = STATE(388), + [sym_block_comment] = STATE(388), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(1332), + [anon_sym_LPAREN] = ACTIONS(1334), + [anon_sym_RPAREN] = ACTIONS(1410), + [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), + [anon_sym_u8] = ACTIONS(1338), + [anon_sym_i8] = ACTIONS(1338), + [anon_sym_u16] = ACTIONS(1338), + [anon_sym_i16] = ACTIONS(1338), + [anon_sym_u32] = ACTIONS(1338), + [anon_sym_i32] = ACTIONS(1338), + [anon_sym_u64] = ACTIONS(1338), + [anon_sym_i64] = ACTIONS(1338), + [anon_sym_u128] = ACTIONS(1338), + [anon_sym_i128] = ACTIONS(1338), + [anon_sym_isize] = ACTIONS(1338), + [anon_sym_usize] = ACTIONS(1338), + [anon_sym_f32] = ACTIONS(1338), + [anon_sym_f64] = ACTIONS(1338), + [anon_sym_bool] = ACTIONS(1338), + [anon_sym_str] = ACTIONS(1338), + [anon_sym_char] = ACTIONS(1338), + [anon_sym_DASH] = ACTIONS(1274), + [anon_sym_BANG] = ACTIONS(1276), + [anon_sym_AMP] = ACTIONS(1340), + [anon_sym_PIPE] = ACTIONS(1280), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1342), + [anon_sym_DOT_DOT] = ACTIONS(1284), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1286), + [anon_sym_COMMA] = ACTIONS(1412), + [anon_sym_COLON_COLON] = ACTIONS(1346), + [anon_sym_POUND] = ACTIONS(1292), + [anon_sym_SQUOTE] = ACTIONS(1294), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1348), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1350), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_ref] = ACTIONS(1312), + [anon_sym_dyn] = ACTIONS(1314), + [sym_mutable_specifier] = ACTIONS(1316), + [sym_integer_literal] = ACTIONS(1318), + [aux_sym_string_literal_token1] = ACTIONS(1320), + [sym_char_literal] = ACTIONS(1318), + [anon_sym_true] = ACTIONS(1322), + [anon_sym_false] = ACTIONS(1322), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1352), + [sym_super] = ACTIONS(1354), + [sym_crate] = ACTIONS(1354), + [sym_metavariable] = ACTIONS(1356), + [sym__raw_string_literal_start] = ACTIONS(1330), + [sym_float_literal] = ACTIONS(1318), }, - [391] = { - [sym_line_comment] = STATE(391), - [sym_block_comment] = STATE(391), - [ts_builtin_sym_end] = ACTIONS(1412), - [sym_identifier] = ACTIONS(1414), - [anon_sym_SEMI] = ACTIONS(1412), - [anon_sym_macro_rules_BANG] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1412), - [anon_sym_LBRACK] = ACTIONS(1412), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_RBRACE] = ACTIONS(1412), + [389] = { + [sym_line_comment] = STATE(389), + [sym_block_comment] = STATE(389), + [ts_builtin_sym_end] = ACTIONS(1414), + [sym_identifier] = ACTIONS(1416), + [anon_sym_SEMI] = ACTIONS(1414), + [anon_sym_macro_rules_BANG] = ACTIONS(1414), + [anon_sym_LPAREN] = ACTIONS(1414), + [anon_sym_LBRACK] = ACTIONS(1414), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_RBRACE] = ACTIONS(1414), [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_STAR] = ACTIONS(1414), - [anon_sym_QMARK] = ACTIONS(1418), - [anon_sym_u8] = ACTIONS(1414), - [anon_sym_i8] = ACTIONS(1414), - [anon_sym_u16] = ACTIONS(1414), - [anon_sym_i16] = ACTIONS(1414), - [anon_sym_u32] = ACTIONS(1414), - [anon_sym_i32] = ACTIONS(1414), - [anon_sym_u64] = ACTIONS(1414), - [anon_sym_i64] = ACTIONS(1414), - [anon_sym_u128] = ACTIONS(1414), - [anon_sym_i128] = ACTIONS(1414), - [anon_sym_isize] = ACTIONS(1414), - [anon_sym_usize] = ACTIONS(1414), - [anon_sym_f32] = ACTIONS(1414), - [anon_sym_f64] = ACTIONS(1414), - [anon_sym_bool] = ACTIONS(1414), - [anon_sym_str] = ACTIONS(1414), - [anon_sym_char] = ACTIONS(1414), - [anon_sym_DASH] = ACTIONS(1414), + [anon_sym_STAR] = ACTIONS(1416), + [anon_sym_QMARK] = ACTIONS(1414), + [anon_sym_u8] = ACTIONS(1416), + [anon_sym_i8] = ACTIONS(1416), + [anon_sym_u16] = ACTIONS(1416), + [anon_sym_i16] = ACTIONS(1416), + [anon_sym_u32] = ACTIONS(1416), + [anon_sym_i32] = ACTIONS(1416), + [anon_sym_u64] = ACTIONS(1416), + [anon_sym_i64] = ACTIONS(1416), + [anon_sym_u128] = ACTIONS(1416), + [anon_sym_i128] = ACTIONS(1416), + [anon_sym_isize] = ACTIONS(1416), + [anon_sym_usize] = ACTIONS(1416), + [anon_sym_f32] = ACTIONS(1416), + [anon_sym_f64] = ACTIONS(1416), + [anon_sym_bool] = ACTIONS(1416), + [anon_sym_str] = ACTIONS(1416), + [anon_sym_char] = ACTIONS(1416), + [anon_sym_DASH] = ACTIONS(1416), [anon_sym_SLASH] = ACTIONS(1416), [anon_sym_PERCENT] = ACTIONS(1416), [anon_sym_CARET] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(1414), - [anon_sym_AMP] = ACTIONS(1414), - [anon_sym_PIPE] = ACTIONS(1414), - [anon_sym_AMP_AMP] = ACTIONS(1418), - [anon_sym_PIPE_PIPE] = ACTIONS(1418), + [anon_sym_BANG] = ACTIONS(1416), + [anon_sym_AMP] = ACTIONS(1416), + [anon_sym_PIPE] = ACTIONS(1416), + [anon_sym_AMP_AMP] = ACTIONS(1414), + [anon_sym_PIPE_PIPE] = ACTIONS(1414), [anon_sym_LT_LT] = ACTIONS(1416), [anon_sym_GT_GT] = ACTIONS(1416), + [anon_sym_PLUS_EQ] = ACTIONS(1414), + [anon_sym_DASH_EQ] = ACTIONS(1414), + [anon_sym_STAR_EQ] = ACTIONS(1414), + [anon_sym_SLASH_EQ] = ACTIONS(1414), + [anon_sym_PERCENT_EQ] = ACTIONS(1414), + [anon_sym_CARET_EQ] = ACTIONS(1414), + [anon_sym_AMP_EQ] = ACTIONS(1414), + [anon_sym_PIPE_EQ] = ACTIONS(1414), + [anon_sym_LT_LT_EQ] = ACTIONS(1414), + [anon_sym_GT_GT_EQ] = ACTIONS(1414), + [anon_sym_EQ] = ACTIONS(1416), + [anon_sym_EQ_EQ] = ACTIONS(1414), + [anon_sym_BANG_EQ] = ACTIONS(1414), + [anon_sym_GT] = ACTIONS(1416), + [anon_sym_LT] = ACTIONS(1416), + [anon_sym_GT_EQ] = ACTIONS(1414), + [anon_sym_LT_EQ] = ACTIONS(1414), + [anon_sym_DOT] = ACTIONS(1416), + [anon_sym_DOT_DOT] = ACTIONS(1416), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1414), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1414), + [anon_sym_COLON_COLON] = ACTIONS(1414), + [anon_sym_POUND] = ACTIONS(1414), + [anon_sym_SQUOTE] = ACTIONS(1416), + [anon_sym_as] = ACTIONS(1416), + [anon_sym_async] = ACTIONS(1416), + [anon_sym_break] = ACTIONS(1416), + [anon_sym_const] = ACTIONS(1416), + [anon_sym_continue] = ACTIONS(1416), + [anon_sym_default] = ACTIONS(1416), + [anon_sym_enum] = ACTIONS(1416), + [anon_sym_fn] = ACTIONS(1416), + [anon_sym_for] = ACTIONS(1416), + [anon_sym_if] = ACTIONS(1416), + [anon_sym_impl] = ACTIONS(1416), + [anon_sym_let] = ACTIONS(1416), + [anon_sym_loop] = ACTIONS(1416), + [anon_sym_match] = ACTIONS(1416), + [anon_sym_mod] = ACTIONS(1416), + [anon_sym_pub] = ACTIONS(1416), + [anon_sym_return] = ACTIONS(1416), + [anon_sym_static] = ACTIONS(1416), + [anon_sym_struct] = ACTIONS(1416), + [anon_sym_trait] = ACTIONS(1416), + [anon_sym_type] = ACTIONS(1416), + [anon_sym_union] = ACTIONS(1416), + [anon_sym_unsafe] = ACTIONS(1416), + [anon_sym_use] = ACTIONS(1416), + [anon_sym_while] = ACTIONS(1416), + [anon_sym_extern] = ACTIONS(1416), + [anon_sym_yield] = ACTIONS(1416), + [anon_sym_move] = ACTIONS(1416), + [anon_sym_try] = ACTIONS(1416), + [sym_integer_literal] = ACTIONS(1414), + [aux_sym_string_literal_token1] = ACTIONS(1414), + [sym_char_literal] = ACTIONS(1414), + [anon_sym_true] = ACTIONS(1416), + [anon_sym_false] = ACTIONS(1416), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1416), + [sym_super] = ACTIONS(1416), + [sym_crate] = ACTIONS(1416), + [sym_metavariable] = ACTIONS(1414), + [sym__raw_string_literal_start] = ACTIONS(1414), + [sym_float_literal] = ACTIONS(1414), + }, + [390] = { + [sym_line_comment] = STATE(390), + [sym_block_comment] = STATE(390), + [ts_builtin_sym_end] = ACTIONS(1418), + [sym_identifier] = ACTIONS(1420), + [anon_sym_SEMI] = ACTIONS(1418), + [anon_sym_macro_rules_BANG] = ACTIONS(1418), + [anon_sym_LPAREN] = ACTIONS(1418), + [anon_sym_LBRACK] = ACTIONS(1418), + [anon_sym_LBRACE] = ACTIONS(1418), + [anon_sym_RBRACE] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1420), + [anon_sym_STAR] = ACTIONS(1420), + [anon_sym_QMARK] = ACTIONS(1418), + [anon_sym_u8] = ACTIONS(1420), + [anon_sym_i8] = ACTIONS(1420), + [anon_sym_u16] = ACTIONS(1420), + [anon_sym_i16] = ACTIONS(1420), + [anon_sym_u32] = ACTIONS(1420), + [anon_sym_i32] = ACTIONS(1420), + [anon_sym_u64] = ACTIONS(1420), + [anon_sym_i64] = ACTIONS(1420), + [anon_sym_u128] = ACTIONS(1420), + [anon_sym_i128] = ACTIONS(1420), + [anon_sym_isize] = ACTIONS(1420), + [anon_sym_usize] = ACTIONS(1420), + [anon_sym_f32] = ACTIONS(1420), + [anon_sym_f64] = ACTIONS(1420), + [anon_sym_bool] = ACTIONS(1420), + [anon_sym_str] = ACTIONS(1420), + [anon_sym_char] = ACTIONS(1420), + [anon_sym_DASH] = ACTIONS(1420), + [anon_sym_SLASH] = ACTIONS(1420), + [anon_sym_PERCENT] = ACTIONS(1420), + [anon_sym_CARET] = ACTIONS(1420), + [anon_sym_BANG] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1420), + [anon_sym_PIPE] = ACTIONS(1420), + [anon_sym_AMP_AMP] = ACTIONS(1418), + [anon_sym_PIPE_PIPE] = ACTIONS(1418), + [anon_sym_LT_LT] = ACTIONS(1420), + [anon_sym_GT_GT] = ACTIONS(1420), [anon_sym_PLUS_EQ] = ACTIONS(1418), [anon_sym_DASH_EQ] = ACTIONS(1418), [anon_sym_STAR_EQ] = ACTIONS(1418), @@ -60353,611 +60252,611 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_EQ] = ACTIONS(1418), [anon_sym_LT_LT_EQ] = ACTIONS(1418), [anon_sym_GT_GT_EQ] = ACTIONS(1418), - [anon_sym_EQ] = ACTIONS(1416), + [anon_sym_EQ] = ACTIONS(1420), [anon_sym_EQ_EQ] = ACTIONS(1418), [anon_sym_BANG_EQ] = ACTIONS(1418), - [anon_sym_GT] = ACTIONS(1416), - [anon_sym_LT] = ACTIONS(1414), + [anon_sym_GT] = ACTIONS(1420), + [anon_sym_LT] = ACTIONS(1420), [anon_sym_GT_EQ] = ACTIONS(1418), [anon_sym_LT_EQ] = ACTIONS(1418), - [anon_sym_DOT] = ACTIONS(1416), - [anon_sym_DOT_DOT] = ACTIONS(1414), + [anon_sym_DOT] = ACTIONS(1420), + [anon_sym_DOT_DOT] = ACTIONS(1420), [anon_sym_DOT_DOT_DOT] = ACTIONS(1418), [anon_sym_DOT_DOT_EQ] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(1412), - [anon_sym_POUND] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [anon_sym_as] = ACTIONS(1416), - [anon_sym_async] = ACTIONS(1414), - [anon_sym_break] = ACTIONS(1414), - [anon_sym_const] = ACTIONS(1414), - [anon_sym_continue] = ACTIONS(1414), - [anon_sym_default] = ACTIONS(1414), - [anon_sym_enum] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1414), - [anon_sym_for] = ACTIONS(1414), - [anon_sym_if] = ACTIONS(1414), - [anon_sym_impl] = ACTIONS(1414), - [anon_sym_let] = ACTIONS(1414), - [anon_sym_loop] = ACTIONS(1414), - [anon_sym_match] = ACTIONS(1414), - [anon_sym_mod] = ACTIONS(1414), - [anon_sym_pub] = ACTIONS(1414), - [anon_sym_return] = ACTIONS(1414), - [anon_sym_static] = ACTIONS(1414), - [anon_sym_struct] = ACTIONS(1414), - [anon_sym_trait] = ACTIONS(1414), - [anon_sym_type] = ACTIONS(1414), - [anon_sym_union] = ACTIONS(1414), - [anon_sym_unsafe] = ACTIONS(1414), - [anon_sym_use] = ACTIONS(1414), - [anon_sym_while] = ACTIONS(1414), - [anon_sym_extern] = ACTIONS(1414), - [anon_sym_yield] = ACTIONS(1414), - [anon_sym_move] = ACTIONS(1414), - [anon_sym_try] = ACTIONS(1414), - [sym_integer_literal] = ACTIONS(1412), - [aux_sym_string_literal_token1] = ACTIONS(1412), - [sym_char_literal] = ACTIONS(1412), - [anon_sym_true] = ACTIONS(1414), - [anon_sym_false] = ACTIONS(1414), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1414), - [sym_super] = ACTIONS(1414), - [sym_crate] = ACTIONS(1414), - [sym_metavariable] = ACTIONS(1412), - [sym__raw_string_literal_start] = ACTIONS(1412), - [sym_float_literal] = ACTIONS(1412), + [anon_sym_COLON_COLON] = ACTIONS(1418), + [anon_sym_POUND] = ACTIONS(1418), + [anon_sym_SQUOTE] = ACTIONS(1420), + [anon_sym_as] = ACTIONS(1420), + [anon_sym_async] = ACTIONS(1420), + [anon_sym_break] = ACTIONS(1420), + [anon_sym_const] = ACTIONS(1420), + [anon_sym_continue] = ACTIONS(1420), + [anon_sym_default] = ACTIONS(1420), + [anon_sym_enum] = ACTIONS(1420), + [anon_sym_fn] = ACTIONS(1420), + [anon_sym_for] = ACTIONS(1420), + [anon_sym_if] = ACTIONS(1420), + [anon_sym_impl] = ACTIONS(1420), + [anon_sym_let] = ACTIONS(1420), + [anon_sym_loop] = ACTIONS(1420), + [anon_sym_match] = ACTIONS(1420), + [anon_sym_mod] = ACTIONS(1420), + [anon_sym_pub] = ACTIONS(1420), + [anon_sym_return] = ACTIONS(1420), + [anon_sym_static] = ACTIONS(1420), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_trait] = ACTIONS(1420), + [anon_sym_type] = ACTIONS(1420), + [anon_sym_union] = ACTIONS(1420), + [anon_sym_unsafe] = ACTIONS(1420), + [anon_sym_use] = ACTIONS(1420), + [anon_sym_while] = ACTIONS(1420), + [anon_sym_extern] = ACTIONS(1420), + [anon_sym_yield] = ACTIONS(1420), + [anon_sym_move] = ACTIONS(1420), + [anon_sym_try] = ACTIONS(1420), + [sym_integer_literal] = ACTIONS(1418), + [aux_sym_string_literal_token1] = ACTIONS(1418), + [sym_char_literal] = ACTIONS(1418), + [anon_sym_true] = ACTIONS(1420), + [anon_sym_false] = ACTIONS(1420), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1420), + [sym_super] = ACTIONS(1420), + [sym_crate] = ACTIONS(1420), + [sym_metavariable] = ACTIONS(1418), + [sym__raw_string_literal_start] = ACTIONS(1418), + [sym_float_literal] = ACTIONS(1418), + }, + [391] = { + [sym_line_comment] = STATE(391), + [sym_block_comment] = STATE(391), + [ts_builtin_sym_end] = ACTIONS(1422), + [sym_identifier] = ACTIONS(1424), + [anon_sym_SEMI] = ACTIONS(1408), + [anon_sym_macro_rules_BANG] = ACTIONS(1422), + [anon_sym_LPAREN] = ACTIONS(1408), + [anon_sym_LBRACK] = ACTIONS(1408), + [anon_sym_LBRACE] = ACTIONS(1422), + [anon_sym_RBRACE] = ACTIONS(1408), + [anon_sym_PLUS] = ACTIONS(1406), + [anon_sym_STAR] = ACTIONS(1406), + [anon_sym_QMARK] = ACTIONS(1408), + [anon_sym_u8] = ACTIONS(1424), + [anon_sym_i8] = ACTIONS(1424), + [anon_sym_u16] = ACTIONS(1424), + [anon_sym_i16] = ACTIONS(1424), + [anon_sym_u32] = ACTIONS(1424), + [anon_sym_i32] = ACTIONS(1424), + [anon_sym_u64] = ACTIONS(1424), + [anon_sym_i64] = ACTIONS(1424), + [anon_sym_u128] = ACTIONS(1424), + [anon_sym_i128] = ACTIONS(1424), + [anon_sym_isize] = ACTIONS(1424), + [anon_sym_usize] = ACTIONS(1424), + [anon_sym_f32] = ACTIONS(1424), + [anon_sym_f64] = ACTIONS(1424), + [anon_sym_bool] = ACTIONS(1424), + [anon_sym_str] = ACTIONS(1424), + [anon_sym_char] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1406), + [anon_sym_SLASH] = ACTIONS(1406), + [anon_sym_PERCENT] = ACTIONS(1406), + [anon_sym_CARET] = ACTIONS(1406), + [anon_sym_BANG] = ACTIONS(1424), + [anon_sym_AMP] = ACTIONS(1406), + [anon_sym_PIPE] = ACTIONS(1406), + [anon_sym_AMP_AMP] = ACTIONS(1408), + [anon_sym_PIPE_PIPE] = ACTIONS(1408), + [anon_sym_LT_LT] = ACTIONS(1406), + [anon_sym_GT_GT] = ACTIONS(1406), + [anon_sym_PLUS_EQ] = ACTIONS(1408), + [anon_sym_DASH_EQ] = ACTIONS(1408), + [anon_sym_STAR_EQ] = ACTIONS(1408), + [anon_sym_SLASH_EQ] = ACTIONS(1408), + [anon_sym_PERCENT_EQ] = ACTIONS(1408), + [anon_sym_CARET_EQ] = ACTIONS(1408), + [anon_sym_AMP_EQ] = ACTIONS(1408), + [anon_sym_PIPE_EQ] = ACTIONS(1408), + [anon_sym_LT_LT_EQ] = ACTIONS(1408), + [anon_sym_GT_GT_EQ] = ACTIONS(1408), + [anon_sym_EQ] = ACTIONS(1406), + [anon_sym_EQ_EQ] = ACTIONS(1408), + [anon_sym_BANG_EQ] = ACTIONS(1408), + [anon_sym_GT] = ACTIONS(1406), + [anon_sym_LT] = ACTIONS(1406), + [anon_sym_GT_EQ] = ACTIONS(1408), + [anon_sym_LT_EQ] = ACTIONS(1408), + [anon_sym_DOT] = ACTIONS(1406), + [anon_sym_DOT_DOT] = ACTIONS(1406), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1408), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1408), + [anon_sym_COLON_COLON] = ACTIONS(1422), + [anon_sym_POUND] = ACTIONS(1422), + [anon_sym_SQUOTE] = ACTIONS(1424), + [anon_sym_as] = ACTIONS(1406), + [anon_sym_async] = ACTIONS(1424), + [anon_sym_break] = ACTIONS(1424), + [anon_sym_const] = ACTIONS(1424), + [anon_sym_continue] = ACTIONS(1424), + [anon_sym_default] = ACTIONS(1424), + [anon_sym_enum] = ACTIONS(1424), + [anon_sym_fn] = ACTIONS(1424), + [anon_sym_for] = ACTIONS(1424), + [anon_sym_if] = ACTIONS(1424), + [anon_sym_impl] = ACTIONS(1424), + [anon_sym_let] = ACTIONS(1424), + [anon_sym_loop] = ACTIONS(1424), + [anon_sym_match] = ACTIONS(1424), + [anon_sym_mod] = ACTIONS(1424), + [anon_sym_pub] = ACTIONS(1424), + [anon_sym_return] = ACTIONS(1424), + [anon_sym_static] = ACTIONS(1424), + [anon_sym_struct] = ACTIONS(1424), + [anon_sym_trait] = ACTIONS(1424), + [anon_sym_type] = ACTIONS(1424), + [anon_sym_union] = ACTIONS(1424), + [anon_sym_unsafe] = ACTIONS(1424), + [anon_sym_use] = ACTIONS(1424), + [anon_sym_while] = ACTIONS(1424), + [anon_sym_extern] = ACTIONS(1424), + [anon_sym_yield] = ACTIONS(1424), + [anon_sym_move] = ACTIONS(1424), + [anon_sym_try] = ACTIONS(1424), + [sym_integer_literal] = ACTIONS(1422), + [aux_sym_string_literal_token1] = ACTIONS(1422), + [sym_char_literal] = ACTIONS(1422), + [anon_sym_true] = ACTIONS(1424), + [anon_sym_false] = ACTIONS(1424), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1424), + [sym_super] = ACTIONS(1424), + [sym_crate] = ACTIONS(1424), + [sym_metavariable] = ACTIONS(1422), + [sym__raw_string_literal_start] = ACTIONS(1422), + [sym_float_literal] = ACTIONS(1422), }, [392] = { [sym_line_comment] = STATE(392), [sym_block_comment] = STATE(392), - [ts_builtin_sym_end] = ACTIONS(1420), - [sym_identifier] = ACTIONS(1422), - [anon_sym_SEMI] = ACTIONS(1420), - [anon_sym_macro_rules_BANG] = ACTIONS(1420), - [anon_sym_LPAREN] = ACTIONS(1420), - [anon_sym_LBRACK] = ACTIONS(1420), - [anon_sym_LBRACE] = ACTIONS(1420), - [anon_sym_RBRACE] = ACTIONS(1420), - [anon_sym_PLUS] = ACTIONS(1422), - [anon_sym_STAR] = ACTIONS(1422), - [anon_sym_QMARK] = ACTIONS(1420), - [anon_sym_u8] = ACTIONS(1422), - [anon_sym_i8] = ACTIONS(1422), - [anon_sym_u16] = ACTIONS(1422), - [anon_sym_i16] = ACTIONS(1422), - [anon_sym_u32] = ACTIONS(1422), - [anon_sym_i32] = ACTIONS(1422), - [anon_sym_u64] = ACTIONS(1422), - [anon_sym_i64] = ACTIONS(1422), - [anon_sym_u128] = ACTIONS(1422), - [anon_sym_i128] = ACTIONS(1422), - [anon_sym_isize] = ACTIONS(1422), - [anon_sym_usize] = ACTIONS(1422), - [anon_sym_f32] = ACTIONS(1422), - [anon_sym_f64] = ACTIONS(1422), - [anon_sym_bool] = ACTIONS(1422), - [anon_sym_str] = ACTIONS(1422), - [anon_sym_char] = ACTIONS(1422), - [anon_sym_DASH] = ACTIONS(1422), - [anon_sym_SLASH] = ACTIONS(1422), - [anon_sym_PERCENT] = ACTIONS(1422), - [anon_sym_CARET] = ACTIONS(1422), - [anon_sym_BANG] = ACTIONS(1422), - [anon_sym_AMP] = ACTIONS(1422), - [anon_sym_PIPE] = ACTIONS(1422), - [anon_sym_AMP_AMP] = ACTIONS(1420), - [anon_sym_PIPE_PIPE] = ACTIONS(1420), - [anon_sym_LT_LT] = ACTIONS(1422), - [anon_sym_GT_GT] = ACTIONS(1422), - [anon_sym_PLUS_EQ] = ACTIONS(1420), - [anon_sym_DASH_EQ] = ACTIONS(1420), - [anon_sym_STAR_EQ] = ACTIONS(1420), - [anon_sym_SLASH_EQ] = ACTIONS(1420), - [anon_sym_PERCENT_EQ] = ACTIONS(1420), - [anon_sym_CARET_EQ] = ACTIONS(1420), - [anon_sym_AMP_EQ] = ACTIONS(1420), - [anon_sym_PIPE_EQ] = ACTIONS(1420), - [anon_sym_LT_LT_EQ] = ACTIONS(1420), - [anon_sym_GT_GT_EQ] = ACTIONS(1420), - [anon_sym_EQ] = ACTIONS(1422), - [anon_sym_EQ_EQ] = ACTIONS(1420), - [anon_sym_BANG_EQ] = ACTIONS(1420), - [anon_sym_GT] = ACTIONS(1422), - [anon_sym_LT] = ACTIONS(1422), - [anon_sym_GT_EQ] = ACTIONS(1420), - [anon_sym_LT_EQ] = ACTIONS(1420), - [anon_sym_DOT] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1422), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1420), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1420), - [anon_sym_COLON_COLON] = ACTIONS(1420), - [anon_sym_POUND] = ACTIONS(1420), - [anon_sym_SQUOTE] = ACTIONS(1422), - [anon_sym_as] = ACTIONS(1422), - [anon_sym_async] = ACTIONS(1422), - [anon_sym_break] = ACTIONS(1422), - [anon_sym_const] = ACTIONS(1422), - [anon_sym_continue] = ACTIONS(1422), - [anon_sym_default] = ACTIONS(1422), - [anon_sym_enum] = ACTIONS(1422), - [anon_sym_fn] = ACTIONS(1422), - [anon_sym_for] = ACTIONS(1422), - [anon_sym_if] = ACTIONS(1422), - [anon_sym_impl] = ACTIONS(1422), - [anon_sym_let] = ACTIONS(1422), - [anon_sym_loop] = ACTIONS(1422), - [anon_sym_match] = ACTIONS(1422), - [anon_sym_mod] = ACTIONS(1422), - [anon_sym_pub] = ACTIONS(1422), - [anon_sym_return] = ACTIONS(1422), - [anon_sym_static] = ACTIONS(1422), - [anon_sym_struct] = ACTIONS(1422), - [anon_sym_trait] = ACTIONS(1422), - [anon_sym_type] = ACTIONS(1422), - [anon_sym_union] = ACTIONS(1422), - [anon_sym_unsafe] = ACTIONS(1422), - [anon_sym_use] = ACTIONS(1422), - [anon_sym_while] = ACTIONS(1422), - [anon_sym_extern] = ACTIONS(1422), - [anon_sym_yield] = ACTIONS(1422), - [anon_sym_move] = ACTIONS(1422), - [anon_sym_try] = ACTIONS(1422), - [sym_integer_literal] = ACTIONS(1420), - [aux_sym_string_literal_token1] = ACTIONS(1420), - [sym_char_literal] = ACTIONS(1420), - [anon_sym_true] = ACTIONS(1422), - [anon_sym_false] = ACTIONS(1422), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1422), - [sym_super] = ACTIONS(1422), - [sym_crate] = ACTIONS(1422), - [sym_metavariable] = ACTIONS(1420), - [sym__raw_string_literal_start] = ACTIONS(1420), - [sym_float_literal] = ACTIONS(1420), + [ts_builtin_sym_end] = ACTIONS(1426), + [sym_identifier] = ACTIONS(1428), + [anon_sym_SEMI] = ACTIONS(1426), + [anon_sym_macro_rules_BANG] = ACTIONS(1426), + [anon_sym_LPAREN] = ACTIONS(1426), + [anon_sym_LBRACK] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1426), + [anon_sym_RBRACE] = ACTIONS(1426), + [anon_sym_PLUS] = ACTIONS(1428), + [anon_sym_STAR] = ACTIONS(1428), + [anon_sym_QMARK] = ACTIONS(1426), + [anon_sym_u8] = ACTIONS(1428), + [anon_sym_i8] = ACTIONS(1428), + [anon_sym_u16] = ACTIONS(1428), + [anon_sym_i16] = ACTIONS(1428), + [anon_sym_u32] = ACTIONS(1428), + [anon_sym_i32] = ACTIONS(1428), + [anon_sym_u64] = ACTIONS(1428), + [anon_sym_i64] = ACTIONS(1428), + [anon_sym_u128] = ACTIONS(1428), + [anon_sym_i128] = ACTIONS(1428), + [anon_sym_isize] = ACTIONS(1428), + [anon_sym_usize] = ACTIONS(1428), + [anon_sym_f32] = ACTIONS(1428), + [anon_sym_f64] = ACTIONS(1428), + [anon_sym_bool] = ACTIONS(1428), + [anon_sym_str] = ACTIONS(1428), + [anon_sym_char] = ACTIONS(1428), + [anon_sym_DASH] = ACTIONS(1428), + [anon_sym_SLASH] = ACTIONS(1428), + [anon_sym_PERCENT] = ACTIONS(1428), + [anon_sym_CARET] = ACTIONS(1428), + [anon_sym_BANG] = ACTIONS(1428), + [anon_sym_AMP] = ACTIONS(1428), + [anon_sym_PIPE] = ACTIONS(1428), + [anon_sym_AMP_AMP] = ACTIONS(1426), + [anon_sym_PIPE_PIPE] = ACTIONS(1426), + [anon_sym_LT_LT] = ACTIONS(1428), + [anon_sym_GT_GT] = ACTIONS(1428), + [anon_sym_PLUS_EQ] = ACTIONS(1426), + [anon_sym_DASH_EQ] = ACTIONS(1426), + [anon_sym_STAR_EQ] = ACTIONS(1426), + [anon_sym_SLASH_EQ] = ACTIONS(1426), + [anon_sym_PERCENT_EQ] = ACTIONS(1426), + [anon_sym_CARET_EQ] = ACTIONS(1426), + [anon_sym_AMP_EQ] = ACTIONS(1426), + [anon_sym_PIPE_EQ] = ACTIONS(1426), + [anon_sym_LT_LT_EQ] = ACTIONS(1426), + [anon_sym_GT_GT_EQ] = ACTIONS(1426), + [anon_sym_EQ] = ACTIONS(1428), + [anon_sym_EQ_EQ] = ACTIONS(1426), + [anon_sym_BANG_EQ] = ACTIONS(1426), + [anon_sym_GT] = ACTIONS(1428), + [anon_sym_LT] = ACTIONS(1428), + [anon_sym_GT_EQ] = ACTIONS(1426), + [anon_sym_LT_EQ] = ACTIONS(1426), + [anon_sym_DOT] = ACTIONS(1428), + [anon_sym_DOT_DOT] = ACTIONS(1428), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1426), + [anon_sym_COLON_COLON] = ACTIONS(1426), + [anon_sym_POUND] = ACTIONS(1426), + [anon_sym_SQUOTE] = ACTIONS(1428), + [anon_sym_as] = ACTIONS(1428), + [anon_sym_async] = ACTIONS(1428), + [anon_sym_break] = ACTIONS(1428), + [anon_sym_const] = ACTIONS(1428), + [anon_sym_continue] = ACTIONS(1428), + [anon_sym_default] = ACTIONS(1428), + [anon_sym_enum] = ACTIONS(1428), + [anon_sym_fn] = ACTIONS(1428), + [anon_sym_for] = ACTIONS(1428), + [anon_sym_if] = ACTIONS(1428), + [anon_sym_impl] = ACTIONS(1428), + [anon_sym_let] = ACTIONS(1428), + [anon_sym_loop] = ACTIONS(1428), + [anon_sym_match] = ACTIONS(1428), + [anon_sym_mod] = ACTIONS(1428), + [anon_sym_pub] = ACTIONS(1428), + [anon_sym_return] = ACTIONS(1428), + [anon_sym_static] = ACTIONS(1428), + [anon_sym_struct] = ACTIONS(1428), + [anon_sym_trait] = ACTIONS(1428), + [anon_sym_type] = ACTIONS(1428), + [anon_sym_union] = ACTIONS(1428), + [anon_sym_unsafe] = ACTIONS(1428), + [anon_sym_use] = ACTIONS(1428), + [anon_sym_while] = ACTIONS(1428), + [anon_sym_extern] = ACTIONS(1428), + [anon_sym_yield] = ACTIONS(1428), + [anon_sym_move] = ACTIONS(1428), + [anon_sym_try] = ACTIONS(1428), + [sym_integer_literal] = ACTIONS(1426), + [aux_sym_string_literal_token1] = ACTIONS(1426), + [sym_char_literal] = ACTIONS(1426), + [anon_sym_true] = ACTIONS(1428), + [anon_sym_false] = ACTIONS(1428), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1428), + [sym_super] = ACTIONS(1428), + [sym_crate] = ACTIONS(1428), + [sym_metavariable] = ACTIONS(1426), + [sym__raw_string_literal_start] = ACTIONS(1426), + [sym_float_literal] = ACTIONS(1426), }, [393] = { [sym_line_comment] = STATE(393), [sym_block_comment] = STATE(393), - [ts_builtin_sym_end] = ACTIONS(1424), - [sym_identifier] = ACTIONS(1426), - [anon_sym_SEMI] = ACTIONS(1424), - [anon_sym_macro_rules_BANG] = ACTIONS(1424), - [anon_sym_LPAREN] = ACTIONS(1424), - [anon_sym_LBRACK] = ACTIONS(1424), - [anon_sym_LBRACE] = ACTIONS(1424), - [anon_sym_RBRACE] = ACTIONS(1424), - [anon_sym_PLUS] = ACTIONS(1426), - [anon_sym_STAR] = ACTIONS(1426), - [anon_sym_QMARK] = ACTIONS(1424), - [anon_sym_u8] = ACTIONS(1426), - [anon_sym_i8] = ACTIONS(1426), - [anon_sym_u16] = ACTIONS(1426), - [anon_sym_i16] = ACTIONS(1426), - [anon_sym_u32] = ACTIONS(1426), - [anon_sym_i32] = ACTIONS(1426), - [anon_sym_u64] = ACTIONS(1426), - [anon_sym_i64] = ACTIONS(1426), - [anon_sym_u128] = ACTIONS(1426), - [anon_sym_i128] = ACTIONS(1426), - [anon_sym_isize] = ACTIONS(1426), - [anon_sym_usize] = ACTIONS(1426), - [anon_sym_f32] = ACTIONS(1426), - [anon_sym_f64] = ACTIONS(1426), - [anon_sym_bool] = ACTIONS(1426), - [anon_sym_str] = ACTIONS(1426), - [anon_sym_char] = ACTIONS(1426), - [anon_sym_DASH] = ACTIONS(1426), - [anon_sym_SLASH] = ACTIONS(1426), - [anon_sym_PERCENT] = ACTIONS(1426), - [anon_sym_CARET] = ACTIONS(1426), - [anon_sym_BANG] = ACTIONS(1426), - [anon_sym_AMP] = ACTIONS(1426), - [anon_sym_PIPE] = ACTIONS(1426), - [anon_sym_AMP_AMP] = ACTIONS(1424), - [anon_sym_PIPE_PIPE] = ACTIONS(1424), - [anon_sym_LT_LT] = ACTIONS(1426), - [anon_sym_GT_GT] = ACTIONS(1426), - [anon_sym_PLUS_EQ] = ACTIONS(1424), - [anon_sym_DASH_EQ] = ACTIONS(1424), - [anon_sym_STAR_EQ] = ACTIONS(1424), - [anon_sym_SLASH_EQ] = ACTIONS(1424), - [anon_sym_PERCENT_EQ] = ACTIONS(1424), - [anon_sym_CARET_EQ] = ACTIONS(1424), - [anon_sym_AMP_EQ] = ACTIONS(1424), - [anon_sym_PIPE_EQ] = ACTIONS(1424), - [anon_sym_LT_LT_EQ] = ACTIONS(1424), - [anon_sym_GT_GT_EQ] = ACTIONS(1424), - [anon_sym_EQ] = ACTIONS(1426), - [anon_sym_EQ_EQ] = ACTIONS(1424), - [anon_sym_BANG_EQ] = ACTIONS(1424), - [anon_sym_GT] = ACTIONS(1426), - [anon_sym_LT] = ACTIONS(1426), - [anon_sym_GT_EQ] = ACTIONS(1424), - [anon_sym_LT_EQ] = ACTIONS(1424), - [anon_sym_DOT] = ACTIONS(1426), - [anon_sym_DOT_DOT] = ACTIONS(1426), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1424), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1424), - [anon_sym_COLON_COLON] = ACTIONS(1424), - [anon_sym_POUND] = ACTIONS(1424), - [anon_sym_SQUOTE] = ACTIONS(1426), - [anon_sym_as] = ACTIONS(1426), - [anon_sym_async] = ACTIONS(1426), - [anon_sym_break] = ACTIONS(1426), - [anon_sym_const] = ACTIONS(1426), - [anon_sym_continue] = ACTIONS(1426), - [anon_sym_default] = ACTIONS(1426), - [anon_sym_enum] = ACTIONS(1426), - [anon_sym_fn] = ACTIONS(1426), - [anon_sym_for] = ACTIONS(1426), - [anon_sym_if] = ACTIONS(1426), - [anon_sym_impl] = ACTIONS(1426), - [anon_sym_let] = ACTIONS(1426), - [anon_sym_loop] = ACTIONS(1426), - [anon_sym_match] = ACTIONS(1426), - [anon_sym_mod] = ACTIONS(1426), - [anon_sym_pub] = ACTIONS(1426), - [anon_sym_return] = ACTIONS(1426), - [anon_sym_static] = ACTIONS(1426), - [anon_sym_struct] = ACTIONS(1426), - [anon_sym_trait] = ACTIONS(1426), - [anon_sym_type] = ACTIONS(1426), - [anon_sym_union] = ACTIONS(1426), - [anon_sym_unsafe] = ACTIONS(1426), - [anon_sym_use] = ACTIONS(1426), - [anon_sym_while] = ACTIONS(1426), - [anon_sym_extern] = ACTIONS(1426), - [anon_sym_yield] = ACTIONS(1426), - [anon_sym_move] = ACTIONS(1426), - [anon_sym_try] = ACTIONS(1426), - [sym_integer_literal] = ACTIONS(1424), - [aux_sym_string_literal_token1] = ACTIONS(1424), - [sym_char_literal] = ACTIONS(1424), - [anon_sym_true] = ACTIONS(1426), - [anon_sym_false] = ACTIONS(1426), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1426), - [sym_super] = ACTIONS(1426), - [sym_crate] = ACTIONS(1426), - [sym_metavariable] = ACTIONS(1424), - [sym__raw_string_literal_start] = ACTIONS(1424), - [sym_float_literal] = ACTIONS(1424), + [ts_builtin_sym_end] = ACTIONS(1430), + [sym_identifier] = ACTIONS(1432), + [anon_sym_SEMI] = ACTIONS(1430), + [anon_sym_macro_rules_BANG] = ACTIONS(1430), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1430), + [anon_sym_RBRACE] = ACTIONS(1430), + [anon_sym_PLUS] = ACTIONS(1432), + [anon_sym_STAR] = ACTIONS(1432), + [anon_sym_QMARK] = ACTIONS(1430), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u128] = ACTIONS(1432), + [anon_sym_i128] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_str] = ACTIONS(1432), + [anon_sym_char] = ACTIONS(1432), + [anon_sym_DASH] = ACTIONS(1432), + [anon_sym_SLASH] = ACTIONS(1432), + [anon_sym_PERCENT] = ACTIONS(1432), + [anon_sym_CARET] = ACTIONS(1432), + [anon_sym_BANG] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1432), + [anon_sym_PIPE] = ACTIONS(1432), + [anon_sym_AMP_AMP] = ACTIONS(1430), + [anon_sym_PIPE_PIPE] = ACTIONS(1430), + [anon_sym_LT_LT] = ACTIONS(1432), + [anon_sym_GT_GT] = ACTIONS(1432), + [anon_sym_PLUS_EQ] = ACTIONS(1430), + [anon_sym_DASH_EQ] = ACTIONS(1430), + [anon_sym_STAR_EQ] = ACTIONS(1430), + [anon_sym_SLASH_EQ] = ACTIONS(1430), + [anon_sym_PERCENT_EQ] = ACTIONS(1430), + [anon_sym_CARET_EQ] = ACTIONS(1430), + [anon_sym_AMP_EQ] = ACTIONS(1430), + [anon_sym_PIPE_EQ] = ACTIONS(1430), + [anon_sym_LT_LT_EQ] = ACTIONS(1430), + [anon_sym_GT_GT_EQ] = ACTIONS(1430), + [anon_sym_EQ] = ACTIONS(1432), + [anon_sym_EQ_EQ] = ACTIONS(1430), + [anon_sym_BANG_EQ] = ACTIONS(1430), + [anon_sym_GT] = ACTIONS(1432), + [anon_sym_LT] = ACTIONS(1432), + [anon_sym_GT_EQ] = ACTIONS(1430), + [anon_sym_LT_EQ] = ACTIONS(1430), + [anon_sym_DOT] = ACTIONS(1432), + [anon_sym_DOT_DOT] = ACTIONS(1432), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1430), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1430), + [anon_sym_COLON_COLON] = ACTIONS(1430), + [anon_sym_POUND] = ACTIONS(1430), + [anon_sym_SQUOTE] = ACTIONS(1432), + [anon_sym_as] = ACTIONS(1432), + [anon_sym_async] = ACTIONS(1432), + [anon_sym_break] = ACTIONS(1432), + [anon_sym_const] = ACTIONS(1432), + [anon_sym_continue] = ACTIONS(1432), + [anon_sym_default] = ACTIONS(1432), + [anon_sym_enum] = ACTIONS(1432), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_for] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(1432), + [anon_sym_impl] = ACTIONS(1432), + [anon_sym_let] = ACTIONS(1432), + [anon_sym_loop] = ACTIONS(1432), + [anon_sym_match] = ACTIONS(1432), + [anon_sym_mod] = ACTIONS(1432), + [anon_sym_pub] = ACTIONS(1432), + [anon_sym_return] = ACTIONS(1432), + [anon_sym_static] = ACTIONS(1432), + [anon_sym_struct] = ACTIONS(1432), + [anon_sym_trait] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_union] = ACTIONS(1432), + [anon_sym_unsafe] = ACTIONS(1432), + [anon_sym_use] = ACTIONS(1432), + [anon_sym_while] = ACTIONS(1432), + [anon_sym_extern] = ACTIONS(1432), + [anon_sym_yield] = ACTIONS(1432), + [anon_sym_move] = ACTIONS(1432), + [anon_sym_try] = ACTIONS(1432), + [sym_integer_literal] = ACTIONS(1430), + [aux_sym_string_literal_token1] = ACTIONS(1430), + [sym_char_literal] = ACTIONS(1430), + [anon_sym_true] = ACTIONS(1432), + [anon_sym_false] = ACTIONS(1432), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1432), + [sym_super] = ACTIONS(1432), + [sym_crate] = ACTIONS(1432), + [sym_metavariable] = ACTIONS(1430), + [sym__raw_string_literal_start] = ACTIONS(1430), + [sym_float_literal] = ACTIONS(1430), }, [394] = { [sym_line_comment] = STATE(394), [sym_block_comment] = STATE(394), - [ts_builtin_sym_end] = ACTIONS(1428), - [sym_identifier] = ACTIONS(1430), - [anon_sym_SEMI] = ACTIONS(1428), - [anon_sym_macro_rules_BANG] = ACTIONS(1428), - [anon_sym_LPAREN] = ACTIONS(1428), - [anon_sym_LBRACK] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1428), - [anon_sym_RBRACE] = ACTIONS(1428), - [anon_sym_PLUS] = ACTIONS(1430), - [anon_sym_STAR] = ACTIONS(1430), - [anon_sym_QMARK] = ACTIONS(1428), - [anon_sym_u8] = ACTIONS(1430), - [anon_sym_i8] = ACTIONS(1430), - [anon_sym_u16] = ACTIONS(1430), - [anon_sym_i16] = ACTIONS(1430), - [anon_sym_u32] = ACTIONS(1430), - [anon_sym_i32] = ACTIONS(1430), - [anon_sym_u64] = ACTIONS(1430), - [anon_sym_i64] = ACTIONS(1430), - [anon_sym_u128] = ACTIONS(1430), - [anon_sym_i128] = ACTIONS(1430), - [anon_sym_isize] = ACTIONS(1430), - [anon_sym_usize] = ACTIONS(1430), - [anon_sym_f32] = ACTIONS(1430), - [anon_sym_f64] = ACTIONS(1430), - [anon_sym_bool] = ACTIONS(1430), - [anon_sym_str] = ACTIONS(1430), - [anon_sym_char] = ACTIONS(1430), - [anon_sym_DASH] = ACTIONS(1430), - [anon_sym_SLASH] = ACTIONS(1430), - [anon_sym_PERCENT] = ACTIONS(1430), - [anon_sym_CARET] = ACTIONS(1430), - [anon_sym_BANG] = ACTIONS(1430), - [anon_sym_AMP] = ACTIONS(1430), - [anon_sym_PIPE] = ACTIONS(1430), - [anon_sym_AMP_AMP] = ACTIONS(1428), - [anon_sym_PIPE_PIPE] = ACTIONS(1428), - [anon_sym_LT_LT] = ACTIONS(1430), - [anon_sym_GT_GT] = ACTIONS(1430), - [anon_sym_PLUS_EQ] = ACTIONS(1428), - [anon_sym_DASH_EQ] = ACTIONS(1428), - [anon_sym_STAR_EQ] = ACTIONS(1428), - [anon_sym_SLASH_EQ] = ACTIONS(1428), - [anon_sym_PERCENT_EQ] = ACTIONS(1428), - [anon_sym_CARET_EQ] = ACTIONS(1428), - [anon_sym_AMP_EQ] = ACTIONS(1428), - [anon_sym_PIPE_EQ] = ACTIONS(1428), - [anon_sym_LT_LT_EQ] = ACTIONS(1428), - [anon_sym_GT_GT_EQ] = ACTIONS(1428), - [anon_sym_EQ] = ACTIONS(1430), - [anon_sym_EQ_EQ] = ACTIONS(1428), - [anon_sym_BANG_EQ] = ACTIONS(1428), - [anon_sym_GT] = ACTIONS(1430), - [anon_sym_LT] = ACTIONS(1430), - [anon_sym_GT_EQ] = ACTIONS(1428), - [anon_sym_LT_EQ] = ACTIONS(1428), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_DOT_DOT] = ACTIONS(1430), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1428), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1428), - [anon_sym_COLON_COLON] = ACTIONS(1428), - [anon_sym_POUND] = ACTIONS(1428), - [anon_sym_SQUOTE] = ACTIONS(1430), - [anon_sym_as] = ACTIONS(1430), - [anon_sym_async] = ACTIONS(1430), - [anon_sym_break] = ACTIONS(1430), - [anon_sym_const] = ACTIONS(1430), - [anon_sym_continue] = ACTIONS(1430), - [anon_sym_default] = ACTIONS(1430), - [anon_sym_enum] = ACTIONS(1430), - [anon_sym_fn] = ACTIONS(1430), - [anon_sym_for] = ACTIONS(1430), - [anon_sym_if] = ACTIONS(1430), - [anon_sym_impl] = ACTIONS(1430), - [anon_sym_let] = ACTIONS(1430), - [anon_sym_loop] = ACTIONS(1430), - [anon_sym_match] = ACTIONS(1430), - [anon_sym_mod] = ACTIONS(1430), - [anon_sym_pub] = ACTIONS(1430), - [anon_sym_return] = ACTIONS(1430), - [anon_sym_static] = ACTIONS(1430), - [anon_sym_struct] = ACTIONS(1430), - [anon_sym_trait] = ACTIONS(1430), - [anon_sym_type] = ACTIONS(1430), - [anon_sym_union] = ACTIONS(1430), - [anon_sym_unsafe] = ACTIONS(1430), - [anon_sym_use] = ACTIONS(1430), - [anon_sym_while] = ACTIONS(1430), - [anon_sym_extern] = ACTIONS(1430), - [anon_sym_yield] = ACTIONS(1430), - [anon_sym_move] = ACTIONS(1430), - [anon_sym_try] = ACTIONS(1430), - [sym_integer_literal] = ACTIONS(1428), - [aux_sym_string_literal_token1] = ACTIONS(1428), - [sym_char_literal] = ACTIONS(1428), - [anon_sym_true] = ACTIONS(1430), - [anon_sym_false] = ACTIONS(1430), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1430), - [sym_super] = ACTIONS(1430), - [sym_crate] = ACTIONS(1430), - [sym_metavariable] = ACTIONS(1428), - [sym__raw_string_literal_start] = ACTIONS(1428), - [sym_float_literal] = ACTIONS(1428), + [ts_builtin_sym_end] = ACTIONS(1434), + [sym_identifier] = ACTIONS(1436), + [anon_sym_SEMI] = ACTIONS(1434), + [anon_sym_macro_rules_BANG] = ACTIONS(1434), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_LBRACK] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(1434), + [anon_sym_RBRACE] = ACTIONS(1434), + [anon_sym_PLUS] = ACTIONS(1436), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_QMARK] = ACTIONS(1434), + [anon_sym_u8] = ACTIONS(1436), + [anon_sym_i8] = ACTIONS(1436), + [anon_sym_u16] = ACTIONS(1436), + [anon_sym_i16] = ACTIONS(1436), + [anon_sym_u32] = ACTIONS(1436), + [anon_sym_i32] = ACTIONS(1436), + [anon_sym_u64] = ACTIONS(1436), + [anon_sym_i64] = ACTIONS(1436), + [anon_sym_u128] = ACTIONS(1436), + [anon_sym_i128] = ACTIONS(1436), + [anon_sym_isize] = ACTIONS(1436), + [anon_sym_usize] = ACTIONS(1436), + [anon_sym_f32] = ACTIONS(1436), + [anon_sym_f64] = ACTIONS(1436), + [anon_sym_bool] = ACTIONS(1436), + [anon_sym_str] = ACTIONS(1436), + [anon_sym_char] = ACTIONS(1436), + [anon_sym_DASH] = ACTIONS(1436), + [anon_sym_SLASH] = ACTIONS(1436), + [anon_sym_PERCENT] = ACTIONS(1436), + [anon_sym_CARET] = ACTIONS(1436), + [anon_sym_BANG] = ACTIONS(1436), + [anon_sym_AMP] = ACTIONS(1436), + [anon_sym_PIPE] = ACTIONS(1436), + [anon_sym_AMP_AMP] = ACTIONS(1434), + [anon_sym_PIPE_PIPE] = ACTIONS(1434), + [anon_sym_LT_LT] = ACTIONS(1436), + [anon_sym_GT_GT] = ACTIONS(1436), + [anon_sym_PLUS_EQ] = ACTIONS(1434), + [anon_sym_DASH_EQ] = ACTIONS(1434), + [anon_sym_STAR_EQ] = ACTIONS(1434), + [anon_sym_SLASH_EQ] = ACTIONS(1434), + [anon_sym_PERCENT_EQ] = ACTIONS(1434), + [anon_sym_CARET_EQ] = ACTIONS(1434), + [anon_sym_AMP_EQ] = ACTIONS(1434), + [anon_sym_PIPE_EQ] = ACTIONS(1434), + [anon_sym_LT_LT_EQ] = ACTIONS(1434), + [anon_sym_GT_GT_EQ] = ACTIONS(1434), + [anon_sym_EQ] = ACTIONS(1436), + [anon_sym_EQ_EQ] = ACTIONS(1434), + [anon_sym_BANG_EQ] = ACTIONS(1434), + [anon_sym_GT] = ACTIONS(1436), + [anon_sym_LT] = ACTIONS(1436), + [anon_sym_GT_EQ] = ACTIONS(1434), + [anon_sym_LT_EQ] = ACTIONS(1434), + [anon_sym_DOT] = ACTIONS(1436), + [anon_sym_DOT_DOT] = ACTIONS(1436), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1434), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1434), + [anon_sym_COLON_COLON] = ACTIONS(1434), + [anon_sym_POUND] = ACTIONS(1434), + [anon_sym_SQUOTE] = ACTIONS(1436), + [anon_sym_as] = ACTIONS(1436), + [anon_sym_async] = ACTIONS(1436), + [anon_sym_break] = ACTIONS(1436), + [anon_sym_const] = ACTIONS(1436), + [anon_sym_continue] = ACTIONS(1436), + [anon_sym_default] = ACTIONS(1436), + [anon_sym_enum] = ACTIONS(1436), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_for] = ACTIONS(1436), + [anon_sym_if] = ACTIONS(1436), + [anon_sym_impl] = ACTIONS(1436), + [anon_sym_let] = ACTIONS(1436), + [anon_sym_loop] = ACTIONS(1436), + [anon_sym_match] = ACTIONS(1436), + [anon_sym_mod] = ACTIONS(1436), + [anon_sym_pub] = ACTIONS(1436), + [anon_sym_return] = ACTIONS(1436), + [anon_sym_static] = ACTIONS(1436), + [anon_sym_struct] = ACTIONS(1436), + [anon_sym_trait] = ACTIONS(1436), + [anon_sym_type] = ACTIONS(1436), + [anon_sym_union] = ACTIONS(1436), + [anon_sym_unsafe] = ACTIONS(1436), + [anon_sym_use] = ACTIONS(1436), + [anon_sym_while] = ACTIONS(1436), + [anon_sym_extern] = ACTIONS(1436), + [anon_sym_yield] = ACTIONS(1436), + [anon_sym_move] = ACTIONS(1436), + [anon_sym_try] = ACTIONS(1436), + [sym_integer_literal] = ACTIONS(1434), + [aux_sym_string_literal_token1] = ACTIONS(1434), + [sym_char_literal] = ACTIONS(1434), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1436), + [sym_super] = ACTIONS(1436), + [sym_crate] = ACTIONS(1436), + [sym_metavariable] = ACTIONS(1434), + [sym__raw_string_literal_start] = ACTIONS(1434), + [sym_float_literal] = ACTIONS(1434), }, [395] = { [sym_line_comment] = STATE(395), [sym_block_comment] = STATE(395), - [ts_builtin_sym_end] = ACTIONS(1432), - [sym_identifier] = ACTIONS(1434), - [anon_sym_SEMI] = ACTIONS(1418), - [anon_sym_macro_rules_BANG] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1418), - [anon_sym_LBRACK] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_RBRACE] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_STAR] = ACTIONS(1416), - [anon_sym_QMARK] = ACTIONS(1418), - [anon_sym_u8] = ACTIONS(1434), - [anon_sym_i8] = ACTIONS(1434), - [anon_sym_u16] = ACTIONS(1434), - [anon_sym_i16] = ACTIONS(1434), - [anon_sym_u32] = ACTIONS(1434), - [anon_sym_i32] = ACTIONS(1434), - [anon_sym_u64] = ACTIONS(1434), - [anon_sym_i64] = ACTIONS(1434), - [anon_sym_u128] = ACTIONS(1434), - [anon_sym_i128] = ACTIONS(1434), - [anon_sym_isize] = ACTIONS(1434), - [anon_sym_usize] = ACTIONS(1434), - [anon_sym_f32] = ACTIONS(1434), - [anon_sym_f64] = ACTIONS(1434), - [anon_sym_bool] = ACTIONS(1434), - [anon_sym_str] = ACTIONS(1434), - [anon_sym_char] = ACTIONS(1434), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_SLASH] = ACTIONS(1416), - [anon_sym_PERCENT] = ACTIONS(1416), - [anon_sym_CARET] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(1434), - [anon_sym_AMP] = ACTIONS(1416), - [anon_sym_PIPE] = ACTIONS(1416), - [anon_sym_AMP_AMP] = ACTIONS(1418), - [anon_sym_PIPE_PIPE] = ACTIONS(1418), - [anon_sym_LT_LT] = ACTIONS(1416), - [anon_sym_GT_GT] = ACTIONS(1416), - [anon_sym_PLUS_EQ] = ACTIONS(1418), - [anon_sym_DASH_EQ] = ACTIONS(1418), - [anon_sym_STAR_EQ] = ACTIONS(1418), - [anon_sym_SLASH_EQ] = ACTIONS(1418), - [anon_sym_PERCENT_EQ] = ACTIONS(1418), - [anon_sym_CARET_EQ] = ACTIONS(1418), - [anon_sym_AMP_EQ] = ACTIONS(1418), - [anon_sym_PIPE_EQ] = ACTIONS(1418), - [anon_sym_LT_LT_EQ] = ACTIONS(1418), - [anon_sym_GT_GT_EQ] = ACTIONS(1418), - [anon_sym_EQ] = ACTIONS(1416), - [anon_sym_EQ_EQ] = ACTIONS(1418), - [anon_sym_BANG_EQ] = ACTIONS(1418), - [anon_sym_GT] = ACTIONS(1416), - [anon_sym_LT] = ACTIONS(1416), - [anon_sym_GT_EQ] = ACTIONS(1418), - [anon_sym_LT_EQ] = ACTIONS(1418), - [anon_sym_DOT] = ACTIONS(1416), - [anon_sym_DOT_DOT] = ACTIONS(1416), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1418), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(1432), - [anon_sym_POUND] = ACTIONS(1432), - [anon_sym_SQUOTE] = ACTIONS(1434), - [anon_sym_as] = ACTIONS(1416), - [anon_sym_async] = ACTIONS(1434), - [anon_sym_break] = ACTIONS(1434), - [anon_sym_const] = ACTIONS(1434), - [anon_sym_continue] = ACTIONS(1434), - [anon_sym_default] = ACTIONS(1434), - [anon_sym_enum] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_for] = ACTIONS(1434), - [anon_sym_if] = ACTIONS(1434), - [anon_sym_impl] = ACTIONS(1434), - [anon_sym_let] = ACTIONS(1434), - [anon_sym_loop] = ACTIONS(1434), - [anon_sym_match] = ACTIONS(1434), - [anon_sym_mod] = ACTIONS(1434), - [anon_sym_pub] = ACTIONS(1434), - [anon_sym_return] = ACTIONS(1434), - [anon_sym_static] = ACTIONS(1434), - [anon_sym_struct] = ACTIONS(1434), - [anon_sym_trait] = ACTIONS(1434), - [anon_sym_type] = ACTIONS(1434), - [anon_sym_union] = ACTIONS(1434), - [anon_sym_unsafe] = ACTIONS(1434), - [anon_sym_use] = ACTIONS(1434), - [anon_sym_while] = ACTIONS(1434), - [anon_sym_extern] = ACTIONS(1434), - [anon_sym_yield] = ACTIONS(1434), - [anon_sym_move] = ACTIONS(1434), - [anon_sym_try] = ACTIONS(1434), - [sym_integer_literal] = ACTIONS(1432), - [aux_sym_string_literal_token1] = ACTIONS(1432), - [sym_char_literal] = ACTIONS(1432), - [anon_sym_true] = ACTIONS(1434), - [anon_sym_false] = ACTIONS(1434), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1434), - [sym_super] = ACTIONS(1434), - [sym_crate] = ACTIONS(1434), - [sym_metavariable] = ACTIONS(1432), - [sym__raw_string_literal_start] = ACTIONS(1432), - [sym_float_literal] = ACTIONS(1432), + [ts_builtin_sym_end] = ACTIONS(1438), + [sym_identifier] = ACTIONS(1440), + [anon_sym_SEMI] = ACTIONS(1438), + [anon_sym_macro_rules_BANG] = ACTIONS(1438), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_LBRACK] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1438), + [anon_sym_RBRACE] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1440), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_QMARK] = ACTIONS(1438), + [anon_sym_u8] = ACTIONS(1440), + [anon_sym_i8] = ACTIONS(1440), + [anon_sym_u16] = ACTIONS(1440), + [anon_sym_i16] = ACTIONS(1440), + [anon_sym_u32] = ACTIONS(1440), + [anon_sym_i32] = ACTIONS(1440), + [anon_sym_u64] = ACTIONS(1440), + [anon_sym_i64] = ACTIONS(1440), + [anon_sym_u128] = ACTIONS(1440), + [anon_sym_i128] = ACTIONS(1440), + [anon_sym_isize] = ACTIONS(1440), + [anon_sym_usize] = ACTIONS(1440), + [anon_sym_f32] = ACTIONS(1440), + [anon_sym_f64] = ACTIONS(1440), + [anon_sym_bool] = ACTIONS(1440), + [anon_sym_str] = ACTIONS(1440), + [anon_sym_char] = ACTIONS(1440), + [anon_sym_DASH] = ACTIONS(1440), + [anon_sym_SLASH] = ACTIONS(1440), + [anon_sym_PERCENT] = ACTIONS(1440), + [anon_sym_CARET] = ACTIONS(1440), + [anon_sym_BANG] = ACTIONS(1440), + [anon_sym_AMP] = ACTIONS(1440), + [anon_sym_PIPE] = ACTIONS(1440), + [anon_sym_AMP_AMP] = ACTIONS(1438), + [anon_sym_PIPE_PIPE] = ACTIONS(1438), + [anon_sym_LT_LT] = ACTIONS(1440), + [anon_sym_GT_GT] = ACTIONS(1440), + [anon_sym_PLUS_EQ] = ACTIONS(1438), + [anon_sym_DASH_EQ] = ACTIONS(1438), + [anon_sym_STAR_EQ] = ACTIONS(1438), + [anon_sym_SLASH_EQ] = ACTIONS(1438), + [anon_sym_PERCENT_EQ] = ACTIONS(1438), + [anon_sym_CARET_EQ] = ACTIONS(1438), + [anon_sym_AMP_EQ] = ACTIONS(1438), + [anon_sym_PIPE_EQ] = ACTIONS(1438), + [anon_sym_LT_LT_EQ] = ACTIONS(1438), + [anon_sym_GT_GT_EQ] = ACTIONS(1438), + [anon_sym_EQ] = ACTIONS(1440), + [anon_sym_EQ_EQ] = ACTIONS(1438), + [anon_sym_BANG_EQ] = ACTIONS(1438), + [anon_sym_GT] = ACTIONS(1440), + [anon_sym_LT] = ACTIONS(1440), + [anon_sym_GT_EQ] = ACTIONS(1438), + [anon_sym_LT_EQ] = ACTIONS(1438), + [anon_sym_DOT] = ACTIONS(1440), + [anon_sym_DOT_DOT] = ACTIONS(1440), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1438), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1438), + [anon_sym_COLON_COLON] = ACTIONS(1438), + [anon_sym_POUND] = ACTIONS(1438), + [anon_sym_SQUOTE] = ACTIONS(1440), + [anon_sym_as] = ACTIONS(1440), + [anon_sym_async] = ACTIONS(1440), + [anon_sym_break] = ACTIONS(1440), + [anon_sym_const] = ACTIONS(1440), + [anon_sym_continue] = ACTIONS(1440), + [anon_sym_default] = ACTIONS(1440), + [anon_sym_enum] = ACTIONS(1440), + [anon_sym_fn] = ACTIONS(1440), + [anon_sym_for] = ACTIONS(1440), + [anon_sym_if] = ACTIONS(1440), + [anon_sym_impl] = ACTIONS(1440), + [anon_sym_let] = ACTIONS(1440), + [anon_sym_loop] = ACTIONS(1440), + [anon_sym_match] = ACTIONS(1440), + [anon_sym_mod] = ACTIONS(1440), + [anon_sym_pub] = ACTIONS(1440), + [anon_sym_return] = ACTIONS(1440), + [anon_sym_static] = ACTIONS(1440), + [anon_sym_struct] = ACTIONS(1440), + [anon_sym_trait] = ACTIONS(1440), + [anon_sym_type] = ACTIONS(1440), + [anon_sym_union] = ACTIONS(1440), + [anon_sym_unsafe] = ACTIONS(1440), + [anon_sym_use] = ACTIONS(1440), + [anon_sym_while] = ACTIONS(1440), + [anon_sym_extern] = ACTIONS(1440), + [anon_sym_yield] = ACTIONS(1440), + [anon_sym_move] = ACTIONS(1440), + [anon_sym_try] = ACTIONS(1440), + [sym_integer_literal] = ACTIONS(1438), + [aux_sym_string_literal_token1] = ACTIONS(1438), + [sym_char_literal] = ACTIONS(1438), + [anon_sym_true] = ACTIONS(1440), + [anon_sym_false] = ACTIONS(1440), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1440), + [sym_super] = ACTIONS(1440), + [sym_crate] = ACTIONS(1440), + [sym_metavariable] = ACTIONS(1438), + [sym__raw_string_literal_start] = ACTIONS(1438), + [sym_float_literal] = ACTIONS(1438), }, [396] = { - [sym_attribute_item] = STATE(414), - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_self_parameter] = STATE(2981), - [sym_variadic_parameter] = STATE(2981), - [sym_parameter] = STATE(2981), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2705), - [sym_bracketed_type] = STATE(3520), - [sym_lifetime] = STATE(2985), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3198), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(2480), - [sym_scoped_identifier] = STATE(2216), - [sym_scoped_type_identifier] = STATE(2114), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(3268), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), [sym_line_comment] = STATE(396), [sym_block_comment] = STATE(396), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1326), - [anon_sym_RPAREN] = ACTIONS(1436), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1330), - [anon_sym_i8] = ACTIONS(1330), - [anon_sym_u16] = ACTIONS(1330), - [anon_sym_i16] = ACTIONS(1330), - [anon_sym_u32] = ACTIONS(1330), - [anon_sym_i32] = ACTIONS(1330), - [anon_sym_u64] = ACTIONS(1330), - [anon_sym_i64] = ACTIONS(1330), - [anon_sym_u128] = ACTIONS(1330), - [anon_sym_i128] = ACTIONS(1330), - [anon_sym_isize] = ACTIONS(1330), - [anon_sym_usize] = ACTIONS(1330), - [anon_sym_f32] = ACTIONS(1330), - [anon_sym_f64] = ACTIONS(1330), - [anon_sym_bool] = ACTIONS(1330), - [anon_sym_str] = ACTIONS(1330), - [anon_sym_char] = ACTIONS(1330), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1332), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1438), - [anon_sym_DOT_DOT] = ACTIONS(1272), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1274), - [anon_sym_COMMA] = ACTIONS(1440), - [anon_sym_COLON_COLON] = ACTIONS(1338), - [anon_sym_POUND] = ACTIONS(1280), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1340), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1342), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_ref] = ACTIONS(1300), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(1304), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1344), - [sym_super] = ACTIONS(1346), - [sym_crate] = ACTIONS(1346), - [sym_metavariable] = ACTIONS(1348), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), - }, - [397] = { - [sym_line_comment] = STATE(397), - [sym_block_comment] = STATE(397), [ts_builtin_sym_end] = ACTIONS(1442), [sym_identifier] = ACTIONS(1444), [anon_sym_SEMI] = ACTIONS(1442), @@ -61064,114 +60963,223 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1442), [sym_float_literal] = ACTIONS(1442), }, + [397] = { + [sym_line_comment] = STATE(397), + [sym_block_comment] = STATE(397), + [ts_builtin_sym_end] = ACTIONS(1446), + [sym_identifier] = ACTIONS(1448), + [anon_sym_SEMI] = ACTIONS(1446), + [anon_sym_macro_rules_BANG] = ACTIONS(1446), + [anon_sym_LPAREN] = ACTIONS(1446), + [anon_sym_LBRACK] = ACTIONS(1446), + [anon_sym_LBRACE] = ACTIONS(1446), + [anon_sym_RBRACE] = ACTIONS(1446), + [anon_sym_PLUS] = ACTIONS(1448), + [anon_sym_STAR] = ACTIONS(1448), + [anon_sym_QMARK] = ACTIONS(1446), + [anon_sym_u8] = ACTIONS(1448), + [anon_sym_i8] = ACTIONS(1448), + [anon_sym_u16] = ACTIONS(1448), + [anon_sym_i16] = ACTIONS(1448), + [anon_sym_u32] = ACTIONS(1448), + [anon_sym_i32] = ACTIONS(1448), + [anon_sym_u64] = ACTIONS(1448), + [anon_sym_i64] = ACTIONS(1448), + [anon_sym_u128] = ACTIONS(1448), + [anon_sym_i128] = ACTIONS(1448), + [anon_sym_isize] = ACTIONS(1448), + [anon_sym_usize] = ACTIONS(1448), + [anon_sym_f32] = ACTIONS(1448), + [anon_sym_f64] = ACTIONS(1448), + [anon_sym_bool] = ACTIONS(1448), + [anon_sym_str] = ACTIONS(1448), + [anon_sym_char] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1448), + [anon_sym_SLASH] = ACTIONS(1448), + [anon_sym_PERCENT] = ACTIONS(1448), + [anon_sym_CARET] = ACTIONS(1448), + [anon_sym_BANG] = ACTIONS(1448), + [anon_sym_AMP] = ACTIONS(1448), + [anon_sym_PIPE] = ACTIONS(1448), + [anon_sym_AMP_AMP] = ACTIONS(1446), + [anon_sym_PIPE_PIPE] = ACTIONS(1446), + [anon_sym_LT_LT] = ACTIONS(1448), + [anon_sym_GT_GT] = ACTIONS(1448), + [anon_sym_PLUS_EQ] = ACTIONS(1446), + [anon_sym_DASH_EQ] = ACTIONS(1446), + [anon_sym_STAR_EQ] = ACTIONS(1446), + [anon_sym_SLASH_EQ] = ACTIONS(1446), + [anon_sym_PERCENT_EQ] = ACTIONS(1446), + [anon_sym_CARET_EQ] = ACTIONS(1446), + [anon_sym_AMP_EQ] = ACTIONS(1446), + [anon_sym_PIPE_EQ] = ACTIONS(1446), + [anon_sym_LT_LT_EQ] = ACTIONS(1446), + [anon_sym_GT_GT_EQ] = ACTIONS(1446), + [anon_sym_EQ] = ACTIONS(1448), + [anon_sym_EQ_EQ] = ACTIONS(1446), + [anon_sym_BANG_EQ] = ACTIONS(1446), + [anon_sym_GT] = ACTIONS(1448), + [anon_sym_LT] = ACTIONS(1448), + [anon_sym_GT_EQ] = ACTIONS(1446), + [anon_sym_LT_EQ] = ACTIONS(1446), + [anon_sym_DOT] = ACTIONS(1448), + [anon_sym_DOT_DOT] = ACTIONS(1448), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1446), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1446), + [anon_sym_COLON_COLON] = ACTIONS(1446), + [anon_sym_POUND] = ACTIONS(1446), + [anon_sym_SQUOTE] = ACTIONS(1448), + [anon_sym_as] = ACTIONS(1448), + [anon_sym_async] = ACTIONS(1448), + [anon_sym_break] = ACTIONS(1448), + [anon_sym_const] = ACTIONS(1448), + [anon_sym_continue] = ACTIONS(1448), + [anon_sym_default] = ACTIONS(1448), + [anon_sym_enum] = ACTIONS(1448), + [anon_sym_fn] = ACTIONS(1448), + [anon_sym_for] = ACTIONS(1448), + [anon_sym_if] = ACTIONS(1448), + [anon_sym_impl] = ACTIONS(1448), + [anon_sym_let] = ACTIONS(1448), + [anon_sym_loop] = ACTIONS(1448), + [anon_sym_match] = ACTIONS(1448), + [anon_sym_mod] = ACTIONS(1448), + [anon_sym_pub] = ACTIONS(1448), + [anon_sym_return] = ACTIONS(1448), + [anon_sym_static] = ACTIONS(1448), + [anon_sym_struct] = ACTIONS(1448), + [anon_sym_trait] = ACTIONS(1448), + [anon_sym_type] = ACTIONS(1448), + [anon_sym_union] = ACTIONS(1448), + [anon_sym_unsafe] = ACTIONS(1448), + [anon_sym_use] = ACTIONS(1448), + [anon_sym_while] = ACTIONS(1448), + [anon_sym_extern] = ACTIONS(1448), + [anon_sym_yield] = ACTIONS(1448), + [anon_sym_move] = ACTIONS(1448), + [anon_sym_try] = ACTIONS(1448), + [sym_integer_literal] = ACTIONS(1446), + [aux_sym_string_literal_token1] = ACTIONS(1446), + [sym_char_literal] = ACTIONS(1446), + [anon_sym_true] = ACTIONS(1448), + [anon_sym_false] = ACTIONS(1448), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1448), + [sym_super] = ACTIONS(1448), + [sym_crate] = ACTIONS(1448), + [sym_metavariable] = ACTIONS(1446), + [sym__raw_string_literal_start] = ACTIONS(1446), + [sym_float_literal] = ACTIONS(1446), + }, [398] = { - [sym_attribute_item] = STATE(414), - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_self_parameter] = STATE(2981), - [sym_variadic_parameter] = STATE(2981), - [sym_parameter] = STATE(2981), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2705), - [sym_bracketed_type] = STATE(3527), - [sym_lifetime] = STATE(2985), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3273), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(2487), - [sym_scoped_identifier] = STATE(2113), - [sym_scoped_type_identifier] = STATE(2114), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2464), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), [sym_line_comment] = STATE(398), [sym_block_comment] = STATE(398), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1248), - [anon_sym_LPAREN] = ACTIONS(1250), - [anon_sym_RPAREN] = ACTIONS(1446), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1260), - [anon_sym_i8] = ACTIONS(1260), - [anon_sym_u16] = ACTIONS(1260), - [anon_sym_i16] = ACTIONS(1260), - [anon_sym_u32] = ACTIONS(1260), - [anon_sym_i32] = ACTIONS(1260), - [anon_sym_u64] = ACTIONS(1260), - [anon_sym_i64] = ACTIONS(1260), - [anon_sym_u128] = ACTIONS(1260), - [anon_sym_i128] = ACTIONS(1260), - [anon_sym_isize] = ACTIONS(1260), - [anon_sym_usize] = ACTIONS(1260), - [anon_sym_f32] = ACTIONS(1260), - [anon_sym_f64] = ACTIONS(1260), - [anon_sym_bool] = ACTIONS(1260), - [anon_sym_str] = ACTIONS(1260), - [anon_sym_char] = ACTIONS(1260), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1266), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1270), - [anon_sym_DOT_DOT] = ACTIONS(1272), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1274), - [anon_sym_COMMA] = ACTIONS(1448), - [anon_sym_COLON_COLON] = ACTIONS(1278), - [anon_sym_POUND] = ACTIONS(1280), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1288), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1296), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_ref] = ACTIONS(1300), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(1304), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1312), - [sym_super] = ACTIONS(1314), - [sym_crate] = ACTIONS(1314), - [sym_metavariable] = ACTIONS(1316), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [ts_builtin_sym_end] = ACTIONS(1003), + [sym_identifier] = ACTIONS(1001), + [anon_sym_SEMI] = ACTIONS(1003), + [anon_sym_macro_rules_BANG] = ACTIONS(1003), + [anon_sym_LPAREN] = ACTIONS(1003), + [anon_sym_LBRACK] = ACTIONS(1003), + [anon_sym_LBRACE] = ACTIONS(1003), + [anon_sym_RBRACE] = ACTIONS(1003), + [anon_sym_PLUS] = ACTIONS(1001), + [anon_sym_STAR] = ACTIONS(1001), + [anon_sym_QMARK] = ACTIONS(1003), + [anon_sym_u8] = ACTIONS(1001), + [anon_sym_i8] = ACTIONS(1001), + [anon_sym_u16] = ACTIONS(1001), + [anon_sym_i16] = ACTIONS(1001), + [anon_sym_u32] = ACTIONS(1001), + [anon_sym_i32] = ACTIONS(1001), + [anon_sym_u64] = ACTIONS(1001), + [anon_sym_i64] = ACTIONS(1001), + [anon_sym_u128] = ACTIONS(1001), + [anon_sym_i128] = ACTIONS(1001), + [anon_sym_isize] = ACTIONS(1001), + [anon_sym_usize] = ACTIONS(1001), + [anon_sym_f32] = ACTIONS(1001), + [anon_sym_f64] = ACTIONS(1001), + [anon_sym_bool] = ACTIONS(1001), + [anon_sym_str] = ACTIONS(1001), + [anon_sym_char] = ACTIONS(1001), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_SLASH] = ACTIONS(1001), + [anon_sym_PERCENT] = ACTIONS(1001), + [anon_sym_CARET] = ACTIONS(1001), + [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_AMP] = ACTIONS(1001), + [anon_sym_PIPE] = ACTIONS(1001), + [anon_sym_AMP_AMP] = ACTIONS(1003), + [anon_sym_PIPE_PIPE] = ACTIONS(1003), + [anon_sym_LT_LT] = ACTIONS(1001), + [anon_sym_GT_GT] = ACTIONS(1001), + [anon_sym_PLUS_EQ] = ACTIONS(1003), + [anon_sym_DASH_EQ] = ACTIONS(1003), + [anon_sym_STAR_EQ] = ACTIONS(1003), + [anon_sym_SLASH_EQ] = ACTIONS(1003), + [anon_sym_PERCENT_EQ] = ACTIONS(1003), + [anon_sym_CARET_EQ] = ACTIONS(1003), + [anon_sym_AMP_EQ] = ACTIONS(1003), + [anon_sym_PIPE_EQ] = ACTIONS(1003), + [anon_sym_LT_LT_EQ] = ACTIONS(1003), + [anon_sym_GT_GT_EQ] = ACTIONS(1003), + [anon_sym_EQ] = ACTIONS(1001), + [anon_sym_EQ_EQ] = ACTIONS(1003), + [anon_sym_BANG_EQ] = ACTIONS(1003), + [anon_sym_GT] = ACTIONS(1001), + [anon_sym_LT] = ACTIONS(1001), + [anon_sym_GT_EQ] = ACTIONS(1003), + [anon_sym_LT_EQ] = ACTIONS(1003), + [anon_sym_DOT] = ACTIONS(1001), + [anon_sym_DOT_DOT] = ACTIONS(1001), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1003), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1003), + [anon_sym_COLON_COLON] = ACTIONS(1003), + [anon_sym_POUND] = ACTIONS(1003), + [anon_sym_SQUOTE] = ACTIONS(1001), + [anon_sym_as] = ACTIONS(1001), + [anon_sym_async] = ACTIONS(1001), + [anon_sym_break] = ACTIONS(1001), + [anon_sym_const] = ACTIONS(1001), + [anon_sym_continue] = ACTIONS(1001), + [anon_sym_default] = ACTIONS(1001), + [anon_sym_enum] = ACTIONS(1001), + [anon_sym_fn] = ACTIONS(1001), + [anon_sym_for] = ACTIONS(1001), + [anon_sym_if] = ACTIONS(1001), + [anon_sym_impl] = ACTIONS(1001), + [anon_sym_let] = ACTIONS(1001), + [anon_sym_loop] = ACTIONS(1001), + [anon_sym_match] = ACTIONS(1001), + [anon_sym_mod] = ACTIONS(1001), + [anon_sym_pub] = ACTIONS(1001), + [anon_sym_return] = ACTIONS(1001), + [anon_sym_static] = ACTIONS(1001), + [anon_sym_struct] = ACTIONS(1001), + [anon_sym_trait] = ACTIONS(1001), + [anon_sym_type] = ACTIONS(1001), + [anon_sym_union] = ACTIONS(1001), + [anon_sym_unsafe] = ACTIONS(1001), + [anon_sym_use] = ACTIONS(1001), + [anon_sym_while] = ACTIONS(1001), + [anon_sym_extern] = ACTIONS(1001), + [anon_sym_yield] = ACTIONS(1001), + [anon_sym_move] = ACTIONS(1001), + [anon_sym_try] = ACTIONS(1001), + [sym_integer_literal] = ACTIONS(1003), + [aux_sym_string_literal_token1] = ACTIONS(1003), + [sym_char_literal] = ACTIONS(1003), + [anon_sym_true] = ACTIONS(1001), + [anon_sym_false] = ACTIONS(1001), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1001), + [sym_super] = ACTIONS(1001), + [sym_crate] = ACTIONS(1001), + [sym_metavariable] = ACTIONS(1003), + [sym__raw_string_literal_start] = ACTIONS(1003), + [sym_float_literal] = ACTIONS(1003), }, [399] = { [sym_line_comment] = STATE(399), @@ -61283,34 +61291,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1450), }, [400] = { - [sym_attribute_item] = STATE(415), - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_self_parameter] = STATE(3088), - [sym_variadic_parameter] = STATE(3088), - [sym_parameter] = STATE(3088), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2763), - [sym_bracketed_type] = STATE(3520), - [sym_lifetime] = STATE(2985), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3198), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(2480), - [sym_scoped_identifier] = STATE(2216), - [sym_scoped_type_identifier] = STATE(2114), + [sym_attribute_item] = STATE(414), + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_self_parameter] = STATE(3249), + [sym_variadic_parameter] = STATE(3249), + [sym_parameter] = STATE(3249), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2757), + [sym_bracketed_type] = STATE(3528), + [sym_lifetime] = STATE(2931), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3289), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(2436), + [sym_scoped_identifier] = STATE(2212), + [sym_scoped_type_identifier] = STATE(2104), [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(3268), + [sym__pattern] = STATE(3137), [sym_tuple_pattern] = STATE(2079), [sym_slice_pattern] = STATE(2079), [sym_tuple_struct_pattern] = STATE(2079), @@ -61322,103 +61330,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_captured_pattern] = STATE(2079), [sym_reference_pattern] = STATE(2079), [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym__literal_pattern] = STATE(2006), + [sym_negative_literal] = STATE(2009), + [sym_string_literal] = STATE(2009), + [sym_raw_string_literal] = STATE(2009), + [sym_boolean_literal] = STATE(2009), [sym_line_comment] = STATE(400), [sym_block_comment] = STATE(400), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1326), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(1260), + [anon_sym_LPAREN] = ACTIONS(1262), [anon_sym_RPAREN] = ACTIONS(1454), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1330), - [anon_sym_i8] = ACTIONS(1330), - [anon_sym_u16] = ACTIONS(1330), - [anon_sym_i16] = ACTIONS(1330), - [anon_sym_u32] = ACTIONS(1330), - [anon_sym_i32] = ACTIONS(1330), - [anon_sym_u64] = ACTIONS(1330), - [anon_sym_i64] = ACTIONS(1330), - [anon_sym_u128] = ACTIONS(1330), - [anon_sym_i128] = ACTIONS(1330), - [anon_sym_isize] = ACTIONS(1330), - [anon_sym_usize] = ACTIONS(1330), - [anon_sym_f32] = ACTIONS(1330), - [anon_sym_f64] = ACTIONS(1330), - [anon_sym_bool] = ACTIONS(1330), - [anon_sym_str] = ACTIONS(1330), - [anon_sym_char] = ACTIONS(1330), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1332), - [anon_sym_PIPE] = ACTIONS(1268), + [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), + [anon_sym_u8] = ACTIONS(1272), + [anon_sym_i8] = ACTIONS(1272), + [anon_sym_u16] = ACTIONS(1272), + [anon_sym_i16] = ACTIONS(1272), + [anon_sym_u32] = ACTIONS(1272), + [anon_sym_i32] = ACTIONS(1272), + [anon_sym_u64] = ACTIONS(1272), + [anon_sym_i64] = ACTIONS(1272), + [anon_sym_u128] = ACTIONS(1272), + [anon_sym_i128] = ACTIONS(1272), + [anon_sym_isize] = ACTIONS(1272), + [anon_sym_usize] = ACTIONS(1272), + [anon_sym_f32] = ACTIONS(1272), + [anon_sym_f64] = ACTIONS(1272), + [anon_sym_bool] = ACTIONS(1272), + [anon_sym_str] = ACTIONS(1272), + [anon_sym_char] = ACTIONS(1272), + [anon_sym_DASH] = ACTIONS(1274), + [anon_sym_BANG] = ACTIONS(1276), + [anon_sym_AMP] = ACTIONS(1278), + [anon_sym_PIPE] = ACTIONS(1280), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1456), - [anon_sym_DOT_DOT] = ACTIONS(1272), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1274), - [anon_sym_COLON_COLON] = ACTIONS(1338), - [anon_sym_POUND] = ACTIONS(1280), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1340), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1342), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_ref] = ACTIONS(1300), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(1304), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1344), - [sym_super] = ACTIONS(1346), - [sym_crate] = ACTIONS(1346), - [sym_metavariable] = ACTIONS(1348), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [anon_sym_DOT_DOT] = ACTIONS(1284), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1286), + [anon_sym_COLON_COLON] = ACTIONS(1290), + [anon_sym_POUND] = ACTIONS(1292), + [anon_sym_SQUOTE] = ACTIONS(1294), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1300), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1308), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_ref] = ACTIONS(1312), + [anon_sym_dyn] = ACTIONS(1314), + [sym_mutable_specifier] = ACTIONS(1316), + [sym_integer_literal] = ACTIONS(1318), + [aux_sym_string_literal_token1] = ACTIONS(1320), + [sym_char_literal] = ACTIONS(1318), + [anon_sym_true] = ACTIONS(1322), + [anon_sym_false] = ACTIONS(1322), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1324), + [sym_super] = ACTIONS(1326), + [sym_crate] = ACTIONS(1326), + [sym_metavariable] = ACTIONS(1328), + [sym__raw_string_literal_start] = ACTIONS(1330), + [sym_float_literal] = ACTIONS(1318), }, [401] = { - [sym_attribute_item] = STATE(415), - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_self_parameter] = STATE(3088), - [sym_variadic_parameter] = STATE(3088), - [sym_parameter] = STATE(3088), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2763), - [sym_bracketed_type] = STATE(3520), - [sym_lifetime] = STATE(2985), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3198), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(2480), - [sym_scoped_identifier] = STATE(2216), - [sym_scoped_type_identifier] = STATE(2114), + [sym_attribute_item] = STATE(414), + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_self_parameter] = STATE(3249), + [sym_variadic_parameter] = STATE(3249), + [sym_parameter] = STATE(3249), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2757), + [sym_bracketed_type] = STATE(3528), + [sym_lifetime] = STATE(2931), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3289), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(2436), + [sym_scoped_identifier] = STATE(2212), + [sym_scoped_type_identifier] = STATE(2104), [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(3268), + [sym__pattern] = STATE(3137), [sym_tuple_pattern] = STATE(2079), [sym_slice_pattern] = STATE(2079), [sym_tuple_struct_pattern] = STATE(2079), @@ -61430,103 +61438,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_captured_pattern] = STATE(2079), [sym_reference_pattern] = STATE(2079), [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym__literal_pattern] = STATE(2006), + [sym_negative_literal] = STATE(2009), + [sym_string_literal] = STATE(2009), + [sym_raw_string_literal] = STATE(2009), + [sym_boolean_literal] = STATE(2009), [sym_line_comment] = STATE(401), [sym_block_comment] = STATE(401), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1326), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(1260), + [anon_sym_LPAREN] = ACTIONS(1262), [anon_sym_RPAREN] = ACTIONS(1458), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1330), - [anon_sym_i8] = ACTIONS(1330), - [anon_sym_u16] = ACTIONS(1330), - [anon_sym_i16] = ACTIONS(1330), - [anon_sym_u32] = ACTIONS(1330), - [anon_sym_i32] = ACTIONS(1330), - [anon_sym_u64] = ACTIONS(1330), - [anon_sym_i64] = ACTIONS(1330), - [anon_sym_u128] = ACTIONS(1330), - [anon_sym_i128] = ACTIONS(1330), - [anon_sym_isize] = ACTIONS(1330), - [anon_sym_usize] = ACTIONS(1330), - [anon_sym_f32] = ACTIONS(1330), - [anon_sym_f64] = ACTIONS(1330), - [anon_sym_bool] = ACTIONS(1330), - [anon_sym_str] = ACTIONS(1330), - [anon_sym_char] = ACTIONS(1330), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1332), - [anon_sym_PIPE] = ACTIONS(1268), + [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), + [anon_sym_u8] = ACTIONS(1272), + [anon_sym_i8] = ACTIONS(1272), + [anon_sym_u16] = ACTIONS(1272), + [anon_sym_i16] = ACTIONS(1272), + [anon_sym_u32] = ACTIONS(1272), + [anon_sym_i32] = ACTIONS(1272), + [anon_sym_u64] = ACTIONS(1272), + [anon_sym_i64] = ACTIONS(1272), + [anon_sym_u128] = ACTIONS(1272), + [anon_sym_i128] = ACTIONS(1272), + [anon_sym_isize] = ACTIONS(1272), + [anon_sym_usize] = ACTIONS(1272), + [anon_sym_f32] = ACTIONS(1272), + [anon_sym_f64] = ACTIONS(1272), + [anon_sym_bool] = ACTIONS(1272), + [anon_sym_str] = ACTIONS(1272), + [anon_sym_char] = ACTIONS(1272), + [anon_sym_DASH] = ACTIONS(1274), + [anon_sym_BANG] = ACTIONS(1276), + [anon_sym_AMP] = ACTIONS(1278), + [anon_sym_PIPE] = ACTIONS(1280), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1456), - [anon_sym_DOT_DOT] = ACTIONS(1272), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1274), - [anon_sym_COLON_COLON] = ACTIONS(1338), - [anon_sym_POUND] = ACTIONS(1280), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1340), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1342), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_ref] = ACTIONS(1300), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(1304), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1344), - [sym_super] = ACTIONS(1346), - [sym_crate] = ACTIONS(1346), - [sym_metavariable] = ACTIONS(1348), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [anon_sym_DOT_DOT] = ACTIONS(1284), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1286), + [anon_sym_COLON_COLON] = ACTIONS(1290), + [anon_sym_POUND] = ACTIONS(1292), + [anon_sym_SQUOTE] = ACTIONS(1294), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1300), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1308), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_ref] = ACTIONS(1312), + [anon_sym_dyn] = ACTIONS(1314), + [sym_mutable_specifier] = ACTIONS(1316), + [sym_integer_literal] = ACTIONS(1318), + [aux_sym_string_literal_token1] = ACTIONS(1320), + [sym_char_literal] = ACTIONS(1318), + [anon_sym_true] = ACTIONS(1322), + [anon_sym_false] = ACTIONS(1322), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1324), + [sym_super] = ACTIONS(1326), + [sym_crate] = ACTIONS(1326), + [sym_metavariable] = ACTIONS(1328), + [sym__raw_string_literal_start] = ACTIONS(1330), + [sym_float_literal] = ACTIONS(1318), }, [402] = { - [sym_attribute_item] = STATE(415), - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_self_parameter] = STATE(3088), - [sym_variadic_parameter] = STATE(3088), - [sym_parameter] = STATE(3088), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2763), - [sym_bracketed_type] = STATE(3520), - [sym_lifetime] = STATE(2985), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3198), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(2480), - [sym_scoped_identifier] = STATE(2216), - [sym_scoped_type_identifier] = STATE(2114), + [sym_attribute_item] = STATE(414), + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_self_parameter] = STATE(3249), + [sym_variadic_parameter] = STATE(3249), + [sym_parameter] = STATE(3249), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2757), + [sym_bracketed_type] = STATE(3528), + [sym_lifetime] = STATE(2931), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3289), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(2436), + [sym_scoped_identifier] = STATE(2212), + [sym_scoped_type_identifier] = STATE(2104), [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(3268), + [sym__pattern] = STATE(3137), [sym_tuple_pattern] = STATE(2079), [sym_slice_pattern] = STATE(2079), [sym_tuple_struct_pattern] = STATE(2079), @@ -61538,103 +61546,211 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_captured_pattern] = STATE(2079), [sym_reference_pattern] = STATE(2079), [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym__literal_pattern] = STATE(2006), + [sym_negative_literal] = STATE(2009), + [sym_string_literal] = STATE(2009), + [sym_raw_string_literal] = STATE(2009), + [sym_boolean_literal] = STATE(2009), [sym_line_comment] = STATE(402), [sym_block_comment] = STATE(402), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1326), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(1260), + [anon_sym_LPAREN] = ACTIONS(1262), [anon_sym_RPAREN] = ACTIONS(1460), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1330), - [anon_sym_i8] = ACTIONS(1330), - [anon_sym_u16] = ACTIONS(1330), - [anon_sym_i16] = ACTIONS(1330), - [anon_sym_u32] = ACTIONS(1330), - [anon_sym_i32] = ACTIONS(1330), - [anon_sym_u64] = ACTIONS(1330), - [anon_sym_i64] = ACTIONS(1330), - [anon_sym_u128] = ACTIONS(1330), - [anon_sym_i128] = ACTIONS(1330), - [anon_sym_isize] = ACTIONS(1330), - [anon_sym_usize] = ACTIONS(1330), - [anon_sym_f32] = ACTIONS(1330), - [anon_sym_f64] = ACTIONS(1330), - [anon_sym_bool] = ACTIONS(1330), - [anon_sym_str] = ACTIONS(1330), - [anon_sym_char] = ACTIONS(1330), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1332), - [anon_sym_PIPE] = ACTIONS(1268), + [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), + [anon_sym_u8] = ACTIONS(1272), + [anon_sym_i8] = ACTIONS(1272), + [anon_sym_u16] = ACTIONS(1272), + [anon_sym_i16] = ACTIONS(1272), + [anon_sym_u32] = ACTIONS(1272), + [anon_sym_i32] = ACTIONS(1272), + [anon_sym_u64] = ACTIONS(1272), + [anon_sym_i64] = ACTIONS(1272), + [anon_sym_u128] = ACTIONS(1272), + [anon_sym_i128] = ACTIONS(1272), + [anon_sym_isize] = ACTIONS(1272), + [anon_sym_usize] = ACTIONS(1272), + [anon_sym_f32] = ACTIONS(1272), + [anon_sym_f64] = ACTIONS(1272), + [anon_sym_bool] = ACTIONS(1272), + [anon_sym_str] = ACTIONS(1272), + [anon_sym_char] = ACTIONS(1272), + [anon_sym_DASH] = ACTIONS(1274), + [anon_sym_BANG] = ACTIONS(1276), + [anon_sym_AMP] = ACTIONS(1278), + [anon_sym_PIPE] = ACTIONS(1280), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1456), - [anon_sym_DOT_DOT] = ACTIONS(1272), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1274), - [anon_sym_COLON_COLON] = ACTIONS(1338), - [anon_sym_POUND] = ACTIONS(1280), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1340), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1342), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_ref] = ACTIONS(1300), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(1304), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1344), - [sym_super] = ACTIONS(1346), - [sym_crate] = ACTIONS(1346), - [sym_metavariable] = ACTIONS(1348), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [anon_sym_DOT_DOT] = ACTIONS(1284), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1286), + [anon_sym_COLON_COLON] = ACTIONS(1290), + [anon_sym_POUND] = ACTIONS(1292), + [anon_sym_SQUOTE] = ACTIONS(1294), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1300), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1308), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_ref] = ACTIONS(1312), + [anon_sym_dyn] = ACTIONS(1314), + [sym_mutable_specifier] = ACTIONS(1316), + [sym_integer_literal] = ACTIONS(1318), + [aux_sym_string_literal_token1] = ACTIONS(1320), + [sym_char_literal] = ACTIONS(1318), + [anon_sym_true] = ACTIONS(1322), + [anon_sym_false] = ACTIONS(1322), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1324), + [sym_super] = ACTIONS(1326), + [sym_crate] = ACTIONS(1326), + [sym_metavariable] = ACTIONS(1328), + [sym__raw_string_literal_start] = ACTIONS(1330), + [sym_float_literal] = ACTIONS(1318), }, [403] = { - [sym_attribute_item] = STATE(415), - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_self_parameter] = STATE(3088), - [sym_variadic_parameter] = STATE(3088), - [sym_parameter] = STATE(3088), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2763), - [sym_bracketed_type] = STATE(3520), - [sym_lifetime] = STATE(2985), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3198), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(2480), - [sym_scoped_identifier] = STATE(2216), - [sym_scoped_type_identifier] = STATE(2114), + [sym_line_comment] = STATE(403), + [sym_block_comment] = STATE(403), + [sym_identifier] = ACTIONS(1424), + [anon_sym_SEMI] = ACTIONS(1408), + [anon_sym_macro_rules_BANG] = ACTIONS(1422), + [anon_sym_LPAREN] = ACTIONS(1408), + [anon_sym_LBRACK] = ACTIONS(1408), + [anon_sym_LBRACE] = ACTIONS(1422), + [anon_sym_RBRACE] = ACTIONS(1422), + [anon_sym_PLUS] = ACTIONS(1406), + [anon_sym_STAR] = ACTIONS(1406), + [anon_sym_QMARK] = ACTIONS(1408), + [anon_sym_u8] = ACTIONS(1424), + [anon_sym_i8] = ACTIONS(1424), + [anon_sym_u16] = ACTIONS(1424), + [anon_sym_i16] = ACTIONS(1424), + [anon_sym_u32] = ACTIONS(1424), + [anon_sym_i32] = ACTIONS(1424), + [anon_sym_u64] = ACTIONS(1424), + [anon_sym_i64] = ACTIONS(1424), + [anon_sym_u128] = ACTIONS(1424), + [anon_sym_i128] = ACTIONS(1424), + [anon_sym_isize] = ACTIONS(1424), + [anon_sym_usize] = ACTIONS(1424), + [anon_sym_f32] = ACTIONS(1424), + [anon_sym_f64] = ACTIONS(1424), + [anon_sym_bool] = ACTIONS(1424), + [anon_sym_str] = ACTIONS(1424), + [anon_sym_char] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1406), + [anon_sym_SLASH] = ACTIONS(1406), + [anon_sym_PERCENT] = ACTIONS(1406), + [anon_sym_CARET] = ACTIONS(1406), + [anon_sym_BANG] = ACTIONS(1424), + [anon_sym_AMP] = ACTIONS(1406), + [anon_sym_PIPE] = ACTIONS(1406), + [anon_sym_AMP_AMP] = ACTIONS(1408), + [anon_sym_PIPE_PIPE] = ACTIONS(1408), + [anon_sym_LT_LT] = ACTIONS(1406), + [anon_sym_GT_GT] = ACTIONS(1406), + [anon_sym_PLUS_EQ] = ACTIONS(1408), + [anon_sym_DASH_EQ] = ACTIONS(1408), + [anon_sym_STAR_EQ] = ACTIONS(1408), + [anon_sym_SLASH_EQ] = ACTIONS(1408), + [anon_sym_PERCENT_EQ] = ACTIONS(1408), + [anon_sym_CARET_EQ] = ACTIONS(1408), + [anon_sym_AMP_EQ] = ACTIONS(1408), + [anon_sym_PIPE_EQ] = ACTIONS(1408), + [anon_sym_LT_LT_EQ] = ACTIONS(1408), + [anon_sym_GT_GT_EQ] = ACTIONS(1408), + [anon_sym_EQ] = ACTIONS(1406), + [anon_sym_EQ_EQ] = ACTIONS(1408), + [anon_sym_BANG_EQ] = ACTIONS(1408), + [anon_sym_GT] = ACTIONS(1406), + [anon_sym_LT] = ACTIONS(1406), + [anon_sym_GT_EQ] = ACTIONS(1408), + [anon_sym_LT_EQ] = ACTIONS(1408), + [anon_sym_DOT] = ACTIONS(1406), + [anon_sym_DOT_DOT] = ACTIONS(1406), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1408), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1408), + [anon_sym_COLON_COLON] = ACTIONS(1422), + [anon_sym_POUND] = ACTIONS(1422), + [anon_sym_SQUOTE] = ACTIONS(1424), + [anon_sym_as] = ACTIONS(1406), + [anon_sym_async] = ACTIONS(1424), + [anon_sym_break] = ACTIONS(1424), + [anon_sym_const] = ACTIONS(1424), + [anon_sym_continue] = ACTIONS(1424), + [anon_sym_default] = ACTIONS(1424), + [anon_sym_enum] = ACTIONS(1424), + [anon_sym_fn] = ACTIONS(1424), + [anon_sym_for] = ACTIONS(1424), + [anon_sym_if] = ACTIONS(1424), + [anon_sym_impl] = ACTIONS(1424), + [anon_sym_let] = ACTIONS(1424), + [anon_sym_loop] = ACTIONS(1424), + [anon_sym_match] = ACTIONS(1424), + [anon_sym_mod] = ACTIONS(1424), + [anon_sym_pub] = ACTIONS(1424), + [anon_sym_return] = ACTIONS(1424), + [anon_sym_static] = ACTIONS(1424), + [anon_sym_struct] = ACTIONS(1424), + [anon_sym_trait] = ACTIONS(1424), + [anon_sym_type] = ACTIONS(1424), + [anon_sym_union] = ACTIONS(1424), + [anon_sym_unsafe] = ACTIONS(1424), + [anon_sym_use] = ACTIONS(1424), + [anon_sym_while] = ACTIONS(1424), + [anon_sym_extern] = ACTIONS(1424), + [anon_sym_yield] = ACTIONS(1424), + [anon_sym_move] = ACTIONS(1424), + [anon_sym_try] = ACTIONS(1424), + [sym_integer_literal] = ACTIONS(1422), + [aux_sym_string_literal_token1] = ACTIONS(1422), + [sym_char_literal] = ACTIONS(1422), + [anon_sym_true] = ACTIONS(1424), + [anon_sym_false] = ACTIONS(1424), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1424), + [sym_super] = ACTIONS(1424), + [sym_crate] = ACTIONS(1424), + [sym_metavariable] = ACTIONS(1422), + [sym__raw_string_literal_start] = ACTIONS(1422), + [sym_float_literal] = ACTIONS(1422), + }, + [404] = { + [sym_attribute_item] = STATE(414), + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_self_parameter] = STATE(3249), + [sym_variadic_parameter] = STATE(3249), + [sym_parameter] = STATE(3249), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2757), + [sym_bracketed_type] = STATE(3528), + [sym_lifetime] = STATE(2931), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3289), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(2436), + [sym_scoped_identifier] = STATE(2212), + [sym_scoped_type_identifier] = STATE(2104), [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(3268), + [sym__pattern] = STATE(3137), [sym_tuple_pattern] = STATE(2079), [sym_slice_pattern] = STATE(2079), [sym_tuple_struct_pattern] = STATE(2079), @@ -61646,211 +61762,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_captured_pattern] = STATE(2079), [sym_reference_pattern] = STATE(2079), [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), - [sym_line_comment] = STATE(403), - [sym_block_comment] = STATE(403), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1326), + [sym__literal_pattern] = STATE(2006), + [sym_negative_literal] = STATE(2009), + [sym_string_literal] = STATE(2009), + [sym_raw_string_literal] = STATE(2009), + [sym_boolean_literal] = STATE(2009), + [sym_line_comment] = STATE(404), + [sym_block_comment] = STATE(404), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(1260), + [anon_sym_LPAREN] = ACTIONS(1262), [anon_sym_RPAREN] = ACTIONS(1462), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1330), - [anon_sym_i8] = ACTIONS(1330), - [anon_sym_u16] = ACTIONS(1330), - [anon_sym_i16] = ACTIONS(1330), - [anon_sym_u32] = ACTIONS(1330), - [anon_sym_i32] = ACTIONS(1330), - [anon_sym_u64] = ACTIONS(1330), - [anon_sym_i64] = ACTIONS(1330), - [anon_sym_u128] = ACTIONS(1330), - [anon_sym_i128] = ACTIONS(1330), - [anon_sym_isize] = ACTIONS(1330), - [anon_sym_usize] = ACTIONS(1330), - [anon_sym_f32] = ACTIONS(1330), - [anon_sym_f64] = ACTIONS(1330), - [anon_sym_bool] = ACTIONS(1330), - [anon_sym_str] = ACTIONS(1330), - [anon_sym_char] = ACTIONS(1330), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1332), - [anon_sym_PIPE] = ACTIONS(1268), + [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), + [anon_sym_u8] = ACTIONS(1272), + [anon_sym_i8] = ACTIONS(1272), + [anon_sym_u16] = ACTIONS(1272), + [anon_sym_i16] = ACTIONS(1272), + [anon_sym_u32] = ACTIONS(1272), + [anon_sym_i32] = ACTIONS(1272), + [anon_sym_u64] = ACTIONS(1272), + [anon_sym_i64] = ACTIONS(1272), + [anon_sym_u128] = ACTIONS(1272), + [anon_sym_i128] = ACTIONS(1272), + [anon_sym_isize] = ACTIONS(1272), + [anon_sym_usize] = ACTIONS(1272), + [anon_sym_f32] = ACTIONS(1272), + [anon_sym_f64] = ACTIONS(1272), + [anon_sym_bool] = ACTIONS(1272), + [anon_sym_str] = ACTIONS(1272), + [anon_sym_char] = ACTIONS(1272), + [anon_sym_DASH] = ACTIONS(1274), + [anon_sym_BANG] = ACTIONS(1276), + [anon_sym_AMP] = ACTIONS(1278), + [anon_sym_PIPE] = ACTIONS(1280), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1456), - [anon_sym_DOT_DOT] = ACTIONS(1272), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1274), - [anon_sym_COLON_COLON] = ACTIONS(1338), - [anon_sym_POUND] = ACTIONS(1280), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1340), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1342), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_ref] = ACTIONS(1300), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(1304), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1344), - [sym_super] = ACTIONS(1346), - [sym_crate] = ACTIONS(1346), - [sym_metavariable] = ACTIONS(1348), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), - }, - [404] = { - [sym_line_comment] = STATE(404), - [sym_block_comment] = STATE(404), - [sym_identifier] = ACTIONS(1434), - [anon_sym_SEMI] = ACTIONS(1418), - [anon_sym_macro_rules_BANG] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1418), - [anon_sym_LBRACK] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_RBRACE] = ACTIONS(1432), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_STAR] = ACTIONS(1416), - [anon_sym_QMARK] = ACTIONS(1418), - [anon_sym_u8] = ACTIONS(1434), - [anon_sym_i8] = ACTIONS(1434), - [anon_sym_u16] = ACTIONS(1434), - [anon_sym_i16] = ACTIONS(1434), - [anon_sym_u32] = ACTIONS(1434), - [anon_sym_i32] = ACTIONS(1434), - [anon_sym_u64] = ACTIONS(1434), - [anon_sym_i64] = ACTIONS(1434), - [anon_sym_u128] = ACTIONS(1434), - [anon_sym_i128] = ACTIONS(1434), - [anon_sym_isize] = ACTIONS(1434), - [anon_sym_usize] = ACTIONS(1434), - [anon_sym_f32] = ACTIONS(1434), - [anon_sym_f64] = ACTIONS(1434), - [anon_sym_bool] = ACTIONS(1434), - [anon_sym_str] = ACTIONS(1434), - [anon_sym_char] = ACTIONS(1434), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_SLASH] = ACTIONS(1416), - [anon_sym_PERCENT] = ACTIONS(1416), - [anon_sym_CARET] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(1434), - [anon_sym_AMP] = ACTIONS(1416), - [anon_sym_PIPE] = ACTIONS(1416), - [anon_sym_AMP_AMP] = ACTIONS(1418), - [anon_sym_PIPE_PIPE] = ACTIONS(1418), - [anon_sym_LT_LT] = ACTIONS(1416), - [anon_sym_GT_GT] = ACTIONS(1416), - [anon_sym_PLUS_EQ] = ACTIONS(1418), - [anon_sym_DASH_EQ] = ACTIONS(1418), - [anon_sym_STAR_EQ] = ACTIONS(1418), - [anon_sym_SLASH_EQ] = ACTIONS(1418), - [anon_sym_PERCENT_EQ] = ACTIONS(1418), - [anon_sym_CARET_EQ] = ACTIONS(1418), - [anon_sym_AMP_EQ] = ACTIONS(1418), - [anon_sym_PIPE_EQ] = ACTIONS(1418), - [anon_sym_LT_LT_EQ] = ACTIONS(1418), - [anon_sym_GT_GT_EQ] = ACTIONS(1418), - [anon_sym_EQ] = ACTIONS(1416), - [anon_sym_EQ_EQ] = ACTIONS(1418), - [anon_sym_BANG_EQ] = ACTIONS(1418), - [anon_sym_GT] = ACTIONS(1416), - [anon_sym_LT] = ACTIONS(1416), - [anon_sym_GT_EQ] = ACTIONS(1418), - [anon_sym_LT_EQ] = ACTIONS(1418), - [anon_sym_DOT] = ACTIONS(1416), - [anon_sym_DOT_DOT] = ACTIONS(1416), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1418), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(1432), - [anon_sym_POUND] = ACTIONS(1432), - [anon_sym_SQUOTE] = ACTIONS(1434), - [anon_sym_as] = ACTIONS(1416), - [anon_sym_async] = ACTIONS(1434), - [anon_sym_break] = ACTIONS(1434), - [anon_sym_const] = ACTIONS(1434), - [anon_sym_continue] = ACTIONS(1434), - [anon_sym_default] = ACTIONS(1434), - [anon_sym_enum] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_for] = ACTIONS(1434), - [anon_sym_if] = ACTIONS(1434), - [anon_sym_impl] = ACTIONS(1434), - [anon_sym_let] = ACTIONS(1434), - [anon_sym_loop] = ACTIONS(1434), - [anon_sym_match] = ACTIONS(1434), - [anon_sym_mod] = ACTIONS(1434), - [anon_sym_pub] = ACTIONS(1434), - [anon_sym_return] = ACTIONS(1434), - [anon_sym_static] = ACTIONS(1434), - [anon_sym_struct] = ACTIONS(1434), - [anon_sym_trait] = ACTIONS(1434), - [anon_sym_type] = ACTIONS(1434), - [anon_sym_union] = ACTIONS(1434), - [anon_sym_unsafe] = ACTIONS(1434), - [anon_sym_use] = ACTIONS(1434), - [anon_sym_while] = ACTIONS(1434), - [anon_sym_extern] = ACTIONS(1434), - [anon_sym_yield] = ACTIONS(1434), - [anon_sym_move] = ACTIONS(1434), - [anon_sym_try] = ACTIONS(1434), - [sym_integer_literal] = ACTIONS(1432), - [aux_sym_string_literal_token1] = ACTIONS(1432), - [sym_char_literal] = ACTIONS(1432), - [anon_sym_true] = ACTIONS(1434), - [anon_sym_false] = ACTIONS(1434), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1434), - [sym_super] = ACTIONS(1434), - [sym_crate] = ACTIONS(1434), - [sym_metavariable] = ACTIONS(1432), - [sym__raw_string_literal_start] = ACTIONS(1432), - [sym_float_literal] = ACTIONS(1432), + [anon_sym_DOT_DOT] = ACTIONS(1284), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1286), + [anon_sym_COLON_COLON] = ACTIONS(1290), + [anon_sym_POUND] = ACTIONS(1292), + [anon_sym_SQUOTE] = ACTIONS(1294), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1300), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1308), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_ref] = ACTIONS(1312), + [anon_sym_dyn] = ACTIONS(1314), + [sym_mutable_specifier] = ACTIONS(1316), + [sym_integer_literal] = ACTIONS(1318), + [aux_sym_string_literal_token1] = ACTIONS(1320), + [sym_char_literal] = ACTIONS(1318), + [anon_sym_true] = ACTIONS(1322), + [anon_sym_false] = ACTIONS(1322), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1324), + [sym_super] = ACTIONS(1326), + [sym_crate] = ACTIONS(1326), + [sym_metavariable] = ACTIONS(1328), + [sym__raw_string_literal_start] = ACTIONS(1330), + [sym_float_literal] = ACTIONS(1318), }, [405] = { - [sym_attribute_item] = STATE(415), - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_self_parameter] = STATE(3088), - [sym_variadic_parameter] = STATE(3088), - [sym_parameter] = STATE(3088), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2763), - [sym_bracketed_type] = STATE(3520), - [sym_lifetime] = STATE(2985), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3198), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(2480), - [sym_scoped_identifier] = STATE(2216), - [sym_scoped_type_identifier] = STATE(2114), + [sym_attribute_item] = STATE(414), + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_self_parameter] = STATE(3249), + [sym_variadic_parameter] = STATE(3249), + [sym_parameter] = STATE(3249), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2757), + [sym_bracketed_type] = STATE(3528), + [sym_lifetime] = STATE(2931), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3289), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(2436), + [sym_scoped_identifier] = STATE(2212), + [sym_scoped_type_identifier] = STATE(2104), [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(3268), + [sym__pattern] = STATE(3137), [sym_tuple_pattern] = STATE(2079), [sym_slice_pattern] = STATE(2079), [sym_tuple_struct_pattern] = STATE(2079), @@ -61862,103 +61870,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_captured_pattern] = STATE(2079), [sym_reference_pattern] = STATE(2079), [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym__literal_pattern] = STATE(2006), + [sym_negative_literal] = STATE(2009), + [sym_string_literal] = STATE(2009), + [sym_raw_string_literal] = STATE(2009), + [sym_boolean_literal] = STATE(2009), [sym_line_comment] = STATE(405), [sym_block_comment] = STATE(405), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1326), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(1260), + [anon_sym_LPAREN] = ACTIONS(1262), [anon_sym_RPAREN] = ACTIONS(1464), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1330), - [anon_sym_i8] = ACTIONS(1330), - [anon_sym_u16] = ACTIONS(1330), - [anon_sym_i16] = ACTIONS(1330), - [anon_sym_u32] = ACTIONS(1330), - [anon_sym_i32] = ACTIONS(1330), - [anon_sym_u64] = ACTIONS(1330), - [anon_sym_i64] = ACTIONS(1330), - [anon_sym_u128] = ACTIONS(1330), - [anon_sym_i128] = ACTIONS(1330), - [anon_sym_isize] = ACTIONS(1330), - [anon_sym_usize] = ACTIONS(1330), - [anon_sym_f32] = ACTIONS(1330), - [anon_sym_f64] = ACTIONS(1330), - [anon_sym_bool] = ACTIONS(1330), - [anon_sym_str] = ACTIONS(1330), - [anon_sym_char] = ACTIONS(1330), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1332), - [anon_sym_PIPE] = ACTIONS(1268), + [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), + [anon_sym_u8] = ACTIONS(1272), + [anon_sym_i8] = ACTIONS(1272), + [anon_sym_u16] = ACTIONS(1272), + [anon_sym_i16] = ACTIONS(1272), + [anon_sym_u32] = ACTIONS(1272), + [anon_sym_i32] = ACTIONS(1272), + [anon_sym_u64] = ACTIONS(1272), + [anon_sym_i64] = ACTIONS(1272), + [anon_sym_u128] = ACTIONS(1272), + [anon_sym_i128] = ACTIONS(1272), + [anon_sym_isize] = ACTIONS(1272), + [anon_sym_usize] = ACTIONS(1272), + [anon_sym_f32] = ACTIONS(1272), + [anon_sym_f64] = ACTIONS(1272), + [anon_sym_bool] = ACTIONS(1272), + [anon_sym_str] = ACTIONS(1272), + [anon_sym_char] = ACTIONS(1272), + [anon_sym_DASH] = ACTIONS(1274), + [anon_sym_BANG] = ACTIONS(1276), + [anon_sym_AMP] = ACTIONS(1278), + [anon_sym_PIPE] = ACTIONS(1280), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1456), - [anon_sym_DOT_DOT] = ACTIONS(1272), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1274), - [anon_sym_COLON_COLON] = ACTIONS(1338), - [anon_sym_POUND] = ACTIONS(1280), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1340), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1342), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_ref] = ACTIONS(1300), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(1304), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1344), - [sym_super] = ACTIONS(1346), - [sym_crate] = ACTIONS(1346), - [sym_metavariable] = ACTIONS(1348), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [anon_sym_DOT_DOT] = ACTIONS(1284), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1286), + [anon_sym_COLON_COLON] = ACTIONS(1290), + [anon_sym_POUND] = ACTIONS(1292), + [anon_sym_SQUOTE] = ACTIONS(1294), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1300), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1308), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_ref] = ACTIONS(1312), + [anon_sym_dyn] = ACTIONS(1314), + [sym_mutable_specifier] = ACTIONS(1316), + [sym_integer_literal] = ACTIONS(1318), + [aux_sym_string_literal_token1] = ACTIONS(1320), + [sym_char_literal] = ACTIONS(1318), + [anon_sym_true] = ACTIONS(1322), + [anon_sym_false] = ACTIONS(1322), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1324), + [sym_super] = ACTIONS(1326), + [sym_crate] = ACTIONS(1326), + [sym_metavariable] = ACTIONS(1328), + [sym__raw_string_literal_start] = ACTIONS(1330), + [sym_float_literal] = ACTIONS(1318), }, [406] = { - [sym_attribute_item] = STATE(415), - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_self_parameter] = STATE(3088), - [sym_variadic_parameter] = STATE(3088), - [sym_parameter] = STATE(3088), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2763), - [sym_bracketed_type] = STATE(3520), - [sym_lifetime] = STATE(2985), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3198), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(2480), - [sym_scoped_identifier] = STATE(2216), - [sym_scoped_type_identifier] = STATE(2114), + [sym_attribute_item] = STATE(414), + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_self_parameter] = STATE(3249), + [sym_variadic_parameter] = STATE(3249), + [sym_parameter] = STATE(3249), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2757), + [sym_bracketed_type] = STATE(3528), + [sym_lifetime] = STATE(2931), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3289), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(2436), + [sym_scoped_identifier] = STATE(2212), + [sym_scoped_type_identifier] = STATE(2104), [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(3268), + [sym__pattern] = STATE(3137), [sym_tuple_pattern] = STATE(2079), [sym_slice_pattern] = STATE(2079), [sym_tuple_struct_pattern] = STATE(2079), @@ -61970,103 +61978,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_captured_pattern] = STATE(2079), [sym_reference_pattern] = STATE(2079), [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym__literal_pattern] = STATE(2006), + [sym_negative_literal] = STATE(2009), + [sym_string_literal] = STATE(2009), + [sym_raw_string_literal] = STATE(2009), + [sym_boolean_literal] = STATE(2009), [sym_line_comment] = STATE(406), [sym_block_comment] = STATE(406), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1326), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(1260), + [anon_sym_LPAREN] = ACTIONS(1262), [anon_sym_RPAREN] = ACTIONS(1466), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1330), - [anon_sym_i8] = ACTIONS(1330), - [anon_sym_u16] = ACTIONS(1330), - [anon_sym_i16] = ACTIONS(1330), - [anon_sym_u32] = ACTIONS(1330), - [anon_sym_i32] = ACTIONS(1330), - [anon_sym_u64] = ACTIONS(1330), - [anon_sym_i64] = ACTIONS(1330), - [anon_sym_u128] = ACTIONS(1330), - [anon_sym_i128] = ACTIONS(1330), - [anon_sym_isize] = ACTIONS(1330), - [anon_sym_usize] = ACTIONS(1330), - [anon_sym_f32] = ACTIONS(1330), - [anon_sym_f64] = ACTIONS(1330), - [anon_sym_bool] = ACTIONS(1330), - [anon_sym_str] = ACTIONS(1330), - [anon_sym_char] = ACTIONS(1330), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1332), - [anon_sym_PIPE] = ACTIONS(1268), + [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), + [anon_sym_u8] = ACTIONS(1272), + [anon_sym_i8] = ACTIONS(1272), + [anon_sym_u16] = ACTIONS(1272), + [anon_sym_i16] = ACTIONS(1272), + [anon_sym_u32] = ACTIONS(1272), + [anon_sym_i32] = ACTIONS(1272), + [anon_sym_u64] = ACTIONS(1272), + [anon_sym_i64] = ACTIONS(1272), + [anon_sym_u128] = ACTIONS(1272), + [anon_sym_i128] = ACTIONS(1272), + [anon_sym_isize] = ACTIONS(1272), + [anon_sym_usize] = ACTIONS(1272), + [anon_sym_f32] = ACTIONS(1272), + [anon_sym_f64] = ACTIONS(1272), + [anon_sym_bool] = ACTIONS(1272), + [anon_sym_str] = ACTIONS(1272), + [anon_sym_char] = ACTIONS(1272), + [anon_sym_DASH] = ACTIONS(1274), + [anon_sym_BANG] = ACTIONS(1276), + [anon_sym_AMP] = ACTIONS(1278), + [anon_sym_PIPE] = ACTIONS(1280), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1456), - [anon_sym_DOT_DOT] = ACTIONS(1272), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1274), - [anon_sym_COLON_COLON] = ACTIONS(1338), - [anon_sym_POUND] = ACTIONS(1280), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1340), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1342), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_ref] = ACTIONS(1300), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(1304), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1344), - [sym_super] = ACTIONS(1346), - [sym_crate] = ACTIONS(1346), - [sym_metavariable] = ACTIONS(1348), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [anon_sym_DOT_DOT] = ACTIONS(1284), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1286), + [anon_sym_COLON_COLON] = ACTIONS(1290), + [anon_sym_POUND] = ACTIONS(1292), + [anon_sym_SQUOTE] = ACTIONS(1294), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1300), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1308), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_ref] = ACTIONS(1312), + [anon_sym_dyn] = ACTIONS(1314), + [sym_mutable_specifier] = ACTIONS(1316), + [sym_integer_literal] = ACTIONS(1318), + [aux_sym_string_literal_token1] = ACTIONS(1320), + [sym_char_literal] = ACTIONS(1318), + [anon_sym_true] = ACTIONS(1322), + [anon_sym_false] = ACTIONS(1322), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1324), + [sym_super] = ACTIONS(1326), + [sym_crate] = ACTIONS(1326), + [sym_metavariable] = ACTIONS(1328), + [sym__raw_string_literal_start] = ACTIONS(1330), + [sym_float_literal] = ACTIONS(1318), }, [407] = { - [sym_attribute_item] = STATE(415), - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_self_parameter] = STATE(3088), - [sym_variadic_parameter] = STATE(3088), - [sym_parameter] = STATE(3088), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2763), - [sym_bracketed_type] = STATE(3520), - [sym_lifetime] = STATE(2985), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3198), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(2480), - [sym_scoped_identifier] = STATE(2216), - [sym_scoped_type_identifier] = STATE(2114), + [sym_attribute_item] = STATE(414), + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_self_parameter] = STATE(3249), + [sym_variadic_parameter] = STATE(3249), + [sym_parameter] = STATE(3249), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2757), + [sym_bracketed_type] = STATE(3528), + [sym_lifetime] = STATE(2931), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3289), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(2436), + [sym_scoped_identifier] = STATE(2212), + [sym_scoped_type_identifier] = STATE(2104), [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(3268), + [sym__pattern] = STATE(3137), [sym_tuple_pattern] = STATE(2079), [sym_slice_pattern] = STATE(2079), [sym_tuple_struct_pattern] = STATE(2079), @@ -62078,103 +62086,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_captured_pattern] = STATE(2079), [sym_reference_pattern] = STATE(2079), [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym__literal_pattern] = STATE(2006), + [sym_negative_literal] = STATE(2009), + [sym_string_literal] = STATE(2009), + [sym_raw_string_literal] = STATE(2009), + [sym_boolean_literal] = STATE(2009), [sym_line_comment] = STATE(407), [sym_block_comment] = STATE(407), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1326), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(1260), + [anon_sym_LPAREN] = ACTIONS(1262), [anon_sym_RPAREN] = ACTIONS(1468), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1330), - [anon_sym_i8] = ACTIONS(1330), - [anon_sym_u16] = ACTIONS(1330), - [anon_sym_i16] = ACTIONS(1330), - [anon_sym_u32] = ACTIONS(1330), - [anon_sym_i32] = ACTIONS(1330), - [anon_sym_u64] = ACTIONS(1330), - [anon_sym_i64] = ACTIONS(1330), - [anon_sym_u128] = ACTIONS(1330), - [anon_sym_i128] = ACTIONS(1330), - [anon_sym_isize] = ACTIONS(1330), - [anon_sym_usize] = ACTIONS(1330), - [anon_sym_f32] = ACTIONS(1330), - [anon_sym_f64] = ACTIONS(1330), - [anon_sym_bool] = ACTIONS(1330), - [anon_sym_str] = ACTIONS(1330), - [anon_sym_char] = ACTIONS(1330), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1332), - [anon_sym_PIPE] = ACTIONS(1268), + [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), + [anon_sym_u8] = ACTIONS(1272), + [anon_sym_i8] = ACTIONS(1272), + [anon_sym_u16] = ACTIONS(1272), + [anon_sym_i16] = ACTIONS(1272), + [anon_sym_u32] = ACTIONS(1272), + [anon_sym_i32] = ACTIONS(1272), + [anon_sym_u64] = ACTIONS(1272), + [anon_sym_i64] = ACTIONS(1272), + [anon_sym_u128] = ACTIONS(1272), + [anon_sym_i128] = ACTIONS(1272), + [anon_sym_isize] = ACTIONS(1272), + [anon_sym_usize] = ACTIONS(1272), + [anon_sym_f32] = ACTIONS(1272), + [anon_sym_f64] = ACTIONS(1272), + [anon_sym_bool] = ACTIONS(1272), + [anon_sym_str] = ACTIONS(1272), + [anon_sym_char] = ACTIONS(1272), + [anon_sym_DASH] = ACTIONS(1274), + [anon_sym_BANG] = ACTIONS(1276), + [anon_sym_AMP] = ACTIONS(1278), + [anon_sym_PIPE] = ACTIONS(1280), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1456), - [anon_sym_DOT_DOT] = ACTIONS(1272), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1274), - [anon_sym_COLON_COLON] = ACTIONS(1338), - [anon_sym_POUND] = ACTIONS(1280), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1340), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1342), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_ref] = ACTIONS(1300), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(1304), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1344), - [sym_super] = ACTIONS(1346), - [sym_crate] = ACTIONS(1346), - [sym_metavariable] = ACTIONS(1348), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [anon_sym_DOT_DOT] = ACTIONS(1284), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1286), + [anon_sym_COLON_COLON] = ACTIONS(1290), + [anon_sym_POUND] = ACTIONS(1292), + [anon_sym_SQUOTE] = ACTIONS(1294), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1300), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1308), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_ref] = ACTIONS(1312), + [anon_sym_dyn] = ACTIONS(1314), + [sym_mutable_specifier] = ACTIONS(1316), + [sym_integer_literal] = ACTIONS(1318), + [aux_sym_string_literal_token1] = ACTIONS(1320), + [sym_char_literal] = ACTIONS(1318), + [anon_sym_true] = ACTIONS(1322), + [anon_sym_false] = ACTIONS(1322), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1324), + [sym_super] = ACTIONS(1326), + [sym_crate] = ACTIONS(1326), + [sym_metavariable] = ACTIONS(1328), + [sym__raw_string_literal_start] = ACTIONS(1330), + [sym_float_literal] = ACTIONS(1318), }, [408] = { - [sym_attribute_item] = STATE(415), - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_self_parameter] = STATE(3088), - [sym_variadic_parameter] = STATE(3088), - [sym_parameter] = STATE(3088), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2763), - [sym_bracketed_type] = STATE(3520), - [sym_lifetime] = STATE(2985), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3198), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(2480), - [sym_scoped_identifier] = STATE(2216), - [sym_scoped_type_identifier] = STATE(2114), + [sym_attribute_item] = STATE(414), + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_self_parameter] = STATE(3249), + [sym_variadic_parameter] = STATE(3249), + [sym_parameter] = STATE(3249), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2757), + [sym_bracketed_type] = STATE(3528), + [sym_lifetime] = STATE(2931), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3289), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(2436), + [sym_scoped_identifier] = STATE(2212), + [sym_scoped_type_identifier] = STATE(2104), [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(3268), + [sym__pattern] = STATE(3137), [sym_tuple_pattern] = STATE(2079), [sym_slice_pattern] = STATE(2079), [sym_tuple_struct_pattern] = STATE(2079), @@ -62186,103 +62194,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_captured_pattern] = STATE(2079), [sym_reference_pattern] = STATE(2079), [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym__literal_pattern] = STATE(2006), + [sym_negative_literal] = STATE(2009), + [sym_string_literal] = STATE(2009), + [sym_raw_string_literal] = STATE(2009), + [sym_boolean_literal] = STATE(2009), [sym_line_comment] = STATE(408), [sym_block_comment] = STATE(408), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1326), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(1260), + [anon_sym_LPAREN] = ACTIONS(1262), [anon_sym_RPAREN] = ACTIONS(1470), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1330), - [anon_sym_i8] = ACTIONS(1330), - [anon_sym_u16] = ACTIONS(1330), - [anon_sym_i16] = ACTIONS(1330), - [anon_sym_u32] = ACTIONS(1330), - [anon_sym_i32] = ACTIONS(1330), - [anon_sym_u64] = ACTIONS(1330), - [anon_sym_i64] = ACTIONS(1330), - [anon_sym_u128] = ACTIONS(1330), - [anon_sym_i128] = ACTIONS(1330), - [anon_sym_isize] = ACTIONS(1330), - [anon_sym_usize] = ACTIONS(1330), - [anon_sym_f32] = ACTIONS(1330), - [anon_sym_f64] = ACTIONS(1330), - [anon_sym_bool] = ACTIONS(1330), - [anon_sym_str] = ACTIONS(1330), - [anon_sym_char] = ACTIONS(1330), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1332), - [anon_sym_PIPE] = ACTIONS(1268), + [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), + [anon_sym_u8] = ACTIONS(1272), + [anon_sym_i8] = ACTIONS(1272), + [anon_sym_u16] = ACTIONS(1272), + [anon_sym_i16] = ACTIONS(1272), + [anon_sym_u32] = ACTIONS(1272), + [anon_sym_i32] = ACTIONS(1272), + [anon_sym_u64] = ACTIONS(1272), + [anon_sym_i64] = ACTIONS(1272), + [anon_sym_u128] = ACTIONS(1272), + [anon_sym_i128] = ACTIONS(1272), + [anon_sym_isize] = ACTIONS(1272), + [anon_sym_usize] = ACTIONS(1272), + [anon_sym_f32] = ACTIONS(1272), + [anon_sym_f64] = ACTIONS(1272), + [anon_sym_bool] = ACTIONS(1272), + [anon_sym_str] = ACTIONS(1272), + [anon_sym_char] = ACTIONS(1272), + [anon_sym_DASH] = ACTIONS(1274), + [anon_sym_BANG] = ACTIONS(1276), + [anon_sym_AMP] = ACTIONS(1278), + [anon_sym_PIPE] = ACTIONS(1280), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1456), - [anon_sym_DOT_DOT] = ACTIONS(1272), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1274), - [anon_sym_COLON_COLON] = ACTIONS(1338), - [anon_sym_POUND] = ACTIONS(1280), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1340), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1342), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_ref] = ACTIONS(1300), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(1304), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1344), - [sym_super] = ACTIONS(1346), - [sym_crate] = ACTIONS(1346), - [sym_metavariable] = ACTIONS(1348), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [anon_sym_DOT_DOT] = ACTIONS(1284), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1286), + [anon_sym_COLON_COLON] = ACTIONS(1290), + [anon_sym_POUND] = ACTIONS(1292), + [anon_sym_SQUOTE] = ACTIONS(1294), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1300), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1308), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_ref] = ACTIONS(1312), + [anon_sym_dyn] = ACTIONS(1314), + [sym_mutable_specifier] = ACTIONS(1316), + [sym_integer_literal] = ACTIONS(1318), + [aux_sym_string_literal_token1] = ACTIONS(1320), + [sym_char_literal] = ACTIONS(1318), + [anon_sym_true] = ACTIONS(1322), + [anon_sym_false] = ACTIONS(1322), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1324), + [sym_super] = ACTIONS(1326), + [sym_crate] = ACTIONS(1326), + [sym_metavariable] = ACTIONS(1328), + [sym__raw_string_literal_start] = ACTIONS(1330), + [sym_float_literal] = ACTIONS(1318), }, [409] = { - [sym_attribute_item] = STATE(415), - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_self_parameter] = STATE(3088), - [sym_variadic_parameter] = STATE(3088), - [sym_parameter] = STATE(3088), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2763), - [sym_bracketed_type] = STATE(3520), - [sym_lifetime] = STATE(2985), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3198), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(2480), - [sym_scoped_identifier] = STATE(2216), - [sym_scoped_type_identifier] = STATE(2114), + [sym_attribute_item] = STATE(414), + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_self_parameter] = STATE(3249), + [sym_variadic_parameter] = STATE(3249), + [sym_parameter] = STATE(3249), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2757), + [sym_bracketed_type] = STATE(3528), + [sym_lifetime] = STATE(2931), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3289), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(2436), + [sym_scoped_identifier] = STATE(2212), + [sym_scoped_type_identifier] = STATE(2104), [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(3268), + [sym__pattern] = STATE(3137), [sym_tuple_pattern] = STATE(2079), [sym_slice_pattern] = STATE(2079), [sym_tuple_struct_pattern] = STATE(2079), @@ -62294,101 +62302,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_captured_pattern] = STATE(2079), [sym_reference_pattern] = STATE(2079), [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym__literal_pattern] = STATE(2006), + [sym_negative_literal] = STATE(2009), + [sym_string_literal] = STATE(2009), + [sym_raw_string_literal] = STATE(2009), + [sym_boolean_literal] = STATE(2009), [sym_line_comment] = STATE(409), [sym_block_comment] = STATE(409), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1326), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(1260), + [anon_sym_LPAREN] = ACTIONS(1262), [anon_sym_RPAREN] = ACTIONS(1472), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1330), - [anon_sym_i8] = ACTIONS(1330), - [anon_sym_u16] = ACTIONS(1330), - [anon_sym_i16] = ACTIONS(1330), - [anon_sym_u32] = ACTIONS(1330), - [anon_sym_i32] = ACTIONS(1330), - [anon_sym_u64] = ACTIONS(1330), - [anon_sym_i64] = ACTIONS(1330), - [anon_sym_u128] = ACTIONS(1330), - [anon_sym_i128] = ACTIONS(1330), - [anon_sym_isize] = ACTIONS(1330), - [anon_sym_usize] = ACTIONS(1330), - [anon_sym_f32] = ACTIONS(1330), - [anon_sym_f64] = ACTIONS(1330), - [anon_sym_bool] = ACTIONS(1330), - [anon_sym_str] = ACTIONS(1330), - [anon_sym_char] = ACTIONS(1330), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1332), - [anon_sym_PIPE] = ACTIONS(1268), + [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), + [anon_sym_u8] = ACTIONS(1272), + [anon_sym_i8] = ACTIONS(1272), + [anon_sym_u16] = ACTIONS(1272), + [anon_sym_i16] = ACTIONS(1272), + [anon_sym_u32] = ACTIONS(1272), + [anon_sym_i32] = ACTIONS(1272), + [anon_sym_u64] = ACTIONS(1272), + [anon_sym_i64] = ACTIONS(1272), + [anon_sym_u128] = ACTIONS(1272), + [anon_sym_i128] = ACTIONS(1272), + [anon_sym_isize] = ACTIONS(1272), + [anon_sym_usize] = ACTIONS(1272), + [anon_sym_f32] = ACTIONS(1272), + [anon_sym_f64] = ACTIONS(1272), + [anon_sym_bool] = ACTIONS(1272), + [anon_sym_str] = ACTIONS(1272), + [anon_sym_char] = ACTIONS(1272), + [anon_sym_DASH] = ACTIONS(1274), + [anon_sym_BANG] = ACTIONS(1276), + [anon_sym_AMP] = ACTIONS(1278), + [anon_sym_PIPE] = ACTIONS(1280), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1456), - [anon_sym_DOT_DOT] = ACTIONS(1272), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1274), - [anon_sym_COLON_COLON] = ACTIONS(1338), - [anon_sym_POUND] = ACTIONS(1280), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1340), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1342), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_ref] = ACTIONS(1300), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(1304), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1344), - [sym_super] = ACTIONS(1346), - [sym_crate] = ACTIONS(1346), - [sym_metavariable] = ACTIONS(1348), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [anon_sym_DOT_DOT] = ACTIONS(1284), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1286), + [anon_sym_COLON_COLON] = ACTIONS(1290), + [anon_sym_POUND] = ACTIONS(1292), + [anon_sym_SQUOTE] = ACTIONS(1294), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1300), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1308), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_ref] = ACTIONS(1312), + [anon_sym_dyn] = ACTIONS(1314), + [sym_mutable_specifier] = ACTIONS(1316), + [sym_integer_literal] = ACTIONS(1318), + [aux_sym_string_literal_token1] = ACTIONS(1320), + [sym_char_literal] = ACTIONS(1318), + [anon_sym_true] = ACTIONS(1322), + [anon_sym_false] = ACTIONS(1322), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1324), + [sym_super] = ACTIONS(1326), + [sym_crate] = ACTIONS(1326), + [sym_metavariable] = ACTIONS(1328), + [sym__raw_string_literal_start] = ACTIONS(1330), + [sym_float_literal] = ACTIONS(1318), }, [410] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2576), - [sym_bracketed_type] = STATE(3527), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3273), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(2487), - [sym_scoped_identifier] = STATE(2113), - [sym_scoped_type_identifier] = STATE(2114), + [sym_attribute_item] = STATE(414), + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_self_parameter] = STATE(3249), + [sym_variadic_parameter] = STATE(3249), + [sym_parameter] = STATE(3249), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2757), + [sym_bracketed_type] = STATE(3528), + [sym_lifetime] = STATE(2931), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3289), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(2436), + [sym_scoped_identifier] = STATE(2212), + [sym_scoped_type_identifier] = STATE(2104), [sym_const_block] = STATE(2079), - [sym_closure_expression] = STATE(2855), - [sym_closure_parameters] = STATE(230), - [sym__pattern] = STATE(2640), + [sym__pattern] = STATE(3137), [sym_tuple_pattern] = STATE(2079), [sym_slice_pattern] = STATE(2079), [sym_tuple_struct_pattern] = STATE(2079), @@ -62400,104 +62410,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_captured_pattern] = STATE(2079), [sym_reference_pattern] = STATE(2079), [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym__literal_pattern] = STATE(2006), + [sym_negative_literal] = STATE(2009), + [sym_string_literal] = STATE(2009), + [sym_raw_string_literal] = STATE(2009), + [sym_boolean_literal] = STATE(2009), [sym_line_comment] = STATE(410), [sym_block_comment] = STATE(410), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1248), - [anon_sym_LPAREN] = ACTIONS(1250), - [anon_sym_RPAREN] = ACTIONS(1474), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1260), - [anon_sym_i8] = ACTIONS(1260), - [anon_sym_u16] = ACTIONS(1260), - [anon_sym_i16] = ACTIONS(1260), - [anon_sym_u32] = ACTIONS(1260), - [anon_sym_i32] = ACTIONS(1260), - [anon_sym_u64] = ACTIONS(1260), - [anon_sym_i64] = ACTIONS(1260), - [anon_sym_u128] = ACTIONS(1260), - [anon_sym_i128] = ACTIONS(1260), - [anon_sym_isize] = ACTIONS(1260), - [anon_sym_usize] = ACTIONS(1260), - [anon_sym_f32] = ACTIONS(1260), - [anon_sym_f64] = ACTIONS(1260), - [anon_sym_bool] = ACTIONS(1260), - [anon_sym_str] = ACTIONS(1260), - [anon_sym_char] = ACTIONS(1260), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1476), - [anon_sym_PIPE] = ACTIONS(1478), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(1260), + [anon_sym_LPAREN] = ACTIONS(1262), + [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), + [anon_sym_u8] = ACTIONS(1272), + [anon_sym_i8] = ACTIONS(1272), + [anon_sym_u16] = ACTIONS(1272), + [anon_sym_i16] = ACTIONS(1272), + [anon_sym_u32] = ACTIONS(1272), + [anon_sym_i32] = ACTIONS(1272), + [anon_sym_u64] = ACTIONS(1272), + [anon_sym_i64] = ACTIONS(1272), + [anon_sym_u128] = ACTIONS(1272), + [anon_sym_i128] = ACTIONS(1272), + [anon_sym_isize] = ACTIONS(1272), + [anon_sym_usize] = ACTIONS(1272), + [anon_sym_f32] = ACTIONS(1272), + [anon_sym_f64] = ACTIONS(1272), + [anon_sym_bool] = ACTIONS(1272), + [anon_sym_str] = ACTIONS(1272), + [anon_sym_char] = ACTIONS(1272), + [anon_sym_DASH] = ACTIONS(1274), + [anon_sym_BANG] = ACTIONS(1276), + [anon_sym_AMP] = ACTIONS(1278), + [anon_sym_PIPE] = ACTIONS(1280), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COMMA] = ACTIONS(1484), - [anon_sym_COLON_COLON] = ACTIONS(1278), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1288), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_static] = ACTIONS(1486), - [anon_sym_union] = ACTIONS(1296), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_ref] = ACTIONS(1300), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(1488), - [anon_sym_move] = ACTIONS(1490), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), + [anon_sym__] = ACTIONS(1456), + [anon_sym_DOT_DOT] = ACTIONS(1284), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1286), + [anon_sym_COLON_COLON] = ACTIONS(1290), + [anon_sym_POUND] = ACTIONS(1292), + [anon_sym_SQUOTE] = ACTIONS(1294), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1300), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1308), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_ref] = ACTIONS(1312), + [anon_sym_dyn] = ACTIONS(1314), + [sym_mutable_specifier] = ACTIONS(1316), + [sym_integer_literal] = ACTIONS(1318), + [aux_sym_string_literal_token1] = ACTIONS(1320), + [sym_char_literal] = ACTIONS(1318), + [anon_sym_true] = ACTIONS(1322), + [anon_sym_false] = ACTIONS(1322), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1314), - [sym_super] = ACTIONS(1314), - [sym_crate] = ACTIONS(1314), - [sym_metavariable] = ACTIONS(1316), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym_self] = ACTIONS(1324), + [sym_super] = ACTIONS(1326), + [sym_crate] = ACTIONS(1326), + [sym_metavariable] = ACTIONS(1328), + [sym__raw_string_literal_start] = ACTIONS(1330), + [sym_float_literal] = ACTIONS(1318), }, [411] = { - [sym_attribute_item] = STATE(415), - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_self_parameter] = STATE(3088), - [sym_variadic_parameter] = STATE(3088), - [sym_parameter] = STATE(3088), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2763), - [sym_bracketed_type] = STATE(3520), - [sym_lifetime] = STATE(2985), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3198), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(2480), - [sym_scoped_identifier] = STATE(2216), - [sym_scoped_type_identifier] = STATE(2114), + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2697), + [sym_bracketed_type] = STATE(3535), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3115), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(2428), + [sym_scoped_identifier] = STATE(2082), + [sym_scoped_type_identifier] = STATE(2104), [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(3268), + [sym_closure_expression] = STATE(2778), + [sym_closure_parameters] = STATE(216), + [sym__pattern] = STATE(2684), [sym_tuple_pattern] = STATE(2079), [sym_slice_pattern] = STATE(2079), [sym_tuple_struct_pattern] = STATE(2079), @@ -62509,100 +62515,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_captured_pattern] = STATE(2079), [sym_reference_pattern] = STATE(2079), [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym__literal_pattern] = STATE(2006), + [sym_negative_literal] = STATE(2009), + [sym_string_literal] = STATE(2009), + [sym_raw_string_literal] = STATE(2009), + [sym_boolean_literal] = STATE(2009), [sym_line_comment] = STATE(411), [sym_block_comment] = STATE(411), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1326), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1330), - [anon_sym_i8] = ACTIONS(1330), - [anon_sym_u16] = ACTIONS(1330), - [anon_sym_i16] = ACTIONS(1330), - [anon_sym_u32] = ACTIONS(1330), - [anon_sym_i32] = ACTIONS(1330), - [anon_sym_u64] = ACTIONS(1330), - [anon_sym_i64] = ACTIONS(1330), - [anon_sym_u128] = ACTIONS(1330), - [anon_sym_i128] = ACTIONS(1330), - [anon_sym_isize] = ACTIONS(1330), - [anon_sym_usize] = ACTIONS(1330), - [anon_sym_f32] = ACTIONS(1330), - [anon_sym_f64] = ACTIONS(1330), - [anon_sym_bool] = ACTIONS(1330), - [anon_sym_str] = ACTIONS(1330), - [anon_sym_char] = ACTIONS(1330), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1332), - [anon_sym_PIPE] = ACTIONS(1268), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(1332), + [anon_sym_LPAREN] = ACTIONS(1334), + [anon_sym_RPAREN] = ACTIONS(1474), + [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), + [anon_sym_u8] = ACTIONS(1338), + [anon_sym_i8] = ACTIONS(1338), + [anon_sym_u16] = ACTIONS(1338), + [anon_sym_i16] = ACTIONS(1338), + [anon_sym_u32] = ACTIONS(1338), + [anon_sym_i32] = ACTIONS(1338), + [anon_sym_u64] = ACTIONS(1338), + [anon_sym_i64] = ACTIONS(1338), + [anon_sym_u128] = ACTIONS(1338), + [anon_sym_i128] = ACTIONS(1338), + [anon_sym_isize] = ACTIONS(1338), + [anon_sym_usize] = ACTIONS(1338), + [anon_sym_f32] = ACTIONS(1338), + [anon_sym_f64] = ACTIONS(1338), + [anon_sym_bool] = ACTIONS(1338), + [anon_sym_str] = ACTIONS(1338), + [anon_sym_char] = ACTIONS(1338), + [anon_sym_DASH] = ACTIONS(1274), + [anon_sym_BANG] = ACTIONS(1276), + [anon_sym_AMP] = ACTIONS(1476), + [anon_sym_PIPE] = ACTIONS(1478), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1456), - [anon_sym_DOT_DOT] = ACTIONS(1272), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1274), - [anon_sym_COLON_COLON] = ACTIONS(1338), - [anon_sym_POUND] = ACTIONS(1280), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1340), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1342), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_ref] = ACTIONS(1300), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(1304), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1344), - [sym_super] = ACTIONS(1346), - [sym_crate] = ACTIONS(1346), - [sym_metavariable] = ACTIONS(1348), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [anon_sym__] = ACTIONS(1480), + [anon_sym_DOT_DOT] = ACTIONS(1482), + [anon_sym_COMMA] = ACTIONS(1484), + [anon_sym_COLON_COLON] = ACTIONS(1346), + [anon_sym_SQUOTE] = ACTIONS(1294), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1348), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), + [anon_sym_static] = ACTIONS(1486), + [anon_sym_union] = ACTIONS(1350), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_ref] = ACTIONS(1312), + [anon_sym_dyn] = ACTIONS(1314), + [sym_mutable_specifier] = ACTIONS(1488), + [anon_sym_move] = ACTIONS(1490), + [sym_integer_literal] = ACTIONS(1318), + [aux_sym_string_literal_token1] = ACTIONS(1320), + [sym_char_literal] = ACTIONS(1318), + [anon_sym_true] = ACTIONS(1322), + [anon_sym_false] = ACTIONS(1322), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1354), + [sym_super] = ACTIONS(1354), + [sym_crate] = ACTIONS(1354), + [sym_metavariable] = ACTIONS(1356), + [sym__raw_string_literal_start] = ACTIONS(1330), + [sym_float_literal] = ACTIONS(1318), }, [412] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2576), - [sym_bracketed_type] = STATE(3527), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3273), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(2487), - [sym_scoped_identifier] = STATE(2113), - [sym_scoped_type_identifier] = STATE(2114), + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2697), + [sym_bracketed_type] = STATE(3535), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3115), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(2428), + [sym_scoped_identifier] = STATE(2082), + [sym_scoped_type_identifier] = STATE(2104), [sym_const_block] = STATE(2079), - [sym_closure_expression] = STATE(2855), - [sym_closure_parameters] = STATE(230), - [sym__pattern] = STATE(2640), + [sym_closure_expression] = STATE(2778), + [sym_closure_parameters] = STATE(216), + [sym__pattern] = STATE(2684), [sym_tuple_pattern] = STATE(2079), [sym_slice_pattern] = STATE(2079), [sym_tuple_struct_pattern] = STATE(2079), @@ -62614,102 +62622,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_captured_pattern] = STATE(2079), [sym_reference_pattern] = STATE(2079), [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym__literal_pattern] = STATE(2006), + [sym_negative_literal] = STATE(2009), + [sym_string_literal] = STATE(2009), + [sym_raw_string_literal] = STATE(2009), + [sym_boolean_literal] = STATE(2009), [sym_line_comment] = STATE(412), [sym_block_comment] = STATE(412), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1248), - [anon_sym_LPAREN] = ACTIONS(1250), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(1332), + [anon_sym_LPAREN] = ACTIONS(1334), [anon_sym_RPAREN] = ACTIONS(1492), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1260), - [anon_sym_i8] = ACTIONS(1260), - [anon_sym_u16] = ACTIONS(1260), - [anon_sym_i16] = ACTIONS(1260), - [anon_sym_u32] = ACTIONS(1260), - [anon_sym_i32] = ACTIONS(1260), - [anon_sym_u64] = ACTIONS(1260), - [anon_sym_i64] = ACTIONS(1260), - [anon_sym_u128] = ACTIONS(1260), - [anon_sym_i128] = ACTIONS(1260), - [anon_sym_isize] = ACTIONS(1260), - [anon_sym_usize] = ACTIONS(1260), - [anon_sym_f32] = ACTIONS(1260), - [anon_sym_f64] = ACTIONS(1260), - [anon_sym_bool] = ACTIONS(1260), - [anon_sym_str] = ACTIONS(1260), - [anon_sym_char] = ACTIONS(1260), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), + [anon_sym_u8] = ACTIONS(1338), + [anon_sym_i8] = ACTIONS(1338), + [anon_sym_u16] = ACTIONS(1338), + [anon_sym_i16] = ACTIONS(1338), + [anon_sym_u32] = ACTIONS(1338), + [anon_sym_i32] = ACTIONS(1338), + [anon_sym_u64] = ACTIONS(1338), + [anon_sym_i64] = ACTIONS(1338), + [anon_sym_u128] = ACTIONS(1338), + [anon_sym_i128] = ACTIONS(1338), + [anon_sym_isize] = ACTIONS(1338), + [anon_sym_usize] = ACTIONS(1338), + [anon_sym_f32] = ACTIONS(1338), + [anon_sym_f64] = ACTIONS(1338), + [anon_sym_bool] = ACTIONS(1338), + [anon_sym_str] = ACTIONS(1338), + [anon_sym_char] = ACTIONS(1338), + [anon_sym_DASH] = ACTIONS(1274), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1476), [anon_sym_PIPE] = ACTIONS(1478), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1480), [anon_sym_DOT_DOT] = ACTIONS(1482), [anon_sym_COMMA] = ACTIONS(1484), - [anon_sym_COLON_COLON] = ACTIONS(1278), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1288), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_COLON_COLON] = ACTIONS(1346), + [anon_sym_SQUOTE] = ACTIONS(1294), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1348), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_static] = ACTIONS(1486), - [anon_sym_union] = ACTIONS(1296), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_ref] = ACTIONS(1300), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_union] = ACTIONS(1350), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_ref] = ACTIONS(1312), + [anon_sym_dyn] = ACTIONS(1314), [sym_mutable_specifier] = ACTIONS(1488), [anon_sym_move] = ACTIONS(1490), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), + [sym_integer_literal] = ACTIONS(1318), + [aux_sym_string_literal_token1] = ACTIONS(1320), + [sym_char_literal] = ACTIONS(1318), + [anon_sym_true] = ACTIONS(1322), + [anon_sym_false] = ACTIONS(1322), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1314), - [sym_super] = ACTIONS(1314), - [sym_crate] = ACTIONS(1314), - [sym_metavariable] = ACTIONS(1316), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym_self] = ACTIONS(1354), + [sym_super] = ACTIONS(1354), + [sym_crate] = ACTIONS(1354), + [sym_metavariable] = ACTIONS(1356), + [sym__raw_string_literal_start] = ACTIONS(1330), + [sym_float_literal] = ACTIONS(1318), }, [413] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2576), - [sym_bracketed_type] = STATE(3527), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3273), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(2487), - [sym_scoped_identifier] = STATE(2113), - [sym_scoped_type_identifier] = STATE(2114), + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2697), + [sym_bracketed_type] = STATE(3535), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3115), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(2428), + [sym_scoped_identifier] = STATE(2082), + [sym_scoped_type_identifier] = STATE(2104), [sym_const_block] = STATE(2079), - [sym_closure_expression] = STATE(2855), - [sym_closure_parameters] = STATE(230), - [sym__pattern] = STATE(2640), + [sym_closure_expression] = STATE(2778), + [sym_closure_parameters] = STATE(216), + [sym__pattern] = STATE(2684), [sym_tuple_pattern] = STATE(2079), [sym_slice_pattern] = STATE(2079), [sym_tuple_struct_pattern] = STATE(2079), @@ -62721,103 +62729,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_captured_pattern] = STATE(2079), [sym_reference_pattern] = STATE(2079), [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym__literal_pattern] = STATE(2006), + [sym_negative_literal] = STATE(2009), + [sym_string_literal] = STATE(2009), + [sym_raw_string_literal] = STATE(2009), + [sym_boolean_literal] = STATE(2009), [sym_line_comment] = STATE(413), [sym_block_comment] = STATE(413), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1248), - [anon_sym_LPAREN] = ACTIONS(1250), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(1332), + [anon_sym_LPAREN] = ACTIONS(1334), [anon_sym_RPAREN] = ACTIONS(1494), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1260), - [anon_sym_i8] = ACTIONS(1260), - [anon_sym_u16] = ACTIONS(1260), - [anon_sym_i16] = ACTIONS(1260), - [anon_sym_u32] = ACTIONS(1260), - [anon_sym_i32] = ACTIONS(1260), - [anon_sym_u64] = ACTIONS(1260), - [anon_sym_i64] = ACTIONS(1260), - [anon_sym_u128] = ACTIONS(1260), - [anon_sym_i128] = ACTIONS(1260), - [anon_sym_isize] = ACTIONS(1260), - [anon_sym_usize] = ACTIONS(1260), - [anon_sym_f32] = ACTIONS(1260), - [anon_sym_f64] = ACTIONS(1260), - [anon_sym_bool] = ACTIONS(1260), - [anon_sym_str] = ACTIONS(1260), - [anon_sym_char] = ACTIONS(1260), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), + [anon_sym_u8] = ACTIONS(1338), + [anon_sym_i8] = ACTIONS(1338), + [anon_sym_u16] = ACTIONS(1338), + [anon_sym_i16] = ACTIONS(1338), + [anon_sym_u32] = ACTIONS(1338), + [anon_sym_i32] = ACTIONS(1338), + [anon_sym_u64] = ACTIONS(1338), + [anon_sym_i64] = ACTIONS(1338), + [anon_sym_u128] = ACTIONS(1338), + [anon_sym_i128] = ACTIONS(1338), + [anon_sym_isize] = ACTIONS(1338), + [anon_sym_usize] = ACTIONS(1338), + [anon_sym_f32] = ACTIONS(1338), + [anon_sym_f64] = ACTIONS(1338), + [anon_sym_bool] = ACTIONS(1338), + [anon_sym_str] = ACTIONS(1338), + [anon_sym_char] = ACTIONS(1338), + [anon_sym_DASH] = ACTIONS(1274), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1476), [anon_sym_PIPE] = ACTIONS(1478), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1480), [anon_sym_DOT_DOT] = ACTIONS(1482), [anon_sym_COMMA] = ACTIONS(1484), - [anon_sym_COLON_COLON] = ACTIONS(1278), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1288), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_COLON_COLON] = ACTIONS(1346), + [anon_sym_SQUOTE] = ACTIONS(1294), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1348), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_static] = ACTIONS(1486), - [anon_sym_union] = ACTIONS(1296), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_ref] = ACTIONS(1300), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_union] = ACTIONS(1350), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_ref] = ACTIONS(1312), + [anon_sym_dyn] = ACTIONS(1314), [sym_mutable_specifier] = ACTIONS(1488), [anon_sym_move] = ACTIONS(1490), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), + [sym_integer_literal] = ACTIONS(1318), + [aux_sym_string_literal_token1] = ACTIONS(1320), + [sym_char_literal] = ACTIONS(1318), + [anon_sym_true] = ACTIONS(1322), + [anon_sym_false] = ACTIONS(1322), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1314), - [sym_super] = ACTIONS(1314), - [sym_crate] = ACTIONS(1314), - [sym_metavariable] = ACTIONS(1316), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym_self] = ACTIONS(1354), + [sym_super] = ACTIONS(1354), + [sym_crate] = ACTIONS(1354), + [sym_metavariable] = ACTIONS(1356), + [sym__raw_string_literal_start] = ACTIONS(1330), + [sym_float_literal] = ACTIONS(1318), }, [414] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_self_parameter] = STATE(2883), - [sym_variadic_parameter] = STATE(2883), - [sym_parameter] = STATE(2883), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2555), - [sym_bracketed_type] = STATE(3520), - [sym_lifetime] = STATE(2985), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3198), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(2480), - [sym_scoped_identifier] = STATE(2216), - [sym_scoped_type_identifier] = STATE(2114), + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_self_parameter] = STATE(3117), + [sym_variadic_parameter] = STATE(3117), + [sym_parameter] = STATE(3117), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2854), + [sym_bracketed_type] = STATE(3528), + [sym_lifetime] = STATE(2931), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3289), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(2436), + [sym_scoped_identifier] = STATE(2212), + [sym_scoped_type_identifier] = STATE(2104), [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(3268), + [sym__pattern] = STATE(3137), [sym_tuple_pattern] = STATE(2079), [sym_slice_pattern] = STATE(2079), [sym_tuple_struct_pattern] = STATE(2079), @@ -62829,100 +62837,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_captured_pattern] = STATE(2079), [sym_reference_pattern] = STATE(2079), [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym__literal_pattern] = STATE(2006), + [sym_negative_literal] = STATE(2009), + [sym_string_literal] = STATE(2009), + [sym_raw_string_literal] = STATE(2009), + [sym_boolean_literal] = STATE(2009), [sym_line_comment] = STATE(414), [sym_block_comment] = STATE(414), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1326), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1330), - [anon_sym_i8] = ACTIONS(1330), - [anon_sym_u16] = ACTIONS(1330), - [anon_sym_i16] = ACTIONS(1330), - [anon_sym_u32] = ACTIONS(1330), - [anon_sym_i32] = ACTIONS(1330), - [anon_sym_u64] = ACTIONS(1330), - [anon_sym_i64] = ACTIONS(1330), - [anon_sym_u128] = ACTIONS(1330), - [anon_sym_i128] = ACTIONS(1330), - [anon_sym_isize] = ACTIONS(1330), - [anon_sym_usize] = ACTIONS(1330), - [anon_sym_f32] = ACTIONS(1330), - [anon_sym_f64] = ACTIONS(1330), - [anon_sym_bool] = ACTIONS(1330), - [anon_sym_str] = ACTIONS(1330), - [anon_sym_char] = ACTIONS(1330), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1332), - [anon_sym_PIPE] = ACTIONS(1268), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(1260), + [anon_sym_LPAREN] = ACTIONS(1262), + [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), + [anon_sym_u8] = ACTIONS(1272), + [anon_sym_i8] = ACTIONS(1272), + [anon_sym_u16] = ACTIONS(1272), + [anon_sym_i16] = ACTIONS(1272), + [anon_sym_u32] = ACTIONS(1272), + [anon_sym_i32] = ACTIONS(1272), + [anon_sym_u64] = ACTIONS(1272), + [anon_sym_i64] = ACTIONS(1272), + [anon_sym_u128] = ACTIONS(1272), + [anon_sym_i128] = ACTIONS(1272), + [anon_sym_isize] = ACTIONS(1272), + [anon_sym_usize] = ACTIONS(1272), + [anon_sym_f32] = ACTIONS(1272), + [anon_sym_f64] = ACTIONS(1272), + [anon_sym_bool] = ACTIONS(1272), + [anon_sym_str] = ACTIONS(1272), + [anon_sym_char] = ACTIONS(1272), + [anon_sym_DASH] = ACTIONS(1274), + [anon_sym_BANG] = ACTIONS(1276), + [anon_sym_AMP] = ACTIONS(1278), + [anon_sym_PIPE] = ACTIONS(1280), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1496), - [anon_sym_DOT_DOT] = ACTIONS(1272), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1274), - [anon_sym_COLON_COLON] = ACTIONS(1338), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1340), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1342), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_ref] = ACTIONS(1300), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(1304), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1344), - [sym_super] = ACTIONS(1346), - [sym_crate] = ACTIONS(1346), - [sym_metavariable] = ACTIONS(1348), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [anon_sym_DOT_DOT] = ACTIONS(1284), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1286), + [anon_sym_COLON_COLON] = ACTIONS(1290), + [anon_sym_SQUOTE] = ACTIONS(1294), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1300), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1308), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_ref] = ACTIONS(1312), + [anon_sym_dyn] = ACTIONS(1314), + [sym_mutable_specifier] = ACTIONS(1316), + [sym_integer_literal] = ACTIONS(1318), + [aux_sym_string_literal_token1] = ACTIONS(1320), + [sym_char_literal] = ACTIONS(1318), + [anon_sym_true] = ACTIONS(1322), + [anon_sym_false] = ACTIONS(1322), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1324), + [sym_super] = ACTIONS(1326), + [sym_crate] = ACTIONS(1326), + [sym_metavariable] = ACTIONS(1328), + [sym__raw_string_literal_start] = ACTIONS(1330), + [sym_float_literal] = ACTIONS(1318), }, [415] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_self_parameter] = STATE(3049), - [sym_variadic_parameter] = STATE(3049), - [sym_parameter] = STATE(3049), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2760), - [sym_bracketed_type] = STATE(3520), - [sym_lifetime] = STATE(2985), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3198), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(2480), - [sym_scoped_identifier] = STATE(2216), - [sym_scoped_type_identifier] = STATE(2114), + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_self_parameter] = STATE(2912), + [sym_variadic_parameter] = STATE(2912), + [sym_parameter] = STATE(2912), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2569), + [sym_bracketed_type] = STATE(3528), + [sym_lifetime] = STATE(2931), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3289), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(2436), + [sym_scoped_identifier] = STATE(2212), + [sym_scoped_type_identifier] = STATE(2104), [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(3268), + [sym__pattern] = STATE(3137), [sym_tuple_pattern] = STATE(2079), [sym_slice_pattern] = STATE(2079), [sym_tuple_struct_pattern] = STATE(2079), @@ -62934,100 +62942,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_captured_pattern] = STATE(2079), [sym_reference_pattern] = STATE(2079), [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym__literal_pattern] = STATE(2006), + [sym_negative_literal] = STATE(2009), + [sym_string_literal] = STATE(2009), + [sym_raw_string_literal] = STATE(2009), + [sym_boolean_literal] = STATE(2009), [sym_line_comment] = STATE(415), [sym_block_comment] = STATE(415), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1326), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1330), - [anon_sym_i8] = ACTIONS(1330), - [anon_sym_u16] = ACTIONS(1330), - [anon_sym_i16] = ACTIONS(1330), - [anon_sym_u32] = ACTIONS(1330), - [anon_sym_i32] = ACTIONS(1330), - [anon_sym_u64] = ACTIONS(1330), - [anon_sym_i64] = ACTIONS(1330), - [anon_sym_u128] = ACTIONS(1330), - [anon_sym_i128] = ACTIONS(1330), - [anon_sym_isize] = ACTIONS(1330), - [anon_sym_usize] = ACTIONS(1330), - [anon_sym_f32] = ACTIONS(1330), - [anon_sym_f64] = ACTIONS(1330), - [anon_sym_bool] = ACTIONS(1330), - [anon_sym_str] = ACTIONS(1330), - [anon_sym_char] = ACTIONS(1330), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1332), - [anon_sym_PIPE] = ACTIONS(1268), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(1260), + [anon_sym_LPAREN] = ACTIONS(1262), + [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), + [anon_sym_u8] = ACTIONS(1272), + [anon_sym_i8] = ACTIONS(1272), + [anon_sym_u16] = ACTIONS(1272), + [anon_sym_i16] = ACTIONS(1272), + [anon_sym_u32] = ACTIONS(1272), + [anon_sym_i32] = ACTIONS(1272), + [anon_sym_u64] = ACTIONS(1272), + [anon_sym_i64] = ACTIONS(1272), + [anon_sym_u128] = ACTIONS(1272), + [anon_sym_i128] = ACTIONS(1272), + [anon_sym_isize] = ACTIONS(1272), + [anon_sym_usize] = ACTIONS(1272), + [anon_sym_f32] = ACTIONS(1272), + [anon_sym_f64] = ACTIONS(1272), + [anon_sym_bool] = ACTIONS(1272), + [anon_sym_str] = ACTIONS(1272), + [anon_sym_char] = ACTIONS(1272), + [anon_sym_DASH] = ACTIONS(1274), + [anon_sym_BANG] = ACTIONS(1276), + [anon_sym_AMP] = ACTIONS(1278), + [anon_sym_PIPE] = ACTIONS(1280), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1498), - [anon_sym_DOT_DOT] = ACTIONS(1272), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1274), - [anon_sym_COLON_COLON] = ACTIONS(1338), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1340), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1342), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_ref] = ACTIONS(1300), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(1304), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1344), - [sym_super] = ACTIONS(1346), - [sym_crate] = ACTIONS(1346), - [sym_metavariable] = ACTIONS(1348), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [anon_sym_DOT_DOT] = ACTIONS(1284), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1286), + [anon_sym_COLON_COLON] = ACTIONS(1290), + [anon_sym_SQUOTE] = ACTIONS(1294), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1300), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1308), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_ref] = ACTIONS(1312), + [anon_sym_dyn] = ACTIONS(1314), + [sym_mutable_specifier] = ACTIONS(1316), + [sym_integer_literal] = ACTIONS(1318), + [aux_sym_string_literal_token1] = ACTIONS(1320), + [sym_char_literal] = ACTIONS(1318), + [anon_sym_true] = ACTIONS(1322), + [anon_sym_false] = ACTIONS(1322), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1324), + [sym_super] = ACTIONS(1326), + [sym_crate] = ACTIONS(1326), + [sym_metavariable] = ACTIONS(1328), + [sym__raw_string_literal_start] = ACTIONS(1330), + [sym_float_literal] = ACTIONS(1318), }, [416] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_self_parameter] = STATE(2879), - [sym_variadic_parameter] = STATE(2879), - [sym_parameter] = STATE(2879), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2554), - [sym_bracketed_type] = STATE(3520), - [sym_lifetime] = STATE(2985), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3198), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(2480), - [sym_scoped_identifier] = STATE(2216), - [sym_scoped_type_identifier] = STATE(2114), + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_self_parameter] = STATE(2880), + [sym_variadic_parameter] = STATE(2880), + [sym_parameter] = STATE(2880), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2571), + [sym_bracketed_type] = STATE(3528), + [sym_lifetime] = STATE(2931), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3289), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(2436), + [sym_scoped_identifier] = STATE(2212), + [sym_scoped_type_identifier] = STATE(2104), [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(3268), + [sym__pattern] = STATE(3137), [sym_tuple_pattern] = STATE(2079), [sym_slice_pattern] = STATE(2079), [sym_tuple_struct_pattern] = STATE(2079), @@ -63039,100 +63047,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_captured_pattern] = STATE(2079), [sym_reference_pattern] = STATE(2079), [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym__literal_pattern] = STATE(2006), + [sym_negative_literal] = STATE(2009), + [sym_string_literal] = STATE(2009), + [sym_raw_string_literal] = STATE(2009), + [sym_boolean_literal] = STATE(2009), [sym_line_comment] = STATE(416), [sym_block_comment] = STATE(416), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1326), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1330), - [anon_sym_i8] = ACTIONS(1330), - [anon_sym_u16] = ACTIONS(1330), - [anon_sym_i16] = ACTIONS(1330), - [anon_sym_u32] = ACTIONS(1330), - [anon_sym_i32] = ACTIONS(1330), - [anon_sym_u64] = ACTIONS(1330), - [anon_sym_i64] = ACTIONS(1330), - [anon_sym_u128] = ACTIONS(1330), - [anon_sym_i128] = ACTIONS(1330), - [anon_sym_isize] = ACTIONS(1330), - [anon_sym_usize] = ACTIONS(1330), - [anon_sym_f32] = ACTIONS(1330), - [anon_sym_f64] = ACTIONS(1330), - [anon_sym_bool] = ACTIONS(1330), - [anon_sym_str] = ACTIONS(1330), - [anon_sym_char] = ACTIONS(1330), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1332), - [anon_sym_PIPE] = ACTIONS(1268), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(1260), + [anon_sym_LPAREN] = ACTIONS(1262), + [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), + [anon_sym_u8] = ACTIONS(1272), + [anon_sym_i8] = ACTIONS(1272), + [anon_sym_u16] = ACTIONS(1272), + [anon_sym_i16] = ACTIONS(1272), + [anon_sym_u32] = ACTIONS(1272), + [anon_sym_i32] = ACTIONS(1272), + [anon_sym_u64] = ACTIONS(1272), + [anon_sym_i64] = ACTIONS(1272), + [anon_sym_u128] = ACTIONS(1272), + [anon_sym_i128] = ACTIONS(1272), + [anon_sym_isize] = ACTIONS(1272), + [anon_sym_usize] = ACTIONS(1272), + [anon_sym_f32] = ACTIONS(1272), + [anon_sym_f64] = ACTIONS(1272), + [anon_sym_bool] = ACTIONS(1272), + [anon_sym_str] = ACTIONS(1272), + [anon_sym_char] = ACTIONS(1272), + [anon_sym_DASH] = ACTIONS(1274), + [anon_sym_BANG] = ACTIONS(1276), + [anon_sym_AMP] = ACTIONS(1278), + [anon_sym_PIPE] = ACTIONS(1280), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1500), - [anon_sym_DOT_DOT] = ACTIONS(1272), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1274), - [anon_sym_COLON_COLON] = ACTIONS(1338), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1340), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1342), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_ref] = ACTIONS(1300), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(1304), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1344), - [sym_super] = ACTIONS(1346), - [sym_crate] = ACTIONS(1346), - [sym_metavariable] = ACTIONS(1348), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [anon_sym_DOT_DOT] = ACTIONS(1284), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1286), + [anon_sym_COLON_COLON] = ACTIONS(1290), + [anon_sym_SQUOTE] = ACTIONS(1294), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1300), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1308), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_ref] = ACTIONS(1312), + [anon_sym_dyn] = ACTIONS(1314), + [sym_mutable_specifier] = ACTIONS(1316), + [sym_integer_literal] = ACTIONS(1318), + [aux_sym_string_literal_token1] = ACTIONS(1320), + [sym_char_literal] = ACTIONS(1318), + [anon_sym_true] = ACTIONS(1322), + [anon_sym_false] = ACTIONS(1322), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1324), + [sym_super] = ACTIONS(1326), + [sym_crate] = ACTIONS(1326), + [sym_metavariable] = ACTIONS(1328), + [sym__raw_string_literal_start] = ACTIONS(1330), + [sym_float_literal] = ACTIONS(1318), }, [417] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_self_parameter] = STATE(2812), - [sym_variadic_parameter] = STATE(2812), - [sym_parameter] = STATE(2812), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2614), - [sym_bracketed_type] = STATE(3520), - [sym_lifetime] = STATE(2985), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3198), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(2480), - [sym_scoped_identifier] = STATE(2216), - [sym_scoped_type_identifier] = STATE(2114), + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_self_parameter] = STATE(2904), + [sym_variadic_parameter] = STATE(2904), + [sym_parameter] = STATE(2904), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2563), + [sym_bracketed_type] = STATE(3528), + [sym_lifetime] = STATE(2931), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3289), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(2436), + [sym_scoped_identifier] = STATE(2212), + [sym_scoped_type_identifier] = STATE(2104), [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(3268), + [sym__pattern] = STATE(3137), [sym_tuple_pattern] = STATE(2079), [sym_slice_pattern] = STATE(2079), [sym_tuple_struct_pattern] = STATE(2079), @@ -63144,97 +63152,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_captured_pattern] = STATE(2079), [sym_reference_pattern] = STATE(2079), [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym__literal_pattern] = STATE(2006), + [sym_negative_literal] = STATE(2009), + [sym_string_literal] = STATE(2009), + [sym_raw_string_literal] = STATE(2009), + [sym_boolean_literal] = STATE(2009), [sym_line_comment] = STATE(417), [sym_block_comment] = STATE(417), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1326), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1330), - [anon_sym_i8] = ACTIONS(1330), - [anon_sym_u16] = ACTIONS(1330), - [anon_sym_i16] = ACTIONS(1330), - [anon_sym_u32] = ACTIONS(1330), - [anon_sym_i32] = ACTIONS(1330), - [anon_sym_u64] = ACTIONS(1330), - [anon_sym_i64] = ACTIONS(1330), - [anon_sym_u128] = ACTIONS(1330), - [anon_sym_i128] = ACTIONS(1330), - [anon_sym_isize] = ACTIONS(1330), - [anon_sym_usize] = ACTIONS(1330), - [anon_sym_f32] = ACTIONS(1330), - [anon_sym_f64] = ACTIONS(1330), - [anon_sym_bool] = ACTIONS(1330), - [anon_sym_str] = ACTIONS(1330), - [anon_sym_char] = ACTIONS(1330), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1332), - [anon_sym_PIPE] = ACTIONS(1268), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(1260), + [anon_sym_LPAREN] = ACTIONS(1262), + [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), + [anon_sym_u8] = ACTIONS(1272), + [anon_sym_i8] = ACTIONS(1272), + [anon_sym_u16] = ACTIONS(1272), + [anon_sym_i16] = ACTIONS(1272), + [anon_sym_u32] = ACTIONS(1272), + [anon_sym_i32] = ACTIONS(1272), + [anon_sym_u64] = ACTIONS(1272), + [anon_sym_i64] = ACTIONS(1272), + [anon_sym_u128] = ACTIONS(1272), + [anon_sym_i128] = ACTIONS(1272), + [anon_sym_isize] = ACTIONS(1272), + [anon_sym_usize] = ACTIONS(1272), + [anon_sym_f32] = ACTIONS(1272), + [anon_sym_f64] = ACTIONS(1272), + [anon_sym_bool] = ACTIONS(1272), + [anon_sym_str] = ACTIONS(1272), + [anon_sym_char] = ACTIONS(1272), + [anon_sym_DASH] = ACTIONS(1274), + [anon_sym_BANG] = ACTIONS(1276), + [anon_sym_AMP] = ACTIONS(1278), + [anon_sym_PIPE] = ACTIONS(1280), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1502), - [anon_sym_DOT_DOT] = ACTIONS(1272), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1274), - [anon_sym_COLON_COLON] = ACTIONS(1338), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1340), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1342), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_ref] = ACTIONS(1300), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(1304), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1344), - [sym_super] = ACTIONS(1346), - [sym_crate] = ACTIONS(1346), - [sym_metavariable] = ACTIONS(1348), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [anon_sym_DOT_DOT] = ACTIONS(1284), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1286), + [anon_sym_COLON_COLON] = ACTIONS(1290), + [anon_sym_SQUOTE] = ACTIONS(1294), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1300), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1308), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_ref] = ACTIONS(1312), + [anon_sym_dyn] = ACTIONS(1314), + [sym_mutable_specifier] = ACTIONS(1316), + [sym_integer_literal] = ACTIONS(1318), + [aux_sym_string_literal_token1] = ACTIONS(1320), + [sym_char_literal] = ACTIONS(1318), + [anon_sym_true] = ACTIONS(1322), + [anon_sym_false] = ACTIONS(1322), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1324), + [sym_super] = ACTIONS(1326), + [sym_crate] = ACTIONS(1326), + [sym_metavariable] = ACTIONS(1328), + [sym__raw_string_literal_start] = ACTIONS(1330), + [sym_float_literal] = ACTIONS(1318), }, [418] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2734), - [sym_bracketed_type] = STATE(3528), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3278), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(2424), - [sym_scoped_identifier] = STATE(2157), - [sym_scoped_type_identifier] = STATE(2114), + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2756), + [sym_bracketed_type] = STATE(3536), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3100), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(2394), + [sym_scoped_identifier] = STATE(2148), + [sym_scoped_type_identifier] = STATE(2104), [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2672), + [sym__pattern] = STATE(2688), [sym_tuple_pattern] = STATE(2079), [sym_slice_pattern] = STATE(2079), [sym_tuple_struct_pattern] = STATE(2079), @@ -63246,20 +63254,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_captured_pattern] = STATE(2079), [sym_reference_pattern] = STATE(2079), [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym__literal_pattern] = STATE(2006), + [sym_negative_literal] = STATE(2009), + [sym_string_literal] = STATE(2009), + [sym_raw_string_literal] = STATE(2009), + [sym_boolean_literal] = STATE(2009), [sym_line_comment] = STATE(418), [sym_block_comment] = STATE(418), - [aux_sym_function_modifiers_repeat1] = STATE(2206), + [aux_sym_function_modifiers_repeat1] = STATE(2220), [sym_identifier] = ACTIONS(1504), [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1254), + [anon_sym_LBRACK] = ACTIONS(1266), [anon_sym_RBRACK] = ACTIONS(1508), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1510), [anon_sym_i8] = ACTIONS(1510), [anon_sym_u16] = ACTIONS(1510), @@ -63277,67 +63285,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1510), [anon_sym_str] = ACTIONS(1510), [anon_sym_char] = ACTIONS(1510), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_DASH] = ACTIONS(1274), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1512), - [anon_sym_PIPE] = ACTIONS(1268), + [anon_sym_PIPE] = ACTIONS(1280), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1480), [anon_sym_DOT_DOT] = ACTIONS(1482), [anon_sym_COMMA] = ACTIONS(1514), [anon_sym_COLON_COLON] = ACTIONS(1516), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1286), + [anon_sym_SQUOTE] = ACTIONS(1294), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1298), [anon_sym_default] = ACTIONS(1518), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1520), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_ref] = ACTIONS(1300), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_ref] = ACTIONS(1312), + [anon_sym_dyn] = ACTIONS(1314), [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), + [sym_integer_literal] = ACTIONS(1318), + [aux_sym_string_literal_token1] = ACTIONS(1320), + [sym_char_literal] = ACTIONS(1318), + [anon_sym_true] = ACTIONS(1322), + [anon_sym_false] = ACTIONS(1322), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1522), [sym_super] = ACTIONS(1522), [sym_crate] = ACTIONS(1522), [sym_metavariable] = ACTIONS(1524), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym__raw_string_literal_start] = ACTIONS(1330), + [sym_float_literal] = ACTIONS(1318), }, [419] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1983), - [sym_bracketed_type] = STATE(3520), - [sym_lifetime] = STATE(829), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3198), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(2480), - [sym_scoped_identifier] = STATE(2216), - [sym_scoped_type_identifier] = STATE(2114), + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(1992), + [sym_bracketed_type] = STATE(3536), + [sym_lifetime] = STATE(833), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3100), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(2394), + [sym_scoped_identifier] = STATE(2148), + [sym_scoped_type_identifier] = STATE(2104), [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2093), + [sym__pattern] = STATE(2085), [sym_tuple_pattern] = STATE(2079), [sym_slice_pattern] = STATE(2079), [sym_tuple_struct_pattern] = STATE(2079), @@ -63349,96 +63357,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_captured_pattern] = STATE(2079), [sym_reference_pattern] = STATE(2079), [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym__literal_pattern] = STATE(2006), + [sym_negative_literal] = STATE(2009), + [sym_string_literal] = STATE(2009), + [sym_raw_string_literal] = STATE(2009), + [sym_boolean_literal] = STATE(2009), [sym_line_comment] = STATE(419), [sym_block_comment] = STATE(419), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1326), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1330), - [anon_sym_i8] = ACTIONS(1330), - [anon_sym_u16] = ACTIONS(1330), - [anon_sym_i16] = ACTIONS(1330), - [anon_sym_u32] = ACTIONS(1330), - [anon_sym_i32] = ACTIONS(1330), - [anon_sym_u64] = ACTIONS(1330), - [anon_sym_i64] = ACTIONS(1330), - [anon_sym_u128] = ACTIONS(1330), - [anon_sym_i128] = ACTIONS(1330), - [anon_sym_isize] = ACTIONS(1330), - [anon_sym_usize] = ACTIONS(1330), - [anon_sym_f32] = ACTIONS(1330), - [anon_sym_f64] = ACTIONS(1330), - [anon_sym_bool] = ACTIONS(1330), - [anon_sym_str] = ACTIONS(1330), - [anon_sym_char] = ACTIONS(1330), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1526), - [anon_sym_PIPE] = ACTIONS(1268), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(1504), + [anon_sym_LPAREN] = ACTIONS(1506), + [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), + [anon_sym_u8] = ACTIONS(1510), + [anon_sym_i8] = ACTIONS(1510), + [anon_sym_u16] = ACTIONS(1510), + [anon_sym_i16] = ACTIONS(1510), + [anon_sym_u32] = ACTIONS(1510), + [anon_sym_i32] = ACTIONS(1510), + [anon_sym_u64] = ACTIONS(1510), + [anon_sym_i64] = ACTIONS(1510), + [anon_sym_u128] = ACTIONS(1510), + [anon_sym_i128] = ACTIONS(1510), + [anon_sym_isize] = ACTIONS(1510), + [anon_sym_usize] = ACTIONS(1510), + [anon_sym_f32] = ACTIONS(1510), + [anon_sym_f64] = ACTIONS(1510), + [anon_sym_bool] = ACTIONS(1510), + [anon_sym_str] = ACTIONS(1510), + [anon_sym_char] = ACTIONS(1510), + [anon_sym_DASH] = ACTIONS(1274), + [anon_sym_BANG] = ACTIONS(1276), + [anon_sym_AMP] = ACTIONS(1512), + [anon_sym_PIPE] = ACTIONS(1280), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1480), [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(1338), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1340), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1342), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_ref] = ACTIONS(1300), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(1528), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1530), - [sym_super] = ACTIONS(1346), - [sym_crate] = ACTIONS(1346), - [sym_metavariable] = ACTIONS(1348), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [anon_sym_COLON_COLON] = ACTIONS(1516), + [anon_sym_SQUOTE] = ACTIONS(1294), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1518), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1520), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_ref] = ACTIONS(1312), + [anon_sym_dyn] = ACTIONS(1314), + [sym_mutable_specifier] = ACTIONS(1526), + [sym_integer_literal] = ACTIONS(1318), + [aux_sym_string_literal_token1] = ACTIONS(1320), + [sym_char_literal] = ACTIONS(1318), + [anon_sym_true] = ACTIONS(1322), + [anon_sym_false] = ACTIONS(1322), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1522), + [sym_super] = ACTIONS(1522), + [sym_crate] = ACTIONS(1522), + [sym_metavariable] = ACTIONS(1524), + [sym__raw_string_literal_start] = ACTIONS(1330), + [sym_float_literal] = ACTIONS(1318), }, [420] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1976), - [sym_bracketed_type] = STATE(3527), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3273), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(2487), - [sym_scoped_identifier] = STATE(2113), - [sym_scoped_type_identifier] = STATE(2114), + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(1992), + [sym_bracketed_type] = STATE(3528), + [sym_lifetime] = STATE(830), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3289), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(2436), + [sym_scoped_identifier] = STATE(2212), + [sym_scoped_type_identifier] = STATE(2104), [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2081), + [sym__pattern] = STATE(2085), [sym_tuple_pattern] = STATE(2079), [sym_slice_pattern] = STATE(2079), [sym_tuple_struct_pattern] = STATE(2079), @@ -63450,96 +63458,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_captured_pattern] = STATE(2079), [sym_reference_pattern] = STATE(2079), [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym__literal_pattern] = STATE(2006), + [sym_negative_literal] = STATE(2009), + [sym_string_literal] = STATE(2009), + [sym_raw_string_literal] = STATE(2009), + [sym_boolean_literal] = STATE(2009), [sym_line_comment] = STATE(420), [sym_block_comment] = STATE(420), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1248), - [anon_sym_LPAREN] = ACTIONS(1250), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1260), - [anon_sym_i8] = ACTIONS(1260), - [anon_sym_u16] = ACTIONS(1260), - [anon_sym_i16] = ACTIONS(1260), - [anon_sym_u32] = ACTIONS(1260), - [anon_sym_i32] = ACTIONS(1260), - [anon_sym_u64] = ACTIONS(1260), - [anon_sym_i64] = ACTIONS(1260), - [anon_sym_u128] = ACTIONS(1260), - [anon_sym_i128] = ACTIONS(1260), - [anon_sym_isize] = ACTIONS(1260), - [anon_sym_usize] = ACTIONS(1260), - [anon_sym_f32] = ACTIONS(1260), - [anon_sym_f64] = ACTIONS(1260), - [anon_sym_bool] = ACTIONS(1260), - [anon_sym_str] = ACTIONS(1260), - [anon_sym_char] = ACTIONS(1260), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1476), - [anon_sym_PIPE] = ACTIONS(1268), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(1260), + [anon_sym_LPAREN] = ACTIONS(1262), + [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), + [anon_sym_u8] = ACTIONS(1272), + [anon_sym_i8] = ACTIONS(1272), + [anon_sym_u16] = ACTIONS(1272), + [anon_sym_i16] = ACTIONS(1272), + [anon_sym_u32] = ACTIONS(1272), + [anon_sym_i32] = ACTIONS(1272), + [anon_sym_u64] = ACTIONS(1272), + [anon_sym_i64] = ACTIONS(1272), + [anon_sym_u128] = ACTIONS(1272), + [anon_sym_i128] = ACTIONS(1272), + [anon_sym_isize] = ACTIONS(1272), + [anon_sym_usize] = ACTIONS(1272), + [anon_sym_f32] = ACTIONS(1272), + [anon_sym_f64] = ACTIONS(1272), + [anon_sym_bool] = ACTIONS(1272), + [anon_sym_str] = ACTIONS(1272), + [anon_sym_char] = ACTIONS(1272), + [anon_sym_DASH] = ACTIONS(1274), + [anon_sym_BANG] = ACTIONS(1276), + [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_PIPE] = ACTIONS(1280), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1480), [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(1278), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1288), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1296), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_ref] = ACTIONS(1300), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), + [anon_sym_COLON_COLON] = ACTIONS(1290), + [anon_sym_SQUOTE] = ACTIONS(1294), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1300), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1308), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_ref] = ACTIONS(1312), + [anon_sym_dyn] = ACTIONS(1314), + [sym_mutable_specifier] = ACTIONS(1530), + [sym_integer_literal] = ACTIONS(1318), + [aux_sym_string_literal_token1] = ACTIONS(1320), + [sym_char_literal] = ACTIONS(1318), + [anon_sym_true] = ACTIONS(1322), + [anon_sym_false] = ACTIONS(1322), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1314), - [sym_super] = ACTIONS(1314), - [sym_crate] = ACTIONS(1314), - [sym_metavariable] = ACTIONS(1316), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym_self] = ACTIONS(1532), + [sym_super] = ACTIONS(1326), + [sym_crate] = ACTIONS(1326), + [sym_metavariable] = ACTIONS(1328), + [sym__raw_string_literal_start] = ACTIONS(1330), + [sym_float_literal] = ACTIONS(1318), }, [421] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1983), - [sym_bracketed_type] = STATE(3527), + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(1992), + [sym_bracketed_type] = STATE(3535), [sym_lifetime] = STATE(833), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3273), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(2487), - [sym_scoped_identifier] = STATE(2113), - [sym_scoped_type_identifier] = STATE(2114), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3115), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(2428), + [sym_scoped_identifier] = STATE(2082), + [sym_scoped_type_identifier] = STATE(2104), [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2093), + [sym__pattern] = STATE(2085), [sym_tuple_pattern] = STATE(2079), [sym_slice_pattern] = STATE(2079), [sym_tuple_struct_pattern] = STATE(2079), @@ -63551,96 +63559,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_captured_pattern] = STATE(2079), [sym_reference_pattern] = STATE(2079), [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym__literal_pattern] = STATE(2006), + [sym_negative_literal] = STATE(2009), + [sym_string_literal] = STATE(2009), + [sym_raw_string_literal] = STATE(2009), + [sym_boolean_literal] = STATE(2009), [sym_line_comment] = STATE(421), [sym_block_comment] = STATE(421), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1248), - [anon_sym_LPAREN] = ACTIONS(1250), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1260), - [anon_sym_i8] = ACTIONS(1260), - [anon_sym_u16] = ACTIONS(1260), - [anon_sym_i16] = ACTIONS(1260), - [anon_sym_u32] = ACTIONS(1260), - [anon_sym_i32] = ACTIONS(1260), - [anon_sym_u64] = ACTIONS(1260), - [anon_sym_i64] = ACTIONS(1260), - [anon_sym_u128] = ACTIONS(1260), - [anon_sym_i128] = ACTIONS(1260), - [anon_sym_isize] = ACTIONS(1260), - [anon_sym_usize] = ACTIONS(1260), - [anon_sym_f32] = ACTIONS(1260), - [anon_sym_f64] = ACTIONS(1260), - [anon_sym_bool] = ACTIONS(1260), - [anon_sym_str] = ACTIONS(1260), - [anon_sym_char] = ACTIONS(1260), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(1332), + [anon_sym_LPAREN] = ACTIONS(1334), + [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), + [anon_sym_u8] = ACTIONS(1338), + [anon_sym_i8] = ACTIONS(1338), + [anon_sym_u16] = ACTIONS(1338), + [anon_sym_i16] = ACTIONS(1338), + [anon_sym_u32] = ACTIONS(1338), + [anon_sym_i32] = ACTIONS(1338), + [anon_sym_u64] = ACTIONS(1338), + [anon_sym_i64] = ACTIONS(1338), + [anon_sym_u128] = ACTIONS(1338), + [anon_sym_i128] = ACTIONS(1338), + [anon_sym_isize] = ACTIONS(1338), + [anon_sym_usize] = ACTIONS(1338), + [anon_sym_f32] = ACTIONS(1338), + [anon_sym_f64] = ACTIONS(1338), + [anon_sym_bool] = ACTIONS(1338), + [anon_sym_str] = ACTIONS(1338), + [anon_sym_char] = ACTIONS(1338), + [anon_sym_DASH] = ACTIONS(1274), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1476), - [anon_sym_PIPE] = ACTIONS(1268), + [anon_sym_PIPE] = ACTIONS(1280), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1480), [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(1278), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1288), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1296), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_ref] = ACTIONS(1300), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(1532), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1314), - [sym_super] = ACTIONS(1314), - [sym_crate] = ACTIONS(1314), - [sym_metavariable] = ACTIONS(1316), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [anon_sym_COLON_COLON] = ACTIONS(1346), + [anon_sym_SQUOTE] = ACTIONS(1294), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1348), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1350), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_ref] = ACTIONS(1312), + [anon_sym_dyn] = ACTIONS(1314), + [sym_mutable_specifier] = ACTIONS(1534), + [sym_integer_literal] = ACTIONS(1318), + [aux_sym_string_literal_token1] = ACTIONS(1320), + [sym_char_literal] = ACTIONS(1318), + [anon_sym_true] = ACTIONS(1322), + [anon_sym_false] = ACTIONS(1322), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1354), + [sym_super] = ACTIONS(1354), + [sym_crate] = ACTIONS(1354), + [sym_metavariable] = ACTIONS(1356), + [sym__raw_string_literal_start] = ACTIONS(1330), + [sym_float_literal] = ACTIONS(1318), }, [422] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1976), - [sym_bracketed_type] = STATE(3520), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3198), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(2480), - [sym_scoped_identifier] = STATE(2216), - [sym_scoped_type_identifier] = STATE(2114), + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(1995), + [sym_bracketed_type] = STATE(3528), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3289), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(2436), + [sym_scoped_identifier] = STATE(2212), + [sym_scoped_type_identifier] = STATE(2104), [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2081), + [sym__pattern] = STATE(2094), [sym_tuple_pattern] = STATE(2079), [sym_slice_pattern] = STATE(2079), [sym_tuple_struct_pattern] = STATE(2079), @@ -63652,96 +63660,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_captured_pattern] = STATE(2079), [sym_reference_pattern] = STATE(2079), [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym__literal_pattern] = STATE(2006), + [sym_negative_literal] = STATE(2009), + [sym_string_literal] = STATE(2009), + [sym_raw_string_literal] = STATE(2009), + [sym_boolean_literal] = STATE(2009), [sym_line_comment] = STATE(422), [sym_block_comment] = STATE(422), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1326), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1330), - [anon_sym_i8] = ACTIONS(1330), - [anon_sym_u16] = ACTIONS(1330), - [anon_sym_i16] = ACTIONS(1330), - [anon_sym_u32] = ACTIONS(1330), - [anon_sym_i32] = ACTIONS(1330), - [anon_sym_u64] = ACTIONS(1330), - [anon_sym_i64] = ACTIONS(1330), - [anon_sym_u128] = ACTIONS(1330), - [anon_sym_i128] = ACTIONS(1330), - [anon_sym_isize] = ACTIONS(1330), - [anon_sym_usize] = ACTIONS(1330), - [anon_sym_f32] = ACTIONS(1330), - [anon_sym_f64] = ACTIONS(1330), - [anon_sym_bool] = ACTIONS(1330), - [anon_sym_str] = ACTIONS(1330), - [anon_sym_char] = ACTIONS(1330), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1526), - [anon_sym_PIPE] = ACTIONS(1268), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(1260), + [anon_sym_LPAREN] = ACTIONS(1262), + [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), + [anon_sym_u8] = ACTIONS(1272), + [anon_sym_i8] = ACTIONS(1272), + [anon_sym_u16] = ACTIONS(1272), + [anon_sym_i16] = ACTIONS(1272), + [anon_sym_u32] = ACTIONS(1272), + [anon_sym_i32] = ACTIONS(1272), + [anon_sym_u64] = ACTIONS(1272), + [anon_sym_i64] = ACTIONS(1272), + [anon_sym_u128] = ACTIONS(1272), + [anon_sym_i128] = ACTIONS(1272), + [anon_sym_isize] = ACTIONS(1272), + [anon_sym_usize] = ACTIONS(1272), + [anon_sym_f32] = ACTIONS(1272), + [anon_sym_f64] = ACTIONS(1272), + [anon_sym_bool] = ACTIONS(1272), + [anon_sym_str] = ACTIONS(1272), + [anon_sym_char] = ACTIONS(1272), + [anon_sym_DASH] = ACTIONS(1274), + [anon_sym_BANG] = ACTIONS(1276), + [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_PIPE] = ACTIONS(1280), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1480), [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(1338), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1340), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1342), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_ref] = ACTIONS(1300), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_COLON_COLON] = ACTIONS(1290), + [anon_sym_SQUOTE] = ACTIONS(1294), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1300), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1308), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_ref] = ACTIONS(1312), + [anon_sym_dyn] = ACTIONS(1314), [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), + [sym_integer_literal] = ACTIONS(1318), + [aux_sym_string_literal_token1] = ACTIONS(1320), + [sym_char_literal] = ACTIONS(1318), + [anon_sym_true] = ACTIONS(1322), + [anon_sym_false] = ACTIONS(1322), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1534), - [sym_super] = ACTIONS(1346), - [sym_crate] = ACTIONS(1346), - [sym_metavariable] = ACTIONS(1348), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym_self] = ACTIONS(1536), + [sym_super] = ACTIONS(1326), + [sym_crate] = ACTIONS(1326), + [sym_metavariable] = ACTIONS(1328), + [sym__raw_string_literal_start] = ACTIONS(1330), + [sym_float_literal] = ACTIONS(1318), }, [423] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1983), - [sym_bracketed_type] = STATE(3520), - [sym_lifetime] = STATE(833), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3198), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(2480), - [sym_scoped_identifier] = STATE(2216), - [sym_scoped_type_identifier] = STATE(2114), + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(1995), + [sym_bracketed_type] = STATE(3528), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3289), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(2436), + [sym_scoped_identifier] = STATE(2212), + [sym_scoped_type_identifier] = STATE(2104), [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2093), + [sym__pattern] = STATE(2094), [sym_tuple_pattern] = STATE(2079), [sym_slice_pattern] = STATE(2079), [sym_tuple_struct_pattern] = STATE(2079), @@ -63753,96 +63761,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_captured_pattern] = STATE(2079), [sym_reference_pattern] = STATE(2079), [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym__literal_pattern] = STATE(2006), + [sym_negative_literal] = STATE(2009), + [sym_string_literal] = STATE(2009), + [sym_raw_string_literal] = STATE(2009), + [sym_boolean_literal] = STATE(2009), [sym_line_comment] = STATE(423), [sym_block_comment] = STATE(423), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1326), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1330), - [anon_sym_i8] = ACTIONS(1330), - [anon_sym_u16] = ACTIONS(1330), - [anon_sym_i16] = ACTIONS(1330), - [anon_sym_u32] = ACTIONS(1330), - [anon_sym_i32] = ACTIONS(1330), - [anon_sym_u64] = ACTIONS(1330), - [anon_sym_i64] = ACTIONS(1330), - [anon_sym_u128] = ACTIONS(1330), - [anon_sym_i128] = ACTIONS(1330), - [anon_sym_isize] = ACTIONS(1330), - [anon_sym_usize] = ACTIONS(1330), - [anon_sym_f32] = ACTIONS(1330), - [anon_sym_f64] = ACTIONS(1330), - [anon_sym_bool] = ACTIONS(1330), - [anon_sym_str] = ACTIONS(1330), - [anon_sym_char] = ACTIONS(1330), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1526), - [anon_sym_PIPE] = ACTIONS(1268), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(1260), + [anon_sym_LPAREN] = ACTIONS(1262), + [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), + [anon_sym_u8] = ACTIONS(1272), + [anon_sym_i8] = ACTIONS(1272), + [anon_sym_u16] = ACTIONS(1272), + [anon_sym_i16] = ACTIONS(1272), + [anon_sym_u32] = ACTIONS(1272), + [anon_sym_i32] = ACTIONS(1272), + [anon_sym_u64] = ACTIONS(1272), + [anon_sym_i64] = ACTIONS(1272), + [anon_sym_u128] = ACTIONS(1272), + [anon_sym_i128] = ACTIONS(1272), + [anon_sym_isize] = ACTIONS(1272), + [anon_sym_usize] = ACTIONS(1272), + [anon_sym_f32] = ACTIONS(1272), + [anon_sym_f64] = ACTIONS(1272), + [anon_sym_bool] = ACTIONS(1272), + [anon_sym_str] = ACTIONS(1272), + [anon_sym_char] = ACTIONS(1272), + [anon_sym_DASH] = ACTIONS(1274), + [anon_sym_BANG] = ACTIONS(1276), + [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_PIPE] = ACTIONS(1280), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1480), [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(1338), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1340), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1342), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_ref] = ACTIONS(1300), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(1536), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1346), - [sym_super] = ACTIONS(1346), - [sym_crate] = ACTIONS(1346), - [sym_metavariable] = ACTIONS(1348), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [anon_sym_COLON_COLON] = ACTIONS(1290), + [anon_sym_SQUOTE] = ACTIONS(1294), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1300), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1308), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_ref] = ACTIONS(1312), + [anon_sym_dyn] = ACTIONS(1314), + [sym_mutable_specifier] = ACTIONS(1488), + [sym_integer_literal] = ACTIONS(1318), + [aux_sym_string_literal_token1] = ACTIONS(1320), + [sym_char_literal] = ACTIONS(1318), + [anon_sym_true] = ACTIONS(1322), + [anon_sym_false] = ACTIONS(1322), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1326), + [sym_super] = ACTIONS(1326), + [sym_crate] = ACTIONS(1326), + [sym_metavariable] = ACTIONS(1328), + [sym__raw_string_literal_start] = ACTIONS(1330), + [sym_float_literal] = ACTIONS(1318), }, [424] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1976), - [sym_bracketed_type] = STATE(3527), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3273), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(2487), - [sym_scoped_identifier] = STATE(2113), - [sym_scoped_type_identifier] = STATE(2114), + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(1992), + [sym_bracketed_type] = STATE(3535), + [sym_lifetime] = STATE(830), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3115), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(2428), + [sym_scoped_identifier] = STATE(2082), + [sym_scoped_type_identifier] = STATE(2104), [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2081), + [sym__pattern] = STATE(2085), [sym_tuple_pattern] = STATE(2079), [sym_slice_pattern] = STATE(2079), [sym_tuple_struct_pattern] = STATE(2079), @@ -63854,96 +63862,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_captured_pattern] = STATE(2079), [sym_reference_pattern] = STATE(2079), [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym__literal_pattern] = STATE(2006), + [sym_negative_literal] = STATE(2009), + [sym_string_literal] = STATE(2009), + [sym_raw_string_literal] = STATE(2009), + [sym_boolean_literal] = STATE(2009), [sym_line_comment] = STATE(424), [sym_block_comment] = STATE(424), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1248), - [anon_sym_LPAREN] = ACTIONS(1250), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1260), - [anon_sym_i8] = ACTIONS(1260), - [anon_sym_u16] = ACTIONS(1260), - [anon_sym_i16] = ACTIONS(1260), - [anon_sym_u32] = ACTIONS(1260), - [anon_sym_i32] = ACTIONS(1260), - [anon_sym_u64] = ACTIONS(1260), - [anon_sym_i64] = ACTIONS(1260), - [anon_sym_u128] = ACTIONS(1260), - [anon_sym_i128] = ACTIONS(1260), - [anon_sym_isize] = ACTIONS(1260), - [anon_sym_usize] = ACTIONS(1260), - [anon_sym_f32] = ACTIONS(1260), - [anon_sym_f64] = ACTIONS(1260), - [anon_sym_bool] = ACTIONS(1260), - [anon_sym_str] = ACTIONS(1260), - [anon_sym_char] = ACTIONS(1260), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(1332), + [anon_sym_LPAREN] = ACTIONS(1334), + [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), + [anon_sym_u8] = ACTIONS(1338), + [anon_sym_i8] = ACTIONS(1338), + [anon_sym_u16] = ACTIONS(1338), + [anon_sym_i16] = ACTIONS(1338), + [anon_sym_u32] = ACTIONS(1338), + [anon_sym_i32] = ACTIONS(1338), + [anon_sym_u64] = ACTIONS(1338), + [anon_sym_i64] = ACTIONS(1338), + [anon_sym_u128] = ACTIONS(1338), + [anon_sym_i128] = ACTIONS(1338), + [anon_sym_isize] = ACTIONS(1338), + [anon_sym_usize] = ACTIONS(1338), + [anon_sym_f32] = ACTIONS(1338), + [anon_sym_f64] = ACTIONS(1338), + [anon_sym_bool] = ACTIONS(1338), + [anon_sym_str] = ACTIONS(1338), + [anon_sym_char] = ACTIONS(1338), + [anon_sym_DASH] = ACTIONS(1274), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1476), - [anon_sym_PIPE] = ACTIONS(1268), + [anon_sym_PIPE] = ACTIONS(1280), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1480), [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(1278), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1288), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1296), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_ref] = ACTIONS(1300), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), + [anon_sym_COLON_COLON] = ACTIONS(1346), + [anon_sym_SQUOTE] = ACTIONS(1294), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1348), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1350), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_ref] = ACTIONS(1312), + [anon_sym_dyn] = ACTIONS(1314), + [sym_mutable_specifier] = ACTIONS(1538), + [sym_integer_literal] = ACTIONS(1318), + [aux_sym_string_literal_token1] = ACTIONS(1320), + [sym_char_literal] = ACTIONS(1318), + [anon_sym_true] = ACTIONS(1322), + [anon_sym_false] = ACTIONS(1322), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1538), - [sym_super] = ACTIONS(1314), - [sym_crate] = ACTIONS(1314), - [sym_metavariable] = ACTIONS(1316), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym_self] = ACTIONS(1540), + [sym_super] = ACTIONS(1354), + [sym_crate] = ACTIONS(1354), + [sym_metavariable] = ACTIONS(1356), + [sym__raw_string_literal_start] = ACTIONS(1330), + [sym_float_literal] = ACTIONS(1318), }, [425] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1983), - [sym_bracketed_type] = STATE(3527), - [sym_lifetime] = STATE(829), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3273), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(2487), - [sym_scoped_identifier] = STATE(2113), - [sym_scoped_type_identifier] = STATE(2114), + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(1995), + [sym_bracketed_type] = STATE(3535), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3115), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(2428), + [sym_scoped_identifier] = STATE(2082), + [sym_scoped_type_identifier] = STATE(2104), [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2093), + [sym__pattern] = STATE(2094), [sym_tuple_pattern] = STATE(2079), [sym_slice_pattern] = STATE(2079), [sym_tuple_struct_pattern] = STATE(2079), @@ -63955,96 +63963,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_captured_pattern] = STATE(2079), [sym_reference_pattern] = STATE(2079), [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym__literal_pattern] = STATE(2006), + [sym_negative_literal] = STATE(2009), + [sym_string_literal] = STATE(2009), + [sym_raw_string_literal] = STATE(2009), + [sym_boolean_literal] = STATE(2009), [sym_line_comment] = STATE(425), [sym_block_comment] = STATE(425), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1248), - [anon_sym_LPAREN] = ACTIONS(1250), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1260), - [anon_sym_i8] = ACTIONS(1260), - [anon_sym_u16] = ACTIONS(1260), - [anon_sym_i16] = ACTIONS(1260), - [anon_sym_u32] = ACTIONS(1260), - [anon_sym_i32] = ACTIONS(1260), - [anon_sym_u64] = ACTIONS(1260), - [anon_sym_i64] = ACTIONS(1260), - [anon_sym_u128] = ACTIONS(1260), - [anon_sym_i128] = ACTIONS(1260), - [anon_sym_isize] = ACTIONS(1260), - [anon_sym_usize] = ACTIONS(1260), - [anon_sym_f32] = ACTIONS(1260), - [anon_sym_f64] = ACTIONS(1260), - [anon_sym_bool] = ACTIONS(1260), - [anon_sym_str] = ACTIONS(1260), - [anon_sym_char] = ACTIONS(1260), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(1332), + [anon_sym_LPAREN] = ACTIONS(1334), + [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), + [anon_sym_u8] = ACTIONS(1338), + [anon_sym_i8] = ACTIONS(1338), + [anon_sym_u16] = ACTIONS(1338), + [anon_sym_i16] = ACTIONS(1338), + [anon_sym_u32] = ACTIONS(1338), + [anon_sym_i32] = ACTIONS(1338), + [anon_sym_u64] = ACTIONS(1338), + [anon_sym_i64] = ACTIONS(1338), + [anon_sym_u128] = ACTIONS(1338), + [anon_sym_i128] = ACTIONS(1338), + [anon_sym_isize] = ACTIONS(1338), + [anon_sym_usize] = ACTIONS(1338), + [anon_sym_f32] = ACTIONS(1338), + [anon_sym_f64] = ACTIONS(1338), + [anon_sym_bool] = ACTIONS(1338), + [anon_sym_str] = ACTIONS(1338), + [anon_sym_char] = ACTIONS(1338), + [anon_sym_DASH] = ACTIONS(1274), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1476), - [anon_sym_PIPE] = ACTIONS(1268), + [anon_sym_PIPE] = ACTIONS(1280), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1480), [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(1278), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1288), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1296), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_ref] = ACTIONS(1300), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(1540), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), + [anon_sym_COLON_COLON] = ACTIONS(1346), + [anon_sym_SQUOTE] = ACTIONS(1294), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1348), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1350), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_ref] = ACTIONS(1312), + [anon_sym_dyn] = ACTIONS(1314), + [sym_mutable_specifier] = ACTIONS(1488), + [sym_integer_literal] = ACTIONS(1318), + [aux_sym_string_literal_token1] = ACTIONS(1320), + [sym_char_literal] = ACTIONS(1318), + [anon_sym_true] = ACTIONS(1322), + [anon_sym_false] = ACTIONS(1322), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1542), - [sym_super] = ACTIONS(1314), - [sym_crate] = ACTIONS(1314), - [sym_metavariable] = ACTIONS(1316), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym_super] = ACTIONS(1354), + [sym_crate] = ACTIONS(1354), + [sym_metavariable] = ACTIONS(1356), + [sym__raw_string_literal_start] = ACTIONS(1330), + [sym_float_literal] = ACTIONS(1318), }, [426] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1983), + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(1992), [sym_bracketed_type] = STATE(3528), [sym_lifetime] = STATE(833), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3278), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(2424), - [sym_scoped_identifier] = STATE(2157), - [sym_scoped_type_identifier] = STATE(2114), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3289), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(2436), + [sym_scoped_identifier] = STATE(2212), + [sym_scoped_type_identifier] = STATE(2104), [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2093), + [sym__pattern] = STATE(2085), [sym_tuple_pattern] = STATE(2079), [sym_slice_pattern] = STATE(2079), [sym_tuple_struct_pattern] = STATE(2079), @@ -64056,96 +64064,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_captured_pattern] = STATE(2079), [sym_reference_pattern] = STATE(2079), [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym__literal_pattern] = STATE(2006), + [sym_negative_literal] = STATE(2009), + [sym_string_literal] = STATE(2009), + [sym_raw_string_literal] = STATE(2009), + [sym_boolean_literal] = STATE(2009), [sym_line_comment] = STATE(426), [sym_block_comment] = STATE(426), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1504), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1510), - [anon_sym_i8] = ACTIONS(1510), - [anon_sym_u16] = ACTIONS(1510), - [anon_sym_i16] = ACTIONS(1510), - [anon_sym_u32] = ACTIONS(1510), - [anon_sym_i32] = ACTIONS(1510), - [anon_sym_u64] = ACTIONS(1510), - [anon_sym_i64] = ACTIONS(1510), - [anon_sym_u128] = ACTIONS(1510), - [anon_sym_i128] = ACTIONS(1510), - [anon_sym_isize] = ACTIONS(1510), - [anon_sym_usize] = ACTIONS(1510), - [anon_sym_f32] = ACTIONS(1510), - [anon_sym_f64] = ACTIONS(1510), - [anon_sym_bool] = ACTIONS(1510), - [anon_sym_str] = ACTIONS(1510), - [anon_sym_char] = ACTIONS(1510), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1512), - [anon_sym_PIPE] = ACTIONS(1268), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(1260), + [anon_sym_LPAREN] = ACTIONS(1262), + [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), + [anon_sym_u8] = ACTIONS(1272), + [anon_sym_i8] = ACTIONS(1272), + [anon_sym_u16] = ACTIONS(1272), + [anon_sym_i16] = ACTIONS(1272), + [anon_sym_u32] = ACTIONS(1272), + [anon_sym_i32] = ACTIONS(1272), + [anon_sym_u64] = ACTIONS(1272), + [anon_sym_i64] = ACTIONS(1272), + [anon_sym_u128] = ACTIONS(1272), + [anon_sym_i128] = ACTIONS(1272), + [anon_sym_isize] = ACTIONS(1272), + [anon_sym_usize] = ACTIONS(1272), + [anon_sym_f32] = ACTIONS(1272), + [anon_sym_f64] = ACTIONS(1272), + [anon_sym_bool] = ACTIONS(1272), + [anon_sym_str] = ACTIONS(1272), + [anon_sym_char] = ACTIONS(1272), + [anon_sym_DASH] = ACTIONS(1274), + [anon_sym_BANG] = ACTIONS(1276), + [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_PIPE] = ACTIONS(1280), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1480), [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(1516), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1518), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1520), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_ref] = ACTIONS(1300), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_COLON_COLON] = ACTIONS(1290), + [anon_sym_SQUOTE] = ACTIONS(1294), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1300), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1308), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_ref] = ACTIONS(1312), + [anon_sym_dyn] = ACTIONS(1314), [sym_mutable_specifier] = ACTIONS(1544), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), + [sym_integer_literal] = ACTIONS(1318), + [aux_sym_string_literal_token1] = ACTIONS(1320), + [sym_char_literal] = ACTIONS(1318), + [anon_sym_true] = ACTIONS(1322), + [anon_sym_false] = ACTIONS(1322), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1522), - [sym_super] = ACTIONS(1522), - [sym_crate] = ACTIONS(1522), - [sym_metavariable] = ACTIONS(1524), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym_self] = ACTIONS(1326), + [sym_super] = ACTIONS(1326), + [sym_crate] = ACTIONS(1326), + [sym_metavariable] = ACTIONS(1328), + [sym__raw_string_literal_start] = ACTIONS(1330), + [sym_float_literal] = ACTIONS(1318), }, [427] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1976), - [sym_bracketed_type] = STATE(3520), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3198), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(2480), - [sym_scoped_identifier] = STATE(2216), - [sym_scoped_type_identifier] = STATE(2114), + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(1995), + [sym_bracketed_type] = STATE(3535), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3115), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(2428), + [sym_scoped_identifier] = STATE(2082), + [sym_scoped_type_identifier] = STATE(2104), [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2081), + [sym__pattern] = STATE(2094), [sym_tuple_pattern] = STATE(2079), [sym_slice_pattern] = STATE(2079), [sym_tuple_struct_pattern] = STATE(2079), @@ -64157,96 +64165,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_captured_pattern] = STATE(2079), [sym_reference_pattern] = STATE(2079), [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym__literal_pattern] = STATE(2006), + [sym_negative_literal] = STATE(2009), + [sym_string_literal] = STATE(2009), + [sym_raw_string_literal] = STATE(2009), + [sym_boolean_literal] = STATE(2009), [sym_line_comment] = STATE(427), [sym_block_comment] = STATE(427), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1326), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1330), - [anon_sym_i8] = ACTIONS(1330), - [anon_sym_u16] = ACTIONS(1330), - [anon_sym_i16] = ACTIONS(1330), - [anon_sym_u32] = ACTIONS(1330), - [anon_sym_i32] = ACTIONS(1330), - [anon_sym_u64] = ACTIONS(1330), - [anon_sym_i64] = ACTIONS(1330), - [anon_sym_u128] = ACTIONS(1330), - [anon_sym_i128] = ACTIONS(1330), - [anon_sym_isize] = ACTIONS(1330), - [anon_sym_usize] = ACTIONS(1330), - [anon_sym_f32] = ACTIONS(1330), - [anon_sym_f64] = ACTIONS(1330), - [anon_sym_bool] = ACTIONS(1330), - [anon_sym_str] = ACTIONS(1330), - [anon_sym_char] = ACTIONS(1330), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1526), - [anon_sym_PIPE] = ACTIONS(1268), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(1332), + [anon_sym_LPAREN] = ACTIONS(1334), + [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), + [anon_sym_u8] = ACTIONS(1338), + [anon_sym_i8] = ACTIONS(1338), + [anon_sym_u16] = ACTIONS(1338), + [anon_sym_i16] = ACTIONS(1338), + [anon_sym_u32] = ACTIONS(1338), + [anon_sym_i32] = ACTIONS(1338), + [anon_sym_u64] = ACTIONS(1338), + [anon_sym_i64] = ACTIONS(1338), + [anon_sym_u128] = ACTIONS(1338), + [anon_sym_i128] = ACTIONS(1338), + [anon_sym_isize] = ACTIONS(1338), + [anon_sym_usize] = ACTIONS(1338), + [anon_sym_f32] = ACTIONS(1338), + [anon_sym_f64] = ACTIONS(1338), + [anon_sym_bool] = ACTIONS(1338), + [anon_sym_str] = ACTIONS(1338), + [anon_sym_char] = ACTIONS(1338), + [anon_sym_DASH] = ACTIONS(1274), + [anon_sym_BANG] = ACTIONS(1276), + [anon_sym_AMP] = ACTIONS(1476), + [anon_sym_PIPE] = ACTIONS(1280), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1480), [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(1338), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1340), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1342), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_ref] = ACTIONS(1300), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_COLON_COLON] = ACTIONS(1346), + [anon_sym_SQUOTE] = ACTIONS(1294), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1348), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1350), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_ref] = ACTIONS(1312), + [anon_sym_dyn] = ACTIONS(1314), [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), + [sym_integer_literal] = ACTIONS(1318), + [aux_sym_string_literal_token1] = ACTIONS(1320), + [sym_char_literal] = ACTIONS(1318), + [anon_sym_true] = ACTIONS(1322), + [anon_sym_false] = ACTIONS(1322), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1346), - [sym_super] = ACTIONS(1346), - [sym_crate] = ACTIONS(1346), - [sym_metavariable] = ACTIONS(1348), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym_self] = ACTIONS(1354), + [sym_super] = ACTIONS(1354), + [sym_crate] = ACTIONS(1354), + [sym_metavariable] = ACTIONS(1356), + [sym__raw_string_literal_start] = ACTIONS(1330), + [sym_float_literal] = ACTIONS(1318), }, [428] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1976), - [sym_bracketed_type] = STATE(3528), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3278), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(2424), - [sym_scoped_identifier] = STATE(2157), - [sym_scoped_type_identifier] = STATE(2114), + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(1995), + [sym_bracketed_type] = STATE(3536), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3100), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(2394), + [sym_scoped_identifier] = STATE(2148), + [sym_scoped_type_identifier] = STATE(2104), [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2081), + [sym__pattern] = STATE(2094), [sym_tuple_pattern] = STATE(2079), [sym_slice_pattern] = STATE(2079), [sym_tuple_struct_pattern] = STATE(2079), @@ -64258,19 +64266,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_captured_pattern] = STATE(2079), [sym_reference_pattern] = STATE(2079), [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym__literal_pattern] = STATE(2006), + [sym_negative_literal] = STATE(2009), + [sym_string_literal] = STATE(2009), + [sym_raw_string_literal] = STATE(2009), + [sym_boolean_literal] = STATE(2009), [sym_line_comment] = STATE(428), [sym_block_comment] = STATE(428), - [aux_sym_function_modifiers_repeat1] = STATE(2206), + [aux_sym_function_modifiers_repeat1] = STATE(2220), [sym_identifier] = ACTIONS(1504), [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1510), [anon_sym_i8] = ACTIONS(1510), [anon_sym_u16] = ACTIONS(1510), @@ -64288,40 +64296,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1510), [anon_sym_str] = ACTIONS(1510), [anon_sym_char] = ACTIONS(1510), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_DASH] = ACTIONS(1274), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1512), - [anon_sym_PIPE] = ACTIONS(1268), + [anon_sym_PIPE] = ACTIONS(1280), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1480), [anon_sym_DOT_DOT] = ACTIONS(1482), [anon_sym_COLON_COLON] = ACTIONS(1516), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1286), + [anon_sym_SQUOTE] = ACTIONS(1294), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1298), [anon_sym_default] = ACTIONS(1518), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1520), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_ref] = ACTIONS(1300), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_ref] = ACTIONS(1312), + [anon_sym_dyn] = ACTIONS(1314), [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), + [sym_integer_literal] = ACTIONS(1318), + [aux_sym_string_literal_token1] = ACTIONS(1320), + [sym_char_literal] = ACTIONS(1318), + [anon_sym_true] = ACTIONS(1322), + [anon_sym_false] = ACTIONS(1322), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1522), [sym_super] = ACTIONS(1522), [sym_crate] = ACTIONS(1522), [sym_metavariable] = ACTIONS(1524), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym__raw_string_literal_start] = ACTIONS(1330), + [sym_float_literal] = ACTIONS(1318), }, [429] = { [sym_line_comment] = STATE(429), @@ -64519,14 +64527,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1548), }, [431] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), + [sym_bracketed_type] = STATE(3484), + [sym_generic_type] = STATE(3487), + [sym_generic_type_with_turbofish] = STATE(3219), [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), + [sym_scoped_identifier] = STATE(1954), + [sym_scoped_type_identifier] = STATE(2845), [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2112), + [sym__pattern] = STATE(2086), [sym_tuple_pattern] = STATE(2079), [sym_slice_pattern] = STATE(2079), [sym_tuple_struct_pattern] = STATE(2079), @@ -64538,11 +64546,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_captured_pattern] = STATE(2079), [sym_reference_pattern] = STATE(2079), [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym__literal_pattern] = STATE(2006), + [sym_negative_literal] = STATE(2009), + [sym_string_literal] = STATE(2009), + [sym_raw_string_literal] = STATE(2009), + [sym_boolean_literal] = STATE(2009), [sym_line_comment] = STATE(431), [sym_block_comment] = STATE(431), [sym_identifier] = ACTIONS(1550), @@ -64591,7 +64599,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(1550), [anon_sym_unsafe] = ACTIONS(1550), [anon_sym_while] = ACTIONS(1550), - [anon_sym_ref] = ACTIONS(1300), + [anon_sym_ref] = ACTIONS(1312), [sym_mutable_specifier] = ACTIONS(1488), [anon_sym_yield] = ACTIONS(1550), [anon_sym_move] = ACTIONS(1550), @@ -64611,14 +64619,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1552), }, [432] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), + [sym_bracketed_type] = STATE(3484), + [sym_generic_type] = STATE(3487), + [sym_generic_type_with_turbofish] = STATE(3219), [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), + [sym_scoped_identifier] = STATE(1954), + [sym_scoped_type_identifier] = STATE(2845), [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2103), + [sym__pattern] = STATE(2102), [sym_tuple_pattern] = STATE(2079), [sym_slice_pattern] = STATE(2079), [sym_tuple_struct_pattern] = STATE(2079), @@ -64630,11 +64638,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_captured_pattern] = STATE(2079), [sym_reference_pattern] = STATE(2079), [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym__literal_pattern] = STATE(2006), + [sym_negative_literal] = STATE(2009), + [sym_string_literal] = STATE(2009), + [sym_raw_string_literal] = STATE(2009), + [sym_boolean_literal] = STATE(2009), [sym_line_comment] = STATE(432), [sym_block_comment] = STATE(432), [sym_identifier] = ACTIONS(1554), @@ -64683,7 +64691,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(1554), [anon_sym_unsafe] = ACTIONS(1554), [anon_sym_while] = ACTIONS(1554), - [anon_sym_ref] = ACTIONS(1300), + [anon_sym_ref] = ACTIONS(1312), [sym_mutable_specifier] = ACTIONS(1488), [anon_sym_yield] = ACTIONS(1554), [anon_sym_move] = ACTIONS(1554), @@ -64703,44 +64711,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1556), }, [433] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2391), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(2396), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_type_binding] = STATE(2575), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), - [sym_label] = STATE(3582), - [sym_block] = STATE(2575), - [sym__literal] = STATE(2575), - [sym_string_literal] = STATE(2861), - [sym_raw_string_literal] = STATE(2861), - [sym_boolean_literal] = STATE(2861), + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2435), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(2437), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_type_binding] = STATE(2721), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), + [sym_label] = STATE(3590), + [sym_block] = STATE(2721), + [sym__literal] = STATE(2721), + [sym_string_literal] = STATE(2938), + [sym_raw_string_literal] = STATE(2938), + [sym_boolean_literal] = STATE(2938), [sym_line_comment] = STATE(433), [sym_block_comment] = STATE(433), - [aux_sym_function_modifiers_repeat1] = STATE(2206), + [aux_sym_function_modifiers_repeat1] = STATE(2220), [sym_identifier] = ACTIONS(1558), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), [anon_sym_LBRACE] = ACTIONS(1564), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -64758,75 +64766,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_GT] = ACTIONS(1570), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(1574), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [sym_integer_literal] = ACTIONS(1580), - [aux_sym_string_literal_token1] = ACTIONS(1308), + [aux_sym_string_literal_token1] = ACTIONS(1320), [sym_char_literal] = ACTIONS(1580), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), + [anon_sym_true] = ACTIONS(1322), + [anon_sym_false] = ACTIONS(1322), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), [sym_super] = ACTIONS(1582), [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), - [sym__raw_string_literal_start] = ACTIONS(1318), + [sym__raw_string_literal_start] = ACTIONS(1330), [sym_float_literal] = ACTIONS(1580), }, [434] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2391), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(2396), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_type_binding] = STATE(2575), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), - [sym_label] = STATE(3582), - [sym_block] = STATE(2575), - [sym__literal] = STATE(2575), - [sym_string_literal] = STATE(2861), - [sym_raw_string_literal] = STATE(2861), - [sym_boolean_literal] = STATE(2861), + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2435), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(2437), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_type_binding] = STATE(2721), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), + [sym_label] = STATE(3590), + [sym_block] = STATE(2721), + [sym__literal] = STATE(2721), + [sym_string_literal] = STATE(2938), + [sym_raw_string_literal] = STATE(2938), + [sym_boolean_literal] = STATE(2938), [sym_line_comment] = STATE(434), [sym_block_comment] = STATE(434), - [aux_sym_function_modifiers_repeat1] = STATE(2206), + [aux_sym_function_modifiers_repeat1] = STATE(2220), [sym_identifier] = ACTIONS(1558), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), [anon_sym_LBRACE] = ACTIONS(1564), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -64844,75 +64852,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_GT] = ACTIONS(1586), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(1574), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [sym_integer_literal] = ACTIONS(1580), - [aux_sym_string_literal_token1] = ACTIONS(1308), + [aux_sym_string_literal_token1] = ACTIONS(1320), [sym_char_literal] = ACTIONS(1580), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), + [anon_sym_true] = ACTIONS(1322), + [anon_sym_false] = ACTIONS(1322), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), [sym_super] = ACTIONS(1582), [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), - [sym__raw_string_literal_start] = ACTIONS(1318), + [sym__raw_string_literal_start] = ACTIONS(1330), [sym_float_literal] = ACTIONS(1580), }, [435] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2391), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(2396), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_type_binding] = STATE(2575), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), - [sym_label] = STATE(3582), - [sym_block] = STATE(2575), - [sym__literal] = STATE(2575), - [sym_string_literal] = STATE(2861), - [sym_raw_string_literal] = STATE(2861), - [sym_boolean_literal] = STATE(2861), + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2435), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(2437), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_type_binding] = STATE(2721), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), + [sym_label] = STATE(3590), + [sym_block] = STATE(2721), + [sym__literal] = STATE(2721), + [sym_string_literal] = STATE(2938), + [sym_raw_string_literal] = STATE(2938), + [sym_boolean_literal] = STATE(2938), [sym_line_comment] = STATE(435), [sym_block_comment] = STATE(435), - [aux_sym_function_modifiers_repeat1] = STATE(2206), + [aux_sym_function_modifiers_repeat1] = STATE(2220), [sym_identifier] = ACTIONS(1558), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), [anon_sym_LBRACE] = ACTIONS(1564), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -64930,75 +64938,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_GT] = ACTIONS(1588), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(1574), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [sym_integer_literal] = ACTIONS(1580), - [aux_sym_string_literal_token1] = ACTIONS(1308), + [aux_sym_string_literal_token1] = ACTIONS(1320), [sym_char_literal] = ACTIONS(1580), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), + [anon_sym_true] = ACTIONS(1322), + [anon_sym_false] = ACTIONS(1322), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), [sym_super] = ACTIONS(1582), [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), - [sym__raw_string_literal_start] = ACTIONS(1318), + [sym__raw_string_literal_start] = ACTIONS(1330), [sym_float_literal] = ACTIONS(1580), }, [436] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2391), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(2396), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_type_binding] = STATE(2575), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), - [sym_label] = STATE(3582), - [sym_block] = STATE(2575), - [sym__literal] = STATE(2575), - [sym_string_literal] = STATE(2861), - [sym_raw_string_literal] = STATE(2861), - [sym_boolean_literal] = STATE(2861), + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2435), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(2437), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_type_binding] = STATE(2721), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), + [sym_label] = STATE(3590), + [sym_block] = STATE(2721), + [sym__literal] = STATE(2721), + [sym_string_literal] = STATE(2938), + [sym_raw_string_literal] = STATE(2938), + [sym_boolean_literal] = STATE(2938), [sym_line_comment] = STATE(436), [sym_block_comment] = STATE(436), - [aux_sym_function_modifiers_repeat1] = STATE(2206), + [aux_sym_function_modifiers_repeat1] = STATE(2220), [sym_identifier] = ACTIONS(1558), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), [anon_sym_LBRACE] = ACTIONS(1564), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -65016,75 +65024,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_GT] = ACTIONS(1590), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(1574), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [sym_integer_literal] = ACTIONS(1580), - [aux_sym_string_literal_token1] = ACTIONS(1308), + [aux_sym_string_literal_token1] = ACTIONS(1320), [sym_char_literal] = ACTIONS(1580), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), + [anon_sym_true] = ACTIONS(1322), + [anon_sym_false] = ACTIONS(1322), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), [sym_super] = ACTIONS(1582), [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), - [sym__raw_string_literal_start] = ACTIONS(1318), + [sym__raw_string_literal_start] = ACTIONS(1330), [sym_float_literal] = ACTIONS(1580), }, [437] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2391), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(2396), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_type_binding] = STATE(2575), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), - [sym_label] = STATE(3582), - [sym_block] = STATE(2575), - [sym__literal] = STATE(2575), - [sym_string_literal] = STATE(2861), - [sym_raw_string_literal] = STATE(2861), - [sym_boolean_literal] = STATE(2861), + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2435), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(2437), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_type_binding] = STATE(2721), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), + [sym_label] = STATE(3590), + [sym_block] = STATE(2721), + [sym__literal] = STATE(2721), + [sym_string_literal] = STATE(2938), + [sym_raw_string_literal] = STATE(2938), + [sym_boolean_literal] = STATE(2938), [sym_line_comment] = STATE(437), [sym_block_comment] = STATE(437), - [aux_sym_function_modifiers_repeat1] = STATE(2206), + [aux_sym_function_modifiers_repeat1] = STATE(2220), [sym_identifier] = ACTIONS(1558), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), [anon_sym_LBRACE] = ACTIONS(1564), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -65102,75 +65110,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_GT] = ACTIONS(1592), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(1574), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [sym_integer_literal] = ACTIONS(1580), - [aux_sym_string_literal_token1] = ACTIONS(1308), + [aux_sym_string_literal_token1] = ACTIONS(1320), [sym_char_literal] = ACTIONS(1580), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), + [anon_sym_true] = ACTIONS(1322), + [anon_sym_false] = ACTIONS(1322), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), [sym_super] = ACTIONS(1582), [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), - [sym__raw_string_literal_start] = ACTIONS(1318), + [sym__raw_string_literal_start] = ACTIONS(1330), [sym_float_literal] = ACTIONS(1580), }, [438] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2391), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(2396), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_type_binding] = STATE(2575), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), - [sym_label] = STATE(3582), - [sym_block] = STATE(2575), - [sym__literal] = STATE(2575), - [sym_string_literal] = STATE(2861), - [sym_raw_string_literal] = STATE(2861), - [sym_boolean_literal] = STATE(2861), + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2435), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(2437), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_type_binding] = STATE(2721), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), + [sym_label] = STATE(3590), + [sym_block] = STATE(2721), + [sym__literal] = STATE(2721), + [sym_string_literal] = STATE(2938), + [sym_raw_string_literal] = STATE(2938), + [sym_boolean_literal] = STATE(2938), [sym_line_comment] = STATE(438), [sym_block_comment] = STATE(438), - [aux_sym_function_modifiers_repeat1] = STATE(2206), + [aux_sym_function_modifiers_repeat1] = STATE(2220), [sym_identifier] = ACTIONS(1558), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), [anon_sym_LBRACE] = ACTIONS(1564), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -65188,75 +65196,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_GT] = ACTIONS(1594), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(1574), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [sym_integer_literal] = ACTIONS(1580), - [aux_sym_string_literal_token1] = ACTIONS(1308), + [aux_sym_string_literal_token1] = ACTIONS(1320), [sym_char_literal] = ACTIONS(1580), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), + [anon_sym_true] = ACTIONS(1322), + [anon_sym_false] = ACTIONS(1322), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), [sym_super] = ACTIONS(1582), [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), - [sym__raw_string_literal_start] = ACTIONS(1318), + [sym__raw_string_literal_start] = ACTIONS(1330), [sym_float_literal] = ACTIONS(1580), }, [439] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2391), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(2396), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_type_binding] = STATE(2575), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), - [sym_label] = STATE(3582), - [sym_block] = STATE(2575), - [sym__literal] = STATE(2575), - [sym_string_literal] = STATE(2861), - [sym_raw_string_literal] = STATE(2861), - [sym_boolean_literal] = STATE(2861), + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2435), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(2437), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_type_binding] = STATE(2721), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), + [sym_label] = STATE(3590), + [sym_block] = STATE(2721), + [sym__literal] = STATE(2721), + [sym_string_literal] = STATE(2938), + [sym_raw_string_literal] = STATE(2938), + [sym_boolean_literal] = STATE(2938), [sym_line_comment] = STATE(439), [sym_block_comment] = STATE(439), - [aux_sym_function_modifiers_repeat1] = STATE(2206), + [aux_sym_function_modifiers_repeat1] = STATE(2220), [sym_identifier] = ACTIONS(1558), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), [anon_sym_LBRACE] = ACTIONS(1564), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -65274,75 +65282,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_GT] = ACTIONS(1596), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(1574), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [sym_integer_literal] = ACTIONS(1580), - [aux_sym_string_literal_token1] = ACTIONS(1308), + [aux_sym_string_literal_token1] = ACTIONS(1320), [sym_char_literal] = ACTIONS(1580), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), + [anon_sym_true] = ACTIONS(1322), + [anon_sym_false] = ACTIONS(1322), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), [sym_super] = ACTIONS(1582), [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), - [sym__raw_string_literal_start] = ACTIONS(1318), + [sym__raw_string_literal_start] = ACTIONS(1330), [sym_float_literal] = ACTIONS(1580), }, [440] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2391), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(2396), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_type_binding] = STATE(2575), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), - [sym_label] = STATE(3582), - [sym_block] = STATE(2575), - [sym__literal] = STATE(2575), - [sym_string_literal] = STATE(2861), - [sym_raw_string_literal] = STATE(2861), - [sym_boolean_literal] = STATE(2861), + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2435), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(2437), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_type_binding] = STATE(2721), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), + [sym_label] = STATE(3590), + [sym_block] = STATE(2721), + [sym__literal] = STATE(2721), + [sym_string_literal] = STATE(2938), + [sym_raw_string_literal] = STATE(2938), + [sym_boolean_literal] = STATE(2938), [sym_line_comment] = STATE(440), [sym_block_comment] = STATE(440), - [aux_sym_function_modifiers_repeat1] = STATE(2206), + [aux_sym_function_modifiers_repeat1] = STATE(2220), [sym_identifier] = ACTIONS(1558), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), [anon_sym_LBRACE] = ACTIONS(1564), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -65360,75 +65368,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_GT] = ACTIONS(1598), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(1574), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [sym_integer_literal] = ACTIONS(1580), - [aux_sym_string_literal_token1] = ACTIONS(1308), + [aux_sym_string_literal_token1] = ACTIONS(1320), [sym_char_literal] = ACTIONS(1580), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), + [anon_sym_true] = ACTIONS(1322), + [anon_sym_false] = ACTIONS(1322), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), [sym_super] = ACTIONS(1582), [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), - [sym__raw_string_literal_start] = ACTIONS(1318), + [sym__raw_string_literal_start] = ACTIONS(1330), [sym_float_literal] = ACTIONS(1580), }, [441] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2391), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(2396), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_type_binding] = STATE(2575), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), - [sym_label] = STATE(3582), - [sym_block] = STATE(2575), - [sym__literal] = STATE(2575), - [sym_string_literal] = STATE(2861), - [sym_raw_string_literal] = STATE(2861), - [sym_boolean_literal] = STATE(2861), + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2435), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(2437), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_type_binding] = STATE(2721), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), + [sym_label] = STATE(3590), + [sym_block] = STATE(2721), + [sym__literal] = STATE(2721), + [sym_string_literal] = STATE(2938), + [sym_raw_string_literal] = STATE(2938), + [sym_boolean_literal] = STATE(2938), [sym_line_comment] = STATE(441), [sym_block_comment] = STATE(441), - [aux_sym_function_modifiers_repeat1] = STATE(2206), + [aux_sym_function_modifiers_repeat1] = STATE(2220), [sym_identifier] = ACTIONS(1558), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), [anon_sym_LBRACE] = ACTIONS(1564), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -65446,75 +65454,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_GT] = ACTIONS(1600), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(1574), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [sym_integer_literal] = ACTIONS(1580), - [aux_sym_string_literal_token1] = ACTIONS(1308), + [aux_sym_string_literal_token1] = ACTIONS(1320), [sym_char_literal] = ACTIONS(1580), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), + [anon_sym_true] = ACTIONS(1322), + [anon_sym_false] = ACTIONS(1322), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), [sym_super] = ACTIONS(1582), [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), - [sym__raw_string_literal_start] = ACTIONS(1318), + [sym__raw_string_literal_start] = ACTIONS(1330), [sym_float_literal] = ACTIONS(1580), }, [442] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2391), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(2396), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_type_binding] = STATE(2575), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), - [sym_label] = STATE(3582), - [sym_block] = STATE(2575), - [sym__literal] = STATE(2575), - [sym_string_literal] = STATE(2861), - [sym_raw_string_literal] = STATE(2861), - [sym_boolean_literal] = STATE(2861), + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2340), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(2341), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_type_binding] = STATE(2447), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), + [sym_label] = STATE(3590), + [sym_block] = STATE(2447), + [sym__literal] = STATE(2447), + [sym_string_literal] = STATE(2938), + [sym_raw_string_literal] = STATE(2938), + [sym_boolean_literal] = STATE(2938), [sym_line_comment] = STATE(442), [sym_block_comment] = STATE(442), - [aux_sym_function_modifiers_repeat1] = STATE(2206), + [aux_sym_function_modifiers_repeat1] = STATE(2220), [sym_identifier] = ACTIONS(1558), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), [anon_sym_LBRACE] = ACTIONS(1564), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -65532,74 +65540,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(1574), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [sym_integer_literal] = ACTIONS(1580), - [aux_sym_string_literal_token1] = ACTIONS(1308), + [aux_sym_string_literal_token1] = ACTIONS(1320), [sym_char_literal] = ACTIONS(1580), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), + [anon_sym_true] = ACTIONS(1322), + [anon_sym_false] = ACTIONS(1322), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), [sym_super] = ACTIONS(1582), [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), - [sym__raw_string_literal_start] = ACTIONS(1318), + [sym__raw_string_literal_start] = ACTIONS(1330), [sym_float_literal] = ACTIONS(1580), }, [443] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2300), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(2301), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_type_binding] = STATE(2426), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), - [sym_label] = STATE(3582), - [sym_block] = STATE(2426), - [sym__literal] = STATE(2426), - [sym_string_literal] = STATE(2861), - [sym_raw_string_literal] = STATE(2861), - [sym_boolean_literal] = STATE(2861), + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2364), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(2365), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_type_binding] = STATE(2414), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), + [sym_label] = STATE(3590), + [sym_block] = STATE(2414), + [sym__literal] = STATE(2414), + [sym_string_literal] = STATE(2938), + [sym_raw_string_literal] = STATE(2938), + [sym_boolean_literal] = STATE(2938), [sym_line_comment] = STATE(443), [sym_block_comment] = STATE(443), - [aux_sym_function_modifiers_repeat1] = STATE(2206), + [aux_sym_function_modifiers_repeat1] = STATE(2220), [sym_identifier] = ACTIONS(1558), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), [anon_sym_LBRACE] = ACTIONS(1564), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -65617,74 +65625,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(1574), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [sym_integer_literal] = ACTIONS(1580), - [aux_sym_string_literal_token1] = ACTIONS(1308), + [aux_sym_string_literal_token1] = ACTIONS(1320), [sym_char_literal] = ACTIONS(1580), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), + [anon_sym_true] = ACTIONS(1322), + [anon_sym_false] = ACTIONS(1322), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), [sym_super] = ACTIONS(1582), [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), - [sym__raw_string_literal_start] = ACTIONS(1318), + [sym__raw_string_literal_start] = ACTIONS(1330), [sym_float_literal] = ACTIONS(1580), }, [444] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2345), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(2346), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_type_binding] = STATE(2425), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), - [sym_label] = STATE(3582), - [sym_block] = STATE(2425), - [sym__literal] = STATE(2425), - [sym_string_literal] = STATE(2861), - [sym_raw_string_literal] = STATE(2861), - [sym_boolean_literal] = STATE(2861), + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2362), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(2361), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_type_binding] = STATE(2421), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), + [sym_label] = STATE(3590), + [sym_block] = STATE(2421), + [sym__literal] = STATE(2421), + [sym_string_literal] = STATE(2938), + [sym_raw_string_literal] = STATE(2938), + [sym_boolean_literal] = STATE(2938), [sym_line_comment] = STATE(444), [sym_block_comment] = STATE(444), - [aux_sym_function_modifiers_repeat1] = STATE(2206), + [aux_sym_function_modifiers_repeat1] = STATE(2220), [sym_identifier] = ACTIONS(1558), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), [anon_sym_LBRACE] = ACTIONS(1564), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -65702,74 +65710,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(1574), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [sym_integer_literal] = ACTIONS(1580), - [aux_sym_string_literal_token1] = ACTIONS(1308), + [aux_sym_string_literal_token1] = ACTIONS(1320), [sym_char_literal] = ACTIONS(1580), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), + [anon_sym_true] = ACTIONS(1322), + [anon_sym_false] = ACTIONS(1322), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), [sym_super] = ACTIONS(1582), [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), - [sym__raw_string_literal_start] = ACTIONS(1318), + [sym__raw_string_literal_start] = ACTIONS(1330), [sym_float_literal] = ACTIONS(1580), }, [445] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2352), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(2353), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_type_binding] = STATE(2441), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), - [sym_label] = STATE(3582), - [sym_block] = STATE(2441), - [sym__literal] = STATE(2441), - [sym_string_literal] = STATE(2861), - [sym_raw_string_literal] = STATE(2861), - [sym_boolean_literal] = STATE(2861), + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2435), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(2437), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_type_binding] = STATE(2721), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), + [sym_label] = STATE(3590), + [sym_block] = STATE(2721), + [sym__literal] = STATE(2721), + [sym_string_literal] = STATE(2938), + [sym_raw_string_literal] = STATE(2938), + [sym_boolean_literal] = STATE(2938), [sym_line_comment] = STATE(445), [sym_block_comment] = STATE(445), - [aux_sym_function_modifiers_repeat1] = STATE(2206), + [aux_sym_function_modifiers_repeat1] = STATE(2220), [sym_identifier] = ACTIONS(1558), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), [anon_sym_LBRACE] = ACTIONS(1564), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -65787,37 +65795,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(1574), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [sym_integer_literal] = ACTIONS(1580), - [aux_sym_string_literal_token1] = ACTIONS(1308), + [aux_sym_string_literal_token1] = ACTIONS(1320), [sym_char_literal] = ACTIONS(1580), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), + [anon_sym_true] = ACTIONS(1322), + [anon_sym_false] = ACTIONS(1322), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), [sym_super] = ACTIONS(1582), [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), - [sym__raw_string_literal_start] = ACTIONS(1318), + [sym__raw_string_literal_start] = ACTIONS(1330), [sym_float_literal] = ACTIONS(1580), }, [446] = { - [sym_else_clause] = STATE(455), + [sym_else_clause] = STATE(464), [sym_line_comment] = STATE(446), [sym_block_comment] = STATE(446), [sym_identifier] = ACTIONS(1196), @@ -65903,89 +65911,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [447] = { [sym_line_comment] = STATE(447), [sym_block_comment] = STATE(447), - [sym_identifier] = ACTIONS(1242), - [anon_sym_LPAREN] = ACTIONS(1240), - [anon_sym_LBRACK] = ACTIONS(1240), - [anon_sym_RBRACE] = ACTIONS(1240), - [anon_sym_PLUS] = ACTIONS(1242), - [anon_sym_STAR] = ACTIONS(1242), - [anon_sym_QMARK] = ACTIONS(1240), - [anon_sym_u8] = ACTIONS(1242), - [anon_sym_i8] = ACTIONS(1242), - [anon_sym_u16] = ACTIONS(1242), - [anon_sym_i16] = ACTIONS(1242), - [anon_sym_u32] = ACTIONS(1242), - [anon_sym_i32] = ACTIONS(1242), - [anon_sym_u64] = ACTIONS(1242), - [anon_sym_i64] = ACTIONS(1242), - [anon_sym_u128] = ACTIONS(1242), - [anon_sym_i128] = ACTIONS(1242), - [anon_sym_isize] = ACTIONS(1242), - [anon_sym_usize] = ACTIONS(1242), - [anon_sym_f32] = ACTIONS(1242), - [anon_sym_f64] = ACTIONS(1242), - [anon_sym_bool] = ACTIONS(1242), - [anon_sym_str] = ACTIONS(1242), - [anon_sym_char] = ACTIONS(1242), - [anon_sym_DASH] = ACTIONS(1242), - [anon_sym_SLASH] = ACTIONS(1242), - [anon_sym_PERCENT] = ACTIONS(1242), - [anon_sym_CARET] = ACTIONS(1242), - [anon_sym_AMP] = ACTIONS(1242), - [anon_sym_PIPE] = ACTIONS(1242), - [anon_sym_AMP_AMP] = ACTIONS(1240), - [anon_sym_PIPE_PIPE] = ACTIONS(1240), - [anon_sym_LT_LT] = ACTIONS(1242), - [anon_sym_GT_GT] = ACTIONS(1242), - [anon_sym_PLUS_EQ] = ACTIONS(1240), - [anon_sym_DASH_EQ] = ACTIONS(1240), - [anon_sym_STAR_EQ] = ACTIONS(1240), - [anon_sym_SLASH_EQ] = ACTIONS(1240), - [anon_sym_PERCENT_EQ] = ACTIONS(1240), - [anon_sym_CARET_EQ] = ACTIONS(1240), - [anon_sym_AMP_EQ] = ACTIONS(1240), - [anon_sym_PIPE_EQ] = ACTIONS(1240), - [anon_sym_LT_LT_EQ] = ACTIONS(1240), - [anon_sym_GT_GT_EQ] = ACTIONS(1240), - [anon_sym_EQ] = ACTIONS(1242), - [anon_sym_EQ_EQ] = ACTIONS(1240), - [anon_sym_BANG_EQ] = ACTIONS(1240), - [anon_sym_GT] = ACTIONS(1242), - [anon_sym_LT] = ACTIONS(1242), - [anon_sym_GT_EQ] = ACTIONS(1240), - [anon_sym_LT_EQ] = ACTIONS(1240), - [anon_sym__] = ACTIONS(1242), - [anon_sym_DOT] = ACTIONS(1242), - [anon_sym_DOT_DOT] = ACTIONS(1242), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1240), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1240), - [anon_sym_COMMA] = ACTIONS(1240), - [anon_sym_COLON_COLON] = ACTIONS(1240), - [anon_sym_POUND] = ACTIONS(1240), - [anon_sym_as] = ACTIONS(1242), - [anon_sym_const] = ACTIONS(1242), - [anon_sym_default] = ACTIONS(1242), - [anon_sym_union] = ACTIONS(1242), - [anon_sym_ref] = ACTIONS(1242), - [anon_sym_else] = ACTIONS(1242), - [sym_mutable_specifier] = ACTIONS(1242), - [sym_integer_literal] = ACTIONS(1240), - [aux_sym_string_literal_token1] = ACTIONS(1240), - [sym_char_literal] = ACTIONS(1240), - [anon_sym_true] = ACTIONS(1242), - [anon_sym_false] = ACTIONS(1242), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1242), - [sym_super] = ACTIONS(1242), - [sym_crate] = ACTIONS(1242), - [sym_metavariable] = ACTIONS(1240), - [sym__raw_string_literal_start] = ACTIONS(1240), - [sym_float_literal] = ACTIONS(1240), - }, - [448] = { - [sym_line_comment] = STATE(448), - [sym_block_comment] = STATE(448), [sym_identifier] = ACTIONS(1246), [anon_sym_LPAREN] = ACTIONS(1244), [anon_sym_LBRACK] = ACTIONS(1244), @@ -66066,6 +65991,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1244), [sym_float_literal] = ACTIONS(1244), }, + [448] = { + [sym_line_comment] = STATE(448), + [sym_block_comment] = STATE(448), + [sym_identifier] = ACTIONS(1238), + [anon_sym_LPAREN] = ACTIONS(1236), + [anon_sym_LBRACK] = ACTIONS(1236), + [anon_sym_RBRACE] = ACTIONS(1236), + [anon_sym_PLUS] = ACTIONS(1238), + [anon_sym_STAR] = ACTIONS(1238), + [anon_sym_QMARK] = ACTIONS(1236), + [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(1238), + [anon_sym_SLASH] = ACTIONS(1238), + [anon_sym_PERCENT] = ACTIONS(1238), + [anon_sym_CARET] = ACTIONS(1238), + [anon_sym_AMP] = ACTIONS(1238), + [anon_sym_PIPE] = ACTIONS(1238), + [anon_sym_AMP_AMP] = ACTIONS(1236), + [anon_sym_PIPE_PIPE] = ACTIONS(1236), + [anon_sym_LT_LT] = ACTIONS(1238), + [anon_sym_GT_GT] = ACTIONS(1238), + [anon_sym_PLUS_EQ] = ACTIONS(1236), + [anon_sym_DASH_EQ] = ACTIONS(1236), + [anon_sym_STAR_EQ] = ACTIONS(1236), + [anon_sym_SLASH_EQ] = ACTIONS(1236), + [anon_sym_PERCENT_EQ] = ACTIONS(1236), + [anon_sym_CARET_EQ] = ACTIONS(1236), + [anon_sym_AMP_EQ] = ACTIONS(1236), + [anon_sym_PIPE_EQ] = ACTIONS(1236), + [anon_sym_LT_LT_EQ] = ACTIONS(1236), + [anon_sym_GT_GT_EQ] = ACTIONS(1236), + [anon_sym_EQ] = ACTIONS(1238), + [anon_sym_EQ_EQ] = ACTIONS(1236), + [anon_sym_BANG_EQ] = ACTIONS(1236), + [anon_sym_GT] = ACTIONS(1238), + [anon_sym_LT] = ACTIONS(1238), + [anon_sym_GT_EQ] = ACTIONS(1236), + [anon_sym_LT_EQ] = ACTIONS(1236), + [anon_sym__] = ACTIONS(1238), + [anon_sym_DOT] = ACTIONS(1238), + [anon_sym_DOT_DOT] = ACTIONS(1238), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1236), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1236), + [anon_sym_COMMA] = ACTIONS(1236), + [anon_sym_COLON_COLON] = ACTIONS(1236), + [anon_sym_POUND] = ACTIONS(1236), + [anon_sym_as] = ACTIONS(1238), + [anon_sym_const] = ACTIONS(1238), + [anon_sym_default] = ACTIONS(1238), + [anon_sym_union] = ACTIONS(1238), + [anon_sym_ref] = ACTIONS(1238), + [anon_sym_else] = ACTIONS(1238), + [sym_mutable_specifier] = ACTIONS(1238), + [sym_integer_literal] = ACTIONS(1236), + [aux_sym_string_literal_token1] = ACTIONS(1236), + [sym_char_literal] = ACTIONS(1236), + [anon_sym_true] = ACTIONS(1238), + [anon_sym_false] = ACTIONS(1238), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1238), + [sym_super] = ACTIONS(1238), + [sym_crate] = ACTIONS(1238), + [sym_metavariable] = ACTIONS(1236), + [sym__raw_string_literal_start] = ACTIONS(1236), + [sym_float_literal] = ACTIONS(1236), + }, [449] = { [sym_line_comment] = STATE(449), [sym_block_comment] = STATE(449), @@ -66235,448 +66243,284 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [451] = { [sym_line_comment] = STATE(451), [sym_block_comment] = STATE(451), - [sym_identifier] = ACTIONS(1238), - [anon_sym_LPAREN] = ACTIONS(1236), - [anon_sym_LBRACK] = ACTIONS(1236), - [anon_sym_RBRACE] = ACTIONS(1236), - [anon_sym_PLUS] = ACTIONS(1238), - [anon_sym_STAR] = ACTIONS(1238), - [anon_sym_QMARK] = ACTIONS(1236), - [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(1238), - [anon_sym_SLASH] = ACTIONS(1238), - [anon_sym_PERCENT] = ACTIONS(1238), - [anon_sym_CARET] = ACTIONS(1238), - [anon_sym_AMP] = ACTIONS(1238), - [anon_sym_PIPE] = ACTIONS(1238), - [anon_sym_AMP_AMP] = ACTIONS(1236), - [anon_sym_PIPE_PIPE] = ACTIONS(1236), - [anon_sym_LT_LT] = ACTIONS(1238), - [anon_sym_GT_GT] = ACTIONS(1238), - [anon_sym_PLUS_EQ] = ACTIONS(1236), - [anon_sym_DASH_EQ] = ACTIONS(1236), - [anon_sym_STAR_EQ] = ACTIONS(1236), - [anon_sym_SLASH_EQ] = ACTIONS(1236), - [anon_sym_PERCENT_EQ] = ACTIONS(1236), - [anon_sym_CARET_EQ] = ACTIONS(1236), - [anon_sym_AMP_EQ] = ACTIONS(1236), - [anon_sym_PIPE_EQ] = ACTIONS(1236), - [anon_sym_LT_LT_EQ] = ACTIONS(1236), - [anon_sym_GT_GT_EQ] = ACTIONS(1236), - [anon_sym_EQ] = ACTIONS(1238), - [anon_sym_EQ_EQ] = ACTIONS(1236), - [anon_sym_BANG_EQ] = ACTIONS(1236), - [anon_sym_GT] = ACTIONS(1238), - [anon_sym_LT] = ACTIONS(1238), - [anon_sym_GT_EQ] = ACTIONS(1236), - [anon_sym_LT_EQ] = ACTIONS(1236), - [anon_sym__] = ACTIONS(1238), - [anon_sym_DOT] = ACTIONS(1238), - [anon_sym_DOT_DOT] = ACTIONS(1238), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1236), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1236), - [anon_sym_COMMA] = ACTIONS(1236), - [anon_sym_COLON_COLON] = ACTIONS(1236), - [anon_sym_POUND] = ACTIONS(1236), - [anon_sym_as] = ACTIONS(1238), - [anon_sym_const] = ACTIONS(1238), - [anon_sym_default] = ACTIONS(1238), - [anon_sym_union] = ACTIONS(1238), - [anon_sym_ref] = ACTIONS(1238), - [anon_sym_else] = ACTIONS(1238), - [sym_mutable_specifier] = ACTIONS(1238), - [sym_integer_literal] = ACTIONS(1236), - [aux_sym_string_literal_token1] = ACTIONS(1236), - [sym_char_literal] = ACTIONS(1236), - [anon_sym_true] = ACTIONS(1238), - [anon_sym_false] = ACTIONS(1238), + [sym_identifier] = ACTIONS(1242), + [anon_sym_LPAREN] = ACTIONS(1240), + [anon_sym_LBRACK] = ACTIONS(1240), + [anon_sym_RBRACE] = ACTIONS(1240), + [anon_sym_PLUS] = ACTIONS(1242), + [anon_sym_STAR] = ACTIONS(1242), + [anon_sym_QMARK] = ACTIONS(1240), + [anon_sym_u8] = ACTIONS(1242), + [anon_sym_i8] = ACTIONS(1242), + [anon_sym_u16] = ACTIONS(1242), + [anon_sym_i16] = ACTIONS(1242), + [anon_sym_u32] = ACTIONS(1242), + [anon_sym_i32] = ACTIONS(1242), + [anon_sym_u64] = ACTIONS(1242), + [anon_sym_i64] = ACTIONS(1242), + [anon_sym_u128] = ACTIONS(1242), + [anon_sym_i128] = ACTIONS(1242), + [anon_sym_isize] = ACTIONS(1242), + [anon_sym_usize] = ACTIONS(1242), + [anon_sym_f32] = ACTIONS(1242), + [anon_sym_f64] = ACTIONS(1242), + [anon_sym_bool] = ACTIONS(1242), + [anon_sym_str] = ACTIONS(1242), + [anon_sym_char] = ACTIONS(1242), + [anon_sym_DASH] = ACTIONS(1242), + [anon_sym_SLASH] = ACTIONS(1242), + [anon_sym_PERCENT] = ACTIONS(1242), + [anon_sym_CARET] = ACTIONS(1242), + [anon_sym_AMP] = ACTIONS(1242), + [anon_sym_PIPE] = ACTIONS(1242), + [anon_sym_AMP_AMP] = ACTIONS(1240), + [anon_sym_PIPE_PIPE] = ACTIONS(1240), + [anon_sym_LT_LT] = ACTIONS(1242), + [anon_sym_GT_GT] = ACTIONS(1242), + [anon_sym_PLUS_EQ] = ACTIONS(1240), + [anon_sym_DASH_EQ] = ACTIONS(1240), + [anon_sym_STAR_EQ] = ACTIONS(1240), + [anon_sym_SLASH_EQ] = ACTIONS(1240), + [anon_sym_PERCENT_EQ] = ACTIONS(1240), + [anon_sym_CARET_EQ] = ACTIONS(1240), + [anon_sym_AMP_EQ] = ACTIONS(1240), + [anon_sym_PIPE_EQ] = ACTIONS(1240), + [anon_sym_LT_LT_EQ] = ACTIONS(1240), + [anon_sym_GT_GT_EQ] = ACTIONS(1240), + [anon_sym_EQ] = ACTIONS(1242), + [anon_sym_EQ_EQ] = ACTIONS(1240), + [anon_sym_BANG_EQ] = ACTIONS(1240), + [anon_sym_GT] = ACTIONS(1242), + [anon_sym_LT] = ACTIONS(1242), + [anon_sym_GT_EQ] = ACTIONS(1240), + [anon_sym_LT_EQ] = ACTIONS(1240), + [anon_sym__] = ACTIONS(1242), + [anon_sym_DOT] = ACTIONS(1242), + [anon_sym_DOT_DOT] = ACTIONS(1242), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1240), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1240), + [anon_sym_COMMA] = ACTIONS(1240), + [anon_sym_COLON_COLON] = ACTIONS(1240), + [anon_sym_POUND] = ACTIONS(1240), + [anon_sym_as] = ACTIONS(1242), + [anon_sym_const] = ACTIONS(1242), + [anon_sym_default] = ACTIONS(1242), + [anon_sym_union] = ACTIONS(1242), + [anon_sym_ref] = ACTIONS(1242), + [anon_sym_else] = ACTIONS(1242), + [sym_mutable_specifier] = ACTIONS(1242), + [sym_integer_literal] = ACTIONS(1240), + [aux_sym_string_literal_token1] = ACTIONS(1240), + [sym_char_literal] = ACTIONS(1240), + [anon_sym_true] = ACTIONS(1242), + [anon_sym_false] = ACTIONS(1242), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1238), - [sym_super] = ACTIONS(1238), - [sym_crate] = ACTIONS(1238), - [sym_metavariable] = ACTIONS(1236), - [sym__raw_string_literal_start] = ACTIONS(1236), - [sym_float_literal] = ACTIONS(1236), + [sym_self] = ACTIONS(1242), + [sym_super] = ACTIONS(1242), + [sym_crate] = ACTIONS(1242), + [sym_metavariable] = ACTIONS(1240), + [sym__raw_string_literal_start] = ACTIONS(1240), + [sym_float_literal] = ACTIONS(1240), }, [452] = { [sym_line_comment] = STATE(452), [sym_block_comment] = STATE(452), - [sym_identifier] = ACTIONS(1364), - [anon_sym_LPAREN] = ACTIONS(1362), - [anon_sym_LBRACK] = ACTIONS(1362), - [anon_sym_RBRACE] = ACTIONS(1362), - [anon_sym_PLUS] = ACTIONS(1364), - [anon_sym_STAR] = ACTIONS(1364), - [anon_sym_QMARK] = ACTIONS(1362), - [anon_sym_u8] = ACTIONS(1364), - [anon_sym_i8] = ACTIONS(1364), - [anon_sym_u16] = ACTIONS(1364), - [anon_sym_i16] = ACTIONS(1364), - [anon_sym_u32] = ACTIONS(1364), - [anon_sym_i32] = ACTIONS(1364), - [anon_sym_u64] = ACTIONS(1364), - [anon_sym_i64] = ACTIONS(1364), - [anon_sym_u128] = ACTIONS(1364), - [anon_sym_i128] = ACTIONS(1364), - [anon_sym_isize] = ACTIONS(1364), - [anon_sym_usize] = ACTIONS(1364), - [anon_sym_f32] = ACTIONS(1364), - [anon_sym_f64] = ACTIONS(1364), - [anon_sym_bool] = ACTIONS(1364), - [anon_sym_str] = ACTIONS(1364), - [anon_sym_char] = ACTIONS(1364), - [anon_sym_DASH] = ACTIONS(1364), - [anon_sym_SLASH] = ACTIONS(1364), - [anon_sym_PERCENT] = ACTIONS(1364), - [anon_sym_CARET] = ACTIONS(1364), - [anon_sym_AMP] = ACTIONS(1364), - [anon_sym_PIPE] = ACTIONS(1364), - [anon_sym_AMP_AMP] = ACTIONS(1362), - [anon_sym_PIPE_PIPE] = ACTIONS(1362), - [anon_sym_LT_LT] = ACTIONS(1364), - [anon_sym_GT_GT] = ACTIONS(1364), - [anon_sym_PLUS_EQ] = ACTIONS(1362), - [anon_sym_DASH_EQ] = ACTIONS(1362), - [anon_sym_STAR_EQ] = ACTIONS(1362), - [anon_sym_SLASH_EQ] = ACTIONS(1362), - [anon_sym_PERCENT_EQ] = ACTIONS(1362), - [anon_sym_CARET_EQ] = ACTIONS(1362), - [anon_sym_AMP_EQ] = ACTIONS(1362), - [anon_sym_PIPE_EQ] = ACTIONS(1362), - [anon_sym_LT_LT_EQ] = ACTIONS(1362), - [anon_sym_GT_GT_EQ] = ACTIONS(1362), - [anon_sym_EQ] = ACTIONS(1364), - [anon_sym_EQ_EQ] = ACTIONS(1362), - [anon_sym_BANG_EQ] = ACTIONS(1362), - [anon_sym_GT] = ACTIONS(1364), - [anon_sym_LT] = ACTIONS(1364), - [anon_sym_GT_EQ] = ACTIONS(1362), - [anon_sym_LT_EQ] = ACTIONS(1362), - [anon_sym__] = ACTIONS(1364), - [anon_sym_DOT] = ACTIONS(1364), - [anon_sym_DOT_DOT] = ACTIONS(1364), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1362), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1362), - [anon_sym_COMMA] = ACTIONS(1362), - [anon_sym_COLON_COLON] = ACTIONS(1362), - [anon_sym_POUND] = ACTIONS(1362), - [anon_sym_as] = ACTIONS(1364), - [anon_sym_const] = ACTIONS(1364), - [anon_sym_default] = ACTIONS(1364), - [anon_sym_union] = ACTIONS(1364), - [anon_sym_ref] = ACTIONS(1364), - [sym_mutable_specifier] = ACTIONS(1364), - [sym_integer_literal] = ACTIONS(1362), - [aux_sym_string_literal_token1] = ACTIONS(1362), - [sym_char_literal] = ACTIONS(1362), - [anon_sym_true] = ACTIONS(1364), - [anon_sym_false] = ACTIONS(1364), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1364), - [sym_super] = ACTIONS(1364), - [sym_crate] = ACTIONS(1364), - [sym_metavariable] = ACTIONS(1362), - [sym__raw_string_literal_start] = ACTIONS(1362), - [sym_float_literal] = ACTIONS(1362), + [sym_identifier] = ACTIONS(1254), + [anon_sym_LPAREN] = ACTIONS(1252), + [anon_sym_LBRACK] = ACTIONS(1252), + [anon_sym_RBRACE] = ACTIONS(1252), + [anon_sym_PLUS] = ACTIONS(1254), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_QMARK] = ACTIONS(1252), + [anon_sym_u8] = ACTIONS(1254), + [anon_sym_i8] = ACTIONS(1254), + [anon_sym_u16] = ACTIONS(1254), + [anon_sym_i16] = ACTIONS(1254), + [anon_sym_u32] = ACTIONS(1254), + [anon_sym_i32] = ACTIONS(1254), + [anon_sym_u64] = ACTIONS(1254), + [anon_sym_i64] = ACTIONS(1254), + [anon_sym_u128] = ACTIONS(1254), + [anon_sym_i128] = ACTIONS(1254), + [anon_sym_isize] = ACTIONS(1254), + [anon_sym_usize] = ACTIONS(1254), + [anon_sym_f32] = ACTIONS(1254), + [anon_sym_f64] = ACTIONS(1254), + [anon_sym_bool] = ACTIONS(1254), + [anon_sym_str] = ACTIONS(1254), + [anon_sym_char] = ACTIONS(1254), + [anon_sym_DASH] = ACTIONS(1254), + [anon_sym_SLASH] = ACTIONS(1254), + [anon_sym_PERCENT] = ACTIONS(1254), + [anon_sym_CARET] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym_PIPE] = ACTIONS(1254), + [anon_sym_AMP_AMP] = ACTIONS(1252), + [anon_sym_PIPE_PIPE] = ACTIONS(1252), + [anon_sym_LT_LT] = ACTIONS(1254), + [anon_sym_GT_GT] = ACTIONS(1254), + [anon_sym_PLUS_EQ] = ACTIONS(1252), + [anon_sym_DASH_EQ] = ACTIONS(1252), + [anon_sym_STAR_EQ] = ACTIONS(1252), + [anon_sym_SLASH_EQ] = ACTIONS(1252), + [anon_sym_PERCENT_EQ] = ACTIONS(1252), + [anon_sym_CARET_EQ] = ACTIONS(1252), + [anon_sym_AMP_EQ] = ACTIONS(1252), + [anon_sym_PIPE_EQ] = ACTIONS(1252), + [anon_sym_LT_LT_EQ] = ACTIONS(1252), + [anon_sym_GT_GT_EQ] = ACTIONS(1252), + [anon_sym_EQ] = ACTIONS(1254), + [anon_sym_EQ_EQ] = ACTIONS(1252), + [anon_sym_BANG_EQ] = ACTIONS(1252), + [anon_sym_GT] = ACTIONS(1254), + [anon_sym_LT] = ACTIONS(1254), + [anon_sym_GT_EQ] = ACTIONS(1252), + [anon_sym_LT_EQ] = ACTIONS(1252), + [anon_sym__] = ACTIONS(1254), + [anon_sym_DOT] = ACTIONS(1254), + [anon_sym_DOT_DOT] = ACTIONS(1254), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1252), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1252), + [anon_sym_COMMA] = ACTIONS(1252), + [anon_sym_COLON_COLON] = ACTIONS(1252), + [anon_sym_POUND] = ACTIONS(1252), + [anon_sym_as] = ACTIONS(1254), + [anon_sym_const] = ACTIONS(1254), + [anon_sym_default] = ACTIONS(1254), + [anon_sym_union] = ACTIONS(1254), + [anon_sym_ref] = ACTIONS(1254), + [sym_mutable_specifier] = ACTIONS(1254), + [sym_integer_literal] = ACTIONS(1252), + [aux_sym_string_literal_token1] = ACTIONS(1252), + [sym_char_literal] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1254), + [anon_sym_false] = ACTIONS(1254), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1254), + [sym_super] = ACTIONS(1254), + [sym_crate] = ACTIONS(1254), + [sym_metavariable] = ACTIONS(1252), + [sym__raw_string_literal_start] = ACTIONS(1252), + [sym_float_literal] = ACTIONS(1252), }, [453] = { [sym_line_comment] = STATE(453), [sym_block_comment] = STATE(453), - [sym_identifier] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1428), - [anon_sym_LBRACK] = ACTIONS(1428), - [anon_sym_RBRACE] = ACTIONS(1428), - [anon_sym_PLUS] = ACTIONS(1430), - [anon_sym_STAR] = ACTIONS(1430), - [anon_sym_QMARK] = ACTIONS(1428), - [anon_sym_u8] = ACTIONS(1430), - [anon_sym_i8] = ACTIONS(1430), - [anon_sym_u16] = ACTIONS(1430), - [anon_sym_i16] = ACTIONS(1430), - [anon_sym_u32] = ACTIONS(1430), - [anon_sym_i32] = ACTIONS(1430), - [anon_sym_u64] = ACTIONS(1430), - [anon_sym_i64] = ACTIONS(1430), - [anon_sym_u128] = ACTIONS(1430), - [anon_sym_i128] = ACTIONS(1430), - [anon_sym_isize] = ACTIONS(1430), - [anon_sym_usize] = ACTIONS(1430), - [anon_sym_f32] = ACTIONS(1430), - [anon_sym_f64] = ACTIONS(1430), - [anon_sym_bool] = ACTIONS(1430), - [anon_sym_str] = ACTIONS(1430), - [anon_sym_char] = ACTIONS(1430), - [anon_sym_DASH] = ACTIONS(1430), - [anon_sym_SLASH] = ACTIONS(1430), - [anon_sym_PERCENT] = ACTIONS(1430), - [anon_sym_CARET] = ACTIONS(1430), - [anon_sym_AMP] = ACTIONS(1430), - [anon_sym_PIPE] = ACTIONS(1430), - [anon_sym_AMP_AMP] = ACTIONS(1428), - [anon_sym_PIPE_PIPE] = ACTIONS(1428), - [anon_sym_LT_LT] = ACTIONS(1430), - [anon_sym_GT_GT] = ACTIONS(1430), - [anon_sym_PLUS_EQ] = ACTIONS(1428), - [anon_sym_DASH_EQ] = ACTIONS(1428), - [anon_sym_STAR_EQ] = ACTIONS(1428), - [anon_sym_SLASH_EQ] = ACTIONS(1428), - [anon_sym_PERCENT_EQ] = ACTIONS(1428), - [anon_sym_CARET_EQ] = ACTIONS(1428), - [anon_sym_AMP_EQ] = ACTIONS(1428), - [anon_sym_PIPE_EQ] = ACTIONS(1428), - [anon_sym_LT_LT_EQ] = ACTIONS(1428), - [anon_sym_GT_GT_EQ] = ACTIONS(1428), - [anon_sym_EQ] = ACTIONS(1430), - [anon_sym_EQ_EQ] = ACTIONS(1428), - [anon_sym_BANG_EQ] = ACTIONS(1428), - [anon_sym_GT] = ACTIONS(1430), - [anon_sym_LT] = ACTIONS(1430), - [anon_sym_GT_EQ] = ACTIONS(1428), - [anon_sym_LT_EQ] = ACTIONS(1428), - [anon_sym__] = ACTIONS(1430), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_DOT_DOT] = ACTIONS(1430), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1428), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1428), - [anon_sym_COMMA] = ACTIONS(1428), - [anon_sym_COLON_COLON] = ACTIONS(1428), - [anon_sym_POUND] = ACTIONS(1428), - [anon_sym_as] = ACTIONS(1430), - [anon_sym_const] = ACTIONS(1430), - [anon_sym_default] = ACTIONS(1430), - [anon_sym_union] = ACTIONS(1430), - [anon_sym_ref] = ACTIONS(1430), - [sym_mutable_specifier] = ACTIONS(1430), - [sym_integer_literal] = ACTIONS(1428), - [aux_sym_string_literal_token1] = ACTIONS(1428), - [sym_char_literal] = ACTIONS(1428), - [anon_sym_true] = ACTIONS(1430), - [anon_sym_false] = ACTIONS(1430), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1430), - [sym_super] = ACTIONS(1430), - [sym_crate] = ACTIONS(1430), - [sym_metavariable] = ACTIONS(1428), - [sym__raw_string_literal_start] = ACTIONS(1428), - [sym_float_literal] = ACTIONS(1428), - }, - [454] = { - [sym_line_comment] = STATE(454), - [sym_block_comment] = STATE(454), - [sym_identifier] = ACTIONS(1372), - [anon_sym_LPAREN] = ACTIONS(1370), - [anon_sym_LBRACK] = ACTIONS(1370), - [anon_sym_RBRACE] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1372), - [anon_sym_STAR] = ACTIONS(1372), - [anon_sym_QMARK] = ACTIONS(1370), - [anon_sym_u8] = ACTIONS(1372), - [anon_sym_i8] = ACTIONS(1372), - [anon_sym_u16] = ACTIONS(1372), - [anon_sym_i16] = ACTIONS(1372), - [anon_sym_u32] = ACTIONS(1372), - [anon_sym_i32] = ACTIONS(1372), - [anon_sym_u64] = ACTIONS(1372), - [anon_sym_i64] = ACTIONS(1372), - [anon_sym_u128] = ACTIONS(1372), - [anon_sym_i128] = ACTIONS(1372), - [anon_sym_isize] = ACTIONS(1372), - [anon_sym_usize] = ACTIONS(1372), - [anon_sym_f32] = ACTIONS(1372), - [anon_sym_f64] = ACTIONS(1372), - [anon_sym_bool] = ACTIONS(1372), - [anon_sym_str] = ACTIONS(1372), - [anon_sym_char] = ACTIONS(1372), - [anon_sym_DASH] = ACTIONS(1372), - [anon_sym_SLASH] = ACTIONS(1372), - [anon_sym_PERCENT] = ACTIONS(1372), - [anon_sym_CARET] = ACTIONS(1372), - [anon_sym_AMP] = ACTIONS(1372), - [anon_sym_PIPE] = ACTIONS(1372), - [anon_sym_AMP_AMP] = ACTIONS(1370), - [anon_sym_PIPE_PIPE] = ACTIONS(1370), - [anon_sym_LT_LT] = ACTIONS(1372), - [anon_sym_GT_GT] = ACTIONS(1372), - [anon_sym_PLUS_EQ] = ACTIONS(1370), - [anon_sym_DASH_EQ] = ACTIONS(1370), - [anon_sym_STAR_EQ] = ACTIONS(1370), - [anon_sym_SLASH_EQ] = ACTIONS(1370), - [anon_sym_PERCENT_EQ] = ACTIONS(1370), - [anon_sym_CARET_EQ] = ACTIONS(1370), - [anon_sym_AMP_EQ] = ACTIONS(1370), - [anon_sym_PIPE_EQ] = ACTIONS(1370), - [anon_sym_LT_LT_EQ] = ACTIONS(1370), - [anon_sym_GT_GT_EQ] = ACTIONS(1370), - [anon_sym_EQ] = ACTIONS(1372), - [anon_sym_EQ_EQ] = ACTIONS(1370), - [anon_sym_BANG_EQ] = ACTIONS(1370), - [anon_sym_GT] = ACTIONS(1372), - [anon_sym_LT] = ACTIONS(1372), - [anon_sym_GT_EQ] = ACTIONS(1370), - [anon_sym_LT_EQ] = ACTIONS(1370), - [anon_sym__] = ACTIONS(1372), - [anon_sym_DOT] = ACTIONS(1372), - [anon_sym_DOT_DOT] = ACTIONS(1372), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1370), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1370), - [anon_sym_COMMA] = ACTIONS(1370), - [anon_sym_COLON_COLON] = ACTIONS(1370), - [anon_sym_POUND] = ACTIONS(1370), - [anon_sym_as] = ACTIONS(1372), - [anon_sym_const] = ACTIONS(1372), - [anon_sym_default] = ACTIONS(1372), - [anon_sym_union] = ACTIONS(1372), - [anon_sym_ref] = ACTIONS(1372), - [sym_mutable_specifier] = ACTIONS(1372), - [sym_integer_literal] = ACTIONS(1370), - [aux_sym_string_literal_token1] = ACTIONS(1370), - [sym_char_literal] = ACTIONS(1370), - [anon_sym_true] = ACTIONS(1372), - [anon_sym_false] = ACTIONS(1372), + [sym_identifier] = ACTIONS(1452), + [anon_sym_LPAREN] = ACTIONS(1450), + [anon_sym_LBRACK] = ACTIONS(1450), + [anon_sym_RBRACE] = ACTIONS(1450), + [anon_sym_PLUS] = ACTIONS(1452), + [anon_sym_STAR] = ACTIONS(1452), + [anon_sym_QMARK] = ACTIONS(1450), + [anon_sym_u8] = ACTIONS(1452), + [anon_sym_i8] = ACTIONS(1452), + [anon_sym_u16] = ACTIONS(1452), + [anon_sym_i16] = ACTIONS(1452), + [anon_sym_u32] = ACTIONS(1452), + [anon_sym_i32] = ACTIONS(1452), + [anon_sym_u64] = ACTIONS(1452), + [anon_sym_i64] = ACTIONS(1452), + [anon_sym_u128] = ACTIONS(1452), + [anon_sym_i128] = ACTIONS(1452), + [anon_sym_isize] = ACTIONS(1452), + [anon_sym_usize] = ACTIONS(1452), + [anon_sym_f32] = ACTIONS(1452), + [anon_sym_f64] = ACTIONS(1452), + [anon_sym_bool] = ACTIONS(1452), + [anon_sym_str] = ACTIONS(1452), + [anon_sym_char] = ACTIONS(1452), + [anon_sym_DASH] = ACTIONS(1452), + [anon_sym_SLASH] = ACTIONS(1452), + [anon_sym_PERCENT] = ACTIONS(1452), + [anon_sym_CARET] = ACTIONS(1452), + [anon_sym_AMP] = ACTIONS(1452), + [anon_sym_PIPE] = ACTIONS(1452), + [anon_sym_AMP_AMP] = ACTIONS(1450), + [anon_sym_PIPE_PIPE] = ACTIONS(1450), + [anon_sym_LT_LT] = ACTIONS(1452), + [anon_sym_GT_GT] = ACTIONS(1452), + [anon_sym_PLUS_EQ] = ACTIONS(1450), + [anon_sym_DASH_EQ] = ACTIONS(1450), + [anon_sym_STAR_EQ] = ACTIONS(1450), + [anon_sym_SLASH_EQ] = ACTIONS(1450), + [anon_sym_PERCENT_EQ] = ACTIONS(1450), + [anon_sym_CARET_EQ] = ACTIONS(1450), + [anon_sym_AMP_EQ] = ACTIONS(1450), + [anon_sym_PIPE_EQ] = ACTIONS(1450), + [anon_sym_LT_LT_EQ] = ACTIONS(1450), + [anon_sym_GT_GT_EQ] = ACTIONS(1450), + [anon_sym_EQ] = ACTIONS(1452), + [anon_sym_EQ_EQ] = ACTIONS(1450), + [anon_sym_BANG_EQ] = ACTIONS(1450), + [anon_sym_GT] = ACTIONS(1452), + [anon_sym_LT] = ACTIONS(1452), + [anon_sym_GT_EQ] = ACTIONS(1450), + [anon_sym_LT_EQ] = ACTIONS(1450), + [anon_sym__] = ACTIONS(1452), + [anon_sym_DOT] = ACTIONS(1452), + [anon_sym_DOT_DOT] = ACTIONS(1452), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1450), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1450), + [anon_sym_COMMA] = ACTIONS(1450), + [anon_sym_COLON_COLON] = ACTIONS(1450), + [anon_sym_POUND] = ACTIONS(1450), + [anon_sym_as] = ACTIONS(1452), + [anon_sym_const] = ACTIONS(1452), + [anon_sym_default] = ACTIONS(1452), + [anon_sym_union] = ACTIONS(1452), + [anon_sym_ref] = ACTIONS(1452), + [sym_mutable_specifier] = ACTIONS(1452), + [sym_integer_literal] = ACTIONS(1450), + [aux_sym_string_literal_token1] = ACTIONS(1450), + [sym_char_literal] = ACTIONS(1450), + [anon_sym_true] = ACTIONS(1452), + [anon_sym_false] = ACTIONS(1452), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1372), - [sym_super] = ACTIONS(1372), - [sym_crate] = ACTIONS(1372), - [sym_metavariable] = ACTIONS(1370), - [sym__raw_string_literal_start] = ACTIONS(1370), - [sym_float_literal] = ACTIONS(1370), - }, - [455] = { - [sym_line_comment] = STATE(455), - [sym_block_comment] = STATE(455), - [sym_identifier] = ACTIONS(1388), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_LBRACK] = ACTIONS(1386), - [anon_sym_RBRACE] = ACTIONS(1386), - [anon_sym_PLUS] = ACTIONS(1388), - [anon_sym_STAR] = ACTIONS(1388), - [anon_sym_QMARK] = ACTIONS(1386), - [anon_sym_u8] = ACTIONS(1388), - [anon_sym_i8] = ACTIONS(1388), - [anon_sym_u16] = ACTIONS(1388), - [anon_sym_i16] = ACTIONS(1388), - [anon_sym_u32] = ACTIONS(1388), - [anon_sym_i32] = ACTIONS(1388), - [anon_sym_u64] = ACTIONS(1388), - [anon_sym_i64] = ACTIONS(1388), - [anon_sym_u128] = ACTIONS(1388), - [anon_sym_i128] = ACTIONS(1388), - [anon_sym_isize] = ACTIONS(1388), - [anon_sym_usize] = ACTIONS(1388), - [anon_sym_f32] = ACTIONS(1388), - [anon_sym_f64] = ACTIONS(1388), - [anon_sym_bool] = ACTIONS(1388), - [anon_sym_str] = ACTIONS(1388), - [anon_sym_char] = ACTIONS(1388), - [anon_sym_DASH] = ACTIONS(1388), - [anon_sym_SLASH] = ACTIONS(1388), - [anon_sym_PERCENT] = ACTIONS(1388), - [anon_sym_CARET] = ACTIONS(1388), - [anon_sym_AMP] = ACTIONS(1388), - [anon_sym_PIPE] = ACTIONS(1388), - [anon_sym_AMP_AMP] = ACTIONS(1386), - [anon_sym_PIPE_PIPE] = ACTIONS(1386), - [anon_sym_LT_LT] = ACTIONS(1388), - [anon_sym_GT_GT] = ACTIONS(1388), - [anon_sym_PLUS_EQ] = ACTIONS(1386), - [anon_sym_DASH_EQ] = ACTIONS(1386), - [anon_sym_STAR_EQ] = ACTIONS(1386), - [anon_sym_SLASH_EQ] = ACTIONS(1386), - [anon_sym_PERCENT_EQ] = ACTIONS(1386), - [anon_sym_CARET_EQ] = ACTIONS(1386), - [anon_sym_AMP_EQ] = ACTIONS(1386), - [anon_sym_PIPE_EQ] = ACTIONS(1386), - [anon_sym_LT_LT_EQ] = ACTIONS(1386), - [anon_sym_GT_GT_EQ] = ACTIONS(1386), - [anon_sym_EQ] = ACTIONS(1388), - [anon_sym_EQ_EQ] = ACTIONS(1386), - [anon_sym_BANG_EQ] = ACTIONS(1386), - [anon_sym_GT] = ACTIONS(1388), - [anon_sym_LT] = ACTIONS(1388), - [anon_sym_GT_EQ] = ACTIONS(1386), - [anon_sym_LT_EQ] = ACTIONS(1386), - [anon_sym__] = ACTIONS(1388), - [anon_sym_DOT] = ACTIONS(1388), - [anon_sym_DOT_DOT] = ACTIONS(1388), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1386), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1386), - [anon_sym_COLON_COLON] = ACTIONS(1386), - [anon_sym_POUND] = ACTIONS(1386), - [anon_sym_as] = ACTIONS(1388), - [anon_sym_const] = ACTIONS(1388), - [anon_sym_default] = ACTIONS(1388), - [anon_sym_union] = ACTIONS(1388), - [anon_sym_ref] = ACTIONS(1388), - [sym_mutable_specifier] = ACTIONS(1388), - [sym_integer_literal] = ACTIONS(1386), - [aux_sym_string_literal_token1] = ACTIONS(1386), - [sym_char_literal] = ACTIONS(1386), - [anon_sym_true] = ACTIONS(1388), - [anon_sym_false] = ACTIONS(1388), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1388), - [sym_super] = ACTIONS(1388), - [sym_crate] = ACTIONS(1388), - [sym_metavariable] = ACTIONS(1386), - [sym__raw_string_literal_start] = ACTIONS(1386), - [sym_float_literal] = ACTIONS(1386), + [sym_self] = ACTIONS(1452), + [sym_super] = ACTIONS(1452), + [sym_crate] = ACTIONS(1452), + [sym_metavariable] = ACTIONS(1450), + [sym__raw_string_literal_start] = ACTIONS(1450), + [sym_float_literal] = ACTIONS(1450), }, - [456] = { - [sym_attribute_item] = STATE(1479), - [sym_inner_attribute_item] = STATE(1479), - [sym_bracketed_type] = STATE(3523), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3262), - [sym_macro_invocation] = STATE(2877), - [sym_scoped_identifier] = STATE(2130), - [sym_scoped_type_identifier] = STATE(2908), - [sym_match_arm] = STATE(1471), - [sym_last_match_arm] = STATE(3546), - [sym_match_pattern] = STATE(3345), - [sym_const_block] = STATE(2877), - [sym__pattern] = STATE(2919), - [sym_tuple_pattern] = STATE(2877), - [sym_slice_pattern] = STATE(2877), - [sym_tuple_struct_pattern] = STATE(2877), - [sym_struct_pattern] = STATE(2877), - [sym_remaining_field_pattern] = STATE(2877), - [sym_mut_pattern] = STATE(2877), - [sym_range_pattern] = STATE(2877), - [sym_ref_pattern] = STATE(2877), - [sym_captured_pattern] = STATE(2877), - [sym_reference_pattern] = STATE(2877), - [sym_or_pattern] = STATE(2877), - [sym__literal_pattern] = STATE(2387), - [sym_negative_literal] = STATE(2299), - [sym_string_literal] = STATE(2299), - [sym_raw_string_literal] = STATE(2299), - [sym_boolean_literal] = STATE(2299), - [sym_line_comment] = STATE(456), - [sym_block_comment] = STATE(456), + [454] = { + [sym_attribute_item] = STATE(1474), + [sym_inner_attribute_item] = STATE(1474), + [sym_bracketed_type] = STATE(3531), + [sym_generic_type] = STATE(3487), + [sym_generic_type_with_turbofish] = STATE(3136), + [sym_macro_invocation] = STATE(2939), + [sym_scoped_identifier] = STATE(2152), + [sym_scoped_type_identifier] = STATE(2744), + [sym_match_arm] = STATE(1476), + [sym_last_match_arm] = STATE(3413), + [sym_match_pattern] = STATE(3611), + [sym_const_block] = STATE(2939), + [sym__pattern] = STATE(3025), + [sym_tuple_pattern] = STATE(2939), + [sym_slice_pattern] = STATE(2939), + [sym_tuple_struct_pattern] = STATE(2939), + [sym_struct_pattern] = STATE(2939), + [sym_remaining_field_pattern] = STATE(2939), + [sym_mut_pattern] = STATE(2939), + [sym_range_pattern] = STATE(2939), + [sym_ref_pattern] = STATE(2939), + [sym_captured_pattern] = STATE(2939), + [sym_reference_pattern] = STATE(2939), + [sym_or_pattern] = STATE(2939), + [sym__literal_pattern] = STATE(2366), + [sym_negative_literal] = STATE(2355), + [sym_string_literal] = STATE(2355), + [sym_raw_string_literal] = STATE(2355), + [sym_boolean_literal] = STATE(2355), + [sym_line_comment] = STATE(454), + [sym_block_comment] = STATE(454), [aux_sym_match_block_repeat1] = STATE(478), - [aux_sym_match_arm_repeat1] = STATE(759), + [aux_sym_match_arm_repeat1] = STATE(756), [sym_identifier] = ACTIONS(1604), [anon_sym_LPAREN] = ACTIONS(1606), [anon_sym_LBRACK] = ACTIONS(1608), @@ -66725,98 +66569,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1646), [sym_float_literal] = ACTIONS(1636), }, - [457] = { - [sym_line_comment] = STATE(457), - [sym_block_comment] = STATE(457), - [sym_identifier] = ACTIONS(1356), - [anon_sym_LPAREN] = ACTIONS(1354), - [anon_sym_LBRACK] = ACTIONS(1354), - [anon_sym_RBRACE] = ACTIONS(1354), - [anon_sym_PLUS] = ACTIONS(1356), - [anon_sym_STAR] = ACTIONS(1356), - [anon_sym_QMARK] = ACTIONS(1354), - [anon_sym_u8] = ACTIONS(1356), - [anon_sym_i8] = ACTIONS(1356), - [anon_sym_u16] = ACTIONS(1356), - [anon_sym_i16] = ACTIONS(1356), - [anon_sym_u32] = ACTIONS(1356), - [anon_sym_i32] = ACTIONS(1356), - [anon_sym_u64] = ACTIONS(1356), - [anon_sym_i64] = ACTIONS(1356), - [anon_sym_u128] = ACTIONS(1356), - [anon_sym_i128] = ACTIONS(1356), - [anon_sym_isize] = ACTIONS(1356), - [anon_sym_usize] = ACTIONS(1356), - [anon_sym_f32] = ACTIONS(1356), - [anon_sym_f64] = ACTIONS(1356), - [anon_sym_bool] = ACTIONS(1356), - [anon_sym_str] = ACTIONS(1356), - [anon_sym_char] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1356), - [anon_sym_SLASH] = ACTIONS(1356), - [anon_sym_PERCENT] = ACTIONS(1356), - [anon_sym_CARET] = ACTIONS(1356), - [anon_sym_AMP] = ACTIONS(1356), - [anon_sym_PIPE] = ACTIONS(1356), - [anon_sym_AMP_AMP] = ACTIONS(1354), - [anon_sym_PIPE_PIPE] = ACTIONS(1354), - [anon_sym_LT_LT] = ACTIONS(1356), - [anon_sym_GT_GT] = ACTIONS(1356), - [anon_sym_PLUS_EQ] = ACTIONS(1354), - [anon_sym_DASH_EQ] = ACTIONS(1354), - [anon_sym_STAR_EQ] = ACTIONS(1354), - [anon_sym_SLASH_EQ] = ACTIONS(1354), - [anon_sym_PERCENT_EQ] = ACTIONS(1354), - [anon_sym_CARET_EQ] = ACTIONS(1354), - [anon_sym_AMP_EQ] = ACTIONS(1354), - [anon_sym_PIPE_EQ] = ACTIONS(1354), - [anon_sym_LT_LT_EQ] = ACTIONS(1354), - [anon_sym_GT_GT_EQ] = ACTIONS(1354), - [anon_sym_EQ] = ACTIONS(1356), - [anon_sym_EQ_EQ] = ACTIONS(1354), - [anon_sym_BANG_EQ] = ACTIONS(1354), - [anon_sym_GT] = ACTIONS(1356), - [anon_sym_LT] = ACTIONS(1356), - [anon_sym_GT_EQ] = ACTIONS(1354), - [anon_sym_LT_EQ] = ACTIONS(1354), - [anon_sym__] = ACTIONS(1356), - [anon_sym_DOT] = ACTIONS(1356), - [anon_sym_DOT_DOT] = ACTIONS(1356), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1354), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1354), - [anon_sym_COMMA] = ACTIONS(1354), - [anon_sym_COLON_COLON] = ACTIONS(1354), - [anon_sym_POUND] = ACTIONS(1354), - [anon_sym_as] = ACTIONS(1356), - [anon_sym_const] = ACTIONS(1356), - [anon_sym_default] = ACTIONS(1356), - [anon_sym_union] = ACTIONS(1356), - [anon_sym_ref] = ACTIONS(1356), - [sym_mutable_specifier] = ACTIONS(1356), - [sym_integer_literal] = ACTIONS(1354), - [aux_sym_string_literal_token1] = ACTIONS(1354), - [sym_char_literal] = ACTIONS(1354), - [anon_sym_true] = ACTIONS(1356), - [anon_sym_false] = ACTIONS(1356), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1356), - [sym_super] = ACTIONS(1356), - [sym_crate] = ACTIONS(1356), - [sym_metavariable] = ACTIONS(1354), - [sym__raw_string_literal_start] = ACTIONS(1354), - [sym_float_literal] = ACTIONS(1354), + [455] = { + [sym_line_comment] = STATE(455), + [sym_block_comment] = STATE(455), + [sym_identifier] = ACTIONS(1440), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_LBRACK] = ACTIONS(1438), + [anon_sym_RBRACE] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1440), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_QMARK] = ACTIONS(1438), + [anon_sym_u8] = ACTIONS(1440), + [anon_sym_i8] = ACTIONS(1440), + [anon_sym_u16] = ACTIONS(1440), + [anon_sym_i16] = ACTIONS(1440), + [anon_sym_u32] = ACTIONS(1440), + [anon_sym_i32] = ACTIONS(1440), + [anon_sym_u64] = ACTIONS(1440), + [anon_sym_i64] = ACTIONS(1440), + [anon_sym_u128] = ACTIONS(1440), + [anon_sym_i128] = ACTIONS(1440), + [anon_sym_isize] = ACTIONS(1440), + [anon_sym_usize] = ACTIONS(1440), + [anon_sym_f32] = ACTIONS(1440), + [anon_sym_f64] = ACTIONS(1440), + [anon_sym_bool] = ACTIONS(1440), + [anon_sym_str] = ACTIONS(1440), + [anon_sym_char] = ACTIONS(1440), + [anon_sym_DASH] = ACTIONS(1440), + [anon_sym_SLASH] = ACTIONS(1440), + [anon_sym_PERCENT] = ACTIONS(1440), + [anon_sym_CARET] = ACTIONS(1440), + [anon_sym_AMP] = ACTIONS(1440), + [anon_sym_PIPE] = ACTIONS(1440), + [anon_sym_AMP_AMP] = ACTIONS(1438), + [anon_sym_PIPE_PIPE] = ACTIONS(1438), + [anon_sym_LT_LT] = ACTIONS(1440), + [anon_sym_GT_GT] = ACTIONS(1440), + [anon_sym_PLUS_EQ] = ACTIONS(1438), + [anon_sym_DASH_EQ] = ACTIONS(1438), + [anon_sym_STAR_EQ] = ACTIONS(1438), + [anon_sym_SLASH_EQ] = ACTIONS(1438), + [anon_sym_PERCENT_EQ] = ACTIONS(1438), + [anon_sym_CARET_EQ] = ACTIONS(1438), + [anon_sym_AMP_EQ] = ACTIONS(1438), + [anon_sym_PIPE_EQ] = ACTIONS(1438), + [anon_sym_LT_LT_EQ] = ACTIONS(1438), + [anon_sym_GT_GT_EQ] = ACTIONS(1438), + [anon_sym_EQ] = ACTIONS(1440), + [anon_sym_EQ_EQ] = ACTIONS(1438), + [anon_sym_BANG_EQ] = ACTIONS(1438), + [anon_sym_GT] = ACTIONS(1440), + [anon_sym_LT] = ACTIONS(1440), + [anon_sym_GT_EQ] = ACTIONS(1438), + [anon_sym_LT_EQ] = ACTIONS(1438), + [anon_sym__] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1440), + [anon_sym_DOT_DOT] = ACTIONS(1440), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1438), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1438), + [anon_sym_COMMA] = ACTIONS(1438), + [anon_sym_COLON_COLON] = ACTIONS(1438), + [anon_sym_POUND] = ACTIONS(1438), + [anon_sym_as] = ACTIONS(1440), + [anon_sym_const] = ACTIONS(1440), + [anon_sym_default] = ACTIONS(1440), + [anon_sym_union] = ACTIONS(1440), + [anon_sym_ref] = ACTIONS(1440), + [sym_mutable_specifier] = ACTIONS(1440), + [sym_integer_literal] = ACTIONS(1438), + [aux_sym_string_literal_token1] = ACTIONS(1438), + [sym_char_literal] = ACTIONS(1438), + [anon_sym_true] = ACTIONS(1440), + [anon_sym_false] = ACTIONS(1440), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1440), + [sym_super] = ACTIONS(1440), + [sym_crate] = ACTIONS(1440), + [sym_metavariable] = ACTIONS(1438), + [sym__raw_string_literal_start] = ACTIONS(1438), + [sym_float_literal] = ACTIONS(1438), }, - [458] = { - [sym_line_comment] = STATE(458), - [sym_block_comment] = STATE(458), + [456] = { + [sym_line_comment] = STATE(456), + [sym_block_comment] = STATE(456), [sym_identifier] = ACTIONS(1648), [anon_sym_LPAREN] = ACTIONS(1650), [anon_sym_LBRACK] = ACTIONS(1650), - [anon_sym_RBRACE] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_STAR] = ACTIONS(1416), - [anon_sym_QMARK] = ACTIONS(1418), + [anon_sym_RBRACE] = ACTIONS(1408), + [anon_sym_PLUS] = ACTIONS(1406), + [anon_sym_STAR] = ACTIONS(1406), + [anon_sym_QMARK] = ACTIONS(1408), [anon_sym_u8] = ACTIONS(1648), [anon_sym_i8] = ACTIONS(1648), [anon_sym_u16] = ACTIONS(1648), @@ -66835,41 +66679,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(1648), [anon_sym_char] = ACTIONS(1648), [anon_sym_DASH] = ACTIONS(1648), - [anon_sym_SLASH] = ACTIONS(1416), - [anon_sym_PERCENT] = ACTIONS(1416), - [anon_sym_CARET] = ACTIONS(1416), + [anon_sym_SLASH] = ACTIONS(1406), + [anon_sym_PERCENT] = ACTIONS(1406), + [anon_sym_CARET] = ACTIONS(1406), [anon_sym_AMP] = ACTIONS(1648), [anon_sym_PIPE] = ACTIONS(1648), - [anon_sym_AMP_AMP] = ACTIONS(1418), - [anon_sym_PIPE_PIPE] = ACTIONS(1418), - [anon_sym_LT_LT] = ACTIONS(1416), - [anon_sym_GT_GT] = ACTIONS(1416), - [anon_sym_PLUS_EQ] = ACTIONS(1418), - [anon_sym_DASH_EQ] = ACTIONS(1418), - [anon_sym_STAR_EQ] = ACTIONS(1418), - [anon_sym_SLASH_EQ] = ACTIONS(1418), - [anon_sym_PERCENT_EQ] = ACTIONS(1418), - [anon_sym_CARET_EQ] = ACTIONS(1418), - [anon_sym_AMP_EQ] = ACTIONS(1418), - [anon_sym_PIPE_EQ] = ACTIONS(1418), - [anon_sym_LT_LT_EQ] = ACTIONS(1418), - [anon_sym_GT_GT_EQ] = ACTIONS(1418), - [anon_sym_EQ] = ACTIONS(1416), - [anon_sym_EQ_EQ] = ACTIONS(1418), - [anon_sym_BANG_EQ] = ACTIONS(1418), - [anon_sym_GT] = ACTIONS(1416), + [anon_sym_AMP_AMP] = ACTIONS(1408), + [anon_sym_PIPE_PIPE] = ACTIONS(1408), + [anon_sym_LT_LT] = ACTIONS(1406), + [anon_sym_GT_GT] = ACTIONS(1406), + [anon_sym_PLUS_EQ] = ACTIONS(1408), + [anon_sym_DASH_EQ] = ACTIONS(1408), + [anon_sym_STAR_EQ] = ACTIONS(1408), + [anon_sym_SLASH_EQ] = ACTIONS(1408), + [anon_sym_PERCENT_EQ] = ACTIONS(1408), + [anon_sym_CARET_EQ] = ACTIONS(1408), + [anon_sym_AMP_EQ] = ACTIONS(1408), + [anon_sym_PIPE_EQ] = ACTIONS(1408), + [anon_sym_LT_LT_EQ] = ACTIONS(1408), + [anon_sym_GT_GT_EQ] = ACTIONS(1408), + [anon_sym_EQ] = ACTIONS(1406), + [anon_sym_EQ_EQ] = ACTIONS(1408), + [anon_sym_BANG_EQ] = ACTIONS(1408), + [anon_sym_GT] = ACTIONS(1406), [anon_sym_LT] = ACTIONS(1648), - [anon_sym_GT_EQ] = ACTIONS(1418), - [anon_sym_LT_EQ] = ACTIONS(1418), + [anon_sym_GT_EQ] = ACTIONS(1408), + [anon_sym_LT_EQ] = ACTIONS(1408), [anon_sym__] = ACTIONS(1648), - [anon_sym_DOT] = ACTIONS(1416), + [anon_sym_DOT] = ACTIONS(1406), [anon_sym_DOT_DOT] = ACTIONS(1648), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1418), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1418), - [anon_sym_COMMA] = ACTIONS(1418), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1408), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1408), + [anon_sym_COMMA] = ACTIONS(1408), [anon_sym_COLON_COLON] = ACTIONS(1650), [anon_sym_POUND] = ACTIONS(1650), - [anon_sym_as] = ACTIONS(1416), + [anon_sym_as] = ACTIONS(1406), [anon_sym_const] = ACTIONS(1648), [anon_sym_default] = ACTIONS(1648), [anon_sym_union] = ACTIONS(1648), @@ -66889,40 +66733,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1650), [sym_float_literal] = ACTIONS(1650), }, - [459] = { - [sym_attribute_item] = STATE(1479), - [sym_inner_attribute_item] = STATE(1479), - [sym_bracketed_type] = STATE(3523), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3262), - [sym_macro_invocation] = STATE(2877), - [sym_scoped_identifier] = STATE(2130), - [sym_scoped_type_identifier] = STATE(2908), - [sym_match_arm] = STATE(1471), - [sym_last_match_arm] = STATE(3568), - [sym_match_pattern] = STATE(3345), - [sym_const_block] = STATE(2877), - [sym__pattern] = STATE(2919), - [sym_tuple_pattern] = STATE(2877), - [sym_slice_pattern] = STATE(2877), - [sym_tuple_struct_pattern] = STATE(2877), - [sym_struct_pattern] = STATE(2877), - [sym_remaining_field_pattern] = STATE(2877), - [sym_mut_pattern] = STATE(2877), - [sym_range_pattern] = STATE(2877), - [sym_ref_pattern] = STATE(2877), - [sym_captured_pattern] = STATE(2877), - [sym_reference_pattern] = STATE(2877), - [sym_or_pattern] = STATE(2877), - [sym__literal_pattern] = STATE(2387), - [sym_negative_literal] = STATE(2299), - [sym_string_literal] = STATE(2299), - [sym_raw_string_literal] = STATE(2299), - [sym_boolean_literal] = STATE(2299), - [sym_line_comment] = STATE(459), - [sym_block_comment] = STATE(459), + [457] = { + [sym_attribute_item] = STATE(1474), + [sym_inner_attribute_item] = STATE(1474), + [sym_bracketed_type] = STATE(3531), + [sym_generic_type] = STATE(3487), + [sym_generic_type_with_turbofish] = STATE(3136), + [sym_macro_invocation] = STATE(2939), + [sym_scoped_identifier] = STATE(2152), + [sym_scoped_type_identifier] = STATE(2744), + [sym_match_arm] = STATE(1476), + [sym_last_match_arm] = STATE(3606), + [sym_match_pattern] = STATE(3611), + [sym_const_block] = STATE(2939), + [sym__pattern] = STATE(3025), + [sym_tuple_pattern] = STATE(2939), + [sym_slice_pattern] = STATE(2939), + [sym_tuple_struct_pattern] = STATE(2939), + [sym_struct_pattern] = STATE(2939), + [sym_remaining_field_pattern] = STATE(2939), + [sym_mut_pattern] = STATE(2939), + [sym_range_pattern] = STATE(2939), + [sym_ref_pattern] = STATE(2939), + [sym_captured_pattern] = STATE(2939), + [sym_reference_pattern] = STATE(2939), + [sym_or_pattern] = STATE(2939), + [sym__literal_pattern] = STATE(2366), + [sym_negative_literal] = STATE(2355), + [sym_string_literal] = STATE(2355), + [sym_raw_string_literal] = STATE(2355), + [sym_boolean_literal] = STATE(2355), + [sym_line_comment] = STATE(457), + [sym_block_comment] = STATE(457), [aux_sym_match_block_repeat1] = STATE(475), - [aux_sym_match_arm_repeat1] = STATE(759), + [aux_sym_match_arm_repeat1] = STATE(756), [sym_identifier] = ACTIONS(1604), [anon_sym_LPAREN] = ACTIONS(1606), [anon_sym_LBRACK] = ACTIONS(1608), @@ -66971,122 +66815,204 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1646), [sym_float_literal] = ACTIONS(1636), }, + [458] = { + [sym_line_comment] = STATE(458), + [sym_block_comment] = STATE(458), + [sym_identifier] = ACTIONS(1360), + [anon_sym_LPAREN] = ACTIONS(1358), + [anon_sym_LBRACK] = ACTIONS(1358), + [anon_sym_RBRACE] = ACTIONS(1358), + [anon_sym_PLUS] = ACTIONS(1360), + [anon_sym_STAR] = ACTIONS(1360), + [anon_sym_QMARK] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1360), + [anon_sym_i8] = ACTIONS(1360), + [anon_sym_u16] = ACTIONS(1360), + [anon_sym_i16] = ACTIONS(1360), + [anon_sym_u32] = ACTIONS(1360), + [anon_sym_i32] = ACTIONS(1360), + [anon_sym_u64] = ACTIONS(1360), + [anon_sym_i64] = ACTIONS(1360), + [anon_sym_u128] = ACTIONS(1360), + [anon_sym_i128] = ACTIONS(1360), + [anon_sym_isize] = ACTIONS(1360), + [anon_sym_usize] = ACTIONS(1360), + [anon_sym_f32] = ACTIONS(1360), + [anon_sym_f64] = ACTIONS(1360), + [anon_sym_bool] = ACTIONS(1360), + [anon_sym_str] = ACTIONS(1360), + [anon_sym_char] = ACTIONS(1360), + [anon_sym_DASH] = ACTIONS(1360), + [anon_sym_SLASH] = ACTIONS(1360), + [anon_sym_PERCENT] = ACTIONS(1360), + [anon_sym_CARET] = ACTIONS(1360), + [anon_sym_AMP] = ACTIONS(1360), + [anon_sym_PIPE] = ACTIONS(1360), + [anon_sym_AMP_AMP] = ACTIONS(1358), + [anon_sym_PIPE_PIPE] = ACTIONS(1358), + [anon_sym_LT_LT] = ACTIONS(1360), + [anon_sym_GT_GT] = ACTIONS(1360), + [anon_sym_PLUS_EQ] = ACTIONS(1358), + [anon_sym_DASH_EQ] = ACTIONS(1358), + [anon_sym_STAR_EQ] = ACTIONS(1358), + [anon_sym_SLASH_EQ] = ACTIONS(1358), + [anon_sym_PERCENT_EQ] = ACTIONS(1358), + [anon_sym_CARET_EQ] = ACTIONS(1358), + [anon_sym_AMP_EQ] = ACTIONS(1358), + [anon_sym_PIPE_EQ] = ACTIONS(1358), + [anon_sym_LT_LT_EQ] = ACTIONS(1358), + [anon_sym_GT_GT_EQ] = ACTIONS(1358), + [anon_sym_EQ] = ACTIONS(1360), + [anon_sym_EQ_EQ] = ACTIONS(1358), + [anon_sym_BANG_EQ] = ACTIONS(1358), + [anon_sym_GT] = ACTIONS(1360), + [anon_sym_LT] = ACTIONS(1360), + [anon_sym_GT_EQ] = ACTIONS(1358), + [anon_sym_LT_EQ] = ACTIONS(1358), + [anon_sym__] = ACTIONS(1360), + [anon_sym_DOT] = ACTIONS(1360), + [anon_sym_DOT_DOT] = ACTIONS(1360), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1358), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1358), + [anon_sym_COMMA] = ACTIONS(1358), + [anon_sym_COLON_COLON] = ACTIONS(1358), + [anon_sym_POUND] = ACTIONS(1358), + [anon_sym_as] = ACTIONS(1360), + [anon_sym_const] = ACTIONS(1360), + [anon_sym_default] = ACTIONS(1360), + [anon_sym_union] = ACTIONS(1360), + [anon_sym_ref] = ACTIONS(1360), + [sym_mutable_specifier] = ACTIONS(1360), + [sym_integer_literal] = ACTIONS(1358), + [aux_sym_string_literal_token1] = ACTIONS(1358), + [sym_char_literal] = ACTIONS(1358), + [anon_sym_true] = ACTIONS(1360), + [anon_sym_false] = ACTIONS(1360), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1360), + [sym_super] = ACTIONS(1360), + [sym_crate] = ACTIONS(1360), + [sym_metavariable] = ACTIONS(1358), + [sym__raw_string_literal_start] = ACTIONS(1358), + [sym_float_literal] = ACTIONS(1358), + }, + [459] = { + [sym_line_comment] = STATE(459), + [sym_block_comment] = STATE(459), + [sym_identifier] = ACTIONS(1448), + [anon_sym_LPAREN] = ACTIONS(1446), + [anon_sym_LBRACK] = ACTIONS(1446), + [anon_sym_RBRACE] = ACTIONS(1446), + [anon_sym_PLUS] = ACTIONS(1448), + [anon_sym_STAR] = ACTIONS(1448), + [anon_sym_QMARK] = ACTIONS(1446), + [anon_sym_u8] = ACTIONS(1448), + [anon_sym_i8] = ACTIONS(1448), + [anon_sym_u16] = ACTIONS(1448), + [anon_sym_i16] = ACTIONS(1448), + [anon_sym_u32] = ACTIONS(1448), + [anon_sym_i32] = ACTIONS(1448), + [anon_sym_u64] = ACTIONS(1448), + [anon_sym_i64] = ACTIONS(1448), + [anon_sym_u128] = ACTIONS(1448), + [anon_sym_i128] = ACTIONS(1448), + [anon_sym_isize] = ACTIONS(1448), + [anon_sym_usize] = ACTIONS(1448), + [anon_sym_f32] = ACTIONS(1448), + [anon_sym_f64] = ACTIONS(1448), + [anon_sym_bool] = ACTIONS(1448), + [anon_sym_str] = ACTIONS(1448), + [anon_sym_char] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1448), + [anon_sym_SLASH] = ACTIONS(1448), + [anon_sym_PERCENT] = ACTIONS(1448), + [anon_sym_CARET] = ACTIONS(1448), + [anon_sym_AMP] = ACTIONS(1448), + [anon_sym_PIPE] = ACTIONS(1448), + [anon_sym_AMP_AMP] = ACTIONS(1446), + [anon_sym_PIPE_PIPE] = ACTIONS(1446), + [anon_sym_LT_LT] = ACTIONS(1448), + [anon_sym_GT_GT] = ACTIONS(1448), + [anon_sym_PLUS_EQ] = ACTIONS(1446), + [anon_sym_DASH_EQ] = ACTIONS(1446), + [anon_sym_STAR_EQ] = ACTIONS(1446), + [anon_sym_SLASH_EQ] = ACTIONS(1446), + [anon_sym_PERCENT_EQ] = ACTIONS(1446), + [anon_sym_CARET_EQ] = ACTIONS(1446), + [anon_sym_AMP_EQ] = ACTIONS(1446), + [anon_sym_PIPE_EQ] = ACTIONS(1446), + [anon_sym_LT_LT_EQ] = ACTIONS(1446), + [anon_sym_GT_GT_EQ] = ACTIONS(1446), + [anon_sym_EQ] = ACTIONS(1448), + [anon_sym_EQ_EQ] = ACTIONS(1446), + [anon_sym_BANG_EQ] = ACTIONS(1446), + [anon_sym_GT] = ACTIONS(1448), + [anon_sym_LT] = ACTIONS(1448), + [anon_sym_GT_EQ] = ACTIONS(1446), + [anon_sym_LT_EQ] = ACTIONS(1446), + [anon_sym__] = ACTIONS(1448), + [anon_sym_DOT] = ACTIONS(1448), + [anon_sym_DOT_DOT] = ACTIONS(1448), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1446), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1446), + [anon_sym_COMMA] = ACTIONS(1446), + [anon_sym_COLON_COLON] = ACTIONS(1446), + [anon_sym_POUND] = ACTIONS(1446), + [anon_sym_as] = ACTIONS(1448), + [anon_sym_const] = ACTIONS(1448), + [anon_sym_default] = ACTIONS(1448), + [anon_sym_union] = ACTIONS(1448), + [anon_sym_ref] = ACTIONS(1448), + [sym_mutable_specifier] = ACTIONS(1448), + [sym_integer_literal] = ACTIONS(1446), + [aux_sym_string_literal_token1] = ACTIONS(1446), + [sym_char_literal] = ACTIONS(1446), + [anon_sym_true] = ACTIONS(1448), + [anon_sym_false] = ACTIONS(1448), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1448), + [sym_super] = ACTIONS(1448), + [sym_crate] = ACTIONS(1448), + [sym_metavariable] = ACTIONS(1446), + [sym__raw_string_literal_start] = ACTIONS(1446), + [sym_float_literal] = ACTIONS(1446), + }, [460] = { + [sym_attribute_item] = STATE(1474), + [sym_inner_attribute_item] = STATE(1474), + [sym_bracketed_type] = STATE(3531), + [sym_generic_type] = STATE(3487), + [sym_generic_type_with_turbofish] = STATE(3136), + [sym_macro_invocation] = STATE(2939), + [sym_scoped_identifier] = STATE(2152), + [sym_scoped_type_identifier] = STATE(2744), + [sym_match_arm] = STATE(1476), + [sym_last_match_arm] = STATE(3475), + [sym_match_pattern] = STATE(3611), + [sym_const_block] = STATE(2939), + [sym__pattern] = STATE(3025), + [sym_tuple_pattern] = STATE(2939), + [sym_slice_pattern] = STATE(2939), + [sym_tuple_struct_pattern] = STATE(2939), + [sym_struct_pattern] = STATE(2939), + [sym_remaining_field_pattern] = STATE(2939), + [sym_mut_pattern] = STATE(2939), + [sym_range_pattern] = STATE(2939), + [sym_ref_pattern] = STATE(2939), + [sym_captured_pattern] = STATE(2939), + [sym_reference_pattern] = STATE(2939), + [sym_or_pattern] = STATE(2939), + [sym__literal_pattern] = STATE(2366), + [sym_negative_literal] = STATE(2355), + [sym_string_literal] = STATE(2355), + [sym_raw_string_literal] = STATE(2355), + [sym_boolean_literal] = STATE(2355), [sym_line_comment] = STATE(460), [sym_block_comment] = STATE(460), - [sym_identifier] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1398), - [anon_sym_LBRACK] = ACTIONS(1398), - [anon_sym_RBRACE] = ACTIONS(1398), - [anon_sym_PLUS] = ACTIONS(1400), - [anon_sym_STAR] = ACTIONS(1400), - [anon_sym_QMARK] = ACTIONS(1398), - [anon_sym_u8] = ACTIONS(1400), - [anon_sym_i8] = ACTIONS(1400), - [anon_sym_u16] = ACTIONS(1400), - [anon_sym_i16] = ACTIONS(1400), - [anon_sym_u32] = ACTIONS(1400), - [anon_sym_i32] = ACTIONS(1400), - [anon_sym_u64] = ACTIONS(1400), - [anon_sym_i64] = ACTIONS(1400), - [anon_sym_u128] = ACTIONS(1400), - [anon_sym_i128] = ACTIONS(1400), - [anon_sym_isize] = ACTIONS(1400), - [anon_sym_usize] = ACTIONS(1400), - [anon_sym_f32] = ACTIONS(1400), - [anon_sym_f64] = ACTIONS(1400), - [anon_sym_bool] = ACTIONS(1400), - [anon_sym_str] = ACTIONS(1400), - [anon_sym_char] = ACTIONS(1400), - [anon_sym_DASH] = ACTIONS(1400), - [anon_sym_SLASH] = ACTIONS(1400), - [anon_sym_PERCENT] = ACTIONS(1400), - [anon_sym_CARET] = ACTIONS(1400), - [anon_sym_AMP] = ACTIONS(1400), - [anon_sym_PIPE] = ACTIONS(1400), - [anon_sym_AMP_AMP] = ACTIONS(1398), - [anon_sym_PIPE_PIPE] = ACTIONS(1398), - [anon_sym_LT_LT] = ACTIONS(1400), - [anon_sym_GT_GT] = ACTIONS(1400), - [anon_sym_PLUS_EQ] = ACTIONS(1398), - [anon_sym_DASH_EQ] = ACTIONS(1398), - [anon_sym_STAR_EQ] = ACTIONS(1398), - [anon_sym_SLASH_EQ] = ACTIONS(1398), - [anon_sym_PERCENT_EQ] = ACTIONS(1398), - [anon_sym_CARET_EQ] = ACTIONS(1398), - [anon_sym_AMP_EQ] = ACTIONS(1398), - [anon_sym_PIPE_EQ] = ACTIONS(1398), - [anon_sym_LT_LT_EQ] = ACTIONS(1398), - [anon_sym_GT_GT_EQ] = ACTIONS(1398), - [anon_sym_EQ] = ACTIONS(1400), - [anon_sym_EQ_EQ] = ACTIONS(1398), - [anon_sym_BANG_EQ] = ACTIONS(1398), - [anon_sym_GT] = ACTIONS(1400), - [anon_sym_LT] = ACTIONS(1400), - [anon_sym_GT_EQ] = ACTIONS(1398), - [anon_sym_LT_EQ] = ACTIONS(1398), - [anon_sym__] = ACTIONS(1400), - [anon_sym_DOT] = ACTIONS(1400), - [anon_sym_DOT_DOT] = ACTIONS(1400), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1398), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1398), - [anon_sym_COMMA] = ACTIONS(1398), - [anon_sym_COLON_COLON] = ACTIONS(1398), - [anon_sym_POUND] = ACTIONS(1398), - [anon_sym_as] = ACTIONS(1400), - [anon_sym_const] = ACTIONS(1400), - [anon_sym_default] = ACTIONS(1400), - [anon_sym_union] = ACTIONS(1400), - [anon_sym_ref] = ACTIONS(1400), - [sym_mutable_specifier] = ACTIONS(1400), - [sym_integer_literal] = ACTIONS(1398), - [aux_sym_string_literal_token1] = ACTIONS(1398), - [sym_char_literal] = ACTIONS(1398), - [anon_sym_true] = ACTIONS(1400), - [anon_sym_false] = ACTIONS(1400), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1400), - [sym_super] = ACTIONS(1400), - [sym_crate] = ACTIONS(1400), - [sym_metavariable] = ACTIONS(1398), - [sym__raw_string_literal_start] = ACTIONS(1398), - [sym_float_literal] = ACTIONS(1398), - }, - [461] = { - [sym_attribute_item] = STATE(1479), - [sym_inner_attribute_item] = STATE(1479), - [sym_bracketed_type] = STATE(3523), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3262), - [sym_macro_invocation] = STATE(2877), - [sym_scoped_identifier] = STATE(2130), - [sym_scoped_type_identifier] = STATE(2908), - [sym_match_arm] = STATE(1471), - [sym_last_match_arm] = STATE(3358), - [sym_match_pattern] = STATE(3345), - [sym_const_block] = STATE(2877), - [sym__pattern] = STATE(2919), - [sym_tuple_pattern] = STATE(2877), - [sym_slice_pattern] = STATE(2877), - [sym_tuple_struct_pattern] = STATE(2877), - [sym_struct_pattern] = STATE(2877), - [sym_remaining_field_pattern] = STATE(2877), - [sym_mut_pattern] = STATE(2877), - [sym_range_pattern] = STATE(2877), - [sym_ref_pattern] = STATE(2877), - [sym_captured_pattern] = STATE(2877), - [sym_reference_pattern] = STATE(2877), - [sym_or_pattern] = STATE(2877), - [sym__literal_pattern] = STATE(2387), - [sym_negative_literal] = STATE(2299), - [sym_string_literal] = STATE(2299), - [sym_raw_string_literal] = STATE(2299), - [sym_boolean_literal] = STATE(2299), - [sym_line_comment] = STATE(461), - [sym_block_comment] = STATE(461), [aux_sym_match_block_repeat1] = STATE(477), - [aux_sym_match_arm_repeat1] = STATE(759), + [aux_sym_match_arm_repeat1] = STATE(756), [sym_identifier] = ACTIONS(1604), [anon_sym_LPAREN] = ACTIONS(1606), [anon_sym_LBRACK] = ACTIONS(1608), @@ -67135,747 +67061,255 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1646), [sym_float_literal] = ACTIONS(1636), }, + [461] = { + [sym_line_comment] = STATE(461), + [sym_block_comment] = STATE(461), + [sym_identifier] = ACTIONS(1436), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_LBRACK] = ACTIONS(1434), + [anon_sym_RBRACE] = ACTIONS(1434), + [anon_sym_PLUS] = ACTIONS(1436), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_QMARK] = ACTIONS(1434), + [anon_sym_u8] = ACTIONS(1436), + [anon_sym_i8] = ACTIONS(1436), + [anon_sym_u16] = ACTIONS(1436), + [anon_sym_i16] = ACTIONS(1436), + [anon_sym_u32] = ACTIONS(1436), + [anon_sym_i32] = ACTIONS(1436), + [anon_sym_u64] = ACTIONS(1436), + [anon_sym_i64] = ACTIONS(1436), + [anon_sym_u128] = ACTIONS(1436), + [anon_sym_i128] = ACTIONS(1436), + [anon_sym_isize] = ACTIONS(1436), + [anon_sym_usize] = ACTIONS(1436), + [anon_sym_f32] = ACTIONS(1436), + [anon_sym_f64] = ACTIONS(1436), + [anon_sym_bool] = ACTIONS(1436), + [anon_sym_str] = ACTIONS(1436), + [anon_sym_char] = ACTIONS(1436), + [anon_sym_DASH] = ACTIONS(1436), + [anon_sym_SLASH] = ACTIONS(1436), + [anon_sym_PERCENT] = ACTIONS(1436), + [anon_sym_CARET] = ACTIONS(1436), + [anon_sym_AMP] = ACTIONS(1436), + [anon_sym_PIPE] = ACTIONS(1436), + [anon_sym_AMP_AMP] = ACTIONS(1434), + [anon_sym_PIPE_PIPE] = ACTIONS(1434), + [anon_sym_LT_LT] = ACTIONS(1436), + [anon_sym_GT_GT] = ACTIONS(1436), + [anon_sym_PLUS_EQ] = ACTIONS(1434), + [anon_sym_DASH_EQ] = ACTIONS(1434), + [anon_sym_STAR_EQ] = ACTIONS(1434), + [anon_sym_SLASH_EQ] = ACTIONS(1434), + [anon_sym_PERCENT_EQ] = ACTIONS(1434), + [anon_sym_CARET_EQ] = ACTIONS(1434), + [anon_sym_AMP_EQ] = ACTIONS(1434), + [anon_sym_PIPE_EQ] = ACTIONS(1434), + [anon_sym_LT_LT_EQ] = ACTIONS(1434), + [anon_sym_GT_GT_EQ] = ACTIONS(1434), + [anon_sym_EQ] = ACTIONS(1436), + [anon_sym_EQ_EQ] = ACTIONS(1434), + [anon_sym_BANG_EQ] = ACTIONS(1434), + [anon_sym_GT] = ACTIONS(1436), + [anon_sym_LT] = ACTIONS(1436), + [anon_sym_GT_EQ] = ACTIONS(1434), + [anon_sym_LT_EQ] = ACTIONS(1434), + [anon_sym__] = ACTIONS(1436), + [anon_sym_DOT] = ACTIONS(1436), + [anon_sym_DOT_DOT] = ACTIONS(1436), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1434), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1434), + [anon_sym_COMMA] = ACTIONS(1434), + [anon_sym_COLON_COLON] = ACTIONS(1434), + [anon_sym_POUND] = ACTIONS(1434), + [anon_sym_as] = ACTIONS(1436), + [anon_sym_const] = ACTIONS(1436), + [anon_sym_default] = ACTIONS(1436), + [anon_sym_union] = ACTIONS(1436), + [anon_sym_ref] = ACTIONS(1436), + [sym_mutable_specifier] = ACTIONS(1436), + [sym_integer_literal] = ACTIONS(1434), + [aux_sym_string_literal_token1] = ACTIONS(1434), + [sym_char_literal] = ACTIONS(1434), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1436), + [sym_super] = ACTIONS(1436), + [sym_crate] = ACTIONS(1436), + [sym_metavariable] = ACTIONS(1434), + [sym__raw_string_literal_start] = ACTIONS(1434), + [sym_float_literal] = ACTIONS(1434), + }, [462] = { [sym_line_comment] = STATE(462), [sym_block_comment] = STATE(462), [sym_identifier] = ACTIONS(1368), [anon_sym_LPAREN] = ACTIONS(1366), [anon_sym_LBRACK] = ACTIONS(1366), - [anon_sym_RBRACE] = ACTIONS(1366), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_QMARK] = ACTIONS(1366), - [anon_sym_u8] = ACTIONS(1368), - [anon_sym_i8] = ACTIONS(1368), - [anon_sym_u16] = ACTIONS(1368), - [anon_sym_i16] = ACTIONS(1368), - [anon_sym_u32] = ACTIONS(1368), - [anon_sym_i32] = ACTIONS(1368), - [anon_sym_u64] = ACTIONS(1368), - [anon_sym_i64] = ACTIONS(1368), - [anon_sym_u128] = ACTIONS(1368), - [anon_sym_i128] = ACTIONS(1368), - [anon_sym_isize] = ACTIONS(1368), - [anon_sym_usize] = ACTIONS(1368), - [anon_sym_f32] = ACTIONS(1368), - [anon_sym_f64] = ACTIONS(1368), - [anon_sym_bool] = ACTIONS(1368), - [anon_sym_str] = ACTIONS(1368), - [anon_sym_char] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_PERCENT] = ACTIONS(1368), - [anon_sym_CARET] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_PIPE] = ACTIONS(1368), - [anon_sym_AMP_AMP] = ACTIONS(1366), - [anon_sym_PIPE_PIPE] = ACTIONS(1366), - [anon_sym_LT_LT] = ACTIONS(1368), - [anon_sym_GT_GT] = ACTIONS(1368), - [anon_sym_PLUS_EQ] = ACTIONS(1366), - [anon_sym_DASH_EQ] = ACTIONS(1366), - [anon_sym_STAR_EQ] = ACTIONS(1366), - [anon_sym_SLASH_EQ] = ACTIONS(1366), - [anon_sym_PERCENT_EQ] = ACTIONS(1366), - [anon_sym_CARET_EQ] = ACTIONS(1366), - [anon_sym_AMP_EQ] = ACTIONS(1366), - [anon_sym_PIPE_EQ] = ACTIONS(1366), - [anon_sym_LT_LT_EQ] = ACTIONS(1366), - [anon_sym_GT_GT_EQ] = ACTIONS(1366), - [anon_sym_EQ] = ACTIONS(1368), - [anon_sym_EQ_EQ] = ACTIONS(1366), - [anon_sym_BANG_EQ] = ACTIONS(1366), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_LT] = ACTIONS(1368), - [anon_sym_GT_EQ] = ACTIONS(1366), - [anon_sym_LT_EQ] = ACTIONS(1366), - [anon_sym__] = ACTIONS(1368), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1366), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1366), - [anon_sym_COMMA] = ACTIONS(1366), - [anon_sym_COLON_COLON] = ACTIONS(1366), - [anon_sym_POUND] = ACTIONS(1366), - [anon_sym_as] = ACTIONS(1368), - [anon_sym_const] = ACTIONS(1368), - [anon_sym_default] = ACTIONS(1368), - [anon_sym_union] = ACTIONS(1368), - [anon_sym_ref] = ACTIONS(1368), - [sym_mutable_specifier] = ACTIONS(1368), - [sym_integer_literal] = ACTIONS(1366), - [aux_sym_string_literal_token1] = ACTIONS(1366), - [sym_char_literal] = ACTIONS(1366), - [anon_sym_true] = ACTIONS(1368), - [anon_sym_false] = ACTIONS(1368), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1368), - [sym_super] = ACTIONS(1368), - [sym_crate] = ACTIONS(1368), - [sym_metavariable] = ACTIONS(1366), - [sym__raw_string_literal_start] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1366), - }, - [463] = { - [sym_line_comment] = STATE(463), - [sym_block_comment] = STATE(463), - [sym_identifier] = ACTIONS(1404), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_LBRACK] = ACTIONS(1402), - [anon_sym_RBRACE] = ACTIONS(1402), - [anon_sym_PLUS] = ACTIONS(1404), - [anon_sym_STAR] = ACTIONS(1404), - [anon_sym_QMARK] = ACTIONS(1402), - [anon_sym_u8] = ACTIONS(1404), - [anon_sym_i8] = ACTIONS(1404), - [anon_sym_u16] = ACTIONS(1404), - [anon_sym_i16] = ACTIONS(1404), - [anon_sym_u32] = ACTIONS(1404), - [anon_sym_i32] = ACTIONS(1404), - [anon_sym_u64] = ACTIONS(1404), - [anon_sym_i64] = ACTIONS(1404), - [anon_sym_u128] = ACTIONS(1404), - [anon_sym_i128] = ACTIONS(1404), - [anon_sym_isize] = ACTIONS(1404), - [anon_sym_usize] = ACTIONS(1404), - [anon_sym_f32] = ACTIONS(1404), - [anon_sym_f64] = ACTIONS(1404), - [anon_sym_bool] = ACTIONS(1404), - [anon_sym_str] = ACTIONS(1404), - [anon_sym_char] = ACTIONS(1404), - [anon_sym_DASH] = ACTIONS(1404), - [anon_sym_SLASH] = ACTIONS(1404), - [anon_sym_PERCENT] = ACTIONS(1404), - [anon_sym_CARET] = ACTIONS(1404), - [anon_sym_AMP] = ACTIONS(1404), - [anon_sym_PIPE] = ACTIONS(1404), - [anon_sym_AMP_AMP] = ACTIONS(1402), - [anon_sym_PIPE_PIPE] = ACTIONS(1402), - [anon_sym_LT_LT] = ACTIONS(1404), - [anon_sym_GT_GT] = ACTIONS(1404), - [anon_sym_PLUS_EQ] = ACTIONS(1402), - [anon_sym_DASH_EQ] = ACTIONS(1402), - [anon_sym_STAR_EQ] = ACTIONS(1402), - [anon_sym_SLASH_EQ] = ACTIONS(1402), - [anon_sym_PERCENT_EQ] = ACTIONS(1402), - [anon_sym_CARET_EQ] = ACTIONS(1402), - [anon_sym_AMP_EQ] = ACTIONS(1402), - [anon_sym_PIPE_EQ] = ACTIONS(1402), - [anon_sym_LT_LT_EQ] = ACTIONS(1402), - [anon_sym_GT_GT_EQ] = ACTIONS(1402), - [anon_sym_EQ] = ACTIONS(1404), - [anon_sym_EQ_EQ] = ACTIONS(1402), - [anon_sym_BANG_EQ] = ACTIONS(1402), - [anon_sym_GT] = ACTIONS(1404), - [anon_sym_LT] = ACTIONS(1404), - [anon_sym_GT_EQ] = ACTIONS(1402), - [anon_sym_LT_EQ] = ACTIONS(1402), - [anon_sym__] = ACTIONS(1404), - [anon_sym_DOT] = ACTIONS(1404), - [anon_sym_DOT_DOT] = ACTIONS(1404), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1402), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1402), - [anon_sym_COMMA] = ACTIONS(1402), - [anon_sym_COLON_COLON] = ACTIONS(1402), - [anon_sym_POUND] = ACTIONS(1402), - [anon_sym_as] = ACTIONS(1404), - [anon_sym_const] = ACTIONS(1404), - [anon_sym_default] = ACTIONS(1404), - [anon_sym_union] = ACTIONS(1404), - [anon_sym_ref] = ACTIONS(1404), - [sym_mutable_specifier] = ACTIONS(1404), - [sym_integer_literal] = ACTIONS(1402), - [aux_sym_string_literal_token1] = ACTIONS(1402), - [sym_char_literal] = ACTIONS(1402), - [anon_sym_true] = ACTIONS(1404), - [anon_sym_false] = ACTIONS(1404), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1404), - [sym_super] = ACTIONS(1404), - [sym_crate] = ACTIONS(1404), - [sym_metavariable] = ACTIONS(1402), - [sym__raw_string_literal_start] = ACTIONS(1402), - [sym_float_literal] = ACTIONS(1402), - }, - [464] = { - [sym_line_comment] = STATE(464), - [sym_block_comment] = STATE(464), - [sym_identifier] = ACTIONS(1656), - [anon_sym_LPAREN] = ACTIONS(1658), - [anon_sym_LBRACK] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_STAR] = ACTIONS(1416), - [anon_sym_QMARK] = ACTIONS(1418), - [anon_sym_u8] = ACTIONS(1656), - [anon_sym_i8] = ACTIONS(1656), - [anon_sym_u16] = ACTIONS(1656), - [anon_sym_i16] = ACTIONS(1656), - [anon_sym_u32] = ACTIONS(1656), - [anon_sym_i32] = ACTIONS(1656), - [anon_sym_u64] = ACTIONS(1656), - [anon_sym_i64] = ACTIONS(1656), - [anon_sym_u128] = ACTIONS(1656), - [anon_sym_i128] = ACTIONS(1656), - [anon_sym_isize] = ACTIONS(1656), - [anon_sym_usize] = ACTIONS(1656), - [anon_sym_f32] = ACTIONS(1656), - [anon_sym_f64] = ACTIONS(1656), - [anon_sym_bool] = ACTIONS(1656), - [anon_sym_str] = ACTIONS(1656), - [anon_sym_char] = ACTIONS(1656), - [anon_sym_DASH] = ACTIONS(1656), - [anon_sym_SLASH] = ACTIONS(1416), - [anon_sym_PERCENT] = ACTIONS(1416), - [anon_sym_CARET] = ACTIONS(1416), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_PIPE] = ACTIONS(1656), - [anon_sym_AMP_AMP] = ACTIONS(1418), - [anon_sym_PIPE_PIPE] = ACTIONS(1418), - [anon_sym_LT_LT] = ACTIONS(1416), - [anon_sym_GT_GT] = ACTIONS(1416), - [anon_sym_PLUS_EQ] = ACTIONS(1418), - [anon_sym_DASH_EQ] = ACTIONS(1418), - [anon_sym_STAR_EQ] = ACTIONS(1418), - [anon_sym_SLASH_EQ] = ACTIONS(1418), - [anon_sym_PERCENT_EQ] = ACTIONS(1418), - [anon_sym_CARET_EQ] = ACTIONS(1418), - [anon_sym_AMP_EQ] = ACTIONS(1418), - [anon_sym_PIPE_EQ] = ACTIONS(1418), - [anon_sym_LT_LT_EQ] = ACTIONS(1418), - [anon_sym_GT_GT_EQ] = ACTIONS(1418), - [anon_sym_EQ] = ACTIONS(1416), - [anon_sym_EQ_EQ] = ACTIONS(1418), - [anon_sym_BANG_EQ] = ACTIONS(1418), - [anon_sym_GT] = ACTIONS(1416), - [anon_sym_LT] = ACTIONS(1656), - [anon_sym_GT_EQ] = ACTIONS(1418), - [anon_sym_LT_EQ] = ACTIONS(1418), - [anon_sym__] = ACTIONS(1656), - [anon_sym_DOT] = ACTIONS(1416), - [anon_sym_DOT_DOT] = ACTIONS(1656), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1418), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1418), - [anon_sym_COMMA] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(1658), - [anon_sym_POUND] = ACTIONS(1658), - [anon_sym_as] = ACTIONS(1416), - [anon_sym_const] = ACTIONS(1656), - [anon_sym_default] = ACTIONS(1656), - [anon_sym_union] = ACTIONS(1656), - [anon_sym_ref] = ACTIONS(1656), - [sym_mutable_specifier] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(1658), - [aux_sym_string_literal_token1] = ACTIONS(1658), - [sym_char_literal] = ACTIONS(1658), - [anon_sym_true] = ACTIONS(1656), - [anon_sym_false] = ACTIONS(1656), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1656), - [sym_super] = ACTIONS(1656), - [sym_crate] = ACTIONS(1656), - [sym_metavariable] = ACTIONS(1658), - [sym__raw_string_literal_start] = ACTIONS(1658), - [sym_float_literal] = ACTIONS(1658), - }, - [465] = { - [sym_line_comment] = STATE(465), - [sym_block_comment] = STATE(465), - [sym_identifier] = ACTIONS(1384), - [anon_sym_LPAREN] = ACTIONS(1382), - [anon_sym_LBRACK] = ACTIONS(1382), - [anon_sym_RBRACE] = ACTIONS(1382), - [anon_sym_PLUS] = ACTIONS(1384), - [anon_sym_STAR] = ACTIONS(1384), - [anon_sym_QMARK] = ACTIONS(1382), - [anon_sym_u8] = ACTIONS(1384), - [anon_sym_i8] = ACTIONS(1384), - [anon_sym_u16] = ACTIONS(1384), - [anon_sym_i16] = ACTIONS(1384), - [anon_sym_u32] = ACTIONS(1384), - [anon_sym_i32] = ACTIONS(1384), - [anon_sym_u64] = ACTIONS(1384), - [anon_sym_i64] = ACTIONS(1384), - [anon_sym_u128] = ACTIONS(1384), - [anon_sym_i128] = ACTIONS(1384), - [anon_sym_isize] = ACTIONS(1384), - [anon_sym_usize] = ACTIONS(1384), - [anon_sym_f32] = ACTIONS(1384), - [anon_sym_f64] = ACTIONS(1384), - [anon_sym_bool] = ACTIONS(1384), - [anon_sym_str] = ACTIONS(1384), - [anon_sym_char] = ACTIONS(1384), - [anon_sym_DASH] = ACTIONS(1384), - [anon_sym_SLASH] = ACTIONS(1384), - [anon_sym_PERCENT] = ACTIONS(1384), - [anon_sym_CARET] = ACTIONS(1384), - [anon_sym_AMP] = ACTIONS(1384), - [anon_sym_PIPE] = ACTIONS(1384), - [anon_sym_AMP_AMP] = ACTIONS(1382), - [anon_sym_PIPE_PIPE] = ACTIONS(1382), - [anon_sym_LT_LT] = ACTIONS(1384), - [anon_sym_GT_GT] = ACTIONS(1384), - [anon_sym_PLUS_EQ] = ACTIONS(1382), - [anon_sym_DASH_EQ] = ACTIONS(1382), - [anon_sym_STAR_EQ] = ACTIONS(1382), - [anon_sym_SLASH_EQ] = ACTIONS(1382), - [anon_sym_PERCENT_EQ] = ACTIONS(1382), - [anon_sym_CARET_EQ] = ACTIONS(1382), - [anon_sym_AMP_EQ] = ACTIONS(1382), - [anon_sym_PIPE_EQ] = ACTIONS(1382), - [anon_sym_LT_LT_EQ] = ACTIONS(1382), - [anon_sym_GT_GT_EQ] = ACTIONS(1382), - [anon_sym_EQ] = ACTIONS(1384), - [anon_sym_EQ_EQ] = ACTIONS(1382), - [anon_sym_BANG_EQ] = ACTIONS(1382), - [anon_sym_GT] = ACTIONS(1384), - [anon_sym_LT] = ACTIONS(1384), - [anon_sym_GT_EQ] = ACTIONS(1382), - [anon_sym_LT_EQ] = ACTIONS(1382), - [anon_sym__] = ACTIONS(1384), - [anon_sym_DOT] = ACTIONS(1384), - [anon_sym_DOT_DOT] = ACTIONS(1384), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1382), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1382), - [anon_sym_COMMA] = ACTIONS(1382), - [anon_sym_COLON_COLON] = ACTIONS(1382), - [anon_sym_POUND] = ACTIONS(1382), - [anon_sym_as] = ACTIONS(1384), - [anon_sym_const] = ACTIONS(1384), - [anon_sym_default] = ACTIONS(1384), - [anon_sym_union] = ACTIONS(1384), - [anon_sym_ref] = ACTIONS(1384), - [sym_mutable_specifier] = ACTIONS(1384), - [sym_integer_literal] = ACTIONS(1382), - [aux_sym_string_literal_token1] = ACTIONS(1382), - [sym_char_literal] = ACTIONS(1382), - [anon_sym_true] = ACTIONS(1384), - [anon_sym_false] = ACTIONS(1384), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1384), - [sym_super] = ACTIONS(1384), - [sym_crate] = ACTIONS(1384), - [sym_metavariable] = ACTIONS(1382), - [sym__raw_string_literal_start] = ACTIONS(1382), - [sym_float_literal] = ACTIONS(1382), - }, - [466] = { - [sym_line_comment] = STATE(466), - [sym_block_comment] = STATE(466), - [sym_identifier] = ACTIONS(1422), - [anon_sym_LPAREN] = ACTIONS(1420), - [anon_sym_LBRACK] = ACTIONS(1420), - [anon_sym_RBRACE] = ACTIONS(1420), - [anon_sym_PLUS] = ACTIONS(1422), - [anon_sym_STAR] = ACTIONS(1422), - [anon_sym_QMARK] = ACTIONS(1420), - [anon_sym_u8] = ACTIONS(1422), - [anon_sym_i8] = ACTIONS(1422), - [anon_sym_u16] = ACTIONS(1422), - [anon_sym_i16] = ACTIONS(1422), - [anon_sym_u32] = ACTIONS(1422), - [anon_sym_i32] = ACTIONS(1422), - [anon_sym_u64] = ACTIONS(1422), - [anon_sym_i64] = ACTIONS(1422), - [anon_sym_u128] = ACTIONS(1422), - [anon_sym_i128] = ACTIONS(1422), - [anon_sym_isize] = ACTIONS(1422), - [anon_sym_usize] = ACTIONS(1422), - [anon_sym_f32] = ACTIONS(1422), - [anon_sym_f64] = ACTIONS(1422), - [anon_sym_bool] = ACTIONS(1422), - [anon_sym_str] = ACTIONS(1422), - [anon_sym_char] = ACTIONS(1422), - [anon_sym_DASH] = ACTIONS(1422), - [anon_sym_SLASH] = ACTIONS(1422), - [anon_sym_PERCENT] = ACTIONS(1422), - [anon_sym_CARET] = ACTIONS(1422), - [anon_sym_AMP] = ACTIONS(1422), - [anon_sym_PIPE] = ACTIONS(1422), - [anon_sym_AMP_AMP] = ACTIONS(1420), - [anon_sym_PIPE_PIPE] = ACTIONS(1420), - [anon_sym_LT_LT] = ACTIONS(1422), - [anon_sym_GT_GT] = ACTIONS(1422), - [anon_sym_PLUS_EQ] = ACTIONS(1420), - [anon_sym_DASH_EQ] = ACTIONS(1420), - [anon_sym_STAR_EQ] = ACTIONS(1420), - [anon_sym_SLASH_EQ] = ACTIONS(1420), - [anon_sym_PERCENT_EQ] = ACTIONS(1420), - [anon_sym_CARET_EQ] = ACTIONS(1420), - [anon_sym_AMP_EQ] = ACTIONS(1420), - [anon_sym_PIPE_EQ] = ACTIONS(1420), - [anon_sym_LT_LT_EQ] = ACTIONS(1420), - [anon_sym_GT_GT_EQ] = ACTIONS(1420), - [anon_sym_EQ] = ACTIONS(1422), - [anon_sym_EQ_EQ] = ACTIONS(1420), - [anon_sym_BANG_EQ] = ACTIONS(1420), - [anon_sym_GT] = ACTIONS(1422), - [anon_sym_LT] = ACTIONS(1422), - [anon_sym_GT_EQ] = ACTIONS(1420), - [anon_sym_LT_EQ] = ACTIONS(1420), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1422), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1420), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1420), - [anon_sym_COMMA] = ACTIONS(1420), - [anon_sym_COLON_COLON] = ACTIONS(1420), - [anon_sym_POUND] = ACTIONS(1420), - [anon_sym_as] = ACTIONS(1422), - [anon_sym_const] = ACTIONS(1422), - [anon_sym_default] = ACTIONS(1422), - [anon_sym_union] = ACTIONS(1422), - [anon_sym_ref] = ACTIONS(1422), - [sym_mutable_specifier] = ACTIONS(1422), - [sym_integer_literal] = ACTIONS(1420), - [aux_sym_string_literal_token1] = ACTIONS(1420), - [sym_char_literal] = ACTIONS(1420), - [anon_sym_true] = ACTIONS(1422), - [anon_sym_false] = ACTIONS(1422), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1422), - [sym_super] = ACTIONS(1422), - [sym_crate] = ACTIONS(1422), - [sym_metavariable] = ACTIONS(1420), - [sym__raw_string_literal_start] = ACTIONS(1420), - [sym_float_literal] = ACTIONS(1420), - }, - [467] = { - [sym_line_comment] = STATE(467), - [sym_block_comment] = STATE(467), - [sym_identifier] = ACTIONS(1452), - [anon_sym_LPAREN] = ACTIONS(1450), - [anon_sym_LBRACK] = ACTIONS(1450), - [anon_sym_RBRACE] = ACTIONS(1450), - [anon_sym_PLUS] = ACTIONS(1452), - [anon_sym_STAR] = ACTIONS(1452), - [anon_sym_QMARK] = ACTIONS(1450), - [anon_sym_u8] = ACTIONS(1452), - [anon_sym_i8] = ACTIONS(1452), - [anon_sym_u16] = ACTIONS(1452), - [anon_sym_i16] = ACTIONS(1452), - [anon_sym_u32] = ACTIONS(1452), - [anon_sym_i32] = ACTIONS(1452), - [anon_sym_u64] = ACTIONS(1452), - [anon_sym_i64] = ACTIONS(1452), - [anon_sym_u128] = ACTIONS(1452), - [anon_sym_i128] = ACTIONS(1452), - [anon_sym_isize] = ACTIONS(1452), - [anon_sym_usize] = ACTIONS(1452), - [anon_sym_f32] = ACTIONS(1452), - [anon_sym_f64] = ACTIONS(1452), - [anon_sym_bool] = ACTIONS(1452), - [anon_sym_str] = ACTIONS(1452), - [anon_sym_char] = ACTIONS(1452), - [anon_sym_DASH] = ACTIONS(1452), - [anon_sym_SLASH] = ACTIONS(1452), - [anon_sym_PERCENT] = ACTIONS(1452), - [anon_sym_CARET] = ACTIONS(1452), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_PIPE] = ACTIONS(1452), - [anon_sym_AMP_AMP] = ACTIONS(1450), - [anon_sym_PIPE_PIPE] = ACTIONS(1450), - [anon_sym_LT_LT] = ACTIONS(1452), - [anon_sym_GT_GT] = ACTIONS(1452), - [anon_sym_PLUS_EQ] = ACTIONS(1450), - [anon_sym_DASH_EQ] = ACTIONS(1450), - [anon_sym_STAR_EQ] = ACTIONS(1450), - [anon_sym_SLASH_EQ] = ACTIONS(1450), - [anon_sym_PERCENT_EQ] = ACTIONS(1450), - [anon_sym_CARET_EQ] = ACTIONS(1450), - [anon_sym_AMP_EQ] = ACTIONS(1450), - [anon_sym_PIPE_EQ] = ACTIONS(1450), - [anon_sym_LT_LT_EQ] = ACTIONS(1450), - [anon_sym_GT_GT_EQ] = ACTIONS(1450), - [anon_sym_EQ] = ACTIONS(1452), - [anon_sym_EQ_EQ] = ACTIONS(1450), - [anon_sym_BANG_EQ] = ACTIONS(1450), - [anon_sym_GT] = ACTIONS(1452), - [anon_sym_LT] = ACTIONS(1452), - [anon_sym_GT_EQ] = ACTIONS(1450), - [anon_sym_LT_EQ] = ACTIONS(1450), - [anon_sym__] = ACTIONS(1452), - [anon_sym_DOT] = ACTIONS(1452), - [anon_sym_DOT_DOT] = ACTIONS(1452), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1450), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1450), - [anon_sym_COMMA] = ACTIONS(1450), - [anon_sym_COLON_COLON] = ACTIONS(1450), - [anon_sym_POUND] = ACTIONS(1450), - [anon_sym_as] = ACTIONS(1452), - [anon_sym_const] = ACTIONS(1452), - [anon_sym_default] = ACTIONS(1452), - [anon_sym_union] = ACTIONS(1452), - [anon_sym_ref] = ACTIONS(1452), - [sym_mutable_specifier] = ACTIONS(1452), - [sym_integer_literal] = ACTIONS(1450), - [aux_sym_string_literal_token1] = ACTIONS(1450), - [sym_char_literal] = ACTIONS(1450), - [anon_sym_true] = ACTIONS(1452), - [anon_sym_false] = ACTIONS(1452), + [anon_sym_RBRACE] = ACTIONS(1366), + [anon_sym_PLUS] = ACTIONS(1368), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_QMARK] = ACTIONS(1366), + [anon_sym_u8] = ACTIONS(1368), + [anon_sym_i8] = ACTIONS(1368), + [anon_sym_u16] = ACTIONS(1368), + [anon_sym_i16] = ACTIONS(1368), + [anon_sym_u32] = ACTIONS(1368), + [anon_sym_i32] = ACTIONS(1368), + [anon_sym_u64] = ACTIONS(1368), + [anon_sym_i64] = ACTIONS(1368), + [anon_sym_u128] = ACTIONS(1368), + [anon_sym_i128] = ACTIONS(1368), + [anon_sym_isize] = ACTIONS(1368), + [anon_sym_usize] = ACTIONS(1368), + [anon_sym_f32] = ACTIONS(1368), + [anon_sym_f64] = ACTIONS(1368), + [anon_sym_bool] = ACTIONS(1368), + [anon_sym_str] = ACTIONS(1368), + [anon_sym_char] = ACTIONS(1368), + [anon_sym_DASH] = ACTIONS(1368), + [anon_sym_SLASH] = ACTIONS(1368), + [anon_sym_PERCENT] = ACTIONS(1368), + [anon_sym_CARET] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_PIPE] = ACTIONS(1368), + [anon_sym_AMP_AMP] = ACTIONS(1366), + [anon_sym_PIPE_PIPE] = ACTIONS(1366), + [anon_sym_LT_LT] = ACTIONS(1368), + [anon_sym_GT_GT] = ACTIONS(1368), + [anon_sym_PLUS_EQ] = ACTIONS(1366), + [anon_sym_DASH_EQ] = ACTIONS(1366), + [anon_sym_STAR_EQ] = ACTIONS(1366), + [anon_sym_SLASH_EQ] = ACTIONS(1366), + [anon_sym_PERCENT_EQ] = ACTIONS(1366), + [anon_sym_CARET_EQ] = ACTIONS(1366), + [anon_sym_AMP_EQ] = ACTIONS(1366), + [anon_sym_PIPE_EQ] = ACTIONS(1366), + [anon_sym_LT_LT_EQ] = ACTIONS(1366), + [anon_sym_GT_GT_EQ] = ACTIONS(1366), + [anon_sym_EQ] = ACTIONS(1368), + [anon_sym_EQ_EQ] = ACTIONS(1366), + [anon_sym_BANG_EQ] = ACTIONS(1366), + [anon_sym_GT] = ACTIONS(1368), + [anon_sym_LT] = ACTIONS(1368), + [anon_sym_GT_EQ] = ACTIONS(1366), + [anon_sym_LT_EQ] = ACTIONS(1366), + [anon_sym__] = ACTIONS(1368), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_DOT_DOT] = ACTIONS(1368), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1366), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1366), + [anon_sym_COMMA] = ACTIONS(1366), + [anon_sym_COLON_COLON] = ACTIONS(1366), + [anon_sym_POUND] = ACTIONS(1366), + [anon_sym_as] = ACTIONS(1368), + [anon_sym_const] = ACTIONS(1368), + [anon_sym_default] = ACTIONS(1368), + [anon_sym_union] = ACTIONS(1368), + [anon_sym_ref] = ACTIONS(1368), + [sym_mutable_specifier] = ACTIONS(1368), + [sym_integer_literal] = ACTIONS(1366), + [aux_sym_string_literal_token1] = ACTIONS(1366), + [sym_char_literal] = ACTIONS(1366), + [anon_sym_true] = ACTIONS(1368), + [anon_sym_false] = ACTIONS(1368), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1452), - [sym_super] = ACTIONS(1452), - [sym_crate] = ACTIONS(1452), - [sym_metavariable] = ACTIONS(1450), - [sym__raw_string_literal_start] = ACTIONS(1450), - [sym_float_literal] = ACTIONS(1450), - }, - [468] = { - [sym_line_comment] = STATE(468), - [sym_block_comment] = STATE(468), - [sym_identifier] = ACTIONS(1380), - [anon_sym_LPAREN] = ACTIONS(1378), - [anon_sym_LBRACK] = ACTIONS(1378), - [anon_sym_RBRACE] = ACTIONS(1378), - [anon_sym_PLUS] = ACTIONS(1380), - [anon_sym_STAR] = ACTIONS(1380), - [anon_sym_QMARK] = ACTIONS(1378), - [anon_sym_u8] = ACTIONS(1380), - [anon_sym_i8] = ACTIONS(1380), - [anon_sym_u16] = ACTIONS(1380), - [anon_sym_i16] = ACTIONS(1380), - [anon_sym_u32] = ACTIONS(1380), - [anon_sym_i32] = ACTIONS(1380), - [anon_sym_u64] = ACTIONS(1380), - [anon_sym_i64] = ACTIONS(1380), - [anon_sym_u128] = ACTIONS(1380), - [anon_sym_i128] = ACTIONS(1380), - [anon_sym_isize] = ACTIONS(1380), - [anon_sym_usize] = ACTIONS(1380), - [anon_sym_f32] = ACTIONS(1380), - [anon_sym_f64] = ACTIONS(1380), - [anon_sym_bool] = ACTIONS(1380), - [anon_sym_str] = ACTIONS(1380), - [anon_sym_char] = ACTIONS(1380), - [anon_sym_DASH] = ACTIONS(1380), - [anon_sym_SLASH] = ACTIONS(1380), - [anon_sym_PERCENT] = ACTIONS(1380), - [anon_sym_CARET] = ACTIONS(1380), - [anon_sym_AMP] = ACTIONS(1380), - [anon_sym_PIPE] = ACTIONS(1380), - [anon_sym_AMP_AMP] = ACTIONS(1378), - [anon_sym_PIPE_PIPE] = ACTIONS(1378), - [anon_sym_LT_LT] = ACTIONS(1380), - [anon_sym_GT_GT] = ACTIONS(1380), - [anon_sym_PLUS_EQ] = ACTIONS(1378), - [anon_sym_DASH_EQ] = ACTIONS(1378), - [anon_sym_STAR_EQ] = ACTIONS(1378), - [anon_sym_SLASH_EQ] = ACTIONS(1378), - [anon_sym_PERCENT_EQ] = ACTIONS(1378), - [anon_sym_CARET_EQ] = ACTIONS(1378), - [anon_sym_AMP_EQ] = ACTIONS(1378), - [anon_sym_PIPE_EQ] = ACTIONS(1378), - [anon_sym_LT_LT_EQ] = ACTIONS(1378), - [anon_sym_GT_GT_EQ] = ACTIONS(1378), - [anon_sym_EQ] = ACTIONS(1380), - [anon_sym_EQ_EQ] = ACTIONS(1378), - [anon_sym_BANG_EQ] = ACTIONS(1378), - [anon_sym_GT] = ACTIONS(1380), - [anon_sym_LT] = ACTIONS(1380), - [anon_sym_GT_EQ] = ACTIONS(1378), - [anon_sym_LT_EQ] = ACTIONS(1378), - [anon_sym__] = ACTIONS(1380), - [anon_sym_DOT] = ACTIONS(1380), - [anon_sym_DOT_DOT] = ACTIONS(1380), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1378), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1378), - [anon_sym_COMMA] = ACTIONS(1378), - [anon_sym_COLON_COLON] = ACTIONS(1378), - [anon_sym_POUND] = ACTIONS(1378), - [anon_sym_as] = ACTIONS(1380), - [anon_sym_const] = ACTIONS(1380), - [anon_sym_default] = ACTIONS(1380), - [anon_sym_union] = ACTIONS(1380), - [anon_sym_ref] = ACTIONS(1380), - [sym_mutable_specifier] = ACTIONS(1380), - [sym_integer_literal] = ACTIONS(1378), - [aux_sym_string_literal_token1] = ACTIONS(1378), - [sym_char_literal] = ACTIONS(1378), - [anon_sym_true] = ACTIONS(1380), - [anon_sym_false] = ACTIONS(1380), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1380), - [sym_super] = ACTIONS(1380), - [sym_crate] = ACTIONS(1380), - [sym_metavariable] = ACTIONS(1378), - [sym__raw_string_literal_start] = ACTIONS(1378), - [sym_float_literal] = ACTIONS(1378), + [sym_self] = ACTIONS(1368), + [sym_super] = ACTIONS(1368), + [sym_crate] = ACTIONS(1368), + [sym_metavariable] = ACTIONS(1366), + [sym__raw_string_literal_start] = ACTIONS(1366), + [sym_float_literal] = ACTIONS(1366), }, - [469] = { - [sym_line_comment] = STATE(469), - [sym_block_comment] = STATE(469), - [sym_identifier] = ACTIONS(1352), - [anon_sym_LPAREN] = ACTIONS(1350), - [anon_sym_LBRACK] = ACTIONS(1350), - [anon_sym_RBRACE] = ACTIONS(1350), - [anon_sym_PLUS] = ACTIONS(1352), - [anon_sym_STAR] = ACTIONS(1352), - [anon_sym_QMARK] = ACTIONS(1350), - [anon_sym_u8] = ACTIONS(1352), - [anon_sym_i8] = ACTIONS(1352), - [anon_sym_u16] = ACTIONS(1352), - [anon_sym_i16] = ACTIONS(1352), - [anon_sym_u32] = ACTIONS(1352), - [anon_sym_i32] = ACTIONS(1352), - [anon_sym_u64] = ACTIONS(1352), - [anon_sym_i64] = ACTIONS(1352), - [anon_sym_u128] = ACTIONS(1352), - [anon_sym_i128] = ACTIONS(1352), - [anon_sym_isize] = ACTIONS(1352), - [anon_sym_usize] = ACTIONS(1352), - [anon_sym_f32] = ACTIONS(1352), - [anon_sym_f64] = ACTIONS(1352), - [anon_sym_bool] = ACTIONS(1352), - [anon_sym_str] = ACTIONS(1352), - [anon_sym_char] = ACTIONS(1352), - [anon_sym_DASH] = ACTIONS(1352), - [anon_sym_SLASH] = ACTIONS(1352), - [anon_sym_PERCENT] = ACTIONS(1352), - [anon_sym_CARET] = ACTIONS(1352), - [anon_sym_AMP] = ACTIONS(1352), - [anon_sym_PIPE] = ACTIONS(1352), - [anon_sym_AMP_AMP] = ACTIONS(1350), - [anon_sym_PIPE_PIPE] = ACTIONS(1350), - [anon_sym_LT_LT] = ACTIONS(1352), - [anon_sym_GT_GT] = ACTIONS(1352), - [anon_sym_PLUS_EQ] = ACTIONS(1350), - [anon_sym_DASH_EQ] = ACTIONS(1350), - [anon_sym_STAR_EQ] = ACTIONS(1350), - [anon_sym_SLASH_EQ] = ACTIONS(1350), - [anon_sym_PERCENT_EQ] = ACTIONS(1350), - [anon_sym_CARET_EQ] = ACTIONS(1350), - [anon_sym_AMP_EQ] = ACTIONS(1350), - [anon_sym_PIPE_EQ] = ACTIONS(1350), - [anon_sym_LT_LT_EQ] = ACTIONS(1350), - [anon_sym_GT_GT_EQ] = ACTIONS(1350), - [anon_sym_EQ] = ACTIONS(1352), - [anon_sym_EQ_EQ] = ACTIONS(1350), - [anon_sym_BANG_EQ] = ACTIONS(1350), - [anon_sym_GT] = ACTIONS(1352), - [anon_sym_LT] = ACTIONS(1352), - [anon_sym_GT_EQ] = ACTIONS(1350), - [anon_sym_LT_EQ] = ACTIONS(1350), - [anon_sym__] = ACTIONS(1352), - [anon_sym_DOT] = ACTIONS(1352), - [anon_sym_DOT_DOT] = ACTIONS(1352), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1350), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1350), - [anon_sym_COMMA] = ACTIONS(1350), - [anon_sym_COLON_COLON] = ACTIONS(1350), - [anon_sym_POUND] = ACTIONS(1350), - [anon_sym_as] = ACTIONS(1352), - [anon_sym_const] = ACTIONS(1352), - [anon_sym_default] = ACTIONS(1352), - [anon_sym_union] = ACTIONS(1352), - [anon_sym_ref] = ACTIONS(1352), - [sym_mutable_specifier] = ACTIONS(1352), - [sym_integer_literal] = ACTIONS(1350), - [aux_sym_string_literal_token1] = ACTIONS(1350), - [sym_char_literal] = ACTIONS(1350), - [anon_sym_true] = ACTIONS(1352), - [anon_sym_false] = ACTIONS(1352), + [463] = { + [sym_line_comment] = STATE(463), + [sym_block_comment] = STATE(463), + [sym_identifier] = ACTIONS(1400), + [anon_sym_LPAREN] = ACTIONS(1398), + [anon_sym_LBRACK] = ACTIONS(1398), + [anon_sym_RBRACE] = ACTIONS(1398), + [anon_sym_PLUS] = ACTIONS(1400), + [anon_sym_STAR] = ACTIONS(1400), + [anon_sym_QMARK] = ACTIONS(1398), + [anon_sym_u8] = ACTIONS(1400), + [anon_sym_i8] = ACTIONS(1400), + [anon_sym_u16] = ACTIONS(1400), + [anon_sym_i16] = ACTIONS(1400), + [anon_sym_u32] = ACTIONS(1400), + [anon_sym_i32] = ACTIONS(1400), + [anon_sym_u64] = ACTIONS(1400), + [anon_sym_i64] = ACTIONS(1400), + [anon_sym_u128] = ACTIONS(1400), + [anon_sym_i128] = ACTIONS(1400), + [anon_sym_isize] = ACTIONS(1400), + [anon_sym_usize] = ACTIONS(1400), + [anon_sym_f32] = ACTIONS(1400), + [anon_sym_f64] = ACTIONS(1400), + [anon_sym_bool] = ACTIONS(1400), + [anon_sym_str] = ACTIONS(1400), + [anon_sym_char] = ACTIONS(1400), + [anon_sym_DASH] = ACTIONS(1400), + [anon_sym_SLASH] = ACTIONS(1400), + [anon_sym_PERCENT] = ACTIONS(1400), + [anon_sym_CARET] = ACTIONS(1400), + [anon_sym_AMP] = ACTIONS(1400), + [anon_sym_PIPE] = ACTIONS(1400), + [anon_sym_AMP_AMP] = ACTIONS(1398), + [anon_sym_PIPE_PIPE] = ACTIONS(1398), + [anon_sym_LT_LT] = ACTIONS(1400), + [anon_sym_GT_GT] = ACTIONS(1400), + [anon_sym_PLUS_EQ] = ACTIONS(1398), + [anon_sym_DASH_EQ] = ACTIONS(1398), + [anon_sym_STAR_EQ] = ACTIONS(1398), + [anon_sym_SLASH_EQ] = ACTIONS(1398), + [anon_sym_PERCENT_EQ] = ACTIONS(1398), + [anon_sym_CARET_EQ] = ACTIONS(1398), + [anon_sym_AMP_EQ] = ACTIONS(1398), + [anon_sym_PIPE_EQ] = ACTIONS(1398), + [anon_sym_LT_LT_EQ] = ACTIONS(1398), + [anon_sym_GT_GT_EQ] = ACTIONS(1398), + [anon_sym_EQ] = ACTIONS(1400), + [anon_sym_EQ_EQ] = ACTIONS(1398), + [anon_sym_BANG_EQ] = ACTIONS(1398), + [anon_sym_GT] = ACTIONS(1400), + [anon_sym_LT] = ACTIONS(1400), + [anon_sym_GT_EQ] = ACTIONS(1398), + [anon_sym_LT_EQ] = ACTIONS(1398), + [anon_sym__] = ACTIONS(1400), + [anon_sym_DOT] = ACTIONS(1400), + [anon_sym_DOT_DOT] = ACTIONS(1400), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1398), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1398), + [anon_sym_COMMA] = ACTIONS(1398), + [anon_sym_COLON_COLON] = ACTIONS(1398), + [anon_sym_POUND] = ACTIONS(1398), + [anon_sym_as] = ACTIONS(1400), + [anon_sym_const] = ACTIONS(1400), + [anon_sym_default] = ACTIONS(1400), + [anon_sym_union] = ACTIONS(1400), + [anon_sym_ref] = ACTIONS(1400), + [sym_mutable_specifier] = ACTIONS(1400), + [sym_integer_literal] = ACTIONS(1398), + [aux_sym_string_literal_token1] = ACTIONS(1398), + [sym_char_literal] = ACTIONS(1398), + [anon_sym_true] = ACTIONS(1400), + [anon_sym_false] = ACTIONS(1400), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1352), - [sym_super] = ACTIONS(1352), - [sym_crate] = ACTIONS(1352), - [sym_metavariable] = ACTIONS(1350), - [sym__raw_string_literal_start] = ACTIONS(1350), - [sym_float_literal] = ACTIONS(1350), - }, - [470] = { - [sym_line_comment] = STATE(470), - [sym_block_comment] = STATE(470), - [sym_identifier] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(1390), - [anon_sym_LBRACK] = ACTIONS(1390), - [anon_sym_RBRACE] = ACTIONS(1390), - [anon_sym_PLUS] = ACTIONS(1392), - [anon_sym_STAR] = ACTIONS(1392), - [anon_sym_QMARK] = ACTIONS(1390), - [anon_sym_u8] = ACTIONS(1392), - [anon_sym_i8] = ACTIONS(1392), - [anon_sym_u16] = ACTIONS(1392), - [anon_sym_i16] = ACTIONS(1392), - [anon_sym_u32] = ACTIONS(1392), - [anon_sym_i32] = ACTIONS(1392), - [anon_sym_u64] = ACTIONS(1392), - [anon_sym_i64] = ACTIONS(1392), - [anon_sym_u128] = ACTIONS(1392), - [anon_sym_i128] = ACTIONS(1392), - [anon_sym_isize] = ACTIONS(1392), - [anon_sym_usize] = ACTIONS(1392), - [anon_sym_f32] = ACTIONS(1392), - [anon_sym_f64] = ACTIONS(1392), - [anon_sym_bool] = ACTIONS(1392), - [anon_sym_str] = ACTIONS(1392), - [anon_sym_char] = ACTIONS(1392), - [anon_sym_DASH] = ACTIONS(1392), - [anon_sym_SLASH] = ACTIONS(1392), - [anon_sym_PERCENT] = ACTIONS(1392), - [anon_sym_CARET] = ACTIONS(1392), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_PIPE] = ACTIONS(1392), - [anon_sym_AMP_AMP] = ACTIONS(1390), - [anon_sym_PIPE_PIPE] = ACTIONS(1390), - [anon_sym_LT_LT] = ACTIONS(1392), - [anon_sym_GT_GT] = ACTIONS(1392), - [anon_sym_PLUS_EQ] = ACTIONS(1390), - [anon_sym_DASH_EQ] = ACTIONS(1390), - [anon_sym_STAR_EQ] = ACTIONS(1390), - [anon_sym_SLASH_EQ] = ACTIONS(1390), - [anon_sym_PERCENT_EQ] = ACTIONS(1390), - [anon_sym_CARET_EQ] = ACTIONS(1390), - [anon_sym_AMP_EQ] = ACTIONS(1390), - [anon_sym_PIPE_EQ] = ACTIONS(1390), - [anon_sym_LT_LT_EQ] = ACTIONS(1390), - [anon_sym_GT_GT_EQ] = ACTIONS(1390), - [anon_sym_EQ] = ACTIONS(1392), - [anon_sym_EQ_EQ] = ACTIONS(1390), - [anon_sym_BANG_EQ] = ACTIONS(1390), - [anon_sym_GT] = ACTIONS(1392), - [anon_sym_LT] = ACTIONS(1392), - [anon_sym_GT_EQ] = ACTIONS(1390), - [anon_sym_LT_EQ] = ACTIONS(1390), - [anon_sym__] = ACTIONS(1392), - [anon_sym_DOT] = ACTIONS(1392), - [anon_sym_DOT_DOT] = ACTIONS(1392), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1390), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1390), - [anon_sym_COMMA] = ACTIONS(1390), - [anon_sym_COLON_COLON] = ACTIONS(1390), - [anon_sym_POUND] = ACTIONS(1390), - [anon_sym_as] = ACTIONS(1392), - [anon_sym_const] = ACTIONS(1392), - [anon_sym_default] = ACTIONS(1392), - [anon_sym_union] = ACTIONS(1392), - [anon_sym_ref] = ACTIONS(1392), - [sym_mutable_specifier] = ACTIONS(1392), - [sym_integer_literal] = ACTIONS(1390), - [aux_sym_string_literal_token1] = ACTIONS(1390), - [sym_char_literal] = ACTIONS(1390), - [anon_sym_true] = ACTIONS(1392), - [anon_sym_false] = ACTIONS(1392), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1392), - [sym_super] = ACTIONS(1392), - [sym_crate] = ACTIONS(1392), - [sym_metavariable] = ACTIONS(1390), - [sym__raw_string_literal_start] = ACTIONS(1390), - [sym_float_literal] = ACTIONS(1390), + [sym_self] = ACTIONS(1400), + [sym_super] = ACTIONS(1400), + [sym_crate] = ACTIONS(1400), + [sym_metavariable] = ACTIONS(1398), + [sym__raw_string_literal_start] = ACTIONS(1398), + [sym_float_literal] = ACTIONS(1398), }, - [471] = { - [sym_line_comment] = STATE(471), - [sym_block_comment] = STATE(471), + [464] = { + [sym_line_comment] = STATE(464), + [sym_block_comment] = STATE(464), [sym_identifier] = ACTIONS(1396), [anon_sym_LPAREN] = ACTIONS(1394), [anon_sym_LBRACK] = ACTIONS(1394), @@ -67955,40 +67389,532 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1394), [sym_float_literal] = ACTIONS(1394), }, - [472] = { - [sym_attribute_item] = STATE(1479), - [sym_inner_attribute_item] = STATE(1479), - [sym_bracketed_type] = STATE(3523), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3262), - [sym_macro_invocation] = STATE(2877), - [sym_scoped_identifier] = STATE(2130), - [sym_scoped_type_identifier] = STATE(2908), - [sym_match_arm] = STATE(1471), - [sym_last_match_arm] = STATE(3426), - [sym_match_pattern] = STATE(3345), - [sym_const_block] = STATE(2877), - [sym__pattern] = STATE(2919), - [sym_tuple_pattern] = STATE(2877), - [sym_slice_pattern] = STATE(2877), - [sym_tuple_struct_pattern] = STATE(2877), - [sym_struct_pattern] = STATE(2877), - [sym_remaining_field_pattern] = STATE(2877), - [sym_mut_pattern] = STATE(2877), - [sym_range_pattern] = STATE(2877), - [sym_ref_pattern] = STATE(2877), - [sym_captured_pattern] = STATE(2877), - [sym_reference_pattern] = STATE(2877), - [sym_or_pattern] = STATE(2877), - [sym__literal_pattern] = STATE(2387), - [sym_negative_literal] = STATE(2299), - [sym_string_literal] = STATE(2299), - [sym_raw_string_literal] = STATE(2299), - [sym_boolean_literal] = STATE(2299), - [sym_line_comment] = STATE(472), - [sym_block_comment] = STATE(472), + [465] = { + [sym_line_comment] = STATE(465), + [sym_block_comment] = STATE(465), + [sym_identifier] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1374), + [anon_sym_LBRACK] = ACTIONS(1374), + [anon_sym_RBRACE] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(1376), + [anon_sym_QMARK] = ACTIONS(1374), + [anon_sym_u8] = ACTIONS(1376), + [anon_sym_i8] = ACTIONS(1376), + [anon_sym_u16] = ACTIONS(1376), + [anon_sym_i16] = ACTIONS(1376), + [anon_sym_u32] = ACTIONS(1376), + [anon_sym_i32] = ACTIONS(1376), + [anon_sym_u64] = ACTIONS(1376), + [anon_sym_i64] = ACTIONS(1376), + [anon_sym_u128] = ACTIONS(1376), + [anon_sym_i128] = ACTIONS(1376), + [anon_sym_isize] = ACTIONS(1376), + [anon_sym_usize] = ACTIONS(1376), + [anon_sym_f32] = ACTIONS(1376), + [anon_sym_f64] = ACTIONS(1376), + [anon_sym_bool] = ACTIONS(1376), + [anon_sym_str] = ACTIONS(1376), + [anon_sym_char] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_SLASH] = ACTIONS(1376), + [anon_sym_PERCENT] = ACTIONS(1376), + [anon_sym_CARET] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1376), + [anon_sym_PIPE] = ACTIONS(1376), + [anon_sym_AMP_AMP] = ACTIONS(1374), + [anon_sym_PIPE_PIPE] = ACTIONS(1374), + [anon_sym_LT_LT] = ACTIONS(1376), + [anon_sym_GT_GT] = ACTIONS(1376), + [anon_sym_PLUS_EQ] = ACTIONS(1374), + [anon_sym_DASH_EQ] = ACTIONS(1374), + [anon_sym_STAR_EQ] = ACTIONS(1374), + [anon_sym_SLASH_EQ] = ACTIONS(1374), + [anon_sym_PERCENT_EQ] = ACTIONS(1374), + [anon_sym_CARET_EQ] = ACTIONS(1374), + [anon_sym_AMP_EQ] = ACTIONS(1374), + [anon_sym_PIPE_EQ] = ACTIONS(1374), + [anon_sym_LT_LT_EQ] = ACTIONS(1374), + [anon_sym_GT_GT_EQ] = ACTIONS(1374), + [anon_sym_EQ] = ACTIONS(1376), + [anon_sym_EQ_EQ] = ACTIONS(1374), + [anon_sym_BANG_EQ] = ACTIONS(1374), + [anon_sym_GT] = ACTIONS(1376), + [anon_sym_LT] = ACTIONS(1376), + [anon_sym_GT_EQ] = ACTIONS(1374), + [anon_sym_LT_EQ] = ACTIONS(1374), + [anon_sym__] = ACTIONS(1376), + [anon_sym_DOT] = ACTIONS(1376), + [anon_sym_DOT_DOT] = ACTIONS(1376), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1374), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1374), + [anon_sym_COMMA] = ACTIONS(1374), + [anon_sym_COLON_COLON] = ACTIONS(1374), + [anon_sym_POUND] = ACTIONS(1374), + [anon_sym_as] = ACTIONS(1376), + [anon_sym_const] = ACTIONS(1376), + [anon_sym_default] = ACTIONS(1376), + [anon_sym_union] = ACTIONS(1376), + [anon_sym_ref] = ACTIONS(1376), + [sym_mutable_specifier] = ACTIONS(1376), + [sym_integer_literal] = ACTIONS(1374), + [aux_sym_string_literal_token1] = ACTIONS(1374), + [sym_char_literal] = ACTIONS(1374), + [anon_sym_true] = ACTIONS(1376), + [anon_sym_false] = ACTIONS(1376), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1376), + [sym_super] = ACTIONS(1376), + [sym_crate] = ACTIONS(1376), + [sym_metavariable] = ACTIONS(1374), + [sym__raw_string_literal_start] = ACTIONS(1374), + [sym_float_literal] = ACTIONS(1374), + }, + [466] = { + [sym_line_comment] = STATE(466), + [sym_block_comment] = STATE(466), + [sym_identifier] = ACTIONS(1444), + [anon_sym_LPAREN] = ACTIONS(1442), + [anon_sym_LBRACK] = ACTIONS(1442), + [anon_sym_RBRACE] = ACTIONS(1442), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_STAR] = ACTIONS(1444), + [anon_sym_QMARK] = ACTIONS(1442), + [anon_sym_u8] = ACTIONS(1444), + [anon_sym_i8] = ACTIONS(1444), + [anon_sym_u16] = ACTIONS(1444), + [anon_sym_i16] = ACTIONS(1444), + [anon_sym_u32] = ACTIONS(1444), + [anon_sym_i32] = ACTIONS(1444), + [anon_sym_u64] = ACTIONS(1444), + [anon_sym_i64] = ACTIONS(1444), + [anon_sym_u128] = ACTIONS(1444), + [anon_sym_i128] = ACTIONS(1444), + [anon_sym_isize] = ACTIONS(1444), + [anon_sym_usize] = ACTIONS(1444), + [anon_sym_f32] = ACTIONS(1444), + [anon_sym_f64] = ACTIONS(1444), + [anon_sym_bool] = ACTIONS(1444), + [anon_sym_str] = ACTIONS(1444), + [anon_sym_char] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_SLASH] = ACTIONS(1444), + [anon_sym_PERCENT] = ACTIONS(1444), + [anon_sym_CARET] = ACTIONS(1444), + [anon_sym_AMP] = ACTIONS(1444), + [anon_sym_PIPE] = ACTIONS(1444), + [anon_sym_AMP_AMP] = ACTIONS(1442), + [anon_sym_PIPE_PIPE] = ACTIONS(1442), + [anon_sym_LT_LT] = ACTIONS(1444), + [anon_sym_GT_GT] = ACTIONS(1444), + [anon_sym_PLUS_EQ] = ACTIONS(1442), + [anon_sym_DASH_EQ] = ACTIONS(1442), + [anon_sym_STAR_EQ] = ACTIONS(1442), + [anon_sym_SLASH_EQ] = ACTIONS(1442), + [anon_sym_PERCENT_EQ] = ACTIONS(1442), + [anon_sym_CARET_EQ] = ACTIONS(1442), + [anon_sym_AMP_EQ] = ACTIONS(1442), + [anon_sym_PIPE_EQ] = ACTIONS(1442), + [anon_sym_LT_LT_EQ] = ACTIONS(1442), + [anon_sym_GT_GT_EQ] = ACTIONS(1442), + [anon_sym_EQ] = ACTIONS(1444), + [anon_sym_EQ_EQ] = ACTIONS(1442), + [anon_sym_BANG_EQ] = ACTIONS(1442), + [anon_sym_GT] = ACTIONS(1444), + [anon_sym_LT] = ACTIONS(1444), + [anon_sym_GT_EQ] = ACTIONS(1442), + [anon_sym_LT_EQ] = ACTIONS(1442), + [anon_sym__] = ACTIONS(1444), + [anon_sym_DOT] = ACTIONS(1444), + [anon_sym_DOT_DOT] = ACTIONS(1444), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1442), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1442), + [anon_sym_COMMA] = ACTIONS(1442), + [anon_sym_COLON_COLON] = ACTIONS(1442), + [anon_sym_POUND] = ACTIONS(1442), + [anon_sym_as] = ACTIONS(1444), + [anon_sym_const] = ACTIONS(1444), + [anon_sym_default] = ACTIONS(1444), + [anon_sym_union] = ACTIONS(1444), + [anon_sym_ref] = ACTIONS(1444), + [sym_mutable_specifier] = ACTIONS(1444), + [sym_integer_literal] = ACTIONS(1442), + [aux_sym_string_literal_token1] = ACTIONS(1442), + [sym_char_literal] = ACTIONS(1442), + [anon_sym_true] = ACTIONS(1444), + [anon_sym_false] = ACTIONS(1444), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1444), + [sym_super] = ACTIONS(1444), + [sym_crate] = ACTIONS(1444), + [sym_metavariable] = ACTIONS(1442), + [sym__raw_string_literal_start] = ACTIONS(1442), + [sym_float_literal] = ACTIONS(1442), + }, + [467] = { + [sym_line_comment] = STATE(467), + [sym_block_comment] = STATE(467), + [sym_identifier] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1418), + [anon_sym_LBRACK] = ACTIONS(1418), + [anon_sym_RBRACE] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1420), + [anon_sym_STAR] = ACTIONS(1420), + [anon_sym_QMARK] = ACTIONS(1418), + [anon_sym_u8] = ACTIONS(1420), + [anon_sym_i8] = ACTIONS(1420), + [anon_sym_u16] = ACTIONS(1420), + [anon_sym_i16] = ACTIONS(1420), + [anon_sym_u32] = ACTIONS(1420), + [anon_sym_i32] = ACTIONS(1420), + [anon_sym_u64] = ACTIONS(1420), + [anon_sym_i64] = ACTIONS(1420), + [anon_sym_u128] = ACTIONS(1420), + [anon_sym_i128] = ACTIONS(1420), + [anon_sym_isize] = ACTIONS(1420), + [anon_sym_usize] = ACTIONS(1420), + [anon_sym_f32] = ACTIONS(1420), + [anon_sym_f64] = ACTIONS(1420), + [anon_sym_bool] = ACTIONS(1420), + [anon_sym_str] = ACTIONS(1420), + [anon_sym_char] = ACTIONS(1420), + [anon_sym_DASH] = ACTIONS(1420), + [anon_sym_SLASH] = ACTIONS(1420), + [anon_sym_PERCENT] = ACTIONS(1420), + [anon_sym_CARET] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1420), + [anon_sym_PIPE] = ACTIONS(1420), + [anon_sym_AMP_AMP] = ACTIONS(1418), + [anon_sym_PIPE_PIPE] = ACTIONS(1418), + [anon_sym_LT_LT] = ACTIONS(1420), + [anon_sym_GT_GT] = ACTIONS(1420), + [anon_sym_PLUS_EQ] = ACTIONS(1418), + [anon_sym_DASH_EQ] = ACTIONS(1418), + [anon_sym_STAR_EQ] = ACTIONS(1418), + [anon_sym_SLASH_EQ] = ACTIONS(1418), + [anon_sym_PERCENT_EQ] = ACTIONS(1418), + [anon_sym_CARET_EQ] = ACTIONS(1418), + [anon_sym_AMP_EQ] = ACTIONS(1418), + [anon_sym_PIPE_EQ] = ACTIONS(1418), + [anon_sym_LT_LT_EQ] = ACTIONS(1418), + [anon_sym_GT_GT_EQ] = ACTIONS(1418), + [anon_sym_EQ] = ACTIONS(1420), + [anon_sym_EQ_EQ] = ACTIONS(1418), + [anon_sym_BANG_EQ] = ACTIONS(1418), + [anon_sym_GT] = ACTIONS(1420), + [anon_sym_LT] = ACTIONS(1420), + [anon_sym_GT_EQ] = ACTIONS(1418), + [anon_sym_LT_EQ] = ACTIONS(1418), + [anon_sym__] = ACTIONS(1420), + [anon_sym_DOT] = ACTIONS(1420), + [anon_sym_DOT_DOT] = ACTIONS(1420), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1418), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1418), + [anon_sym_COMMA] = ACTIONS(1418), + [anon_sym_COLON_COLON] = ACTIONS(1418), + [anon_sym_POUND] = ACTIONS(1418), + [anon_sym_as] = ACTIONS(1420), + [anon_sym_const] = ACTIONS(1420), + [anon_sym_default] = ACTIONS(1420), + [anon_sym_union] = ACTIONS(1420), + [anon_sym_ref] = ACTIONS(1420), + [sym_mutable_specifier] = ACTIONS(1420), + [sym_integer_literal] = ACTIONS(1418), + [aux_sym_string_literal_token1] = ACTIONS(1418), + [sym_char_literal] = ACTIONS(1418), + [anon_sym_true] = ACTIONS(1420), + [anon_sym_false] = ACTIONS(1420), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1420), + [sym_super] = ACTIONS(1420), + [sym_crate] = ACTIONS(1420), + [sym_metavariable] = ACTIONS(1418), + [sym__raw_string_literal_start] = ACTIONS(1418), + [sym_float_literal] = ACTIONS(1418), + }, + [468] = { + [sym_line_comment] = STATE(468), + [sym_block_comment] = STATE(468), + [sym_identifier] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACE] = ACTIONS(1430), + [anon_sym_PLUS] = ACTIONS(1432), + [anon_sym_STAR] = ACTIONS(1432), + [anon_sym_QMARK] = ACTIONS(1430), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u128] = ACTIONS(1432), + [anon_sym_i128] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_str] = ACTIONS(1432), + [anon_sym_char] = ACTIONS(1432), + [anon_sym_DASH] = ACTIONS(1432), + [anon_sym_SLASH] = ACTIONS(1432), + [anon_sym_PERCENT] = ACTIONS(1432), + [anon_sym_CARET] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1432), + [anon_sym_PIPE] = ACTIONS(1432), + [anon_sym_AMP_AMP] = ACTIONS(1430), + [anon_sym_PIPE_PIPE] = ACTIONS(1430), + [anon_sym_LT_LT] = ACTIONS(1432), + [anon_sym_GT_GT] = ACTIONS(1432), + [anon_sym_PLUS_EQ] = ACTIONS(1430), + [anon_sym_DASH_EQ] = ACTIONS(1430), + [anon_sym_STAR_EQ] = ACTIONS(1430), + [anon_sym_SLASH_EQ] = ACTIONS(1430), + [anon_sym_PERCENT_EQ] = ACTIONS(1430), + [anon_sym_CARET_EQ] = ACTIONS(1430), + [anon_sym_AMP_EQ] = ACTIONS(1430), + [anon_sym_PIPE_EQ] = ACTIONS(1430), + [anon_sym_LT_LT_EQ] = ACTIONS(1430), + [anon_sym_GT_GT_EQ] = ACTIONS(1430), + [anon_sym_EQ] = ACTIONS(1432), + [anon_sym_EQ_EQ] = ACTIONS(1430), + [anon_sym_BANG_EQ] = ACTIONS(1430), + [anon_sym_GT] = ACTIONS(1432), + [anon_sym_LT] = ACTIONS(1432), + [anon_sym_GT_EQ] = ACTIONS(1430), + [anon_sym_LT_EQ] = ACTIONS(1430), + [anon_sym__] = ACTIONS(1432), + [anon_sym_DOT] = ACTIONS(1432), + [anon_sym_DOT_DOT] = ACTIONS(1432), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1430), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1430), + [anon_sym_COMMA] = ACTIONS(1430), + [anon_sym_COLON_COLON] = ACTIONS(1430), + [anon_sym_POUND] = ACTIONS(1430), + [anon_sym_as] = ACTIONS(1432), + [anon_sym_const] = ACTIONS(1432), + [anon_sym_default] = ACTIONS(1432), + [anon_sym_union] = ACTIONS(1432), + [anon_sym_ref] = ACTIONS(1432), + [sym_mutable_specifier] = ACTIONS(1432), + [sym_integer_literal] = ACTIONS(1430), + [aux_sym_string_literal_token1] = ACTIONS(1430), + [sym_char_literal] = ACTIONS(1430), + [anon_sym_true] = ACTIONS(1432), + [anon_sym_false] = ACTIONS(1432), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1432), + [sym_super] = ACTIONS(1432), + [sym_crate] = ACTIONS(1432), + [sym_metavariable] = ACTIONS(1430), + [sym__raw_string_literal_start] = ACTIONS(1430), + [sym_float_literal] = ACTIONS(1430), + }, + [469] = { + [sym_line_comment] = STATE(469), + [sym_block_comment] = STATE(469), + [sym_identifier] = ACTIONS(1372), + [anon_sym_LPAREN] = ACTIONS(1370), + [anon_sym_LBRACK] = ACTIONS(1370), + [anon_sym_RBRACE] = ACTIONS(1370), + [anon_sym_PLUS] = ACTIONS(1372), + [anon_sym_STAR] = ACTIONS(1372), + [anon_sym_QMARK] = ACTIONS(1370), + [anon_sym_u8] = ACTIONS(1372), + [anon_sym_i8] = ACTIONS(1372), + [anon_sym_u16] = ACTIONS(1372), + [anon_sym_i16] = ACTIONS(1372), + [anon_sym_u32] = ACTIONS(1372), + [anon_sym_i32] = ACTIONS(1372), + [anon_sym_u64] = ACTIONS(1372), + [anon_sym_i64] = ACTIONS(1372), + [anon_sym_u128] = ACTIONS(1372), + [anon_sym_i128] = ACTIONS(1372), + [anon_sym_isize] = ACTIONS(1372), + [anon_sym_usize] = ACTIONS(1372), + [anon_sym_f32] = ACTIONS(1372), + [anon_sym_f64] = ACTIONS(1372), + [anon_sym_bool] = ACTIONS(1372), + [anon_sym_str] = ACTIONS(1372), + [anon_sym_char] = ACTIONS(1372), + [anon_sym_DASH] = ACTIONS(1372), + [anon_sym_SLASH] = ACTIONS(1372), + [anon_sym_PERCENT] = ACTIONS(1372), + [anon_sym_CARET] = ACTIONS(1372), + [anon_sym_AMP] = ACTIONS(1372), + [anon_sym_PIPE] = ACTIONS(1372), + [anon_sym_AMP_AMP] = ACTIONS(1370), + [anon_sym_PIPE_PIPE] = ACTIONS(1370), + [anon_sym_LT_LT] = ACTIONS(1372), + [anon_sym_GT_GT] = ACTIONS(1372), + [anon_sym_PLUS_EQ] = ACTIONS(1370), + [anon_sym_DASH_EQ] = ACTIONS(1370), + [anon_sym_STAR_EQ] = ACTIONS(1370), + [anon_sym_SLASH_EQ] = ACTIONS(1370), + [anon_sym_PERCENT_EQ] = ACTIONS(1370), + [anon_sym_CARET_EQ] = ACTIONS(1370), + [anon_sym_AMP_EQ] = ACTIONS(1370), + [anon_sym_PIPE_EQ] = ACTIONS(1370), + [anon_sym_LT_LT_EQ] = ACTIONS(1370), + [anon_sym_GT_GT_EQ] = ACTIONS(1370), + [anon_sym_EQ] = ACTIONS(1372), + [anon_sym_EQ_EQ] = ACTIONS(1370), + [anon_sym_BANG_EQ] = ACTIONS(1370), + [anon_sym_GT] = ACTIONS(1372), + [anon_sym_LT] = ACTIONS(1372), + [anon_sym_GT_EQ] = ACTIONS(1370), + [anon_sym_LT_EQ] = ACTIONS(1370), + [anon_sym__] = ACTIONS(1372), + [anon_sym_DOT] = ACTIONS(1372), + [anon_sym_DOT_DOT] = ACTIONS(1372), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1370), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1370), + [anon_sym_COMMA] = ACTIONS(1370), + [anon_sym_COLON_COLON] = ACTIONS(1370), + [anon_sym_POUND] = ACTIONS(1370), + [anon_sym_as] = ACTIONS(1372), + [anon_sym_const] = ACTIONS(1372), + [anon_sym_default] = ACTIONS(1372), + [anon_sym_union] = ACTIONS(1372), + [anon_sym_ref] = ACTIONS(1372), + [sym_mutable_specifier] = ACTIONS(1372), + [sym_integer_literal] = ACTIONS(1370), + [aux_sym_string_literal_token1] = ACTIONS(1370), + [sym_char_literal] = ACTIONS(1370), + [anon_sym_true] = ACTIONS(1372), + [anon_sym_false] = ACTIONS(1372), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1372), + [sym_super] = ACTIONS(1372), + [sym_crate] = ACTIONS(1372), + [sym_metavariable] = ACTIONS(1370), + [sym__raw_string_literal_start] = ACTIONS(1370), + [sym_float_literal] = ACTIONS(1370), + }, + [470] = { + [sym_line_comment] = STATE(470), + [sym_block_comment] = STATE(470), + [sym_identifier] = ACTIONS(1656), + [anon_sym_LPAREN] = ACTIONS(1658), + [anon_sym_LBRACK] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(1408), + [anon_sym_PLUS] = ACTIONS(1406), + [anon_sym_STAR] = ACTIONS(1406), + [anon_sym_QMARK] = ACTIONS(1408), + [anon_sym_u8] = ACTIONS(1656), + [anon_sym_i8] = ACTIONS(1656), + [anon_sym_u16] = ACTIONS(1656), + [anon_sym_i16] = ACTIONS(1656), + [anon_sym_u32] = ACTIONS(1656), + [anon_sym_i32] = ACTIONS(1656), + [anon_sym_u64] = ACTIONS(1656), + [anon_sym_i64] = ACTIONS(1656), + [anon_sym_u128] = ACTIONS(1656), + [anon_sym_i128] = ACTIONS(1656), + [anon_sym_isize] = ACTIONS(1656), + [anon_sym_usize] = ACTIONS(1656), + [anon_sym_f32] = ACTIONS(1656), + [anon_sym_f64] = ACTIONS(1656), + [anon_sym_bool] = ACTIONS(1656), + [anon_sym_str] = ACTIONS(1656), + [anon_sym_char] = ACTIONS(1656), + [anon_sym_DASH] = ACTIONS(1656), + [anon_sym_SLASH] = ACTIONS(1406), + [anon_sym_PERCENT] = ACTIONS(1406), + [anon_sym_CARET] = ACTIONS(1406), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym_PIPE] = ACTIONS(1656), + [anon_sym_AMP_AMP] = ACTIONS(1408), + [anon_sym_PIPE_PIPE] = ACTIONS(1408), + [anon_sym_LT_LT] = ACTIONS(1406), + [anon_sym_GT_GT] = ACTIONS(1406), + [anon_sym_PLUS_EQ] = ACTIONS(1408), + [anon_sym_DASH_EQ] = ACTIONS(1408), + [anon_sym_STAR_EQ] = ACTIONS(1408), + [anon_sym_SLASH_EQ] = ACTIONS(1408), + [anon_sym_PERCENT_EQ] = ACTIONS(1408), + [anon_sym_CARET_EQ] = ACTIONS(1408), + [anon_sym_AMP_EQ] = ACTIONS(1408), + [anon_sym_PIPE_EQ] = ACTIONS(1408), + [anon_sym_LT_LT_EQ] = ACTIONS(1408), + [anon_sym_GT_GT_EQ] = ACTIONS(1408), + [anon_sym_EQ] = ACTIONS(1406), + [anon_sym_EQ_EQ] = ACTIONS(1408), + [anon_sym_BANG_EQ] = ACTIONS(1408), + [anon_sym_GT] = ACTIONS(1406), + [anon_sym_LT] = ACTIONS(1656), + [anon_sym_GT_EQ] = ACTIONS(1408), + [anon_sym_LT_EQ] = ACTIONS(1408), + [anon_sym__] = ACTIONS(1656), + [anon_sym_DOT] = ACTIONS(1406), + [anon_sym_DOT_DOT] = ACTIONS(1656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1408), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1408), + [anon_sym_COMMA] = ACTIONS(1408), + [anon_sym_COLON_COLON] = ACTIONS(1658), + [anon_sym_POUND] = ACTIONS(1658), + [anon_sym_as] = ACTIONS(1406), + [anon_sym_const] = ACTIONS(1656), + [anon_sym_default] = ACTIONS(1656), + [anon_sym_union] = ACTIONS(1656), + [anon_sym_ref] = ACTIONS(1656), + [sym_mutable_specifier] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(1658), + [aux_sym_string_literal_token1] = ACTIONS(1658), + [sym_char_literal] = ACTIONS(1658), + [anon_sym_true] = ACTIONS(1656), + [anon_sym_false] = ACTIONS(1656), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1656), + [sym_super] = ACTIONS(1656), + [sym_crate] = ACTIONS(1656), + [sym_metavariable] = ACTIONS(1658), + [sym__raw_string_literal_start] = ACTIONS(1658), + [sym_float_literal] = ACTIONS(1658), + }, + [471] = { + [sym_attribute_item] = STATE(1474), + [sym_inner_attribute_item] = STATE(1474), + [sym_bracketed_type] = STATE(3531), + [sym_generic_type] = STATE(3487), + [sym_generic_type_with_turbofish] = STATE(3136), + [sym_macro_invocation] = STATE(2939), + [sym_scoped_identifier] = STATE(2152), + [sym_scoped_type_identifier] = STATE(2744), + [sym_match_arm] = STATE(1476), + [sym_last_match_arm] = STATE(3419), + [sym_match_pattern] = STATE(3611), + [sym_const_block] = STATE(2939), + [sym__pattern] = STATE(3025), + [sym_tuple_pattern] = STATE(2939), + [sym_slice_pattern] = STATE(2939), + [sym_tuple_struct_pattern] = STATE(2939), + [sym_struct_pattern] = STATE(2939), + [sym_remaining_field_pattern] = STATE(2939), + [sym_mut_pattern] = STATE(2939), + [sym_range_pattern] = STATE(2939), + [sym_ref_pattern] = STATE(2939), + [sym_captured_pattern] = STATE(2939), + [sym_reference_pattern] = STATE(2939), + [sym_or_pattern] = STATE(2939), + [sym__literal_pattern] = STATE(2366), + [sym_negative_literal] = STATE(2355), + [sym_string_literal] = STATE(2355), + [sym_raw_string_literal] = STATE(2355), + [sym_boolean_literal] = STATE(2355), + [sym_line_comment] = STATE(471), + [sym_block_comment] = STATE(471), [aux_sym_match_block_repeat1] = STATE(476), - [aux_sym_match_arm_repeat1] = STATE(759), + [aux_sym_match_arm_repeat1] = STATE(756), [sym_identifier] = ACTIONS(1604), [anon_sym_LPAREN] = ACTIONS(1606), [anon_sym_LBRACK] = ACTIONS(1608), @@ -68037,204 +67963,286 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1646), [sym_float_literal] = ACTIONS(1636), }, + [472] = { + [sym_line_comment] = STATE(472), + [sym_block_comment] = STATE(472), + [sym_identifier] = ACTIONS(1364), + [anon_sym_LPAREN] = ACTIONS(1362), + [anon_sym_LBRACK] = ACTIONS(1362), + [anon_sym_RBRACE] = ACTIONS(1362), + [anon_sym_PLUS] = ACTIONS(1364), + [anon_sym_STAR] = ACTIONS(1364), + [anon_sym_QMARK] = ACTIONS(1362), + [anon_sym_u8] = ACTIONS(1364), + [anon_sym_i8] = ACTIONS(1364), + [anon_sym_u16] = ACTIONS(1364), + [anon_sym_i16] = ACTIONS(1364), + [anon_sym_u32] = ACTIONS(1364), + [anon_sym_i32] = ACTIONS(1364), + [anon_sym_u64] = ACTIONS(1364), + [anon_sym_i64] = ACTIONS(1364), + [anon_sym_u128] = ACTIONS(1364), + [anon_sym_i128] = ACTIONS(1364), + [anon_sym_isize] = ACTIONS(1364), + [anon_sym_usize] = ACTIONS(1364), + [anon_sym_f32] = ACTIONS(1364), + [anon_sym_f64] = ACTIONS(1364), + [anon_sym_bool] = ACTIONS(1364), + [anon_sym_str] = ACTIONS(1364), + [anon_sym_char] = ACTIONS(1364), + [anon_sym_DASH] = ACTIONS(1364), + [anon_sym_SLASH] = ACTIONS(1364), + [anon_sym_PERCENT] = ACTIONS(1364), + [anon_sym_CARET] = ACTIONS(1364), + [anon_sym_AMP] = ACTIONS(1364), + [anon_sym_PIPE] = ACTIONS(1364), + [anon_sym_AMP_AMP] = ACTIONS(1362), + [anon_sym_PIPE_PIPE] = ACTIONS(1362), + [anon_sym_LT_LT] = ACTIONS(1364), + [anon_sym_GT_GT] = ACTIONS(1364), + [anon_sym_PLUS_EQ] = ACTIONS(1362), + [anon_sym_DASH_EQ] = ACTIONS(1362), + [anon_sym_STAR_EQ] = ACTIONS(1362), + [anon_sym_SLASH_EQ] = ACTIONS(1362), + [anon_sym_PERCENT_EQ] = ACTIONS(1362), + [anon_sym_CARET_EQ] = ACTIONS(1362), + [anon_sym_AMP_EQ] = ACTIONS(1362), + [anon_sym_PIPE_EQ] = ACTIONS(1362), + [anon_sym_LT_LT_EQ] = ACTIONS(1362), + [anon_sym_GT_GT_EQ] = ACTIONS(1362), + [anon_sym_EQ] = ACTIONS(1364), + [anon_sym_EQ_EQ] = ACTIONS(1362), + [anon_sym_BANG_EQ] = ACTIONS(1362), + [anon_sym_GT] = ACTIONS(1364), + [anon_sym_LT] = ACTIONS(1364), + [anon_sym_GT_EQ] = ACTIONS(1362), + [anon_sym_LT_EQ] = ACTIONS(1362), + [anon_sym__] = ACTIONS(1364), + [anon_sym_DOT] = ACTIONS(1364), + [anon_sym_DOT_DOT] = ACTIONS(1364), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1362), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1362), + [anon_sym_COMMA] = ACTIONS(1362), + [anon_sym_COLON_COLON] = ACTIONS(1362), + [anon_sym_POUND] = ACTIONS(1362), + [anon_sym_as] = ACTIONS(1364), + [anon_sym_const] = ACTIONS(1364), + [anon_sym_default] = ACTIONS(1364), + [anon_sym_union] = ACTIONS(1364), + [anon_sym_ref] = ACTIONS(1364), + [sym_mutable_specifier] = ACTIONS(1364), + [sym_integer_literal] = ACTIONS(1362), + [aux_sym_string_literal_token1] = ACTIONS(1362), + [sym_char_literal] = ACTIONS(1362), + [anon_sym_true] = ACTIONS(1364), + [anon_sym_false] = ACTIONS(1364), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1364), + [sym_super] = ACTIONS(1364), + [sym_crate] = ACTIONS(1364), + [sym_metavariable] = ACTIONS(1362), + [sym__raw_string_literal_start] = ACTIONS(1362), + [sym_float_literal] = ACTIONS(1362), + }, [473] = { [sym_line_comment] = STATE(473), [sym_block_comment] = STATE(473), - [sym_identifier] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1374), - [anon_sym_LBRACK] = ACTIONS(1374), - [anon_sym_RBRACE] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1376), - [anon_sym_QMARK] = ACTIONS(1374), - [anon_sym_u8] = ACTIONS(1376), - [anon_sym_i8] = ACTIONS(1376), - [anon_sym_u16] = ACTIONS(1376), - [anon_sym_i16] = ACTIONS(1376), - [anon_sym_u32] = ACTIONS(1376), - [anon_sym_i32] = ACTIONS(1376), - [anon_sym_u64] = ACTIONS(1376), - [anon_sym_i64] = ACTIONS(1376), - [anon_sym_u128] = ACTIONS(1376), - [anon_sym_i128] = ACTIONS(1376), - [anon_sym_isize] = ACTIONS(1376), - [anon_sym_usize] = ACTIONS(1376), - [anon_sym_f32] = ACTIONS(1376), - [anon_sym_f64] = ACTIONS(1376), - [anon_sym_bool] = ACTIONS(1376), - [anon_sym_str] = ACTIONS(1376), - [anon_sym_char] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_SLASH] = ACTIONS(1376), - [anon_sym_PERCENT] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1376), - [anon_sym_PIPE] = ACTIONS(1376), - [anon_sym_AMP_AMP] = ACTIONS(1374), - [anon_sym_PIPE_PIPE] = ACTIONS(1374), - [anon_sym_LT_LT] = ACTIONS(1376), - [anon_sym_GT_GT] = ACTIONS(1376), - [anon_sym_PLUS_EQ] = ACTIONS(1374), - [anon_sym_DASH_EQ] = ACTIONS(1374), - [anon_sym_STAR_EQ] = ACTIONS(1374), - [anon_sym_SLASH_EQ] = ACTIONS(1374), - [anon_sym_PERCENT_EQ] = ACTIONS(1374), - [anon_sym_CARET_EQ] = ACTIONS(1374), - [anon_sym_AMP_EQ] = ACTIONS(1374), - [anon_sym_PIPE_EQ] = ACTIONS(1374), - [anon_sym_LT_LT_EQ] = ACTIONS(1374), - [anon_sym_GT_GT_EQ] = ACTIONS(1374), - [anon_sym_EQ] = ACTIONS(1376), - [anon_sym_EQ_EQ] = ACTIONS(1374), - [anon_sym_BANG_EQ] = ACTIONS(1374), - [anon_sym_GT] = ACTIONS(1376), - [anon_sym_LT] = ACTIONS(1376), - [anon_sym_GT_EQ] = ACTIONS(1374), - [anon_sym_LT_EQ] = ACTIONS(1374), - [anon_sym__] = ACTIONS(1376), - [anon_sym_DOT] = ACTIONS(1376), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1374), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1374), - [anon_sym_COMMA] = ACTIONS(1374), - [anon_sym_COLON_COLON] = ACTIONS(1374), - [anon_sym_POUND] = ACTIONS(1374), - [anon_sym_as] = ACTIONS(1376), - [anon_sym_const] = ACTIONS(1376), - [anon_sym_default] = ACTIONS(1376), - [anon_sym_union] = ACTIONS(1376), - [anon_sym_ref] = ACTIONS(1376), - [sym_mutable_specifier] = ACTIONS(1376), - [sym_integer_literal] = ACTIONS(1374), - [aux_sym_string_literal_token1] = ACTIONS(1374), - [sym_char_literal] = ACTIONS(1374), - [anon_sym_true] = ACTIONS(1376), - [anon_sym_false] = ACTIONS(1376), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1376), - [sym_super] = ACTIONS(1376), - [sym_crate] = ACTIONS(1376), - [sym_metavariable] = ACTIONS(1374), - [sym__raw_string_literal_start] = ACTIONS(1374), - [sym_float_literal] = ACTIONS(1374), + [sym_identifier] = ACTIONS(1258), + [anon_sym_LPAREN] = ACTIONS(1256), + [anon_sym_LBRACK] = ACTIONS(1256), + [anon_sym_RBRACE] = ACTIONS(1256), + [anon_sym_PLUS] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1258), + [anon_sym_QMARK] = ACTIONS(1256), + [anon_sym_u8] = ACTIONS(1258), + [anon_sym_i8] = ACTIONS(1258), + [anon_sym_u16] = ACTIONS(1258), + [anon_sym_i16] = ACTIONS(1258), + [anon_sym_u32] = ACTIONS(1258), + [anon_sym_i32] = ACTIONS(1258), + [anon_sym_u64] = ACTIONS(1258), + [anon_sym_i64] = ACTIONS(1258), + [anon_sym_u128] = ACTIONS(1258), + [anon_sym_i128] = ACTIONS(1258), + [anon_sym_isize] = ACTIONS(1258), + [anon_sym_usize] = ACTIONS(1258), + [anon_sym_f32] = ACTIONS(1258), + [anon_sym_f64] = ACTIONS(1258), + [anon_sym_bool] = ACTIONS(1258), + [anon_sym_str] = ACTIONS(1258), + [anon_sym_char] = ACTIONS(1258), + [anon_sym_DASH] = ACTIONS(1258), + [anon_sym_SLASH] = ACTIONS(1258), + [anon_sym_PERCENT] = ACTIONS(1258), + [anon_sym_CARET] = ACTIONS(1258), + [anon_sym_AMP] = ACTIONS(1258), + [anon_sym_PIPE] = ACTIONS(1258), + [anon_sym_AMP_AMP] = ACTIONS(1256), + [anon_sym_PIPE_PIPE] = ACTIONS(1256), + [anon_sym_LT_LT] = ACTIONS(1258), + [anon_sym_GT_GT] = ACTIONS(1258), + [anon_sym_PLUS_EQ] = ACTIONS(1256), + [anon_sym_DASH_EQ] = ACTIONS(1256), + [anon_sym_STAR_EQ] = ACTIONS(1256), + [anon_sym_SLASH_EQ] = ACTIONS(1256), + [anon_sym_PERCENT_EQ] = ACTIONS(1256), + [anon_sym_CARET_EQ] = ACTIONS(1256), + [anon_sym_AMP_EQ] = ACTIONS(1256), + [anon_sym_PIPE_EQ] = ACTIONS(1256), + [anon_sym_LT_LT_EQ] = ACTIONS(1256), + [anon_sym_GT_GT_EQ] = ACTIONS(1256), + [anon_sym_EQ] = ACTIONS(1258), + [anon_sym_EQ_EQ] = ACTIONS(1256), + [anon_sym_BANG_EQ] = ACTIONS(1256), + [anon_sym_GT] = ACTIONS(1258), + [anon_sym_LT] = ACTIONS(1258), + [anon_sym_GT_EQ] = ACTIONS(1256), + [anon_sym_LT_EQ] = ACTIONS(1256), + [anon_sym__] = ACTIONS(1258), + [anon_sym_DOT] = ACTIONS(1258), + [anon_sym_DOT_DOT] = ACTIONS(1258), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1256), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1256), + [anon_sym_COMMA] = ACTIONS(1256), + [anon_sym_COLON_COLON] = ACTIONS(1256), + [anon_sym_POUND] = ACTIONS(1256), + [anon_sym_as] = ACTIONS(1258), + [anon_sym_const] = ACTIONS(1258), + [anon_sym_default] = ACTIONS(1258), + [anon_sym_union] = ACTIONS(1258), + [anon_sym_ref] = ACTIONS(1258), + [sym_mutable_specifier] = ACTIONS(1258), + [sym_integer_literal] = ACTIONS(1256), + [aux_sym_string_literal_token1] = ACTIONS(1256), + [sym_char_literal] = ACTIONS(1256), + [anon_sym_true] = ACTIONS(1258), + [anon_sym_false] = ACTIONS(1258), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1258), + [sym_super] = ACTIONS(1258), + [sym_crate] = ACTIONS(1258), + [sym_metavariable] = ACTIONS(1256), + [sym__raw_string_literal_start] = ACTIONS(1256), + [sym_float_literal] = ACTIONS(1256), }, [474] = { [sym_line_comment] = STATE(474), [sym_block_comment] = STATE(474), - [sym_identifier] = ACTIONS(1426), - [anon_sym_LPAREN] = ACTIONS(1424), - [anon_sym_LBRACK] = ACTIONS(1424), - [anon_sym_RBRACE] = ACTIONS(1424), - [anon_sym_PLUS] = ACTIONS(1426), - [anon_sym_STAR] = ACTIONS(1426), - [anon_sym_QMARK] = ACTIONS(1424), - [anon_sym_u8] = ACTIONS(1426), - [anon_sym_i8] = ACTIONS(1426), - [anon_sym_u16] = ACTIONS(1426), - [anon_sym_i16] = ACTIONS(1426), - [anon_sym_u32] = ACTIONS(1426), - [anon_sym_i32] = ACTIONS(1426), - [anon_sym_u64] = ACTIONS(1426), - [anon_sym_i64] = ACTIONS(1426), - [anon_sym_u128] = ACTIONS(1426), - [anon_sym_i128] = ACTIONS(1426), - [anon_sym_isize] = ACTIONS(1426), - [anon_sym_usize] = ACTIONS(1426), - [anon_sym_f32] = ACTIONS(1426), - [anon_sym_f64] = ACTIONS(1426), - [anon_sym_bool] = ACTIONS(1426), - [anon_sym_str] = ACTIONS(1426), - [anon_sym_char] = ACTIONS(1426), - [anon_sym_DASH] = ACTIONS(1426), - [anon_sym_SLASH] = ACTIONS(1426), - [anon_sym_PERCENT] = ACTIONS(1426), - [anon_sym_CARET] = ACTIONS(1426), - [anon_sym_AMP] = ACTIONS(1426), - [anon_sym_PIPE] = ACTIONS(1426), - [anon_sym_AMP_AMP] = ACTIONS(1424), - [anon_sym_PIPE_PIPE] = ACTIONS(1424), - [anon_sym_LT_LT] = ACTIONS(1426), - [anon_sym_GT_GT] = ACTIONS(1426), - [anon_sym_PLUS_EQ] = ACTIONS(1424), - [anon_sym_DASH_EQ] = ACTIONS(1424), - [anon_sym_STAR_EQ] = ACTIONS(1424), - [anon_sym_SLASH_EQ] = ACTIONS(1424), - [anon_sym_PERCENT_EQ] = ACTIONS(1424), - [anon_sym_CARET_EQ] = ACTIONS(1424), - [anon_sym_AMP_EQ] = ACTIONS(1424), - [anon_sym_PIPE_EQ] = ACTIONS(1424), - [anon_sym_LT_LT_EQ] = ACTIONS(1424), - [anon_sym_GT_GT_EQ] = ACTIONS(1424), - [anon_sym_EQ] = ACTIONS(1426), - [anon_sym_EQ_EQ] = ACTIONS(1424), - [anon_sym_BANG_EQ] = ACTIONS(1424), - [anon_sym_GT] = ACTIONS(1426), - [anon_sym_LT] = ACTIONS(1426), - [anon_sym_GT_EQ] = ACTIONS(1424), - [anon_sym_LT_EQ] = ACTIONS(1424), - [anon_sym__] = ACTIONS(1426), - [anon_sym_DOT] = ACTIONS(1426), - [anon_sym_DOT_DOT] = ACTIONS(1426), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1424), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1424), - [anon_sym_COMMA] = ACTIONS(1424), - [anon_sym_COLON_COLON] = ACTIONS(1424), - [anon_sym_POUND] = ACTIONS(1424), - [anon_sym_as] = ACTIONS(1426), - [anon_sym_const] = ACTIONS(1426), - [anon_sym_default] = ACTIONS(1426), - [anon_sym_union] = ACTIONS(1426), - [anon_sym_ref] = ACTIONS(1426), - [sym_mutable_specifier] = ACTIONS(1426), - [sym_integer_literal] = ACTIONS(1424), - [aux_sym_string_literal_token1] = ACTIONS(1424), - [sym_char_literal] = ACTIONS(1424), - [anon_sym_true] = ACTIONS(1426), - [anon_sym_false] = ACTIONS(1426), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1426), - [sym_super] = ACTIONS(1426), - [sym_crate] = ACTIONS(1426), - [sym_metavariable] = ACTIONS(1424), - [sym__raw_string_literal_start] = ACTIONS(1424), - [sym_float_literal] = ACTIONS(1424), + [sym_identifier] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1426), + [anon_sym_LBRACK] = ACTIONS(1426), + [anon_sym_RBRACE] = ACTIONS(1426), + [anon_sym_PLUS] = ACTIONS(1428), + [anon_sym_STAR] = ACTIONS(1428), + [anon_sym_QMARK] = ACTIONS(1426), + [anon_sym_u8] = ACTIONS(1428), + [anon_sym_i8] = ACTIONS(1428), + [anon_sym_u16] = ACTIONS(1428), + [anon_sym_i16] = ACTIONS(1428), + [anon_sym_u32] = ACTIONS(1428), + [anon_sym_i32] = ACTIONS(1428), + [anon_sym_u64] = ACTIONS(1428), + [anon_sym_i64] = ACTIONS(1428), + [anon_sym_u128] = ACTIONS(1428), + [anon_sym_i128] = ACTIONS(1428), + [anon_sym_isize] = ACTIONS(1428), + [anon_sym_usize] = ACTIONS(1428), + [anon_sym_f32] = ACTIONS(1428), + [anon_sym_f64] = ACTIONS(1428), + [anon_sym_bool] = ACTIONS(1428), + [anon_sym_str] = ACTIONS(1428), + [anon_sym_char] = ACTIONS(1428), + [anon_sym_DASH] = ACTIONS(1428), + [anon_sym_SLASH] = ACTIONS(1428), + [anon_sym_PERCENT] = ACTIONS(1428), + [anon_sym_CARET] = ACTIONS(1428), + [anon_sym_AMP] = ACTIONS(1428), + [anon_sym_PIPE] = ACTIONS(1428), + [anon_sym_AMP_AMP] = ACTIONS(1426), + [anon_sym_PIPE_PIPE] = ACTIONS(1426), + [anon_sym_LT_LT] = ACTIONS(1428), + [anon_sym_GT_GT] = ACTIONS(1428), + [anon_sym_PLUS_EQ] = ACTIONS(1426), + [anon_sym_DASH_EQ] = ACTIONS(1426), + [anon_sym_STAR_EQ] = ACTIONS(1426), + [anon_sym_SLASH_EQ] = ACTIONS(1426), + [anon_sym_PERCENT_EQ] = ACTIONS(1426), + [anon_sym_CARET_EQ] = ACTIONS(1426), + [anon_sym_AMP_EQ] = ACTIONS(1426), + [anon_sym_PIPE_EQ] = ACTIONS(1426), + [anon_sym_LT_LT_EQ] = ACTIONS(1426), + [anon_sym_GT_GT_EQ] = ACTIONS(1426), + [anon_sym_EQ] = ACTIONS(1428), + [anon_sym_EQ_EQ] = ACTIONS(1426), + [anon_sym_BANG_EQ] = ACTIONS(1426), + [anon_sym_GT] = ACTIONS(1428), + [anon_sym_LT] = ACTIONS(1428), + [anon_sym_GT_EQ] = ACTIONS(1426), + [anon_sym_LT_EQ] = ACTIONS(1426), + [anon_sym__] = ACTIONS(1428), + [anon_sym_DOT] = ACTIONS(1428), + [anon_sym_DOT_DOT] = ACTIONS(1428), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1426), + [anon_sym_COMMA] = ACTIONS(1426), + [anon_sym_COLON_COLON] = ACTIONS(1426), + [anon_sym_POUND] = ACTIONS(1426), + [anon_sym_as] = ACTIONS(1428), + [anon_sym_const] = ACTIONS(1428), + [anon_sym_default] = ACTIONS(1428), + [anon_sym_union] = ACTIONS(1428), + [anon_sym_ref] = ACTIONS(1428), + [sym_mutable_specifier] = ACTIONS(1428), + [sym_integer_literal] = ACTIONS(1426), + [aux_sym_string_literal_token1] = ACTIONS(1426), + [sym_char_literal] = ACTIONS(1426), + [anon_sym_true] = ACTIONS(1428), + [anon_sym_false] = ACTIONS(1428), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1428), + [sym_super] = ACTIONS(1428), + [sym_crate] = ACTIONS(1428), + [sym_metavariable] = ACTIONS(1426), + [sym__raw_string_literal_start] = ACTIONS(1426), + [sym_float_literal] = ACTIONS(1426), }, [475] = { - [sym_attribute_item] = STATE(1479), - [sym_inner_attribute_item] = STATE(1479), - [sym_bracketed_type] = STATE(3523), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3262), - [sym_macro_invocation] = STATE(2877), - [sym_scoped_identifier] = STATE(2130), - [sym_scoped_type_identifier] = STATE(2908), - [sym_match_arm] = STATE(1471), - [sym_last_match_arm] = STATE(3363), - [sym_match_pattern] = STATE(3345), - [sym_const_block] = STATE(2877), - [sym__pattern] = STATE(2919), - [sym_tuple_pattern] = STATE(2877), - [sym_slice_pattern] = STATE(2877), - [sym_tuple_struct_pattern] = STATE(2877), - [sym_struct_pattern] = STATE(2877), - [sym_remaining_field_pattern] = STATE(2877), - [sym_mut_pattern] = STATE(2877), - [sym_range_pattern] = STATE(2877), - [sym_ref_pattern] = STATE(2877), - [sym_captured_pattern] = STATE(2877), - [sym_reference_pattern] = STATE(2877), - [sym_or_pattern] = STATE(2877), - [sym__literal_pattern] = STATE(2387), - [sym_negative_literal] = STATE(2299), - [sym_string_literal] = STATE(2299), - [sym_raw_string_literal] = STATE(2299), - [sym_boolean_literal] = STATE(2299), + [sym_attribute_item] = STATE(1474), + [sym_inner_attribute_item] = STATE(1474), + [sym_bracketed_type] = STATE(3531), + [sym_generic_type] = STATE(3487), + [sym_generic_type_with_turbofish] = STATE(3136), + [sym_macro_invocation] = STATE(2939), + [sym_scoped_identifier] = STATE(2152), + [sym_scoped_type_identifier] = STATE(2744), + [sym_match_arm] = STATE(1476), + [sym_last_match_arm] = STATE(3401), + [sym_match_pattern] = STATE(3611), + [sym_const_block] = STATE(2939), + [sym__pattern] = STATE(3025), + [sym_tuple_pattern] = STATE(2939), + [sym_slice_pattern] = STATE(2939), + [sym_tuple_struct_pattern] = STATE(2939), + [sym_struct_pattern] = STATE(2939), + [sym_remaining_field_pattern] = STATE(2939), + [sym_mut_pattern] = STATE(2939), + [sym_range_pattern] = STATE(2939), + [sym_ref_pattern] = STATE(2939), + [sym_captured_pattern] = STATE(2939), + [sym_reference_pattern] = STATE(2939), + [sym_or_pattern] = STATE(2939), + [sym__literal_pattern] = STATE(2366), + [sym_negative_literal] = STATE(2355), + [sym_string_literal] = STATE(2355), + [sym_raw_string_literal] = STATE(2355), + [sym_boolean_literal] = STATE(2355), [sym_line_comment] = STATE(475), [sym_block_comment] = STATE(475), - [aux_sym_match_block_repeat1] = STATE(721), - [aux_sym_match_arm_repeat1] = STATE(759), + [aux_sym_match_block_repeat1] = STATE(506), + [aux_sym_match_arm_repeat1] = STATE(756), [sym_identifier] = ACTIONS(1604), [anon_sym_LPAREN] = ACTIONS(1606), [anon_sym_LBRACK] = ACTIONS(1608), @@ -68283,39 +68291,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1636), }, [476] = { - [sym_attribute_item] = STATE(1479), - [sym_inner_attribute_item] = STATE(1479), - [sym_bracketed_type] = STATE(3523), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3262), - [sym_macro_invocation] = STATE(2877), - [sym_scoped_identifier] = STATE(2130), - [sym_scoped_type_identifier] = STATE(2908), - [sym_match_arm] = STATE(1471), - [sym_last_match_arm] = STATE(3477), - [sym_match_pattern] = STATE(3345), - [sym_const_block] = STATE(2877), - [sym__pattern] = STATE(2919), - [sym_tuple_pattern] = STATE(2877), - [sym_slice_pattern] = STATE(2877), - [sym_tuple_struct_pattern] = STATE(2877), - [sym_struct_pattern] = STATE(2877), - [sym_remaining_field_pattern] = STATE(2877), - [sym_mut_pattern] = STATE(2877), - [sym_range_pattern] = STATE(2877), - [sym_ref_pattern] = STATE(2877), - [sym_captured_pattern] = STATE(2877), - [sym_reference_pattern] = STATE(2877), - [sym_or_pattern] = STATE(2877), - [sym__literal_pattern] = STATE(2387), - [sym_negative_literal] = STATE(2299), - [sym_string_literal] = STATE(2299), - [sym_raw_string_literal] = STATE(2299), - [sym_boolean_literal] = STATE(2299), + [sym_attribute_item] = STATE(1474), + [sym_inner_attribute_item] = STATE(1474), + [sym_bracketed_type] = STATE(3531), + [sym_generic_type] = STATE(3487), + [sym_generic_type_with_turbofish] = STATE(3136), + [sym_macro_invocation] = STATE(2939), + [sym_scoped_identifier] = STATE(2152), + [sym_scoped_type_identifier] = STATE(2744), + [sym_match_arm] = STATE(1476), + [sym_last_match_arm] = STATE(3418), + [sym_match_pattern] = STATE(3611), + [sym_const_block] = STATE(2939), + [sym__pattern] = STATE(3025), + [sym_tuple_pattern] = STATE(2939), + [sym_slice_pattern] = STATE(2939), + [sym_tuple_struct_pattern] = STATE(2939), + [sym_struct_pattern] = STATE(2939), + [sym_remaining_field_pattern] = STATE(2939), + [sym_mut_pattern] = STATE(2939), + [sym_range_pattern] = STATE(2939), + [sym_ref_pattern] = STATE(2939), + [sym_captured_pattern] = STATE(2939), + [sym_reference_pattern] = STATE(2939), + [sym_or_pattern] = STATE(2939), + [sym__literal_pattern] = STATE(2366), + [sym_negative_literal] = STATE(2355), + [sym_string_literal] = STATE(2355), + [sym_raw_string_literal] = STATE(2355), + [sym_boolean_literal] = STATE(2355), [sym_line_comment] = STATE(476), [sym_block_comment] = STATE(476), - [aux_sym_match_block_repeat1] = STATE(721), - [aux_sym_match_arm_repeat1] = STATE(759), + [aux_sym_match_block_repeat1] = STATE(506), + [aux_sym_match_arm_repeat1] = STATE(756), [sym_identifier] = ACTIONS(1604), [anon_sym_LPAREN] = ACTIONS(1606), [anon_sym_LBRACK] = ACTIONS(1608), @@ -68364,39 +68372,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1636), }, [477] = { - [sym_attribute_item] = STATE(1479), - [sym_inner_attribute_item] = STATE(1479), - [sym_bracketed_type] = STATE(3523), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3262), - [sym_macro_invocation] = STATE(2877), - [sym_scoped_identifier] = STATE(2130), - [sym_scoped_type_identifier] = STATE(2908), - [sym_match_arm] = STATE(1471), - [sym_last_match_arm] = STATE(3364), - [sym_match_pattern] = STATE(3345), - [sym_const_block] = STATE(2877), - [sym__pattern] = STATE(2919), - [sym_tuple_pattern] = STATE(2877), - [sym_slice_pattern] = STATE(2877), - [sym_tuple_struct_pattern] = STATE(2877), - [sym_struct_pattern] = STATE(2877), - [sym_remaining_field_pattern] = STATE(2877), - [sym_mut_pattern] = STATE(2877), - [sym_range_pattern] = STATE(2877), - [sym_ref_pattern] = STATE(2877), - [sym_captured_pattern] = STATE(2877), - [sym_reference_pattern] = STATE(2877), - [sym_or_pattern] = STATE(2877), - [sym__literal_pattern] = STATE(2387), - [sym_negative_literal] = STATE(2299), - [sym_string_literal] = STATE(2299), - [sym_raw_string_literal] = STATE(2299), - [sym_boolean_literal] = STATE(2299), + [sym_attribute_item] = STATE(1474), + [sym_inner_attribute_item] = STATE(1474), + [sym_bracketed_type] = STATE(3531), + [sym_generic_type] = STATE(3487), + [sym_generic_type_with_turbofish] = STATE(3136), + [sym_macro_invocation] = STATE(2939), + [sym_scoped_identifier] = STATE(2152), + [sym_scoped_type_identifier] = STATE(2744), + [sym_match_arm] = STATE(1476), + [sym_last_match_arm] = STATE(3454), + [sym_match_pattern] = STATE(3611), + [sym_const_block] = STATE(2939), + [sym__pattern] = STATE(3025), + [sym_tuple_pattern] = STATE(2939), + [sym_slice_pattern] = STATE(2939), + [sym_tuple_struct_pattern] = STATE(2939), + [sym_struct_pattern] = STATE(2939), + [sym_remaining_field_pattern] = STATE(2939), + [sym_mut_pattern] = STATE(2939), + [sym_range_pattern] = STATE(2939), + [sym_ref_pattern] = STATE(2939), + [sym_captured_pattern] = STATE(2939), + [sym_reference_pattern] = STATE(2939), + [sym_or_pattern] = STATE(2939), + [sym__literal_pattern] = STATE(2366), + [sym_negative_literal] = STATE(2355), + [sym_string_literal] = STATE(2355), + [sym_raw_string_literal] = STATE(2355), + [sym_boolean_literal] = STATE(2355), [sym_line_comment] = STATE(477), [sym_block_comment] = STATE(477), - [aux_sym_match_block_repeat1] = STATE(721), - [aux_sym_match_arm_repeat1] = STATE(759), + [aux_sym_match_block_repeat1] = STATE(506), + [aux_sym_match_arm_repeat1] = STATE(756), [sym_identifier] = ACTIONS(1604), [anon_sym_LPAREN] = ACTIONS(1606), [anon_sym_LBRACK] = ACTIONS(1608), @@ -68445,39 +68453,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1636), }, [478] = { - [sym_attribute_item] = STATE(1479), - [sym_inner_attribute_item] = STATE(1479), - [sym_bracketed_type] = STATE(3523), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3262), - [sym_macro_invocation] = STATE(2877), - [sym_scoped_identifier] = STATE(2130), - [sym_scoped_type_identifier] = STATE(2908), - [sym_match_arm] = STATE(1471), - [sym_last_match_arm] = STATE(3405), - [sym_match_pattern] = STATE(3345), - [sym_const_block] = STATE(2877), - [sym__pattern] = STATE(2919), - [sym_tuple_pattern] = STATE(2877), - [sym_slice_pattern] = STATE(2877), - [sym_tuple_struct_pattern] = STATE(2877), - [sym_struct_pattern] = STATE(2877), - [sym_remaining_field_pattern] = STATE(2877), - [sym_mut_pattern] = STATE(2877), - [sym_range_pattern] = STATE(2877), - [sym_ref_pattern] = STATE(2877), - [sym_captured_pattern] = STATE(2877), - [sym_reference_pattern] = STATE(2877), - [sym_or_pattern] = STATE(2877), - [sym__literal_pattern] = STATE(2387), - [sym_negative_literal] = STATE(2299), - [sym_string_literal] = STATE(2299), - [sym_raw_string_literal] = STATE(2299), - [sym_boolean_literal] = STATE(2299), + [sym_attribute_item] = STATE(1474), + [sym_inner_attribute_item] = STATE(1474), + [sym_bracketed_type] = STATE(3531), + [sym_generic_type] = STATE(3487), + [sym_generic_type_with_turbofish] = STATE(3136), + [sym_macro_invocation] = STATE(2939), + [sym_scoped_identifier] = STATE(2152), + [sym_scoped_type_identifier] = STATE(2744), + [sym_match_arm] = STATE(1476), + [sym_last_match_arm] = STATE(3466), + [sym_match_pattern] = STATE(3611), + [sym_const_block] = STATE(2939), + [sym__pattern] = STATE(3025), + [sym_tuple_pattern] = STATE(2939), + [sym_slice_pattern] = STATE(2939), + [sym_tuple_struct_pattern] = STATE(2939), + [sym_struct_pattern] = STATE(2939), + [sym_remaining_field_pattern] = STATE(2939), + [sym_mut_pattern] = STATE(2939), + [sym_range_pattern] = STATE(2939), + [sym_ref_pattern] = STATE(2939), + [sym_captured_pattern] = STATE(2939), + [sym_reference_pattern] = STATE(2939), + [sym_or_pattern] = STATE(2939), + [sym__literal_pattern] = STATE(2366), + [sym_negative_literal] = STATE(2355), + [sym_string_literal] = STATE(2355), + [sym_raw_string_literal] = STATE(2355), + [sym_boolean_literal] = STATE(2355), [sym_line_comment] = STATE(478), [sym_block_comment] = STATE(478), - [aux_sym_match_block_repeat1] = STATE(721), - [aux_sym_match_arm_repeat1] = STATE(759), + [aux_sym_match_block_repeat1] = STATE(506), + [aux_sym_match_arm_repeat1] = STATE(756), [sym_identifier] = ACTIONS(1604), [anon_sym_LPAREN] = ACTIONS(1606), [anon_sym_LBRACK] = ACTIONS(1608), @@ -70686,3137 +70694,1801 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1766), }, [506] = { + [sym_attribute_item] = STATE(1474), + [sym_inner_attribute_item] = STATE(1474), + [sym_bracketed_type] = STATE(3531), + [sym_generic_type] = STATE(3487), + [sym_generic_type_with_turbofish] = STATE(3136), + [sym_macro_invocation] = STATE(2939), + [sym_scoped_identifier] = STATE(2152), + [sym_scoped_type_identifier] = STATE(2744), + [sym_match_arm] = STATE(1476), + [sym_match_pattern] = STATE(3436), + [sym_const_block] = STATE(2939), + [sym__pattern] = STATE(3025), + [sym_tuple_pattern] = STATE(2939), + [sym_slice_pattern] = STATE(2939), + [sym_tuple_struct_pattern] = STATE(2939), + [sym_struct_pattern] = STATE(2939), + [sym_remaining_field_pattern] = STATE(2939), + [sym_mut_pattern] = STATE(2939), + [sym_range_pattern] = STATE(2939), + [sym_ref_pattern] = STATE(2939), + [sym_captured_pattern] = STATE(2939), + [sym_reference_pattern] = STATE(2939), + [sym_or_pattern] = STATE(2939), + [sym__literal_pattern] = STATE(2366), + [sym_negative_literal] = STATE(2355), + [sym_string_literal] = STATE(2355), + [sym_raw_string_literal] = STATE(2355), + [sym_boolean_literal] = STATE(2355), [sym_line_comment] = STATE(506), [sym_block_comment] = STATE(506), - [ts_builtin_sym_end] = ACTIONS(1770), - [sym_identifier] = ACTIONS(1772), - [anon_sym_SEMI] = ACTIONS(1770), - [anon_sym_macro_rules_BANG] = ACTIONS(1770), - [anon_sym_LPAREN] = ACTIONS(1770), - [anon_sym_LBRACK] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1770), - [anon_sym_RBRACE] = ACTIONS(1770), - [anon_sym_STAR] = ACTIONS(1770), - [anon_sym_u8] = ACTIONS(1772), - [anon_sym_i8] = ACTIONS(1772), - [anon_sym_u16] = ACTIONS(1772), - [anon_sym_i16] = ACTIONS(1772), - [anon_sym_u32] = ACTIONS(1772), - [anon_sym_i32] = ACTIONS(1772), - [anon_sym_u64] = ACTIONS(1772), - [anon_sym_i64] = ACTIONS(1772), - [anon_sym_u128] = ACTIONS(1772), - [anon_sym_i128] = ACTIONS(1772), - [anon_sym_isize] = ACTIONS(1772), - [anon_sym_usize] = ACTIONS(1772), - [anon_sym_f32] = ACTIONS(1772), - [anon_sym_f64] = ACTIONS(1772), - [anon_sym_bool] = ACTIONS(1772), - [anon_sym_str] = ACTIONS(1772), - [anon_sym_char] = ACTIONS(1772), - [anon_sym_DASH] = ACTIONS(1770), - [anon_sym_BANG] = ACTIONS(1770), - [anon_sym_AMP] = ACTIONS(1770), - [anon_sym_PIPE] = ACTIONS(1770), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_DOT_DOT] = ACTIONS(1770), - [anon_sym_COLON_COLON] = ACTIONS(1770), - [anon_sym_POUND] = ACTIONS(1770), - [anon_sym_SQUOTE] = ACTIONS(1772), - [anon_sym_async] = ACTIONS(1772), - [anon_sym_break] = ACTIONS(1772), - [anon_sym_const] = ACTIONS(1772), - [anon_sym_continue] = ACTIONS(1772), - [anon_sym_default] = ACTIONS(1772), - [anon_sym_enum] = ACTIONS(1772), - [anon_sym_fn] = ACTIONS(1772), - [anon_sym_for] = ACTIONS(1772), - [anon_sym_if] = ACTIONS(1772), - [anon_sym_impl] = ACTIONS(1772), - [anon_sym_let] = ACTIONS(1772), - [anon_sym_loop] = ACTIONS(1772), - [anon_sym_match] = ACTIONS(1772), - [anon_sym_mod] = ACTIONS(1772), - [anon_sym_pub] = ACTIONS(1772), - [anon_sym_return] = ACTIONS(1772), - [anon_sym_static] = ACTIONS(1772), - [anon_sym_struct] = ACTIONS(1772), - [anon_sym_trait] = ACTIONS(1772), - [anon_sym_type] = ACTIONS(1772), - [anon_sym_union] = ACTIONS(1772), - [anon_sym_unsafe] = ACTIONS(1772), - [anon_sym_use] = ACTIONS(1772), - [anon_sym_while] = ACTIONS(1772), - [anon_sym_extern] = ACTIONS(1772), - [anon_sym_yield] = ACTIONS(1772), - [anon_sym_move] = ACTIONS(1772), - [anon_sym_try] = ACTIONS(1772), - [sym_integer_literal] = ACTIONS(1770), - [aux_sym_string_literal_token1] = ACTIONS(1770), - [sym_char_literal] = ACTIONS(1770), - [anon_sym_true] = ACTIONS(1772), - [anon_sym_false] = ACTIONS(1772), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1772), - [sym_super] = ACTIONS(1772), - [sym_crate] = ACTIONS(1772), - [sym_metavariable] = ACTIONS(1770), - [sym__raw_string_literal_start] = ACTIONS(1770), - [sym_float_literal] = ACTIONS(1770), + [aux_sym_match_block_repeat1] = STATE(506), + [aux_sym_match_arm_repeat1] = STATE(757), + [sym_identifier] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1773), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_u8] = ACTIONS(1779), + [anon_sym_i8] = ACTIONS(1779), + [anon_sym_u16] = ACTIONS(1779), + [anon_sym_i16] = ACTIONS(1779), + [anon_sym_u32] = ACTIONS(1779), + [anon_sym_i32] = ACTIONS(1779), + [anon_sym_u64] = ACTIONS(1779), + [anon_sym_i64] = ACTIONS(1779), + [anon_sym_u128] = ACTIONS(1779), + [anon_sym_i128] = ACTIONS(1779), + [anon_sym_isize] = ACTIONS(1779), + [anon_sym_usize] = ACTIONS(1779), + [anon_sym_f32] = ACTIONS(1779), + [anon_sym_f64] = ACTIONS(1779), + [anon_sym_bool] = ACTIONS(1779), + [anon_sym_str] = ACTIONS(1779), + [anon_sym_char] = ACTIONS(1779), + [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_AMP] = ACTIONS(1785), + [anon_sym_PIPE] = ACTIONS(1788), + [anon_sym_LT] = ACTIONS(1791), + [anon_sym__] = ACTIONS(1794), + [anon_sym_DOT_DOT] = ACTIONS(1797), + [anon_sym_COLON_COLON] = ACTIONS(1800), + [anon_sym_POUND] = ACTIONS(1803), + [anon_sym_const] = ACTIONS(1806), + [anon_sym_default] = ACTIONS(1809), + [anon_sym_union] = ACTIONS(1809), + [anon_sym_ref] = ACTIONS(1812), + [sym_mutable_specifier] = ACTIONS(1815), + [sym_integer_literal] = ACTIONS(1818), + [aux_sym_string_literal_token1] = ACTIONS(1821), + [sym_char_literal] = ACTIONS(1818), + [anon_sym_true] = ACTIONS(1824), + [anon_sym_false] = ACTIONS(1824), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1827), + [sym_super] = ACTIONS(1827), + [sym_crate] = ACTIONS(1827), + [sym_metavariable] = ACTIONS(1830), + [sym__raw_string_literal_start] = ACTIONS(1833), + [sym_float_literal] = ACTIONS(1818), }, [507] = { [sym_line_comment] = STATE(507), [sym_block_comment] = STATE(507), - [ts_builtin_sym_end] = ACTIONS(1774), - [sym_identifier] = ACTIONS(1776), - [anon_sym_SEMI] = ACTIONS(1774), - [anon_sym_macro_rules_BANG] = ACTIONS(1774), - [anon_sym_LPAREN] = ACTIONS(1774), - [anon_sym_LBRACK] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1774), - [anon_sym_RBRACE] = ACTIONS(1774), - [anon_sym_STAR] = ACTIONS(1774), - [anon_sym_u8] = ACTIONS(1776), - [anon_sym_i8] = ACTIONS(1776), - [anon_sym_u16] = ACTIONS(1776), - [anon_sym_i16] = ACTIONS(1776), - [anon_sym_u32] = ACTIONS(1776), - [anon_sym_i32] = ACTIONS(1776), - [anon_sym_u64] = ACTIONS(1776), - [anon_sym_i64] = ACTIONS(1776), - [anon_sym_u128] = ACTIONS(1776), - [anon_sym_i128] = ACTIONS(1776), - [anon_sym_isize] = ACTIONS(1776), - [anon_sym_usize] = ACTIONS(1776), - [anon_sym_f32] = ACTIONS(1776), - [anon_sym_f64] = ACTIONS(1776), - [anon_sym_bool] = ACTIONS(1776), - [anon_sym_str] = ACTIONS(1776), - [anon_sym_char] = ACTIONS(1776), - [anon_sym_DASH] = ACTIONS(1774), - [anon_sym_BANG] = ACTIONS(1774), - [anon_sym_AMP] = ACTIONS(1774), - [anon_sym_PIPE] = ACTIONS(1774), - [anon_sym_LT] = ACTIONS(1774), - [anon_sym_DOT_DOT] = ACTIONS(1774), - [anon_sym_COLON_COLON] = ACTIONS(1774), - [anon_sym_POUND] = ACTIONS(1774), - [anon_sym_SQUOTE] = ACTIONS(1776), - [anon_sym_async] = ACTIONS(1776), - [anon_sym_break] = ACTIONS(1776), - [anon_sym_const] = ACTIONS(1776), - [anon_sym_continue] = ACTIONS(1776), - [anon_sym_default] = ACTIONS(1776), - [anon_sym_enum] = ACTIONS(1776), - [anon_sym_fn] = ACTIONS(1776), - [anon_sym_for] = ACTIONS(1776), - [anon_sym_if] = ACTIONS(1776), - [anon_sym_impl] = ACTIONS(1776), - [anon_sym_let] = ACTIONS(1776), - [anon_sym_loop] = ACTIONS(1776), - [anon_sym_match] = ACTIONS(1776), - [anon_sym_mod] = ACTIONS(1776), - [anon_sym_pub] = ACTIONS(1776), - [anon_sym_return] = ACTIONS(1776), - [anon_sym_static] = ACTIONS(1776), - [anon_sym_struct] = ACTIONS(1776), - [anon_sym_trait] = ACTIONS(1776), - [anon_sym_type] = ACTIONS(1776), - [anon_sym_union] = ACTIONS(1776), - [anon_sym_unsafe] = ACTIONS(1776), - [anon_sym_use] = ACTIONS(1776), - [anon_sym_while] = ACTIONS(1776), - [anon_sym_extern] = ACTIONS(1776), - [anon_sym_yield] = ACTIONS(1776), - [anon_sym_move] = ACTIONS(1776), - [anon_sym_try] = ACTIONS(1776), - [sym_integer_literal] = ACTIONS(1774), - [aux_sym_string_literal_token1] = ACTIONS(1774), - [sym_char_literal] = ACTIONS(1774), - [anon_sym_true] = ACTIONS(1776), - [anon_sym_false] = ACTIONS(1776), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1776), - [sym_super] = ACTIONS(1776), - [sym_crate] = ACTIONS(1776), - [sym_metavariable] = ACTIONS(1774), - [sym__raw_string_literal_start] = ACTIONS(1774), - [sym_float_literal] = ACTIONS(1774), + [ts_builtin_sym_end] = ACTIONS(1836), + [sym_identifier] = ACTIONS(1838), + [anon_sym_SEMI] = ACTIONS(1836), + [anon_sym_macro_rules_BANG] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(1836), + [anon_sym_LBRACK] = ACTIONS(1836), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(1836), + [anon_sym_STAR] = ACTIONS(1836), + [anon_sym_u8] = ACTIONS(1838), + [anon_sym_i8] = ACTIONS(1838), + [anon_sym_u16] = ACTIONS(1838), + [anon_sym_i16] = ACTIONS(1838), + [anon_sym_u32] = ACTIONS(1838), + [anon_sym_i32] = ACTIONS(1838), + [anon_sym_u64] = ACTIONS(1838), + [anon_sym_i64] = ACTIONS(1838), + [anon_sym_u128] = ACTIONS(1838), + [anon_sym_i128] = ACTIONS(1838), + [anon_sym_isize] = ACTIONS(1838), + [anon_sym_usize] = ACTIONS(1838), + [anon_sym_f32] = ACTIONS(1838), + [anon_sym_f64] = ACTIONS(1838), + [anon_sym_bool] = ACTIONS(1838), + [anon_sym_str] = ACTIONS(1838), + [anon_sym_char] = ACTIONS(1838), + [anon_sym_DASH] = ACTIONS(1836), + [anon_sym_BANG] = ACTIONS(1836), + [anon_sym_AMP] = ACTIONS(1836), + [anon_sym_PIPE] = ACTIONS(1836), + [anon_sym_LT] = ACTIONS(1836), + [anon_sym_DOT_DOT] = ACTIONS(1836), + [anon_sym_COLON_COLON] = ACTIONS(1836), + [anon_sym_POUND] = ACTIONS(1836), + [anon_sym_SQUOTE] = ACTIONS(1838), + [anon_sym_async] = ACTIONS(1838), + [anon_sym_break] = ACTIONS(1838), + [anon_sym_const] = ACTIONS(1838), + [anon_sym_continue] = ACTIONS(1838), + [anon_sym_default] = ACTIONS(1838), + [anon_sym_enum] = ACTIONS(1838), + [anon_sym_fn] = ACTIONS(1838), + [anon_sym_for] = ACTIONS(1838), + [anon_sym_if] = ACTIONS(1838), + [anon_sym_impl] = ACTIONS(1838), + [anon_sym_let] = ACTIONS(1838), + [anon_sym_loop] = ACTIONS(1838), + [anon_sym_match] = ACTIONS(1838), + [anon_sym_mod] = ACTIONS(1838), + [anon_sym_pub] = ACTIONS(1838), + [anon_sym_return] = ACTIONS(1838), + [anon_sym_static] = ACTIONS(1838), + [anon_sym_struct] = ACTIONS(1838), + [anon_sym_trait] = ACTIONS(1838), + [anon_sym_type] = ACTIONS(1838), + [anon_sym_union] = ACTIONS(1838), + [anon_sym_unsafe] = ACTIONS(1838), + [anon_sym_use] = ACTIONS(1838), + [anon_sym_while] = ACTIONS(1838), + [anon_sym_extern] = ACTIONS(1838), + [anon_sym_yield] = ACTIONS(1838), + [anon_sym_move] = ACTIONS(1838), + [anon_sym_try] = ACTIONS(1838), + [sym_integer_literal] = ACTIONS(1836), + [aux_sym_string_literal_token1] = ACTIONS(1836), + [sym_char_literal] = ACTIONS(1836), + [anon_sym_true] = ACTIONS(1838), + [anon_sym_false] = ACTIONS(1838), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1838), + [sym_super] = ACTIONS(1838), + [sym_crate] = ACTIONS(1838), + [sym_metavariable] = ACTIONS(1836), + [sym__raw_string_literal_start] = ACTIONS(1836), + [sym_float_literal] = ACTIONS(1836), }, [508] = { [sym_line_comment] = STATE(508), [sym_block_comment] = STATE(508), - [ts_builtin_sym_end] = ACTIONS(1778), - [sym_identifier] = ACTIONS(1780), - [anon_sym_SEMI] = ACTIONS(1778), - [anon_sym_macro_rules_BANG] = ACTIONS(1778), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_LBRACK] = ACTIONS(1778), - [anon_sym_LBRACE] = ACTIONS(1778), - [anon_sym_RBRACE] = ACTIONS(1778), - [anon_sym_STAR] = ACTIONS(1778), - [anon_sym_u8] = ACTIONS(1780), - [anon_sym_i8] = ACTIONS(1780), - [anon_sym_u16] = ACTIONS(1780), - [anon_sym_i16] = ACTIONS(1780), - [anon_sym_u32] = ACTIONS(1780), - [anon_sym_i32] = ACTIONS(1780), - [anon_sym_u64] = ACTIONS(1780), - [anon_sym_i64] = ACTIONS(1780), - [anon_sym_u128] = ACTIONS(1780), - [anon_sym_i128] = ACTIONS(1780), - [anon_sym_isize] = ACTIONS(1780), - [anon_sym_usize] = ACTIONS(1780), - [anon_sym_f32] = ACTIONS(1780), - [anon_sym_f64] = ACTIONS(1780), - [anon_sym_bool] = ACTIONS(1780), - [anon_sym_str] = ACTIONS(1780), - [anon_sym_char] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1778), - [anon_sym_BANG] = ACTIONS(1778), - [anon_sym_AMP] = ACTIONS(1778), - [anon_sym_PIPE] = ACTIONS(1778), - [anon_sym_LT] = ACTIONS(1778), - [anon_sym_DOT_DOT] = ACTIONS(1778), - [anon_sym_COLON_COLON] = ACTIONS(1778), - [anon_sym_POUND] = ACTIONS(1778), - [anon_sym_SQUOTE] = ACTIONS(1780), - [anon_sym_async] = ACTIONS(1780), - [anon_sym_break] = ACTIONS(1780), - [anon_sym_const] = ACTIONS(1780), - [anon_sym_continue] = ACTIONS(1780), - [anon_sym_default] = ACTIONS(1780), - [anon_sym_enum] = ACTIONS(1780), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_for] = ACTIONS(1780), - [anon_sym_if] = ACTIONS(1780), - [anon_sym_impl] = ACTIONS(1780), - [anon_sym_let] = ACTIONS(1780), - [anon_sym_loop] = ACTIONS(1780), - [anon_sym_match] = ACTIONS(1780), - [anon_sym_mod] = ACTIONS(1780), - [anon_sym_pub] = ACTIONS(1780), - [anon_sym_return] = ACTIONS(1780), - [anon_sym_static] = ACTIONS(1780), - [anon_sym_struct] = ACTIONS(1780), - [anon_sym_trait] = ACTIONS(1780), - [anon_sym_type] = ACTIONS(1780), - [anon_sym_union] = ACTIONS(1780), - [anon_sym_unsafe] = ACTIONS(1780), - [anon_sym_use] = ACTIONS(1780), - [anon_sym_while] = ACTIONS(1780), - [anon_sym_extern] = ACTIONS(1780), - [anon_sym_yield] = ACTIONS(1780), - [anon_sym_move] = ACTIONS(1780), - [anon_sym_try] = ACTIONS(1780), - [sym_integer_literal] = ACTIONS(1778), - [aux_sym_string_literal_token1] = ACTIONS(1778), - [sym_char_literal] = ACTIONS(1778), - [anon_sym_true] = ACTIONS(1780), - [anon_sym_false] = ACTIONS(1780), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1780), - [sym_super] = ACTIONS(1780), - [sym_crate] = ACTIONS(1780), - [sym_metavariable] = ACTIONS(1778), - [sym__raw_string_literal_start] = ACTIONS(1778), - [sym_float_literal] = ACTIONS(1778), + [ts_builtin_sym_end] = ACTIONS(1840), + [sym_identifier] = ACTIONS(1842), + [anon_sym_SEMI] = ACTIONS(1840), + [anon_sym_macro_rules_BANG] = ACTIONS(1840), + [anon_sym_LPAREN] = ACTIONS(1840), + [anon_sym_LBRACK] = ACTIONS(1840), + [anon_sym_LBRACE] = ACTIONS(1840), + [anon_sym_RBRACE] = ACTIONS(1840), + [anon_sym_STAR] = ACTIONS(1840), + [anon_sym_u8] = ACTIONS(1842), + [anon_sym_i8] = ACTIONS(1842), + [anon_sym_u16] = ACTIONS(1842), + [anon_sym_i16] = ACTIONS(1842), + [anon_sym_u32] = ACTIONS(1842), + [anon_sym_i32] = ACTIONS(1842), + [anon_sym_u64] = ACTIONS(1842), + [anon_sym_i64] = ACTIONS(1842), + [anon_sym_u128] = ACTIONS(1842), + [anon_sym_i128] = ACTIONS(1842), + [anon_sym_isize] = ACTIONS(1842), + [anon_sym_usize] = ACTIONS(1842), + [anon_sym_f32] = ACTIONS(1842), + [anon_sym_f64] = ACTIONS(1842), + [anon_sym_bool] = ACTIONS(1842), + [anon_sym_str] = ACTIONS(1842), + [anon_sym_char] = ACTIONS(1842), + [anon_sym_DASH] = ACTIONS(1840), + [anon_sym_BANG] = ACTIONS(1840), + [anon_sym_AMP] = ACTIONS(1840), + [anon_sym_PIPE] = ACTIONS(1840), + [anon_sym_LT] = ACTIONS(1840), + [anon_sym_DOT_DOT] = ACTIONS(1840), + [anon_sym_COLON_COLON] = ACTIONS(1840), + [anon_sym_POUND] = ACTIONS(1840), + [anon_sym_SQUOTE] = ACTIONS(1842), + [anon_sym_async] = ACTIONS(1842), + [anon_sym_break] = ACTIONS(1842), + [anon_sym_const] = ACTIONS(1842), + [anon_sym_continue] = ACTIONS(1842), + [anon_sym_default] = ACTIONS(1842), + [anon_sym_enum] = ACTIONS(1842), + [anon_sym_fn] = ACTIONS(1842), + [anon_sym_for] = ACTIONS(1842), + [anon_sym_if] = ACTIONS(1842), + [anon_sym_impl] = ACTIONS(1842), + [anon_sym_let] = ACTIONS(1842), + [anon_sym_loop] = ACTIONS(1842), + [anon_sym_match] = ACTIONS(1842), + [anon_sym_mod] = ACTIONS(1842), + [anon_sym_pub] = ACTIONS(1842), + [anon_sym_return] = ACTIONS(1842), + [anon_sym_static] = ACTIONS(1842), + [anon_sym_struct] = ACTIONS(1842), + [anon_sym_trait] = ACTIONS(1842), + [anon_sym_type] = ACTIONS(1842), + [anon_sym_union] = ACTIONS(1842), + [anon_sym_unsafe] = ACTIONS(1842), + [anon_sym_use] = ACTIONS(1842), + [anon_sym_while] = ACTIONS(1842), + [anon_sym_extern] = ACTIONS(1842), + [anon_sym_yield] = ACTIONS(1842), + [anon_sym_move] = ACTIONS(1842), + [anon_sym_try] = ACTIONS(1842), + [sym_integer_literal] = ACTIONS(1840), + [aux_sym_string_literal_token1] = ACTIONS(1840), + [sym_char_literal] = ACTIONS(1840), + [anon_sym_true] = ACTIONS(1842), + [anon_sym_false] = ACTIONS(1842), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1842), + [sym_super] = ACTIONS(1842), + [sym_crate] = ACTIONS(1842), + [sym_metavariable] = ACTIONS(1840), + [sym__raw_string_literal_start] = ACTIONS(1840), + [sym_float_literal] = ACTIONS(1840), }, [509] = { [sym_line_comment] = STATE(509), [sym_block_comment] = STATE(509), - [ts_builtin_sym_end] = ACTIONS(1782), - [sym_identifier] = ACTIONS(1784), - [anon_sym_SEMI] = ACTIONS(1782), - [anon_sym_macro_rules_BANG] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1782), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_LBRACE] = ACTIONS(1782), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_STAR] = ACTIONS(1782), - [anon_sym_u8] = ACTIONS(1784), - [anon_sym_i8] = ACTIONS(1784), - [anon_sym_u16] = ACTIONS(1784), - [anon_sym_i16] = ACTIONS(1784), - [anon_sym_u32] = ACTIONS(1784), - [anon_sym_i32] = ACTIONS(1784), - [anon_sym_u64] = ACTIONS(1784), - [anon_sym_i64] = ACTIONS(1784), - [anon_sym_u128] = ACTIONS(1784), - [anon_sym_i128] = ACTIONS(1784), - [anon_sym_isize] = ACTIONS(1784), - [anon_sym_usize] = ACTIONS(1784), - [anon_sym_f32] = ACTIONS(1784), - [anon_sym_f64] = ACTIONS(1784), - [anon_sym_bool] = ACTIONS(1784), - [anon_sym_str] = ACTIONS(1784), - [anon_sym_char] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1782), - [anon_sym_AMP] = ACTIONS(1782), - [anon_sym_PIPE] = ACTIONS(1782), - [anon_sym_LT] = ACTIONS(1782), - [anon_sym_DOT_DOT] = ACTIONS(1782), - [anon_sym_COLON_COLON] = ACTIONS(1782), - [anon_sym_POUND] = ACTIONS(1782), - [anon_sym_SQUOTE] = ACTIONS(1784), - [anon_sym_async] = ACTIONS(1784), - [anon_sym_break] = ACTIONS(1784), - [anon_sym_const] = ACTIONS(1784), - [anon_sym_continue] = ACTIONS(1784), - [anon_sym_default] = ACTIONS(1784), - [anon_sym_enum] = ACTIONS(1784), - [anon_sym_fn] = ACTIONS(1784), - [anon_sym_for] = ACTIONS(1784), - [anon_sym_if] = ACTIONS(1784), - [anon_sym_impl] = ACTIONS(1784), - [anon_sym_let] = ACTIONS(1784), - [anon_sym_loop] = ACTIONS(1784), - [anon_sym_match] = ACTIONS(1784), - [anon_sym_mod] = ACTIONS(1784), - [anon_sym_pub] = ACTIONS(1784), - [anon_sym_return] = ACTIONS(1784), - [anon_sym_static] = ACTIONS(1784), - [anon_sym_struct] = ACTIONS(1784), - [anon_sym_trait] = ACTIONS(1784), - [anon_sym_type] = ACTIONS(1784), - [anon_sym_union] = ACTIONS(1784), - [anon_sym_unsafe] = ACTIONS(1784), - [anon_sym_use] = ACTIONS(1784), - [anon_sym_while] = ACTIONS(1784), - [anon_sym_extern] = ACTIONS(1784), - [anon_sym_yield] = ACTIONS(1784), - [anon_sym_move] = ACTIONS(1784), - [anon_sym_try] = ACTIONS(1784), - [sym_integer_literal] = ACTIONS(1782), - [aux_sym_string_literal_token1] = ACTIONS(1782), - [sym_char_literal] = ACTIONS(1782), - [anon_sym_true] = ACTIONS(1784), - [anon_sym_false] = ACTIONS(1784), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1784), - [sym_super] = ACTIONS(1784), - [sym_crate] = ACTIONS(1784), - [sym_metavariable] = ACTIONS(1782), - [sym__raw_string_literal_start] = ACTIONS(1782), - [sym_float_literal] = ACTIONS(1782), + [ts_builtin_sym_end] = ACTIONS(1844), + [sym_identifier] = ACTIONS(1846), + [anon_sym_SEMI] = ACTIONS(1844), + [anon_sym_macro_rules_BANG] = ACTIONS(1844), + [anon_sym_LPAREN] = ACTIONS(1844), + [anon_sym_LBRACK] = ACTIONS(1844), + [anon_sym_LBRACE] = ACTIONS(1844), + [anon_sym_RBRACE] = ACTIONS(1844), + [anon_sym_STAR] = ACTIONS(1844), + [anon_sym_u8] = ACTIONS(1846), + [anon_sym_i8] = ACTIONS(1846), + [anon_sym_u16] = ACTIONS(1846), + [anon_sym_i16] = ACTIONS(1846), + [anon_sym_u32] = ACTIONS(1846), + [anon_sym_i32] = ACTIONS(1846), + [anon_sym_u64] = ACTIONS(1846), + [anon_sym_i64] = ACTIONS(1846), + [anon_sym_u128] = ACTIONS(1846), + [anon_sym_i128] = ACTIONS(1846), + [anon_sym_isize] = ACTIONS(1846), + [anon_sym_usize] = ACTIONS(1846), + [anon_sym_f32] = ACTIONS(1846), + [anon_sym_f64] = ACTIONS(1846), + [anon_sym_bool] = ACTIONS(1846), + [anon_sym_str] = ACTIONS(1846), + [anon_sym_char] = ACTIONS(1846), + [anon_sym_DASH] = ACTIONS(1844), + [anon_sym_BANG] = ACTIONS(1844), + [anon_sym_AMP] = ACTIONS(1844), + [anon_sym_PIPE] = ACTIONS(1844), + [anon_sym_LT] = ACTIONS(1844), + [anon_sym_DOT_DOT] = ACTIONS(1844), + [anon_sym_COLON_COLON] = ACTIONS(1844), + [anon_sym_POUND] = ACTIONS(1844), + [anon_sym_SQUOTE] = ACTIONS(1846), + [anon_sym_async] = ACTIONS(1846), + [anon_sym_break] = ACTIONS(1846), + [anon_sym_const] = ACTIONS(1846), + [anon_sym_continue] = ACTIONS(1846), + [anon_sym_default] = ACTIONS(1846), + [anon_sym_enum] = ACTIONS(1846), + [anon_sym_fn] = ACTIONS(1846), + [anon_sym_for] = ACTIONS(1846), + [anon_sym_if] = ACTIONS(1846), + [anon_sym_impl] = ACTIONS(1846), + [anon_sym_let] = ACTIONS(1846), + [anon_sym_loop] = ACTIONS(1846), + [anon_sym_match] = ACTIONS(1846), + [anon_sym_mod] = ACTIONS(1846), + [anon_sym_pub] = ACTIONS(1846), + [anon_sym_return] = ACTIONS(1846), + [anon_sym_static] = ACTIONS(1846), + [anon_sym_struct] = ACTIONS(1846), + [anon_sym_trait] = ACTIONS(1846), + [anon_sym_type] = ACTIONS(1846), + [anon_sym_union] = ACTIONS(1846), + [anon_sym_unsafe] = ACTIONS(1846), + [anon_sym_use] = ACTIONS(1846), + [anon_sym_while] = ACTIONS(1846), + [anon_sym_extern] = ACTIONS(1846), + [anon_sym_yield] = ACTIONS(1846), + [anon_sym_move] = ACTIONS(1846), + [anon_sym_try] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(1844), + [aux_sym_string_literal_token1] = ACTIONS(1844), + [sym_char_literal] = ACTIONS(1844), + [anon_sym_true] = ACTIONS(1846), + [anon_sym_false] = ACTIONS(1846), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1846), + [sym_super] = ACTIONS(1846), + [sym_crate] = ACTIONS(1846), + [sym_metavariable] = ACTIONS(1844), + [sym__raw_string_literal_start] = ACTIONS(1844), + [sym_float_literal] = ACTIONS(1844), }, [510] = { [sym_line_comment] = STATE(510), [sym_block_comment] = STATE(510), - [ts_builtin_sym_end] = ACTIONS(1786), - [sym_identifier] = ACTIONS(1788), - [anon_sym_SEMI] = ACTIONS(1786), - [anon_sym_macro_rules_BANG] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_STAR] = ACTIONS(1786), - [anon_sym_u8] = ACTIONS(1788), - [anon_sym_i8] = ACTIONS(1788), - [anon_sym_u16] = ACTIONS(1788), - [anon_sym_i16] = ACTIONS(1788), - [anon_sym_u32] = ACTIONS(1788), - [anon_sym_i32] = ACTIONS(1788), - [anon_sym_u64] = ACTIONS(1788), - [anon_sym_i64] = ACTIONS(1788), - [anon_sym_u128] = ACTIONS(1788), - [anon_sym_i128] = ACTIONS(1788), - [anon_sym_isize] = ACTIONS(1788), - [anon_sym_usize] = ACTIONS(1788), - [anon_sym_f32] = ACTIONS(1788), - [anon_sym_f64] = ACTIONS(1788), - [anon_sym_bool] = ACTIONS(1788), - [anon_sym_str] = ACTIONS(1788), - [anon_sym_char] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1786), - [anon_sym_BANG] = ACTIONS(1786), - [anon_sym_AMP] = ACTIONS(1786), - [anon_sym_PIPE] = ACTIONS(1786), - [anon_sym_LT] = ACTIONS(1786), - [anon_sym_DOT_DOT] = ACTIONS(1786), - [anon_sym_COLON_COLON] = ACTIONS(1786), - [anon_sym_POUND] = ACTIONS(1786), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_async] = ACTIONS(1788), - [anon_sym_break] = ACTIONS(1788), - [anon_sym_const] = ACTIONS(1788), - [anon_sym_continue] = ACTIONS(1788), - [anon_sym_default] = ACTIONS(1788), - [anon_sym_enum] = ACTIONS(1788), - [anon_sym_fn] = ACTIONS(1788), - [anon_sym_for] = ACTIONS(1788), - [anon_sym_if] = ACTIONS(1788), - [anon_sym_impl] = ACTIONS(1788), - [anon_sym_let] = ACTIONS(1788), - [anon_sym_loop] = ACTIONS(1788), - [anon_sym_match] = ACTIONS(1788), - [anon_sym_mod] = ACTIONS(1788), - [anon_sym_pub] = ACTIONS(1788), - [anon_sym_return] = ACTIONS(1788), - [anon_sym_static] = ACTIONS(1788), - [anon_sym_struct] = ACTIONS(1788), - [anon_sym_trait] = ACTIONS(1788), - [anon_sym_type] = ACTIONS(1788), - [anon_sym_union] = ACTIONS(1788), - [anon_sym_unsafe] = ACTIONS(1788), - [anon_sym_use] = ACTIONS(1788), - [anon_sym_while] = ACTIONS(1788), - [anon_sym_extern] = ACTIONS(1788), - [anon_sym_yield] = ACTIONS(1788), - [anon_sym_move] = ACTIONS(1788), - [anon_sym_try] = ACTIONS(1788), - [sym_integer_literal] = ACTIONS(1786), - [aux_sym_string_literal_token1] = ACTIONS(1786), - [sym_char_literal] = ACTIONS(1786), - [anon_sym_true] = ACTIONS(1788), - [anon_sym_false] = ACTIONS(1788), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1788), - [sym_super] = ACTIONS(1788), - [sym_crate] = ACTIONS(1788), - [sym_metavariable] = ACTIONS(1786), - [sym__raw_string_literal_start] = ACTIONS(1786), - [sym_float_literal] = ACTIONS(1786), + [ts_builtin_sym_end] = ACTIONS(1848), + [sym_identifier] = ACTIONS(1850), + [anon_sym_SEMI] = ACTIONS(1848), + [anon_sym_macro_rules_BANG] = ACTIONS(1848), + [anon_sym_LPAREN] = ACTIONS(1848), + [anon_sym_LBRACK] = ACTIONS(1848), + [anon_sym_LBRACE] = ACTIONS(1848), + [anon_sym_RBRACE] = ACTIONS(1848), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_u8] = ACTIONS(1850), + [anon_sym_i8] = ACTIONS(1850), + [anon_sym_u16] = ACTIONS(1850), + [anon_sym_i16] = ACTIONS(1850), + [anon_sym_u32] = ACTIONS(1850), + [anon_sym_i32] = ACTIONS(1850), + [anon_sym_u64] = ACTIONS(1850), + [anon_sym_i64] = ACTIONS(1850), + [anon_sym_u128] = ACTIONS(1850), + [anon_sym_i128] = ACTIONS(1850), + [anon_sym_isize] = ACTIONS(1850), + [anon_sym_usize] = ACTIONS(1850), + [anon_sym_f32] = ACTIONS(1850), + [anon_sym_f64] = ACTIONS(1850), + [anon_sym_bool] = ACTIONS(1850), + [anon_sym_str] = ACTIONS(1850), + [anon_sym_char] = ACTIONS(1850), + [anon_sym_DASH] = ACTIONS(1848), + [anon_sym_BANG] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym_PIPE] = ACTIONS(1848), + [anon_sym_LT] = ACTIONS(1848), + [anon_sym_DOT_DOT] = ACTIONS(1848), + [anon_sym_COLON_COLON] = ACTIONS(1848), + [anon_sym_POUND] = ACTIONS(1848), + [anon_sym_SQUOTE] = ACTIONS(1850), + [anon_sym_async] = ACTIONS(1850), + [anon_sym_break] = ACTIONS(1850), + [anon_sym_const] = ACTIONS(1850), + [anon_sym_continue] = ACTIONS(1850), + [anon_sym_default] = ACTIONS(1850), + [anon_sym_enum] = ACTIONS(1850), + [anon_sym_fn] = ACTIONS(1850), + [anon_sym_for] = ACTIONS(1850), + [anon_sym_if] = ACTIONS(1850), + [anon_sym_impl] = ACTIONS(1850), + [anon_sym_let] = ACTIONS(1850), + [anon_sym_loop] = ACTIONS(1850), + [anon_sym_match] = ACTIONS(1850), + [anon_sym_mod] = ACTIONS(1850), + [anon_sym_pub] = ACTIONS(1850), + [anon_sym_return] = ACTIONS(1850), + [anon_sym_static] = ACTIONS(1850), + [anon_sym_struct] = ACTIONS(1850), + [anon_sym_trait] = ACTIONS(1850), + [anon_sym_type] = ACTIONS(1850), + [anon_sym_union] = ACTIONS(1850), + [anon_sym_unsafe] = ACTIONS(1850), + [anon_sym_use] = ACTIONS(1850), + [anon_sym_while] = ACTIONS(1850), + [anon_sym_extern] = ACTIONS(1850), + [anon_sym_yield] = ACTIONS(1850), + [anon_sym_move] = ACTIONS(1850), + [anon_sym_try] = ACTIONS(1850), + [sym_integer_literal] = ACTIONS(1848), + [aux_sym_string_literal_token1] = ACTIONS(1848), + [sym_char_literal] = ACTIONS(1848), + [anon_sym_true] = ACTIONS(1850), + [anon_sym_false] = ACTIONS(1850), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1850), + [sym_super] = ACTIONS(1850), + [sym_crate] = ACTIONS(1850), + [sym_metavariable] = ACTIONS(1848), + [sym__raw_string_literal_start] = ACTIONS(1848), + [sym_float_literal] = ACTIONS(1848), }, [511] = { [sym_line_comment] = STATE(511), [sym_block_comment] = STATE(511), - [ts_builtin_sym_end] = ACTIONS(1790), - [sym_identifier] = ACTIONS(1792), - [anon_sym_SEMI] = ACTIONS(1790), - [anon_sym_macro_rules_BANG] = ACTIONS(1790), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_LBRACK] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1790), - [anon_sym_RBRACE] = ACTIONS(1790), - [anon_sym_STAR] = ACTIONS(1790), - [anon_sym_u8] = ACTIONS(1792), - [anon_sym_i8] = ACTIONS(1792), - [anon_sym_u16] = ACTIONS(1792), - [anon_sym_i16] = ACTIONS(1792), - [anon_sym_u32] = ACTIONS(1792), - [anon_sym_i32] = ACTIONS(1792), - [anon_sym_u64] = ACTIONS(1792), - [anon_sym_i64] = ACTIONS(1792), - [anon_sym_u128] = ACTIONS(1792), - [anon_sym_i128] = ACTIONS(1792), - [anon_sym_isize] = ACTIONS(1792), - [anon_sym_usize] = ACTIONS(1792), - [anon_sym_f32] = ACTIONS(1792), - [anon_sym_f64] = ACTIONS(1792), - [anon_sym_bool] = ACTIONS(1792), - [anon_sym_str] = ACTIONS(1792), - [anon_sym_char] = ACTIONS(1792), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_BANG] = ACTIONS(1790), - [anon_sym_AMP] = ACTIONS(1790), - [anon_sym_PIPE] = ACTIONS(1790), - [anon_sym_LT] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(1790), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_SQUOTE] = ACTIONS(1792), - [anon_sym_async] = ACTIONS(1792), - [anon_sym_break] = ACTIONS(1792), - [anon_sym_const] = ACTIONS(1792), - [anon_sym_continue] = ACTIONS(1792), - [anon_sym_default] = ACTIONS(1792), - [anon_sym_enum] = ACTIONS(1792), - [anon_sym_fn] = ACTIONS(1792), - [anon_sym_for] = ACTIONS(1792), - [anon_sym_if] = ACTIONS(1792), - [anon_sym_impl] = ACTIONS(1792), - [anon_sym_let] = ACTIONS(1792), - [anon_sym_loop] = ACTIONS(1792), - [anon_sym_match] = ACTIONS(1792), - [anon_sym_mod] = ACTIONS(1792), - [anon_sym_pub] = ACTIONS(1792), - [anon_sym_return] = ACTIONS(1792), - [anon_sym_static] = ACTIONS(1792), - [anon_sym_struct] = ACTIONS(1792), - [anon_sym_trait] = ACTIONS(1792), - [anon_sym_type] = ACTIONS(1792), - [anon_sym_union] = ACTIONS(1792), - [anon_sym_unsafe] = ACTIONS(1792), - [anon_sym_use] = ACTIONS(1792), - [anon_sym_while] = ACTIONS(1792), - [anon_sym_extern] = ACTIONS(1792), - [anon_sym_yield] = ACTIONS(1792), - [anon_sym_move] = ACTIONS(1792), - [anon_sym_try] = ACTIONS(1792), - [sym_integer_literal] = ACTIONS(1790), - [aux_sym_string_literal_token1] = ACTIONS(1790), - [sym_char_literal] = ACTIONS(1790), - [anon_sym_true] = ACTIONS(1792), - [anon_sym_false] = ACTIONS(1792), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1792), - [sym_super] = ACTIONS(1792), - [sym_crate] = ACTIONS(1792), - [sym_metavariable] = ACTIONS(1790), - [sym__raw_string_literal_start] = ACTIONS(1790), - [sym_float_literal] = ACTIONS(1790), + [ts_builtin_sym_end] = ACTIONS(1852), + [sym_identifier] = ACTIONS(1854), + [anon_sym_SEMI] = ACTIONS(1852), + [anon_sym_macro_rules_BANG] = ACTIONS(1852), + [anon_sym_LPAREN] = ACTIONS(1852), + [anon_sym_LBRACK] = ACTIONS(1852), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_RBRACE] = ACTIONS(1852), + [anon_sym_STAR] = ACTIONS(1852), + [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(1852), + [anon_sym_BANG] = ACTIONS(1852), + [anon_sym_AMP] = ACTIONS(1852), + [anon_sym_PIPE] = ACTIONS(1852), + [anon_sym_LT] = ACTIONS(1852), + [anon_sym_DOT_DOT] = ACTIONS(1852), + [anon_sym_COLON_COLON] = ACTIONS(1852), + [anon_sym_POUND] = ACTIONS(1852), + [anon_sym_SQUOTE] = ACTIONS(1854), + [anon_sym_async] = ACTIONS(1854), + [anon_sym_break] = ACTIONS(1854), + [anon_sym_const] = ACTIONS(1854), + [anon_sym_continue] = ACTIONS(1854), + [anon_sym_default] = ACTIONS(1854), + [anon_sym_enum] = ACTIONS(1854), + [anon_sym_fn] = ACTIONS(1854), + [anon_sym_for] = ACTIONS(1854), + [anon_sym_if] = ACTIONS(1854), + [anon_sym_impl] = ACTIONS(1854), + [anon_sym_let] = ACTIONS(1854), + [anon_sym_loop] = ACTIONS(1854), + [anon_sym_match] = ACTIONS(1854), + [anon_sym_mod] = ACTIONS(1854), + [anon_sym_pub] = ACTIONS(1854), + [anon_sym_return] = ACTIONS(1854), + [anon_sym_static] = ACTIONS(1854), + [anon_sym_struct] = ACTIONS(1854), + [anon_sym_trait] = ACTIONS(1854), + [anon_sym_type] = ACTIONS(1854), + [anon_sym_union] = ACTIONS(1854), + [anon_sym_unsafe] = ACTIONS(1854), + [anon_sym_use] = ACTIONS(1854), + [anon_sym_while] = ACTIONS(1854), + [anon_sym_extern] = ACTIONS(1854), + [anon_sym_yield] = ACTIONS(1854), + [anon_sym_move] = ACTIONS(1854), + [anon_sym_try] = ACTIONS(1854), + [sym_integer_literal] = ACTIONS(1852), + [aux_sym_string_literal_token1] = ACTIONS(1852), + [sym_char_literal] = ACTIONS(1852), + [anon_sym_true] = ACTIONS(1854), + [anon_sym_false] = ACTIONS(1854), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1854), + [sym_super] = ACTIONS(1854), + [sym_crate] = ACTIONS(1854), + [sym_metavariable] = ACTIONS(1852), + [sym__raw_string_literal_start] = ACTIONS(1852), + [sym_float_literal] = ACTIONS(1852), }, [512] = { [sym_line_comment] = STATE(512), [sym_block_comment] = STATE(512), - [ts_builtin_sym_end] = ACTIONS(1794), - [sym_identifier] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(1794), - [anon_sym_macro_rules_BANG] = ACTIONS(1794), - [anon_sym_LPAREN] = ACTIONS(1794), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_LBRACE] = ACTIONS(1794), - [anon_sym_RBRACE] = ACTIONS(1794), - [anon_sym_STAR] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1794), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_AMP] = ACTIONS(1794), - [anon_sym_PIPE] = ACTIONS(1794), - [anon_sym_LT] = ACTIONS(1794), - [anon_sym_DOT_DOT] = ACTIONS(1794), - [anon_sym_COLON_COLON] = ACTIONS(1794), - [anon_sym_POUND] = ACTIONS(1794), - [anon_sym_SQUOTE] = ACTIONS(1796), - [anon_sym_async] = ACTIONS(1796), - [anon_sym_break] = ACTIONS(1796), - [anon_sym_const] = ACTIONS(1796), - [anon_sym_continue] = ACTIONS(1796), - [anon_sym_default] = ACTIONS(1796), - [anon_sym_enum] = ACTIONS(1796), - [anon_sym_fn] = ACTIONS(1796), - [anon_sym_for] = ACTIONS(1796), - [anon_sym_if] = ACTIONS(1796), - [anon_sym_impl] = ACTIONS(1796), - [anon_sym_let] = ACTIONS(1796), - [anon_sym_loop] = ACTIONS(1796), - [anon_sym_match] = ACTIONS(1796), - [anon_sym_mod] = ACTIONS(1796), - [anon_sym_pub] = ACTIONS(1796), - [anon_sym_return] = ACTIONS(1796), - [anon_sym_static] = ACTIONS(1796), - [anon_sym_struct] = ACTIONS(1796), - [anon_sym_trait] = ACTIONS(1796), - [anon_sym_type] = ACTIONS(1796), - [anon_sym_union] = ACTIONS(1796), - [anon_sym_unsafe] = ACTIONS(1796), - [anon_sym_use] = ACTIONS(1796), - [anon_sym_while] = ACTIONS(1796), - [anon_sym_extern] = ACTIONS(1796), - [anon_sym_yield] = ACTIONS(1796), - [anon_sym_move] = ACTIONS(1796), - [anon_sym_try] = ACTIONS(1796), - [sym_integer_literal] = ACTIONS(1794), - [aux_sym_string_literal_token1] = ACTIONS(1794), - [sym_char_literal] = ACTIONS(1794), - [anon_sym_true] = ACTIONS(1796), - [anon_sym_false] = ACTIONS(1796), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1796), - [sym_super] = ACTIONS(1796), - [sym_crate] = ACTIONS(1796), - [sym_metavariable] = ACTIONS(1794), - [sym__raw_string_literal_start] = ACTIONS(1794), - [sym_float_literal] = ACTIONS(1794), + [ts_builtin_sym_end] = ACTIONS(1856), + [sym_identifier] = ACTIONS(1858), + [anon_sym_SEMI] = ACTIONS(1856), + [anon_sym_macro_rules_BANG] = ACTIONS(1856), + [anon_sym_LPAREN] = ACTIONS(1856), + [anon_sym_LBRACK] = ACTIONS(1856), + [anon_sym_LBRACE] = ACTIONS(1856), + [anon_sym_RBRACE] = ACTIONS(1856), + [anon_sym_STAR] = ACTIONS(1856), + [anon_sym_u8] = ACTIONS(1858), + [anon_sym_i8] = ACTIONS(1858), + [anon_sym_u16] = ACTIONS(1858), + [anon_sym_i16] = ACTIONS(1858), + [anon_sym_u32] = ACTIONS(1858), + [anon_sym_i32] = ACTIONS(1858), + [anon_sym_u64] = ACTIONS(1858), + [anon_sym_i64] = ACTIONS(1858), + [anon_sym_u128] = ACTIONS(1858), + [anon_sym_i128] = ACTIONS(1858), + [anon_sym_isize] = ACTIONS(1858), + [anon_sym_usize] = ACTIONS(1858), + [anon_sym_f32] = ACTIONS(1858), + [anon_sym_f64] = ACTIONS(1858), + [anon_sym_bool] = ACTIONS(1858), + [anon_sym_str] = ACTIONS(1858), + [anon_sym_char] = ACTIONS(1858), + [anon_sym_DASH] = ACTIONS(1856), + [anon_sym_BANG] = ACTIONS(1856), + [anon_sym_AMP] = ACTIONS(1856), + [anon_sym_PIPE] = ACTIONS(1856), + [anon_sym_LT] = ACTIONS(1856), + [anon_sym_DOT_DOT] = ACTIONS(1856), + [anon_sym_COLON_COLON] = ACTIONS(1856), + [anon_sym_POUND] = ACTIONS(1856), + [anon_sym_SQUOTE] = ACTIONS(1858), + [anon_sym_async] = ACTIONS(1858), + [anon_sym_break] = ACTIONS(1858), + [anon_sym_const] = ACTIONS(1858), + [anon_sym_continue] = ACTIONS(1858), + [anon_sym_default] = ACTIONS(1858), + [anon_sym_enum] = ACTIONS(1858), + [anon_sym_fn] = ACTIONS(1858), + [anon_sym_for] = ACTIONS(1858), + [anon_sym_if] = ACTIONS(1858), + [anon_sym_impl] = ACTIONS(1858), + [anon_sym_let] = ACTIONS(1858), + [anon_sym_loop] = ACTIONS(1858), + [anon_sym_match] = ACTIONS(1858), + [anon_sym_mod] = ACTIONS(1858), + [anon_sym_pub] = ACTIONS(1858), + [anon_sym_return] = ACTIONS(1858), + [anon_sym_static] = ACTIONS(1858), + [anon_sym_struct] = ACTIONS(1858), + [anon_sym_trait] = ACTIONS(1858), + [anon_sym_type] = ACTIONS(1858), + [anon_sym_union] = ACTIONS(1858), + [anon_sym_unsafe] = ACTIONS(1858), + [anon_sym_use] = ACTIONS(1858), + [anon_sym_while] = ACTIONS(1858), + [anon_sym_extern] = ACTIONS(1858), + [anon_sym_yield] = ACTIONS(1858), + [anon_sym_move] = ACTIONS(1858), + [anon_sym_try] = ACTIONS(1858), + [sym_integer_literal] = ACTIONS(1856), + [aux_sym_string_literal_token1] = ACTIONS(1856), + [sym_char_literal] = ACTIONS(1856), + [anon_sym_true] = ACTIONS(1858), + [anon_sym_false] = ACTIONS(1858), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1858), + [sym_super] = ACTIONS(1858), + [sym_crate] = ACTIONS(1858), + [sym_metavariable] = ACTIONS(1856), + [sym__raw_string_literal_start] = ACTIONS(1856), + [sym_float_literal] = ACTIONS(1856), }, [513] = { [sym_line_comment] = STATE(513), [sym_block_comment] = STATE(513), - [ts_builtin_sym_end] = ACTIONS(1798), - [sym_identifier] = ACTIONS(1800), - [anon_sym_SEMI] = ACTIONS(1798), - [anon_sym_macro_rules_BANG] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(1798), - [anon_sym_LBRACK] = ACTIONS(1798), - [anon_sym_LBRACE] = ACTIONS(1798), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1798), - [anon_sym_u8] = ACTIONS(1800), - [anon_sym_i8] = ACTIONS(1800), - [anon_sym_u16] = ACTIONS(1800), - [anon_sym_i16] = ACTIONS(1800), - [anon_sym_u32] = ACTIONS(1800), - [anon_sym_i32] = ACTIONS(1800), - [anon_sym_u64] = ACTIONS(1800), - [anon_sym_i64] = ACTIONS(1800), - [anon_sym_u128] = ACTIONS(1800), - [anon_sym_i128] = ACTIONS(1800), - [anon_sym_isize] = ACTIONS(1800), - [anon_sym_usize] = ACTIONS(1800), - [anon_sym_f32] = ACTIONS(1800), - [anon_sym_f64] = ACTIONS(1800), - [anon_sym_bool] = ACTIONS(1800), - [anon_sym_str] = ACTIONS(1800), - [anon_sym_char] = ACTIONS(1800), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_BANG] = ACTIONS(1798), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1798), - [anon_sym_LT] = ACTIONS(1798), - [anon_sym_DOT_DOT] = ACTIONS(1798), - [anon_sym_COLON_COLON] = ACTIONS(1798), - [anon_sym_POUND] = ACTIONS(1798), - [anon_sym_SQUOTE] = ACTIONS(1800), - [anon_sym_async] = ACTIONS(1800), - [anon_sym_break] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1800), - [anon_sym_continue] = ACTIONS(1800), - [anon_sym_default] = ACTIONS(1800), - [anon_sym_enum] = ACTIONS(1800), - [anon_sym_fn] = ACTIONS(1800), - [anon_sym_for] = ACTIONS(1800), - [anon_sym_if] = ACTIONS(1800), - [anon_sym_impl] = ACTIONS(1800), - [anon_sym_let] = ACTIONS(1800), - [anon_sym_loop] = ACTIONS(1800), - [anon_sym_match] = ACTIONS(1800), - [anon_sym_mod] = ACTIONS(1800), - [anon_sym_pub] = ACTIONS(1800), - [anon_sym_return] = ACTIONS(1800), - [anon_sym_static] = ACTIONS(1800), - [anon_sym_struct] = ACTIONS(1800), - [anon_sym_trait] = ACTIONS(1800), - [anon_sym_type] = ACTIONS(1800), - [anon_sym_union] = ACTIONS(1800), - [anon_sym_unsafe] = ACTIONS(1800), - [anon_sym_use] = ACTIONS(1800), - [anon_sym_while] = ACTIONS(1800), - [anon_sym_extern] = ACTIONS(1800), - [anon_sym_yield] = ACTIONS(1800), - [anon_sym_move] = ACTIONS(1800), - [anon_sym_try] = ACTIONS(1800), - [sym_integer_literal] = ACTIONS(1798), - [aux_sym_string_literal_token1] = ACTIONS(1798), - [sym_char_literal] = ACTIONS(1798), - [anon_sym_true] = ACTIONS(1800), - [anon_sym_false] = ACTIONS(1800), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1800), - [sym_super] = ACTIONS(1800), - [sym_crate] = ACTIONS(1800), - [sym_metavariable] = ACTIONS(1798), - [sym__raw_string_literal_start] = ACTIONS(1798), - [sym_float_literal] = ACTIONS(1798), + [ts_builtin_sym_end] = ACTIONS(1860), + [sym_identifier] = ACTIONS(1862), + [anon_sym_SEMI] = ACTIONS(1860), + [anon_sym_macro_rules_BANG] = ACTIONS(1860), + [anon_sym_LPAREN] = ACTIONS(1860), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_LBRACE] = ACTIONS(1860), + [anon_sym_RBRACE] = ACTIONS(1860), + [anon_sym_STAR] = ACTIONS(1860), + [anon_sym_u8] = ACTIONS(1862), + [anon_sym_i8] = ACTIONS(1862), + [anon_sym_u16] = ACTIONS(1862), + [anon_sym_i16] = ACTIONS(1862), + [anon_sym_u32] = ACTIONS(1862), + [anon_sym_i32] = ACTIONS(1862), + [anon_sym_u64] = ACTIONS(1862), + [anon_sym_i64] = ACTIONS(1862), + [anon_sym_u128] = ACTIONS(1862), + [anon_sym_i128] = ACTIONS(1862), + [anon_sym_isize] = ACTIONS(1862), + [anon_sym_usize] = ACTIONS(1862), + [anon_sym_f32] = ACTIONS(1862), + [anon_sym_f64] = ACTIONS(1862), + [anon_sym_bool] = ACTIONS(1862), + [anon_sym_str] = ACTIONS(1862), + [anon_sym_char] = ACTIONS(1862), + [anon_sym_DASH] = ACTIONS(1860), + [anon_sym_BANG] = ACTIONS(1860), + [anon_sym_AMP] = ACTIONS(1860), + [anon_sym_PIPE] = ACTIONS(1860), + [anon_sym_LT] = ACTIONS(1860), + [anon_sym_DOT_DOT] = ACTIONS(1860), + [anon_sym_COLON_COLON] = ACTIONS(1860), + [anon_sym_POUND] = ACTIONS(1860), + [anon_sym_SQUOTE] = ACTIONS(1862), + [anon_sym_async] = ACTIONS(1862), + [anon_sym_break] = ACTIONS(1862), + [anon_sym_const] = ACTIONS(1862), + [anon_sym_continue] = ACTIONS(1862), + [anon_sym_default] = ACTIONS(1862), + [anon_sym_enum] = ACTIONS(1862), + [anon_sym_fn] = ACTIONS(1862), + [anon_sym_for] = ACTIONS(1862), + [anon_sym_if] = ACTIONS(1862), + [anon_sym_impl] = ACTIONS(1862), + [anon_sym_let] = ACTIONS(1862), + [anon_sym_loop] = ACTIONS(1862), + [anon_sym_match] = ACTIONS(1862), + [anon_sym_mod] = ACTIONS(1862), + [anon_sym_pub] = ACTIONS(1862), + [anon_sym_return] = ACTIONS(1862), + [anon_sym_static] = ACTIONS(1862), + [anon_sym_struct] = ACTIONS(1862), + [anon_sym_trait] = ACTIONS(1862), + [anon_sym_type] = ACTIONS(1862), + [anon_sym_union] = ACTIONS(1862), + [anon_sym_unsafe] = ACTIONS(1862), + [anon_sym_use] = ACTIONS(1862), + [anon_sym_while] = ACTIONS(1862), + [anon_sym_extern] = ACTIONS(1862), + [anon_sym_yield] = ACTIONS(1862), + [anon_sym_move] = ACTIONS(1862), + [anon_sym_try] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(1860), + [aux_sym_string_literal_token1] = ACTIONS(1860), + [sym_char_literal] = ACTIONS(1860), + [anon_sym_true] = ACTIONS(1862), + [anon_sym_false] = ACTIONS(1862), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1862), + [sym_super] = ACTIONS(1862), + [sym_crate] = ACTIONS(1862), + [sym_metavariable] = ACTIONS(1860), + [sym__raw_string_literal_start] = ACTIONS(1860), + [sym_float_literal] = ACTIONS(1860), }, [514] = { [sym_line_comment] = STATE(514), [sym_block_comment] = STATE(514), - [ts_builtin_sym_end] = ACTIONS(1802), - [sym_identifier] = ACTIONS(1804), - [anon_sym_SEMI] = ACTIONS(1802), - [anon_sym_macro_rules_BANG] = ACTIONS(1802), - [anon_sym_LPAREN] = ACTIONS(1802), - [anon_sym_LBRACK] = ACTIONS(1802), - [anon_sym_LBRACE] = ACTIONS(1802), - [anon_sym_RBRACE] = ACTIONS(1802), - [anon_sym_STAR] = ACTIONS(1802), - [anon_sym_u8] = ACTIONS(1804), - [anon_sym_i8] = ACTIONS(1804), - [anon_sym_u16] = ACTIONS(1804), - [anon_sym_i16] = ACTIONS(1804), - [anon_sym_u32] = ACTIONS(1804), - [anon_sym_i32] = ACTIONS(1804), - [anon_sym_u64] = ACTIONS(1804), - [anon_sym_i64] = ACTIONS(1804), - [anon_sym_u128] = ACTIONS(1804), - [anon_sym_i128] = ACTIONS(1804), - [anon_sym_isize] = ACTIONS(1804), - [anon_sym_usize] = ACTIONS(1804), - [anon_sym_f32] = ACTIONS(1804), - [anon_sym_f64] = ACTIONS(1804), - [anon_sym_bool] = ACTIONS(1804), - [anon_sym_str] = ACTIONS(1804), - [anon_sym_char] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1802), - [anon_sym_BANG] = ACTIONS(1802), - [anon_sym_AMP] = ACTIONS(1802), - [anon_sym_PIPE] = ACTIONS(1802), - [anon_sym_LT] = ACTIONS(1802), - [anon_sym_DOT_DOT] = ACTIONS(1802), - [anon_sym_COLON_COLON] = ACTIONS(1802), - [anon_sym_POUND] = ACTIONS(1802), - [anon_sym_SQUOTE] = ACTIONS(1804), - [anon_sym_async] = ACTIONS(1804), - [anon_sym_break] = ACTIONS(1804), - [anon_sym_const] = ACTIONS(1804), - [anon_sym_continue] = ACTIONS(1804), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_enum] = ACTIONS(1804), - [anon_sym_fn] = ACTIONS(1804), - [anon_sym_for] = ACTIONS(1804), - [anon_sym_if] = ACTIONS(1804), - [anon_sym_impl] = ACTIONS(1804), - [anon_sym_let] = ACTIONS(1804), - [anon_sym_loop] = ACTIONS(1804), - [anon_sym_match] = ACTIONS(1804), - [anon_sym_mod] = ACTIONS(1804), - [anon_sym_pub] = ACTIONS(1804), - [anon_sym_return] = ACTIONS(1804), - [anon_sym_static] = ACTIONS(1804), - [anon_sym_struct] = ACTIONS(1804), - [anon_sym_trait] = ACTIONS(1804), - [anon_sym_type] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_unsafe] = ACTIONS(1804), - [anon_sym_use] = ACTIONS(1804), - [anon_sym_while] = ACTIONS(1804), - [anon_sym_extern] = ACTIONS(1804), - [anon_sym_yield] = ACTIONS(1804), - [anon_sym_move] = ACTIONS(1804), - [anon_sym_try] = ACTIONS(1804), - [sym_integer_literal] = ACTIONS(1802), - [aux_sym_string_literal_token1] = ACTIONS(1802), - [sym_char_literal] = ACTIONS(1802), - [anon_sym_true] = ACTIONS(1804), - [anon_sym_false] = ACTIONS(1804), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1804), - [sym_super] = ACTIONS(1804), - [sym_crate] = ACTIONS(1804), - [sym_metavariable] = ACTIONS(1802), - [sym__raw_string_literal_start] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1802), + [ts_builtin_sym_end] = ACTIONS(1864), + [sym_identifier] = ACTIONS(1866), + [anon_sym_SEMI] = ACTIONS(1864), + [anon_sym_macro_rules_BANG] = ACTIONS(1864), + [anon_sym_LPAREN] = ACTIONS(1864), + [anon_sym_LBRACK] = ACTIONS(1864), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_RBRACE] = ACTIONS(1864), + [anon_sym_STAR] = 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(1864), + [anon_sym_BANG] = ACTIONS(1864), + [anon_sym_AMP] = ACTIONS(1864), + [anon_sym_PIPE] = ACTIONS(1864), + [anon_sym_LT] = ACTIONS(1864), + [anon_sym_DOT_DOT] = ACTIONS(1864), + [anon_sym_COLON_COLON] = ACTIONS(1864), + [anon_sym_POUND] = ACTIONS(1864), + [anon_sym_SQUOTE] = ACTIONS(1866), + [anon_sym_async] = ACTIONS(1866), + [anon_sym_break] = ACTIONS(1866), + [anon_sym_const] = ACTIONS(1866), + [anon_sym_continue] = ACTIONS(1866), + [anon_sym_default] = ACTIONS(1866), + [anon_sym_enum] = ACTIONS(1866), + [anon_sym_fn] = ACTIONS(1866), + [anon_sym_for] = ACTIONS(1866), + [anon_sym_if] = ACTIONS(1866), + [anon_sym_impl] = ACTIONS(1866), + [anon_sym_let] = ACTIONS(1866), + [anon_sym_loop] = ACTIONS(1866), + [anon_sym_match] = ACTIONS(1866), + [anon_sym_mod] = ACTIONS(1866), + [anon_sym_pub] = ACTIONS(1866), + [anon_sym_return] = ACTIONS(1866), + [anon_sym_static] = ACTIONS(1866), + [anon_sym_struct] = ACTIONS(1866), + [anon_sym_trait] = ACTIONS(1866), + [anon_sym_type] = ACTIONS(1866), + [anon_sym_union] = ACTIONS(1866), + [anon_sym_unsafe] = ACTIONS(1866), + [anon_sym_use] = ACTIONS(1866), + [anon_sym_while] = ACTIONS(1866), + [anon_sym_extern] = ACTIONS(1866), + [anon_sym_yield] = ACTIONS(1866), + [anon_sym_move] = ACTIONS(1866), + [anon_sym_try] = ACTIONS(1866), + [sym_integer_literal] = ACTIONS(1864), + [aux_sym_string_literal_token1] = ACTIONS(1864), + [sym_char_literal] = ACTIONS(1864), + [anon_sym_true] = ACTIONS(1866), + [anon_sym_false] = ACTIONS(1866), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1866), + [sym_super] = ACTIONS(1866), + [sym_crate] = ACTIONS(1866), + [sym_metavariable] = ACTIONS(1864), + [sym__raw_string_literal_start] = ACTIONS(1864), + [sym_float_literal] = ACTIONS(1864), }, [515] = { [sym_line_comment] = STATE(515), [sym_block_comment] = STATE(515), - [ts_builtin_sym_end] = ACTIONS(1806), - [sym_identifier] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(1806), - [anon_sym_macro_rules_BANG] = ACTIONS(1806), - [anon_sym_LPAREN] = ACTIONS(1806), - [anon_sym_LBRACK] = ACTIONS(1806), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_RBRACE] = ACTIONS(1806), - [anon_sym_STAR] = ACTIONS(1806), - [anon_sym_u8] = ACTIONS(1808), - [anon_sym_i8] = ACTIONS(1808), - [anon_sym_u16] = ACTIONS(1808), - [anon_sym_i16] = ACTIONS(1808), - [anon_sym_u32] = ACTIONS(1808), - [anon_sym_i32] = ACTIONS(1808), - [anon_sym_u64] = ACTIONS(1808), - [anon_sym_i64] = ACTIONS(1808), - [anon_sym_u128] = ACTIONS(1808), - [anon_sym_i128] = ACTIONS(1808), - [anon_sym_isize] = ACTIONS(1808), - [anon_sym_usize] = ACTIONS(1808), - [anon_sym_f32] = ACTIONS(1808), - [anon_sym_f64] = ACTIONS(1808), - [anon_sym_bool] = ACTIONS(1808), - [anon_sym_str] = ACTIONS(1808), - [anon_sym_char] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1806), - [anon_sym_BANG] = ACTIONS(1806), - [anon_sym_AMP] = ACTIONS(1806), - [anon_sym_PIPE] = ACTIONS(1806), - [anon_sym_LT] = ACTIONS(1806), - [anon_sym_DOT_DOT] = ACTIONS(1806), - [anon_sym_COLON_COLON] = ACTIONS(1806), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_SQUOTE] = ACTIONS(1808), - [anon_sym_async] = ACTIONS(1808), - [anon_sym_break] = ACTIONS(1808), - [anon_sym_const] = ACTIONS(1808), - [anon_sym_continue] = ACTIONS(1808), - [anon_sym_default] = ACTIONS(1808), - [anon_sym_enum] = ACTIONS(1808), - [anon_sym_fn] = ACTIONS(1808), - [anon_sym_for] = ACTIONS(1808), - [anon_sym_if] = ACTIONS(1808), - [anon_sym_impl] = ACTIONS(1808), - [anon_sym_let] = ACTIONS(1808), - [anon_sym_loop] = ACTIONS(1808), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_mod] = ACTIONS(1808), - [anon_sym_pub] = ACTIONS(1808), - [anon_sym_return] = ACTIONS(1808), - [anon_sym_static] = ACTIONS(1808), - [anon_sym_struct] = ACTIONS(1808), - [anon_sym_trait] = ACTIONS(1808), - [anon_sym_type] = ACTIONS(1808), - [anon_sym_union] = ACTIONS(1808), - [anon_sym_unsafe] = ACTIONS(1808), - [anon_sym_use] = ACTIONS(1808), - [anon_sym_while] = ACTIONS(1808), - [anon_sym_extern] = ACTIONS(1808), - [anon_sym_yield] = ACTIONS(1808), - [anon_sym_move] = ACTIONS(1808), - [anon_sym_try] = ACTIONS(1808), - [sym_integer_literal] = ACTIONS(1806), - [aux_sym_string_literal_token1] = ACTIONS(1806), - [sym_char_literal] = ACTIONS(1806), - [anon_sym_true] = ACTIONS(1808), - [anon_sym_false] = ACTIONS(1808), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1808), - [sym_super] = ACTIONS(1808), - [sym_crate] = ACTIONS(1808), - [sym_metavariable] = ACTIONS(1806), - [sym__raw_string_literal_start] = ACTIONS(1806), - [sym_float_literal] = ACTIONS(1806), + [ts_builtin_sym_end] = ACTIONS(1868), + [sym_identifier] = ACTIONS(1870), + [anon_sym_SEMI] = ACTIONS(1868), + [anon_sym_macro_rules_BANG] = ACTIONS(1868), + [anon_sym_LPAREN] = ACTIONS(1868), + [anon_sym_LBRACK] = ACTIONS(1868), + [anon_sym_LBRACE] = ACTIONS(1868), + [anon_sym_RBRACE] = ACTIONS(1868), + [anon_sym_STAR] = ACTIONS(1868), + [anon_sym_u8] = ACTIONS(1870), + [anon_sym_i8] = ACTIONS(1870), + [anon_sym_u16] = ACTIONS(1870), + [anon_sym_i16] = ACTIONS(1870), + [anon_sym_u32] = ACTIONS(1870), + [anon_sym_i32] = ACTIONS(1870), + [anon_sym_u64] = ACTIONS(1870), + [anon_sym_i64] = ACTIONS(1870), + [anon_sym_u128] = ACTIONS(1870), + [anon_sym_i128] = ACTIONS(1870), + [anon_sym_isize] = ACTIONS(1870), + [anon_sym_usize] = ACTIONS(1870), + [anon_sym_f32] = ACTIONS(1870), + [anon_sym_f64] = ACTIONS(1870), + [anon_sym_bool] = ACTIONS(1870), + [anon_sym_str] = ACTIONS(1870), + [anon_sym_char] = ACTIONS(1870), + [anon_sym_DASH] = ACTIONS(1868), + [anon_sym_BANG] = ACTIONS(1868), + [anon_sym_AMP] = ACTIONS(1868), + [anon_sym_PIPE] = ACTIONS(1868), + [anon_sym_LT] = ACTIONS(1868), + [anon_sym_DOT_DOT] = ACTIONS(1868), + [anon_sym_COLON_COLON] = ACTIONS(1868), + [anon_sym_POUND] = ACTIONS(1868), + [anon_sym_SQUOTE] = ACTIONS(1870), + [anon_sym_async] = ACTIONS(1870), + [anon_sym_break] = ACTIONS(1870), + [anon_sym_const] = ACTIONS(1870), + [anon_sym_continue] = ACTIONS(1870), + [anon_sym_default] = ACTIONS(1870), + [anon_sym_enum] = ACTIONS(1870), + [anon_sym_fn] = ACTIONS(1870), + [anon_sym_for] = ACTIONS(1870), + [anon_sym_if] = ACTIONS(1870), + [anon_sym_impl] = ACTIONS(1870), + [anon_sym_let] = ACTIONS(1870), + [anon_sym_loop] = ACTIONS(1870), + [anon_sym_match] = ACTIONS(1870), + [anon_sym_mod] = ACTIONS(1870), + [anon_sym_pub] = ACTIONS(1870), + [anon_sym_return] = ACTIONS(1870), + [anon_sym_static] = ACTIONS(1870), + [anon_sym_struct] = ACTIONS(1870), + [anon_sym_trait] = ACTIONS(1870), + [anon_sym_type] = ACTIONS(1870), + [anon_sym_union] = ACTIONS(1870), + [anon_sym_unsafe] = ACTIONS(1870), + [anon_sym_use] = ACTIONS(1870), + [anon_sym_while] = ACTIONS(1870), + [anon_sym_extern] = ACTIONS(1870), + [anon_sym_yield] = ACTIONS(1870), + [anon_sym_move] = ACTIONS(1870), + [anon_sym_try] = ACTIONS(1870), + [sym_integer_literal] = ACTIONS(1868), + [aux_sym_string_literal_token1] = ACTIONS(1868), + [sym_char_literal] = ACTIONS(1868), + [anon_sym_true] = ACTIONS(1870), + [anon_sym_false] = ACTIONS(1870), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1870), + [sym_super] = ACTIONS(1870), + [sym_crate] = ACTIONS(1870), + [sym_metavariable] = ACTIONS(1868), + [sym__raw_string_literal_start] = ACTIONS(1868), + [sym_float_literal] = ACTIONS(1868), }, [516] = { [sym_line_comment] = STATE(516), [sym_block_comment] = STATE(516), - [ts_builtin_sym_end] = ACTIONS(1810), - [sym_identifier] = ACTIONS(1812), - [anon_sym_SEMI] = ACTIONS(1810), - [anon_sym_macro_rules_BANG] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_STAR] = ACTIONS(1810), - [anon_sym_u8] = ACTIONS(1812), - [anon_sym_i8] = ACTIONS(1812), - [anon_sym_u16] = ACTIONS(1812), - [anon_sym_i16] = ACTIONS(1812), - [anon_sym_u32] = ACTIONS(1812), - [anon_sym_i32] = ACTIONS(1812), - [anon_sym_u64] = ACTIONS(1812), - [anon_sym_i64] = ACTIONS(1812), - [anon_sym_u128] = ACTIONS(1812), - [anon_sym_i128] = ACTIONS(1812), - [anon_sym_isize] = ACTIONS(1812), - [anon_sym_usize] = ACTIONS(1812), - [anon_sym_f32] = ACTIONS(1812), - [anon_sym_f64] = ACTIONS(1812), - [anon_sym_bool] = ACTIONS(1812), - [anon_sym_str] = ACTIONS(1812), - [anon_sym_char] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1810), - [anon_sym_BANG] = ACTIONS(1810), - [anon_sym_AMP] = ACTIONS(1810), - [anon_sym_PIPE] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(1810), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_POUND] = ACTIONS(1810), - [anon_sym_SQUOTE] = ACTIONS(1812), - [anon_sym_async] = ACTIONS(1812), - [anon_sym_break] = ACTIONS(1812), - [anon_sym_const] = ACTIONS(1812), - [anon_sym_continue] = ACTIONS(1812), - [anon_sym_default] = ACTIONS(1812), - [anon_sym_enum] = ACTIONS(1812), - [anon_sym_fn] = ACTIONS(1812), - [anon_sym_for] = ACTIONS(1812), - [anon_sym_if] = ACTIONS(1812), - [anon_sym_impl] = ACTIONS(1812), - [anon_sym_let] = ACTIONS(1812), - [anon_sym_loop] = ACTIONS(1812), - [anon_sym_match] = ACTIONS(1812), - [anon_sym_mod] = ACTIONS(1812), - [anon_sym_pub] = ACTIONS(1812), - [anon_sym_return] = ACTIONS(1812), - [anon_sym_static] = ACTIONS(1812), - [anon_sym_struct] = ACTIONS(1812), - [anon_sym_trait] = ACTIONS(1812), - [anon_sym_type] = ACTIONS(1812), - [anon_sym_union] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(1812), - [anon_sym_use] = ACTIONS(1812), - [anon_sym_while] = ACTIONS(1812), - [anon_sym_extern] = ACTIONS(1812), - [anon_sym_yield] = ACTIONS(1812), - [anon_sym_move] = ACTIONS(1812), - [anon_sym_try] = ACTIONS(1812), - [sym_integer_literal] = ACTIONS(1810), - [aux_sym_string_literal_token1] = ACTIONS(1810), - [sym_char_literal] = ACTIONS(1810), - [anon_sym_true] = ACTIONS(1812), - [anon_sym_false] = ACTIONS(1812), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1812), - [sym_super] = ACTIONS(1812), - [sym_crate] = ACTIONS(1812), - [sym_metavariable] = ACTIONS(1810), - [sym__raw_string_literal_start] = ACTIONS(1810), - [sym_float_literal] = ACTIONS(1810), + [ts_builtin_sym_end] = ACTIONS(1872), + [sym_identifier] = ACTIONS(1874), + [anon_sym_SEMI] = ACTIONS(1872), + [anon_sym_macro_rules_BANG] = ACTIONS(1872), + [anon_sym_LPAREN] = ACTIONS(1872), + [anon_sym_LBRACK] = ACTIONS(1872), + [anon_sym_LBRACE] = ACTIONS(1872), + [anon_sym_RBRACE] = ACTIONS(1872), + [anon_sym_STAR] = ACTIONS(1872), + [anon_sym_u8] = ACTIONS(1874), + [anon_sym_i8] = ACTIONS(1874), + [anon_sym_u16] = ACTIONS(1874), + [anon_sym_i16] = ACTIONS(1874), + [anon_sym_u32] = ACTIONS(1874), + [anon_sym_i32] = ACTIONS(1874), + [anon_sym_u64] = ACTIONS(1874), + [anon_sym_i64] = ACTIONS(1874), + [anon_sym_u128] = ACTIONS(1874), + [anon_sym_i128] = ACTIONS(1874), + [anon_sym_isize] = ACTIONS(1874), + [anon_sym_usize] = ACTIONS(1874), + [anon_sym_f32] = ACTIONS(1874), + [anon_sym_f64] = ACTIONS(1874), + [anon_sym_bool] = ACTIONS(1874), + [anon_sym_str] = ACTIONS(1874), + [anon_sym_char] = ACTIONS(1874), + [anon_sym_DASH] = ACTIONS(1872), + [anon_sym_BANG] = ACTIONS(1872), + [anon_sym_AMP] = ACTIONS(1872), + [anon_sym_PIPE] = ACTIONS(1872), + [anon_sym_LT] = ACTIONS(1872), + [anon_sym_DOT_DOT] = ACTIONS(1872), + [anon_sym_COLON_COLON] = ACTIONS(1872), + [anon_sym_POUND] = ACTIONS(1872), + [anon_sym_SQUOTE] = ACTIONS(1874), + [anon_sym_async] = ACTIONS(1874), + [anon_sym_break] = ACTIONS(1874), + [anon_sym_const] = ACTIONS(1874), + [anon_sym_continue] = ACTIONS(1874), + [anon_sym_default] = ACTIONS(1874), + [anon_sym_enum] = ACTIONS(1874), + [anon_sym_fn] = ACTIONS(1874), + [anon_sym_for] = ACTIONS(1874), + [anon_sym_if] = ACTIONS(1874), + [anon_sym_impl] = ACTIONS(1874), + [anon_sym_let] = ACTIONS(1874), + [anon_sym_loop] = ACTIONS(1874), + [anon_sym_match] = ACTIONS(1874), + [anon_sym_mod] = ACTIONS(1874), + [anon_sym_pub] = ACTIONS(1874), + [anon_sym_return] = ACTIONS(1874), + [anon_sym_static] = ACTIONS(1874), + [anon_sym_struct] = ACTIONS(1874), + [anon_sym_trait] = ACTIONS(1874), + [anon_sym_type] = ACTIONS(1874), + [anon_sym_union] = ACTIONS(1874), + [anon_sym_unsafe] = ACTIONS(1874), + [anon_sym_use] = ACTIONS(1874), + [anon_sym_while] = ACTIONS(1874), + [anon_sym_extern] = ACTIONS(1874), + [anon_sym_yield] = ACTIONS(1874), + [anon_sym_move] = ACTIONS(1874), + [anon_sym_try] = ACTIONS(1874), + [sym_integer_literal] = ACTIONS(1872), + [aux_sym_string_literal_token1] = ACTIONS(1872), + [sym_char_literal] = ACTIONS(1872), + [anon_sym_true] = ACTIONS(1874), + [anon_sym_false] = ACTIONS(1874), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1874), + [sym_super] = ACTIONS(1874), + [sym_crate] = ACTIONS(1874), + [sym_metavariable] = ACTIONS(1872), + [sym__raw_string_literal_start] = ACTIONS(1872), + [sym_float_literal] = ACTIONS(1872), }, [517] = { [sym_line_comment] = STATE(517), [sym_block_comment] = STATE(517), - [ts_builtin_sym_end] = ACTIONS(1814), - [sym_identifier] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(1814), - [anon_sym_macro_rules_BANG] = ACTIONS(1814), - [anon_sym_LPAREN] = ACTIONS(1814), - [anon_sym_LBRACK] = ACTIONS(1814), - [anon_sym_LBRACE] = ACTIONS(1814), - [anon_sym_RBRACE] = ACTIONS(1814), - [anon_sym_STAR] = ACTIONS(1814), - [anon_sym_u8] = ACTIONS(1816), - [anon_sym_i8] = ACTIONS(1816), - [anon_sym_u16] = ACTIONS(1816), - [anon_sym_i16] = ACTIONS(1816), - [anon_sym_u32] = ACTIONS(1816), - [anon_sym_i32] = ACTIONS(1816), - [anon_sym_u64] = ACTIONS(1816), - [anon_sym_i64] = ACTIONS(1816), - [anon_sym_u128] = ACTIONS(1816), - [anon_sym_i128] = ACTIONS(1816), - [anon_sym_isize] = ACTIONS(1816), - [anon_sym_usize] = ACTIONS(1816), - [anon_sym_f32] = ACTIONS(1816), - [anon_sym_f64] = ACTIONS(1816), - [anon_sym_bool] = ACTIONS(1816), - [anon_sym_str] = ACTIONS(1816), - [anon_sym_char] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1814), - [anon_sym_BANG] = ACTIONS(1814), - [anon_sym_AMP] = ACTIONS(1814), - [anon_sym_PIPE] = ACTIONS(1814), - [anon_sym_LT] = ACTIONS(1814), - [anon_sym_DOT_DOT] = ACTIONS(1814), - [anon_sym_COLON_COLON] = ACTIONS(1814), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_SQUOTE] = ACTIONS(1816), - [anon_sym_async] = ACTIONS(1816), - [anon_sym_break] = ACTIONS(1816), - [anon_sym_const] = ACTIONS(1816), - [anon_sym_continue] = ACTIONS(1816), - [anon_sym_default] = ACTIONS(1816), - [anon_sym_enum] = ACTIONS(1816), - [anon_sym_fn] = ACTIONS(1816), - [anon_sym_for] = ACTIONS(1816), - [anon_sym_if] = ACTIONS(1816), - [anon_sym_impl] = ACTIONS(1816), - [anon_sym_let] = ACTIONS(1816), - [anon_sym_loop] = ACTIONS(1816), - [anon_sym_match] = ACTIONS(1816), - [anon_sym_mod] = ACTIONS(1816), - [anon_sym_pub] = ACTIONS(1816), - [anon_sym_return] = ACTIONS(1816), - [anon_sym_static] = ACTIONS(1816), - [anon_sym_struct] = ACTIONS(1816), - [anon_sym_trait] = ACTIONS(1816), - [anon_sym_type] = ACTIONS(1816), - [anon_sym_union] = ACTIONS(1816), - [anon_sym_unsafe] = ACTIONS(1816), - [anon_sym_use] = ACTIONS(1816), - [anon_sym_while] = ACTIONS(1816), - [anon_sym_extern] = ACTIONS(1816), - [anon_sym_yield] = ACTIONS(1816), - [anon_sym_move] = ACTIONS(1816), - [anon_sym_try] = ACTIONS(1816), - [sym_integer_literal] = ACTIONS(1814), - [aux_sym_string_literal_token1] = ACTIONS(1814), - [sym_char_literal] = ACTIONS(1814), - [anon_sym_true] = ACTIONS(1816), - [anon_sym_false] = ACTIONS(1816), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1816), - [sym_super] = ACTIONS(1816), - [sym_crate] = ACTIONS(1816), - [sym_metavariable] = ACTIONS(1814), - [sym__raw_string_literal_start] = ACTIONS(1814), - [sym_float_literal] = ACTIONS(1814), + [ts_builtin_sym_end] = ACTIONS(1876), + [sym_identifier] = ACTIONS(1878), + [anon_sym_SEMI] = ACTIONS(1876), + [anon_sym_macro_rules_BANG] = ACTIONS(1876), + [anon_sym_LPAREN] = ACTIONS(1876), + [anon_sym_LBRACK] = ACTIONS(1876), + [anon_sym_LBRACE] = ACTIONS(1876), + [anon_sym_RBRACE] = ACTIONS(1876), + [anon_sym_STAR] = ACTIONS(1876), + [anon_sym_u8] = ACTIONS(1878), + [anon_sym_i8] = ACTIONS(1878), + [anon_sym_u16] = ACTIONS(1878), + [anon_sym_i16] = ACTIONS(1878), + [anon_sym_u32] = ACTIONS(1878), + [anon_sym_i32] = ACTIONS(1878), + [anon_sym_u64] = ACTIONS(1878), + [anon_sym_i64] = ACTIONS(1878), + [anon_sym_u128] = ACTIONS(1878), + [anon_sym_i128] = ACTIONS(1878), + [anon_sym_isize] = ACTIONS(1878), + [anon_sym_usize] = ACTIONS(1878), + [anon_sym_f32] = ACTIONS(1878), + [anon_sym_f64] = ACTIONS(1878), + [anon_sym_bool] = ACTIONS(1878), + [anon_sym_str] = ACTIONS(1878), + [anon_sym_char] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1876), + [anon_sym_BANG] = ACTIONS(1876), + [anon_sym_AMP] = ACTIONS(1876), + [anon_sym_PIPE] = ACTIONS(1876), + [anon_sym_LT] = ACTIONS(1876), + [anon_sym_DOT_DOT] = ACTIONS(1876), + [anon_sym_COLON_COLON] = ACTIONS(1876), + [anon_sym_POUND] = ACTIONS(1876), + [anon_sym_SQUOTE] = ACTIONS(1878), + [anon_sym_async] = ACTIONS(1878), + [anon_sym_break] = ACTIONS(1878), + [anon_sym_const] = ACTIONS(1878), + [anon_sym_continue] = ACTIONS(1878), + [anon_sym_default] = ACTIONS(1878), + [anon_sym_enum] = ACTIONS(1878), + [anon_sym_fn] = ACTIONS(1878), + [anon_sym_for] = ACTIONS(1878), + [anon_sym_if] = ACTIONS(1878), + [anon_sym_impl] = ACTIONS(1878), + [anon_sym_let] = ACTIONS(1878), + [anon_sym_loop] = ACTIONS(1878), + [anon_sym_match] = ACTIONS(1878), + [anon_sym_mod] = ACTIONS(1878), + [anon_sym_pub] = ACTIONS(1878), + [anon_sym_return] = ACTIONS(1878), + [anon_sym_static] = ACTIONS(1878), + [anon_sym_struct] = ACTIONS(1878), + [anon_sym_trait] = ACTIONS(1878), + [anon_sym_type] = ACTIONS(1878), + [anon_sym_union] = ACTIONS(1878), + [anon_sym_unsafe] = ACTIONS(1878), + [anon_sym_use] = ACTIONS(1878), + [anon_sym_while] = ACTIONS(1878), + [anon_sym_extern] = ACTIONS(1878), + [anon_sym_yield] = ACTIONS(1878), + [anon_sym_move] = ACTIONS(1878), + [anon_sym_try] = ACTIONS(1878), + [sym_integer_literal] = ACTIONS(1876), + [aux_sym_string_literal_token1] = ACTIONS(1876), + [sym_char_literal] = ACTIONS(1876), + [anon_sym_true] = ACTIONS(1878), + [anon_sym_false] = ACTIONS(1878), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1878), + [sym_super] = ACTIONS(1878), + [sym_crate] = ACTIONS(1878), + [sym_metavariable] = ACTIONS(1876), + [sym__raw_string_literal_start] = ACTIONS(1876), + [sym_float_literal] = ACTIONS(1876), }, [518] = { [sym_line_comment] = STATE(518), [sym_block_comment] = STATE(518), - [ts_builtin_sym_end] = ACTIONS(1818), - [sym_identifier] = ACTIONS(1820), - [anon_sym_SEMI] = ACTIONS(1818), - [anon_sym_macro_rules_BANG] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_STAR] = ACTIONS(1818), - [anon_sym_u8] = ACTIONS(1820), - [anon_sym_i8] = ACTIONS(1820), - [anon_sym_u16] = ACTIONS(1820), - [anon_sym_i16] = ACTIONS(1820), - [anon_sym_u32] = ACTIONS(1820), - [anon_sym_i32] = ACTIONS(1820), - [anon_sym_u64] = ACTIONS(1820), - [anon_sym_i64] = ACTIONS(1820), - [anon_sym_u128] = ACTIONS(1820), - [anon_sym_i128] = ACTIONS(1820), - [anon_sym_isize] = ACTIONS(1820), - [anon_sym_usize] = ACTIONS(1820), - [anon_sym_f32] = ACTIONS(1820), - [anon_sym_f64] = ACTIONS(1820), - [anon_sym_bool] = ACTIONS(1820), - [anon_sym_str] = ACTIONS(1820), - [anon_sym_char] = ACTIONS(1820), - [anon_sym_DASH] = ACTIONS(1818), - [anon_sym_BANG] = ACTIONS(1818), - [anon_sym_AMP] = ACTIONS(1818), - [anon_sym_PIPE] = ACTIONS(1818), - [anon_sym_LT] = ACTIONS(1818), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_POUND] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_async] = ACTIONS(1820), - [anon_sym_break] = ACTIONS(1820), - [anon_sym_const] = ACTIONS(1820), - [anon_sym_continue] = ACTIONS(1820), - [anon_sym_default] = ACTIONS(1820), - [anon_sym_enum] = ACTIONS(1820), - [anon_sym_fn] = ACTIONS(1820), - [anon_sym_for] = ACTIONS(1820), - [anon_sym_if] = ACTIONS(1820), - [anon_sym_impl] = ACTIONS(1820), - [anon_sym_let] = ACTIONS(1820), - [anon_sym_loop] = ACTIONS(1820), - [anon_sym_match] = ACTIONS(1820), - [anon_sym_mod] = ACTIONS(1820), - [anon_sym_pub] = ACTIONS(1820), - [anon_sym_return] = ACTIONS(1820), - [anon_sym_static] = ACTIONS(1820), - [anon_sym_struct] = ACTIONS(1820), - [anon_sym_trait] = ACTIONS(1820), - [anon_sym_type] = ACTIONS(1820), - [anon_sym_union] = ACTIONS(1820), - [anon_sym_unsafe] = ACTIONS(1820), - [anon_sym_use] = ACTIONS(1820), - [anon_sym_while] = ACTIONS(1820), - [anon_sym_extern] = ACTIONS(1820), - [anon_sym_yield] = ACTIONS(1820), - [anon_sym_move] = ACTIONS(1820), - [anon_sym_try] = ACTIONS(1820), - [sym_integer_literal] = ACTIONS(1818), - [aux_sym_string_literal_token1] = ACTIONS(1818), - [sym_char_literal] = ACTIONS(1818), - [anon_sym_true] = ACTIONS(1820), - [anon_sym_false] = ACTIONS(1820), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1820), - [sym_super] = ACTIONS(1820), - [sym_crate] = ACTIONS(1820), - [sym_metavariable] = ACTIONS(1818), - [sym__raw_string_literal_start] = ACTIONS(1818), - [sym_float_literal] = ACTIONS(1818), + [ts_builtin_sym_end] = ACTIONS(1880), + [sym_identifier] = ACTIONS(1882), + [anon_sym_SEMI] = ACTIONS(1880), + [anon_sym_macro_rules_BANG] = ACTIONS(1880), + [anon_sym_LPAREN] = ACTIONS(1880), + [anon_sym_LBRACK] = ACTIONS(1880), + [anon_sym_LBRACE] = ACTIONS(1880), + [anon_sym_RBRACE] = ACTIONS(1880), + [anon_sym_STAR] = ACTIONS(1880), + [anon_sym_u8] = ACTIONS(1882), + [anon_sym_i8] = ACTIONS(1882), + [anon_sym_u16] = ACTIONS(1882), + [anon_sym_i16] = ACTIONS(1882), + [anon_sym_u32] = ACTIONS(1882), + [anon_sym_i32] = ACTIONS(1882), + [anon_sym_u64] = ACTIONS(1882), + [anon_sym_i64] = ACTIONS(1882), + [anon_sym_u128] = ACTIONS(1882), + [anon_sym_i128] = ACTIONS(1882), + [anon_sym_isize] = ACTIONS(1882), + [anon_sym_usize] = ACTIONS(1882), + [anon_sym_f32] = ACTIONS(1882), + [anon_sym_f64] = ACTIONS(1882), + [anon_sym_bool] = ACTIONS(1882), + [anon_sym_str] = ACTIONS(1882), + [anon_sym_char] = ACTIONS(1882), + [anon_sym_DASH] = ACTIONS(1880), + [anon_sym_BANG] = ACTIONS(1880), + [anon_sym_AMP] = ACTIONS(1880), + [anon_sym_PIPE] = ACTIONS(1880), + [anon_sym_LT] = ACTIONS(1880), + [anon_sym_DOT_DOT] = ACTIONS(1880), + [anon_sym_COLON_COLON] = ACTIONS(1880), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_SQUOTE] = ACTIONS(1882), + [anon_sym_async] = ACTIONS(1882), + [anon_sym_break] = ACTIONS(1882), + [anon_sym_const] = ACTIONS(1882), + [anon_sym_continue] = ACTIONS(1882), + [anon_sym_default] = ACTIONS(1882), + [anon_sym_enum] = ACTIONS(1882), + [anon_sym_fn] = ACTIONS(1882), + [anon_sym_for] = ACTIONS(1882), + [anon_sym_if] = ACTIONS(1882), + [anon_sym_impl] = ACTIONS(1882), + [anon_sym_let] = ACTIONS(1882), + [anon_sym_loop] = ACTIONS(1882), + [anon_sym_match] = ACTIONS(1882), + [anon_sym_mod] = ACTIONS(1882), + [anon_sym_pub] = ACTIONS(1882), + [anon_sym_return] = ACTIONS(1882), + [anon_sym_static] = ACTIONS(1882), + [anon_sym_struct] = ACTIONS(1882), + [anon_sym_trait] = ACTIONS(1882), + [anon_sym_type] = ACTIONS(1882), + [anon_sym_union] = ACTIONS(1882), + [anon_sym_unsafe] = ACTIONS(1882), + [anon_sym_use] = ACTIONS(1882), + [anon_sym_while] = ACTIONS(1882), + [anon_sym_extern] = ACTIONS(1882), + [anon_sym_yield] = ACTIONS(1882), + [anon_sym_move] = ACTIONS(1882), + [anon_sym_try] = ACTIONS(1882), + [sym_integer_literal] = ACTIONS(1880), + [aux_sym_string_literal_token1] = ACTIONS(1880), + [sym_char_literal] = ACTIONS(1880), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1882), + [sym_super] = ACTIONS(1882), + [sym_crate] = ACTIONS(1882), + [sym_metavariable] = ACTIONS(1880), + [sym__raw_string_literal_start] = ACTIONS(1880), + [sym_float_literal] = ACTIONS(1880), }, [519] = { [sym_line_comment] = STATE(519), [sym_block_comment] = STATE(519), - [ts_builtin_sym_end] = ACTIONS(1822), - [sym_identifier] = ACTIONS(1824), - [anon_sym_SEMI] = ACTIONS(1822), - [anon_sym_macro_rules_BANG] = ACTIONS(1822), - [anon_sym_LPAREN] = ACTIONS(1822), - [anon_sym_LBRACK] = ACTIONS(1822), - [anon_sym_LBRACE] = ACTIONS(1822), - [anon_sym_RBRACE] = ACTIONS(1822), - [anon_sym_STAR] = ACTIONS(1822), - [anon_sym_u8] = ACTIONS(1824), - [anon_sym_i8] = ACTIONS(1824), - [anon_sym_u16] = ACTIONS(1824), - [anon_sym_i16] = ACTIONS(1824), - [anon_sym_u32] = ACTIONS(1824), - [anon_sym_i32] = ACTIONS(1824), - [anon_sym_u64] = ACTIONS(1824), - [anon_sym_i64] = ACTIONS(1824), - [anon_sym_u128] = ACTIONS(1824), - [anon_sym_i128] = ACTIONS(1824), - [anon_sym_isize] = ACTIONS(1824), - [anon_sym_usize] = ACTIONS(1824), - [anon_sym_f32] = ACTIONS(1824), - [anon_sym_f64] = ACTIONS(1824), - [anon_sym_bool] = ACTIONS(1824), - [anon_sym_str] = ACTIONS(1824), - [anon_sym_char] = ACTIONS(1824), - [anon_sym_DASH] = ACTIONS(1822), - [anon_sym_BANG] = ACTIONS(1822), - [anon_sym_AMP] = ACTIONS(1822), - [anon_sym_PIPE] = ACTIONS(1822), - [anon_sym_LT] = ACTIONS(1822), - [anon_sym_DOT_DOT] = ACTIONS(1822), - [anon_sym_COLON_COLON] = ACTIONS(1822), - [anon_sym_POUND] = ACTIONS(1822), - [anon_sym_SQUOTE] = ACTIONS(1824), - [anon_sym_async] = ACTIONS(1824), - [anon_sym_break] = ACTIONS(1824), - [anon_sym_const] = ACTIONS(1824), - [anon_sym_continue] = ACTIONS(1824), - [anon_sym_default] = ACTIONS(1824), - [anon_sym_enum] = ACTIONS(1824), - [anon_sym_fn] = ACTIONS(1824), - [anon_sym_for] = ACTIONS(1824), - [anon_sym_if] = ACTIONS(1824), - [anon_sym_impl] = ACTIONS(1824), - [anon_sym_let] = ACTIONS(1824), - [anon_sym_loop] = ACTIONS(1824), - [anon_sym_match] = ACTIONS(1824), - [anon_sym_mod] = ACTIONS(1824), - [anon_sym_pub] = ACTIONS(1824), - [anon_sym_return] = ACTIONS(1824), - [anon_sym_static] = ACTIONS(1824), - [anon_sym_struct] = ACTIONS(1824), - [anon_sym_trait] = ACTIONS(1824), - [anon_sym_type] = ACTIONS(1824), - [anon_sym_union] = ACTIONS(1824), - [anon_sym_unsafe] = ACTIONS(1824), - [anon_sym_use] = ACTIONS(1824), - [anon_sym_while] = ACTIONS(1824), - [anon_sym_extern] = ACTIONS(1824), - [anon_sym_yield] = ACTIONS(1824), - [anon_sym_move] = ACTIONS(1824), - [anon_sym_try] = ACTIONS(1824), - [sym_integer_literal] = ACTIONS(1822), - [aux_sym_string_literal_token1] = ACTIONS(1822), - [sym_char_literal] = ACTIONS(1822), - [anon_sym_true] = ACTIONS(1824), - [anon_sym_false] = ACTIONS(1824), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1824), - [sym_super] = ACTIONS(1824), - [sym_crate] = ACTIONS(1824), - [sym_metavariable] = ACTIONS(1822), - [sym__raw_string_literal_start] = ACTIONS(1822), - [sym_float_literal] = ACTIONS(1822), + [ts_builtin_sym_end] = ACTIONS(1884), + [sym_identifier] = ACTIONS(1886), + [anon_sym_SEMI] = ACTIONS(1884), + [anon_sym_macro_rules_BANG] = ACTIONS(1884), + [anon_sym_LPAREN] = ACTIONS(1884), + [anon_sym_LBRACK] = ACTIONS(1884), + [anon_sym_LBRACE] = ACTIONS(1884), + [anon_sym_RBRACE] = ACTIONS(1884), + [anon_sym_STAR] = ACTIONS(1884), + [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(1884), + [anon_sym_BANG] = ACTIONS(1884), + [anon_sym_AMP] = ACTIONS(1884), + [anon_sym_PIPE] = ACTIONS(1884), + [anon_sym_LT] = ACTIONS(1884), + [anon_sym_DOT_DOT] = ACTIONS(1884), + [anon_sym_COLON_COLON] = ACTIONS(1884), + [anon_sym_POUND] = ACTIONS(1884), + [anon_sym_SQUOTE] = ACTIONS(1886), + [anon_sym_async] = ACTIONS(1886), + [anon_sym_break] = ACTIONS(1886), + [anon_sym_const] = ACTIONS(1886), + [anon_sym_continue] = ACTIONS(1886), + [anon_sym_default] = ACTIONS(1886), + [anon_sym_enum] = ACTIONS(1886), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_for] = ACTIONS(1886), + [anon_sym_if] = ACTIONS(1886), + [anon_sym_impl] = ACTIONS(1886), + [anon_sym_let] = ACTIONS(1886), + [anon_sym_loop] = ACTIONS(1886), + [anon_sym_match] = ACTIONS(1886), + [anon_sym_mod] = ACTIONS(1886), + [anon_sym_pub] = ACTIONS(1886), + [anon_sym_return] = ACTIONS(1886), + [anon_sym_static] = ACTIONS(1886), + [anon_sym_struct] = ACTIONS(1886), + [anon_sym_trait] = ACTIONS(1886), + [anon_sym_type] = ACTIONS(1886), + [anon_sym_union] = ACTIONS(1886), + [anon_sym_unsafe] = ACTIONS(1886), + [anon_sym_use] = ACTIONS(1886), + [anon_sym_while] = ACTIONS(1886), + [anon_sym_extern] = ACTIONS(1886), + [anon_sym_yield] = ACTIONS(1886), + [anon_sym_move] = ACTIONS(1886), + [anon_sym_try] = ACTIONS(1886), + [sym_integer_literal] = ACTIONS(1884), + [aux_sym_string_literal_token1] = ACTIONS(1884), + [sym_char_literal] = ACTIONS(1884), + [anon_sym_true] = ACTIONS(1886), + [anon_sym_false] = ACTIONS(1886), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1886), + [sym_super] = ACTIONS(1886), + [sym_crate] = ACTIONS(1886), + [sym_metavariable] = ACTIONS(1884), + [sym__raw_string_literal_start] = ACTIONS(1884), + [sym_float_literal] = ACTIONS(1884), }, [520] = { [sym_line_comment] = STATE(520), [sym_block_comment] = STATE(520), - [ts_builtin_sym_end] = ACTIONS(1826), - [sym_identifier] = ACTIONS(1828), - [anon_sym_SEMI] = ACTIONS(1826), - [anon_sym_macro_rules_BANG] = ACTIONS(1826), - [anon_sym_LPAREN] = ACTIONS(1826), - [anon_sym_LBRACK] = ACTIONS(1826), - [anon_sym_LBRACE] = ACTIONS(1826), - [anon_sym_RBRACE] = ACTIONS(1826), - [anon_sym_STAR] = ACTIONS(1826), - [anon_sym_u8] = ACTIONS(1828), - [anon_sym_i8] = ACTIONS(1828), - [anon_sym_u16] = ACTIONS(1828), - [anon_sym_i16] = ACTIONS(1828), - [anon_sym_u32] = ACTIONS(1828), - [anon_sym_i32] = ACTIONS(1828), - [anon_sym_u64] = ACTIONS(1828), - [anon_sym_i64] = ACTIONS(1828), - [anon_sym_u128] = ACTIONS(1828), - [anon_sym_i128] = ACTIONS(1828), - [anon_sym_isize] = ACTIONS(1828), - [anon_sym_usize] = ACTIONS(1828), - [anon_sym_f32] = ACTIONS(1828), - [anon_sym_f64] = ACTIONS(1828), - [anon_sym_bool] = ACTIONS(1828), - [anon_sym_str] = ACTIONS(1828), - [anon_sym_char] = ACTIONS(1828), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_BANG] = ACTIONS(1826), - [anon_sym_AMP] = ACTIONS(1826), - [anon_sym_PIPE] = ACTIONS(1826), - [anon_sym_LT] = ACTIONS(1826), - [anon_sym_DOT_DOT] = ACTIONS(1826), - [anon_sym_COLON_COLON] = ACTIONS(1826), - [anon_sym_POUND] = ACTIONS(1826), - [anon_sym_SQUOTE] = ACTIONS(1828), - [anon_sym_async] = ACTIONS(1828), - [anon_sym_break] = ACTIONS(1828), - [anon_sym_const] = ACTIONS(1828), - [anon_sym_continue] = ACTIONS(1828), - [anon_sym_default] = ACTIONS(1828), - [anon_sym_enum] = ACTIONS(1828), - [anon_sym_fn] = ACTIONS(1828), - [anon_sym_for] = ACTIONS(1828), - [anon_sym_if] = ACTIONS(1828), - [anon_sym_impl] = ACTIONS(1828), - [anon_sym_let] = ACTIONS(1828), - [anon_sym_loop] = ACTIONS(1828), - [anon_sym_match] = ACTIONS(1828), - [anon_sym_mod] = ACTIONS(1828), - [anon_sym_pub] = ACTIONS(1828), - [anon_sym_return] = ACTIONS(1828), - [anon_sym_static] = ACTIONS(1828), - [anon_sym_struct] = ACTIONS(1828), - [anon_sym_trait] = ACTIONS(1828), - [anon_sym_type] = ACTIONS(1828), - [anon_sym_union] = ACTIONS(1828), - [anon_sym_unsafe] = ACTIONS(1828), - [anon_sym_use] = ACTIONS(1828), - [anon_sym_while] = ACTIONS(1828), - [anon_sym_extern] = ACTIONS(1828), - [anon_sym_yield] = ACTIONS(1828), - [anon_sym_move] = ACTIONS(1828), - [anon_sym_try] = ACTIONS(1828), - [sym_integer_literal] = ACTIONS(1826), - [aux_sym_string_literal_token1] = ACTIONS(1826), - [sym_char_literal] = ACTIONS(1826), - [anon_sym_true] = ACTIONS(1828), - [anon_sym_false] = ACTIONS(1828), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1828), - [sym_super] = ACTIONS(1828), - [sym_crate] = ACTIONS(1828), - [sym_metavariable] = ACTIONS(1826), - [sym__raw_string_literal_start] = ACTIONS(1826), - [sym_float_literal] = ACTIONS(1826), + [ts_builtin_sym_end] = ACTIONS(1888), + [sym_identifier] = ACTIONS(1890), + [anon_sym_SEMI] = ACTIONS(1888), + [anon_sym_macro_rules_BANG] = ACTIONS(1888), + [anon_sym_LPAREN] = ACTIONS(1888), + [anon_sym_LBRACK] = ACTIONS(1888), + [anon_sym_LBRACE] = ACTIONS(1888), + [anon_sym_RBRACE] = ACTIONS(1888), + [anon_sym_STAR] = ACTIONS(1888), + [anon_sym_u8] = ACTIONS(1890), + [anon_sym_i8] = ACTIONS(1890), + [anon_sym_u16] = ACTIONS(1890), + [anon_sym_i16] = ACTIONS(1890), + [anon_sym_u32] = ACTIONS(1890), + [anon_sym_i32] = ACTIONS(1890), + [anon_sym_u64] = ACTIONS(1890), + [anon_sym_i64] = ACTIONS(1890), + [anon_sym_u128] = ACTIONS(1890), + [anon_sym_i128] = ACTIONS(1890), + [anon_sym_isize] = ACTIONS(1890), + [anon_sym_usize] = ACTIONS(1890), + [anon_sym_f32] = ACTIONS(1890), + [anon_sym_f64] = ACTIONS(1890), + [anon_sym_bool] = ACTIONS(1890), + [anon_sym_str] = ACTIONS(1890), + [anon_sym_char] = ACTIONS(1890), + [anon_sym_DASH] = ACTIONS(1888), + [anon_sym_BANG] = ACTIONS(1888), + [anon_sym_AMP] = ACTIONS(1888), + [anon_sym_PIPE] = ACTIONS(1888), + [anon_sym_LT] = ACTIONS(1888), + [anon_sym_DOT_DOT] = ACTIONS(1888), + [anon_sym_COLON_COLON] = ACTIONS(1888), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_SQUOTE] = ACTIONS(1890), + [anon_sym_async] = ACTIONS(1890), + [anon_sym_break] = ACTIONS(1890), + [anon_sym_const] = ACTIONS(1890), + [anon_sym_continue] = ACTIONS(1890), + [anon_sym_default] = ACTIONS(1890), + [anon_sym_enum] = ACTIONS(1890), + [anon_sym_fn] = ACTIONS(1890), + [anon_sym_for] = ACTIONS(1890), + [anon_sym_if] = ACTIONS(1890), + [anon_sym_impl] = ACTIONS(1890), + [anon_sym_let] = ACTIONS(1890), + [anon_sym_loop] = ACTIONS(1890), + [anon_sym_match] = ACTIONS(1890), + [anon_sym_mod] = ACTIONS(1890), + [anon_sym_pub] = ACTIONS(1890), + [anon_sym_return] = ACTIONS(1890), + [anon_sym_static] = ACTIONS(1890), + [anon_sym_struct] = ACTIONS(1890), + [anon_sym_trait] = ACTIONS(1890), + [anon_sym_type] = ACTIONS(1890), + [anon_sym_union] = ACTIONS(1890), + [anon_sym_unsafe] = ACTIONS(1890), + [anon_sym_use] = ACTIONS(1890), + [anon_sym_while] = ACTIONS(1890), + [anon_sym_extern] = ACTIONS(1890), + [anon_sym_yield] = ACTIONS(1890), + [anon_sym_move] = ACTIONS(1890), + [anon_sym_try] = ACTIONS(1890), + [sym_integer_literal] = ACTIONS(1888), + [aux_sym_string_literal_token1] = ACTIONS(1888), + [sym_char_literal] = ACTIONS(1888), + [anon_sym_true] = ACTIONS(1890), + [anon_sym_false] = ACTIONS(1890), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1890), + [sym_super] = ACTIONS(1890), + [sym_crate] = ACTIONS(1890), + [sym_metavariable] = ACTIONS(1888), + [sym__raw_string_literal_start] = ACTIONS(1888), + [sym_float_literal] = ACTIONS(1888), }, [521] = { [sym_line_comment] = STATE(521), [sym_block_comment] = STATE(521), - [ts_builtin_sym_end] = ACTIONS(1830), - [sym_identifier] = ACTIONS(1832), - [anon_sym_SEMI] = ACTIONS(1830), - [anon_sym_macro_rules_BANG] = ACTIONS(1830), - [anon_sym_LPAREN] = ACTIONS(1830), - [anon_sym_LBRACK] = ACTIONS(1830), - [anon_sym_LBRACE] = ACTIONS(1830), - [anon_sym_RBRACE] = ACTIONS(1830), - [anon_sym_STAR] = ACTIONS(1830), - [anon_sym_u8] = ACTIONS(1832), - [anon_sym_i8] = ACTIONS(1832), - [anon_sym_u16] = ACTIONS(1832), - [anon_sym_i16] = ACTIONS(1832), - [anon_sym_u32] = ACTIONS(1832), - [anon_sym_i32] = ACTIONS(1832), - [anon_sym_u64] = ACTIONS(1832), - [anon_sym_i64] = ACTIONS(1832), - [anon_sym_u128] = ACTIONS(1832), - [anon_sym_i128] = ACTIONS(1832), - [anon_sym_isize] = ACTIONS(1832), - [anon_sym_usize] = ACTIONS(1832), - [anon_sym_f32] = ACTIONS(1832), - [anon_sym_f64] = ACTIONS(1832), - [anon_sym_bool] = ACTIONS(1832), - [anon_sym_str] = ACTIONS(1832), - [anon_sym_char] = ACTIONS(1832), - [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_BANG] = ACTIONS(1830), - [anon_sym_AMP] = ACTIONS(1830), - [anon_sym_PIPE] = ACTIONS(1830), - [anon_sym_LT] = ACTIONS(1830), - [anon_sym_DOT_DOT] = ACTIONS(1830), - [anon_sym_COLON_COLON] = ACTIONS(1830), - [anon_sym_POUND] = ACTIONS(1830), - [anon_sym_SQUOTE] = ACTIONS(1832), - [anon_sym_async] = ACTIONS(1832), - [anon_sym_break] = ACTIONS(1832), - [anon_sym_const] = ACTIONS(1832), - [anon_sym_continue] = ACTIONS(1832), - [anon_sym_default] = ACTIONS(1832), - [anon_sym_enum] = ACTIONS(1832), - [anon_sym_fn] = ACTIONS(1832), - [anon_sym_for] = ACTIONS(1832), - [anon_sym_if] = ACTIONS(1832), - [anon_sym_impl] = ACTIONS(1832), - [anon_sym_let] = ACTIONS(1832), - [anon_sym_loop] = ACTIONS(1832), - [anon_sym_match] = ACTIONS(1832), - [anon_sym_mod] = ACTIONS(1832), - [anon_sym_pub] = ACTIONS(1832), - [anon_sym_return] = ACTIONS(1832), - [anon_sym_static] = ACTIONS(1832), - [anon_sym_struct] = ACTIONS(1832), - [anon_sym_trait] = ACTIONS(1832), - [anon_sym_type] = ACTIONS(1832), - [anon_sym_union] = ACTIONS(1832), - [anon_sym_unsafe] = ACTIONS(1832), - [anon_sym_use] = ACTIONS(1832), - [anon_sym_while] = ACTIONS(1832), - [anon_sym_extern] = ACTIONS(1832), - [anon_sym_yield] = ACTIONS(1832), - [anon_sym_move] = ACTIONS(1832), - [anon_sym_try] = ACTIONS(1832), - [sym_integer_literal] = ACTIONS(1830), - [aux_sym_string_literal_token1] = ACTIONS(1830), - [sym_char_literal] = ACTIONS(1830), - [anon_sym_true] = ACTIONS(1832), - [anon_sym_false] = ACTIONS(1832), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1832), - [sym_super] = ACTIONS(1832), - [sym_crate] = ACTIONS(1832), - [sym_metavariable] = ACTIONS(1830), - [sym__raw_string_literal_start] = ACTIONS(1830), - [sym_float_literal] = ACTIONS(1830), + [ts_builtin_sym_end] = ACTIONS(1892), + [sym_identifier] = ACTIONS(1894), + [anon_sym_SEMI] = ACTIONS(1892), + [anon_sym_macro_rules_BANG] = ACTIONS(1892), + [anon_sym_LPAREN] = ACTIONS(1892), + [anon_sym_LBRACK] = ACTIONS(1892), + [anon_sym_LBRACE] = ACTIONS(1892), + [anon_sym_RBRACE] = ACTIONS(1892), + [anon_sym_STAR] = ACTIONS(1892), + [anon_sym_u8] = ACTIONS(1894), + [anon_sym_i8] = ACTIONS(1894), + [anon_sym_u16] = ACTIONS(1894), + [anon_sym_i16] = ACTIONS(1894), + [anon_sym_u32] = ACTIONS(1894), + [anon_sym_i32] = ACTIONS(1894), + [anon_sym_u64] = ACTIONS(1894), + [anon_sym_i64] = ACTIONS(1894), + [anon_sym_u128] = ACTIONS(1894), + [anon_sym_i128] = ACTIONS(1894), + [anon_sym_isize] = ACTIONS(1894), + [anon_sym_usize] = ACTIONS(1894), + [anon_sym_f32] = ACTIONS(1894), + [anon_sym_f64] = ACTIONS(1894), + [anon_sym_bool] = ACTIONS(1894), + [anon_sym_str] = ACTIONS(1894), + [anon_sym_char] = ACTIONS(1894), + [anon_sym_DASH] = ACTIONS(1892), + [anon_sym_BANG] = ACTIONS(1892), + [anon_sym_AMP] = ACTIONS(1892), + [anon_sym_PIPE] = ACTIONS(1892), + [anon_sym_LT] = ACTIONS(1892), + [anon_sym_DOT_DOT] = ACTIONS(1892), + [anon_sym_COLON_COLON] = ACTIONS(1892), + [anon_sym_POUND] = ACTIONS(1892), + [anon_sym_SQUOTE] = ACTIONS(1894), + [anon_sym_async] = ACTIONS(1894), + [anon_sym_break] = ACTIONS(1894), + [anon_sym_const] = ACTIONS(1894), + [anon_sym_continue] = ACTIONS(1894), + [anon_sym_default] = ACTIONS(1894), + [anon_sym_enum] = ACTIONS(1894), + [anon_sym_fn] = ACTIONS(1894), + [anon_sym_for] = ACTIONS(1894), + [anon_sym_if] = ACTIONS(1894), + [anon_sym_impl] = ACTIONS(1894), + [anon_sym_let] = ACTIONS(1894), + [anon_sym_loop] = ACTIONS(1894), + [anon_sym_match] = ACTIONS(1894), + [anon_sym_mod] = ACTIONS(1894), + [anon_sym_pub] = ACTIONS(1894), + [anon_sym_return] = ACTIONS(1894), + [anon_sym_static] = ACTIONS(1894), + [anon_sym_struct] = ACTIONS(1894), + [anon_sym_trait] = ACTIONS(1894), + [anon_sym_type] = ACTIONS(1894), + [anon_sym_union] = ACTIONS(1894), + [anon_sym_unsafe] = ACTIONS(1894), + [anon_sym_use] = ACTIONS(1894), + [anon_sym_while] = ACTIONS(1894), + [anon_sym_extern] = ACTIONS(1894), + [anon_sym_yield] = ACTIONS(1894), + [anon_sym_move] = ACTIONS(1894), + [anon_sym_try] = ACTIONS(1894), + [sym_integer_literal] = ACTIONS(1892), + [aux_sym_string_literal_token1] = ACTIONS(1892), + [sym_char_literal] = ACTIONS(1892), + [anon_sym_true] = ACTIONS(1894), + [anon_sym_false] = ACTIONS(1894), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1894), + [sym_super] = ACTIONS(1894), + [sym_crate] = ACTIONS(1894), + [sym_metavariable] = ACTIONS(1892), + [sym__raw_string_literal_start] = ACTIONS(1892), + [sym_float_literal] = ACTIONS(1892), }, [522] = { [sym_line_comment] = STATE(522), [sym_block_comment] = STATE(522), - [ts_builtin_sym_end] = ACTIONS(1834), - [sym_identifier] = ACTIONS(1836), - [anon_sym_SEMI] = ACTIONS(1834), - [anon_sym_macro_rules_BANG] = ACTIONS(1834), - [anon_sym_LPAREN] = ACTIONS(1834), - [anon_sym_LBRACK] = ACTIONS(1834), - [anon_sym_LBRACE] = ACTIONS(1834), - [anon_sym_RBRACE] = ACTIONS(1834), - [anon_sym_STAR] = ACTIONS(1834), - [anon_sym_u8] = ACTIONS(1836), - [anon_sym_i8] = ACTIONS(1836), - [anon_sym_u16] = ACTIONS(1836), - [anon_sym_i16] = ACTIONS(1836), - [anon_sym_u32] = ACTIONS(1836), - [anon_sym_i32] = ACTIONS(1836), - [anon_sym_u64] = ACTIONS(1836), - [anon_sym_i64] = ACTIONS(1836), - [anon_sym_u128] = ACTIONS(1836), - [anon_sym_i128] = ACTIONS(1836), - [anon_sym_isize] = ACTIONS(1836), - [anon_sym_usize] = ACTIONS(1836), - [anon_sym_f32] = ACTIONS(1836), - [anon_sym_f64] = ACTIONS(1836), - [anon_sym_bool] = ACTIONS(1836), - [anon_sym_str] = ACTIONS(1836), - [anon_sym_char] = ACTIONS(1836), - [anon_sym_DASH] = ACTIONS(1834), - [anon_sym_BANG] = ACTIONS(1834), - [anon_sym_AMP] = ACTIONS(1834), - [anon_sym_PIPE] = ACTIONS(1834), - [anon_sym_LT] = ACTIONS(1834), - [anon_sym_DOT_DOT] = ACTIONS(1834), - [anon_sym_COLON_COLON] = ACTIONS(1834), - [anon_sym_POUND] = ACTIONS(1834), - [anon_sym_SQUOTE] = ACTIONS(1836), - [anon_sym_async] = ACTIONS(1836), - [anon_sym_break] = ACTIONS(1836), - [anon_sym_const] = ACTIONS(1836), - [anon_sym_continue] = ACTIONS(1836), - [anon_sym_default] = ACTIONS(1836), - [anon_sym_enum] = ACTIONS(1836), - [anon_sym_fn] = ACTIONS(1836), - [anon_sym_for] = ACTIONS(1836), - [anon_sym_if] = ACTIONS(1836), - [anon_sym_impl] = ACTIONS(1836), - [anon_sym_let] = ACTIONS(1836), - [anon_sym_loop] = ACTIONS(1836), - [anon_sym_match] = ACTIONS(1836), - [anon_sym_mod] = ACTIONS(1836), - [anon_sym_pub] = ACTIONS(1836), - [anon_sym_return] = ACTIONS(1836), - [anon_sym_static] = ACTIONS(1836), - [anon_sym_struct] = ACTIONS(1836), - [anon_sym_trait] = ACTIONS(1836), - [anon_sym_type] = ACTIONS(1836), - [anon_sym_union] = ACTIONS(1836), - [anon_sym_unsafe] = ACTIONS(1836), - [anon_sym_use] = ACTIONS(1836), - [anon_sym_while] = ACTIONS(1836), - [anon_sym_extern] = ACTIONS(1836), - [anon_sym_yield] = ACTIONS(1836), - [anon_sym_move] = ACTIONS(1836), - [anon_sym_try] = ACTIONS(1836), - [sym_integer_literal] = ACTIONS(1834), - [aux_sym_string_literal_token1] = ACTIONS(1834), - [sym_char_literal] = ACTIONS(1834), - [anon_sym_true] = ACTIONS(1836), - [anon_sym_false] = ACTIONS(1836), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1836), - [sym_super] = ACTIONS(1836), - [sym_crate] = ACTIONS(1836), - [sym_metavariable] = ACTIONS(1834), - [sym__raw_string_literal_start] = ACTIONS(1834), - [sym_float_literal] = ACTIONS(1834), + [ts_builtin_sym_end] = ACTIONS(1896), + [sym_identifier] = ACTIONS(1898), + [anon_sym_SEMI] = ACTIONS(1896), + [anon_sym_macro_rules_BANG] = ACTIONS(1896), + [anon_sym_LPAREN] = ACTIONS(1896), + [anon_sym_LBRACK] = ACTIONS(1896), + [anon_sym_LBRACE] = ACTIONS(1896), + [anon_sym_RBRACE] = ACTIONS(1896), + [anon_sym_STAR] = ACTIONS(1896), + [anon_sym_u8] = ACTIONS(1898), + [anon_sym_i8] = ACTIONS(1898), + [anon_sym_u16] = ACTIONS(1898), + [anon_sym_i16] = ACTIONS(1898), + [anon_sym_u32] = ACTIONS(1898), + [anon_sym_i32] = ACTIONS(1898), + [anon_sym_u64] = ACTIONS(1898), + [anon_sym_i64] = ACTIONS(1898), + [anon_sym_u128] = ACTIONS(1898), + [anon_sym_i128] = ACTIONS(1898), + [anon_sym_isize] = ACTIONS(1898), + [anon_sym_usize] = ACTIONS(1898), + [anon_sym_f32] = ACTIONS(1898), + [anon_sym_f64] = ACTIONS(1898), + [anon_sym_bool] = ACTIONS(1898), + [anon_sym_str] = ACTIONS(1898), + [anon_sym_char] = ACTIONS(1898), + [anon_sym_DASH] = ACTIONS(1896), + [anon_sym_BANG] = ACTIONS(1896), + [anon_sym_AMP] = ACTIONS(1896), + [anon_sym_PIPE] = ACTIONS(1896), + [anon_sym_LT] = ACTIONS(1896), + [anon_sym_DOT_DOT] = ACTIONS(1896), + [anon_sym_COLON_COLON] = ACTIONS(1896), + [anon_sym_POUND] = ACTIONS(1896), + [anon_sym_SQUOTE] = ACTIONS(1898), + [anon_sym_async] = ACTIONS(1898), + [anon_sym_break] = ACTIONS(1898), + [anon_sym_const] = ACTIONS(1898), + [anon_sym_continue] = ACTIONS(1898), + [anon_sym_default] = ACTIONS(1898), + [anon_sym_enum] = ACTIONS(1898), + [anon_sym_fn] = ACTIONS(1898), + [anon_sym_for] = ACTIONS(1898), + [anon_sym_if] = ACTIONS(1898), + [anon_sym_impl] = ACTIONS(1898), + [anon_sym_let] = ACTIONS(1898), + [anon_sym_loop] = ACTIONS(1898), + [anon_sym_match] = ACTIONS(1898), + [anon_sym_mod] = ACTIONS(1898), + [anon_sym_pub] = ACTIONS(1898), + [anon_sym_return] = ACTIONS(1898), + [anon_sym_static] = ACTIONS(1898), + [anon_sym_struct] = ACTIONS(1898), + [anon_sym_trait] = ACTIONS(1898), + [anon_sym_type] = ACTIONS(1898), + [anon_sym_union] = ACTIONS(1898), + [anon_sym_unsafe] = ACTIONS(1898), + [anon_sym_use] = ACTIONS(1898), + [anon_sym_while] = ACTIONS(1898), + [anon_sym_extern] = ACTIONS(1898), + [anon_sym_yield] = ACTIONS(1898), + [anon_sym_move] = ACTIONS(1898), + [anon_sym_try] = ACTIONS(1898), + [sym_integer_literal] = ACTIONS(1896), + [aux_sym_string_literal_token1] = ACTIONS(1896), + [sym_char_literal] = ACTIONS(1896), + [anon_sym_true] = ACTIONS(1898), + [anon_sym_false] = ACTIONS(1898), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1898), + [sym_super] = ACTIONS(1898), + [sym_crate] = ACTIONS(1898), + [sym_metavariable] = ACTIONS(1896), + [sym__raw_string_literal_start] = ACTIONS(1896), + [sym_float_literal] = ACTIONS(1896), }, [523] = { [sym_line_comment] = STATE(523), [sym_block_comment] = STATE(523), - [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_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(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [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), + [ts_builtin_sym_end] = ACTIONS(1900), + [sym_identifier] = ACTIONS(1902), + [anon_sym_SEMI] = ACTIONS(1900), + [anon_sym_macro_rules_BANG] = ACTIONS(1900), + [anon_sym_LPAREN] = ACTIONS(1900), + [anon_sym_LBRACK] = ACTIONS(1900), + [anon_sym_LBRACE] = ACTIONS(1900), + [anon_sym_RBRACE] = ACTIONS(1900), + [anon_sym_STAR] = ACTIONS(1900), + [anon_sym_u8] = ACTIONS(1902), + [anon_sym_i8] = ACTIONS(1902), + [anon_sym_u16] = ACTIONS(1902), + [anon_sym_i16] = ACTIONS(1902), + [anon_sym_u32] = ACTIONS(1902), + [anon_sym_i32] = ACTIONS(1902), + [anon_sym_u64] = ACTIONS(1902), + [anon_sym_i64] = ACTIONS(1902), + [anon_sym_u128] = ACTIONS(1902), + [anon_sym_i128] = ACTIONS(1902), + [anon_sym_isize] = ACTIONS(1902), + [anon_sym_usize] = ACTIONS(1902), + [anon_sym_f32] = ACTIONS(1902), + [anon_sym_f64] = ACTIONS(1902), + [anon_sym_bool] = ACTIONS(1902), + [anon_sym_str] = ACTIONS(1902), + [anon_sym_char] = ACTIONS(1902), + [anon_sym_DASH] = ACTIONS(1900), + [anon_sym_BANG] = ACTIONS(1900), + [anon_sym_AMP] = ACTIONS(1900), + [anon_sym_PIPE] = ACTIONS(1900), + [anon_sym_LT] = ACTIONS(1900), + [anon_sym_DOT_DOT] = ACTIONS(1900), + [anon_sym_COLON_COLON] = ACTIONS(1900), + [anon_sym_POUND] = ACTIONS(1900), + [anon_sym_SQUOTE] = ACTIONS(1902), + [anon_sym_async] = ACTIONS(1902), + [anon_sym_break] = ACTIONS(1902), + [anon_sym_const] = ACTIONS(1902), + [anon_sym_continue] = ACTIONS(1902), + [anon_sym_default] = ACTIONS(1902), + [anon_sym_enum] = ACTIONS(1902), + [anon_sym_fn] = ACTIONS(1902), + [anon_sym_for] = ACTIONS(1902), + [anon_sym_if] = ACTIONS(1902), + [anon_sym_impl] = ACTIONS(1902), + [anon_sym_let] = ACTIONS(1902), + [anon_sym_loop] = ACTIONS(1902), + [anon_sym_match] = ACTIONS(1902), + [anon_sym_mod] = ACTIONS(1902), + [anon_sym_pub] = ACTIONS(1902), + [anon_sym_return] = ACTIONS(1902), + [anon_sym_static] = ACTIONS(1902), + [anon_sym_struct] = ACTIONS(1902), + [anon_sym_trait] = ACTIONS(1902), + [anon_sym_type] = ACTIONS(1902), + [anon_sym_union] = ACTIONS(1902), + [anon_sym_unsafe] = ACTIONS(1902), + [anon_sym_use] = ACTIONS(1902), + [anon_sym_while] = ACTIONS(1902), + [anon_sym_extern] = ACTIONS(1902), + [anon_sym_yield] = ACTIONS(1902), + [anon_sym_move] = ACTIONS(1902), + [anon_sym_try] = ACTIONS(1902), + [sym_integer_literal] = ACTIONS(1900), + [aux_sym_string_literal_token1] = ACTIONS(1900), + [sym_char_literal] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1902), + [anon_sym_false] = ACTIONS(1902), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1902), + [sym_super] = ACTIONS(1902), + [sym_crate] = ACTIONS(1902), + [sym_metavariable] = ACTIONS(1900), + [sym__raw_string_literal_start] = ACTIONS(1900), + [sym_float_literal] = ACTIONS(1900), }, [524] = { [sym_line_comment] = STATE(524), [sym_block_comment] = STATE(524), - [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_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(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [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), + [ts_builtin_sym_end] = ACTIONS(1904), + [sym_identifier] = ACTIONS(1906), + [anon_sym_SEMI] = ACTIONS(1904), + [anon_sym_macro_rules_BANG] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(1904), + [anon_sym_LBRACK] = ACTIONS(1904), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(1904), + [anon_sym_STAR] = ACTIONS(1904), + [anon_sym_u8] = ACTIONS(1906), + [anon_sym_i8] = ACTIONS(1906), + [anon_sym_u16] = ACTIONS(1906), + [anon_sym_i16] = ACTIONS(1906), + [anon_sym_u32] = ACTIONS(1906), + [anon_sym_i32] = ACTIONS(1906), + [anon_sym_u64] = ACTIONS(1906), + [anon_sym_i64] = ACTIONS(1906), + [anon_sym_u128] = ACTIONS(1906), + [anon_sym_i128] = ACTIONS(1906), + [anon_sym_isize] = ACTIONS(1906), + [anon_sym_usize] = ACTIONS(1906), + [anon_sym_f32] = ACTIONS(1906), + [anon_sym_f64] = ACTIONS(1906), + [anon_sym_bool] = ACTIONS(1906), + [anon_sym_str] = ACTIONS(1906), + [anon_sym_char] = ACTIONS(1906), + [anon_sym_DASH] = ACTIONS(1904), + [anon_sym_BANG] = ACTIONS(1904), + [anon_sym_AMP] = ACTIONS(1904), + [anon_sym_PIPE] = ACTIONS(1904), + [anon_sym_LT] = ACTIONS(1904), + [anon_sym_DOT_DOT] = ACTIONS(1904), + [anon_sym_COLON_COLON] = ACTIONS(1904), + [anon_sym_POUND] = ACTIONS(1904), + [anon_sym_SQUOTE] = ACTIONS(1906), + [anon_sym_async] = ACTIONS(1906), + [anon_sym_break] = ACTIONS(1906), + [anon_sym_const] = ACTIONS(1906), + [anon_sym_continue] = ACTIONS(1906), + [anon_sym_default] = ACTIONS(1906), + [anon_sym_enum] = ACTIONS(1906), + [anon_sym_fn] = ACTIONS(1906), + [anon_sym_for] = ACTIONS(1906), + [anon_sym_if] = ACTIONS(1906), + [anon_sym_impl] = ACTIONS(1906), + [anon_sym_let] = ACTIONS(1906), + [anon_sym_loop] = ACTIONS(1906), + [anon_sym_match] = ACTIONS(1906), + [anon_sym_mod] = ACTIONS(1906), + [anon_sym_pub] = ACTIONS(1906), + [anon_sym_return] = ACTIONS(1906), + [anon_sym_static] = ACTIONS(1906), + [anon_sym_struct] = ACTIONS(1906), + [anon_sym_trait] = ACTIONS(1906), + [anon_sym_type] = ACTIONS(1906), + [anon_sym_union] = ACTIONS(1906), + [anon_sym_unsafe] = ACTIONS(1906), + [anon_sym_use] = ACTIONS(1906), + [anon_sym_while] = ACTIONS(1906), + [anon_sym_extern] = ACTIONS(1906), + [anon_sym_yield] = ACTIONS(1906), + [anon_sym_move] = ACTIONS(1906), + [anon_sym_try] = ACTIONS(1906), + [sym_integer_literal] = ACTIONS(1904), + [aux_sym_string_literal_token1] = ACTIONS(1904), + [sym_char_literal] = ACTIONS(1904), + [anon_sym_true] = ACTIONS(1906), + [anon_sym_false] = ACTIONS(1906), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1906), + [sym_super] = ACTIONS(1906), + [sym_crate] = ACTIONS(1906), + [sym_metavariable] = ACTIONS(1904), + [sym__raw_string_literal_start] = ACTIONS(1904), + [sym_float_literal] = ACTIONS(1904), }, [525] = { [sym_line_comment] = STATE(525), [sym_block_comment] = STATE(525), - [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_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(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [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), + [ts_builtin_sym_end] = ACTIONS(1908), + [sym_identifier] = ACTIONS(1910), + [anon_sym_SEMI] = ACTIONS(1908), + [anon_sym_macro_rules_BANG] = ACTIONS(1908), + [anon_sym_LPAREN] = ACTIONS(1908), + [anon_sym_LBRACK] = ACTIONS(1908), + [anon_sym_LBRACE] = ACTIONS(1908), + [anon_sym_RBRACE] = ACTIONS(1908), + [anon_sym_STAR] = ACTIONS(1908), + [anon_sym_u8] = ACTIONS(1910), + [anon_sym_i8] = ACTIONS(1910), + [anon_sym_u16] = ACTIONS(1910), + [anon_sym_i16] = ACTIONS(1910), + [anon_sym_u32] = ACTIONS(1910), + [anon_sym_i32] = ACTIONS(1910), + [anon_sym_u64] = ACTIONS(1910), + [anon_sym_i64] = ACTIONS(1910), + [anon_sym_u128] = ACTIONS(1910), + [anon_sym_i128] = ACTIONS(1910), + [anon_sym_isize] = ACTIONS(1910), + [anon_sym_usize] = ACTIONS(1910), + [anon_sym_f32] = ACTIONS(1910), + [anon_sym_f64] = ACTIONS(1910), + [anon_sym_bool] = ACTIONS(1910), + [anon_sym_str] = ACTIONS(1910), + [anon_sym_char] = ACTIONS(1910), + [anon_sym_DASH] = ACTIONS(1908), + [anon_sym_BANG] = ACTIONS(1908), + [anon_sym_AMP] = ACTIONS(1908), + [anon_sym_PIPE] = ACTIONS(1908), + [anon_sym_LT] = ACTIONS(1908), + [anon_sym_DOT_DOT] = ACTIONS(1908), + [anon_sym_COLON_COLON] = ACTIONS(1908), + [anon_sym_POUND] = ACTIONS(1908), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_async] = ACTIONS(1910), + [anon_sym_break] = ACTIONS(1910), + [anon_sym_const] = ACTIONS(1910), + [anon_sym_continue] = ACTIONS(1910), + [anon_sym_default] = ACTIONS(1910), + [anon_sym_enum] = ACTIONS(1910), + [anon_sym_fn] = ACTIONS(1910), + [anon_sym_for] = ACTIONS(1910), + [anon_sym_if] = ACTIONS(1910), + [anon_sym_impl] = ACTIONS(1910), + [anon_sym_let] = ACTIONS(1910), + [anon_sym_loop] = ACTIONS(1910), + [anon_sym_match] = ACTIONS(1910), + [anon_sym_mod] = ACTIONS(1910), + [anon_sym_pub] = ACTIONS(1910), + [anon_sym_return] = ACTIONS(1910), + [anon_sym_static] = ACTIONS(1910), + [anon_sym_struct] = ACTIONS(1910), + [anon_sym_trait] = ACTIONS(1910), + [anon_sym_type] = ACTIONS(1910), + [anon_sym_union] = ACTIONS(1910), + [anon_sym_unsafe] = ACTIONS(1910), + [anon_sym_use] = ACTIONS(1910), + [anon_sym_while] = ACTIONS(1910), + [anon_sym_extern] = ACTIONS(1910), + [anon_sym_yield] = ACTIONS(1910), + [anon_sym_move] = ACTIONS(1910), + [anon_sym_try] = ACTIONS(1910), + [sym_integer_literal] = ACTIONS(1908), + [aux_sym_string_literal_token1] = ACTIONS(1908), + [sym_char_literal] = ACTIONS(1908), + [anon_sym_true] = ACTIONS(1910), + [anon_sym_false] = ACTIONS(1910), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1910), + [sym_super] = ACTIONS(1910), + [sym_crate] = ACTIONS(1910), + [sym_metavariable] = ACTIONS(1908), + [sym__raw_string_literal_start] = ACTIONS(1908), + [sym_float_literal] = ACTIONS(1908), }, [526] = { [sym_line_comment] = STATE(526), [sym_block_comment] = STATE(526), - [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_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(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [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), + [ts_builtin_sym_end] = ACTIONS(1912), + [sym_identifier] = ACTIONS(1914), + [anon_sym_SEMI] = ACTIONS(1912), + [anon_sym_macro_rules_BANG] = ACTIONS(1912), + [anon_sym_LPAREN] = ACTIONS(1912), + [anon_sym_LBRACK] = ACTIONS(1912), + [anon_sym_LBRACE] = ACTIONS(1912), + [anon_sym_RBRACE] = ACTIONS(1912), + [anon_sym_STAR] = ACTIONS(1912), + [anon_sym_u8] = ACTIONS(1914), + [anon_sym_i8] = ACTIONS(1914), + [anon_sym_u16] = ACTIONS(1914), + [anon_sym_i16] = ACTIONS(1914), + [anon_sym_u32] = ACTIONS(1914), + [anon_sym_i32] = ACTIONS(1914), + [anon_sym_u64] = ACTIONS(1914), + [anon_sym_i64] = ACTIONS(1914), + [anon_sym_u128] = ACTIONS(1914), + [anon_sym_i128] = ACTIONS(1914), + [anon_sym_isize] = ACTIONS(1914), + [anon_sym_usize] = ACTIONS(1914), + [anon_sym_f32] = ACTIONS(1914), + [anon_sym_f64] = ACTIONS(1914), + [anon_sym_bool] = ACTIONS(1914), + [anon_sym_str] = ACTIONS(1914), + [anon_sym_char] = ACTIONS(1914), + [anon_sym_DASH] = ACTIONS(1912), + [anon_sym_BANG] = ACTIONS(1912), + [anon_sym_AMP] = ACTIONS(1912), + [anon_sym_PIPE] = ACTIONS(1912), + [anon_sym_LT] = ACTIONS(1912), + [anon_sym_DOT_DOT] = ACTIONS(1912), + [anon_sym_COLON_COLON] = ACTIONS(1912), + [anon_sym_POUND] = ACTIONS(1912), + [anon_sym_SQUOTE] = ACTIONS(1914), + [anon_sym_async] = ACTIONS(1914), + [anon_sym_break] = ACTIONS(1914), + [anon_sym_const] = ACTIONS(1914), + [anon_sym_continue] = ACTIONS(1914), + [anon_sym_default] = ACTIONS(1914), + [anon_sym_enum] = ACTIONS(1914), + [anon_sym_fn] = ACTIONS(1914), + [anon_sym_for] = ACTIONS(1914), + [anon_sym_if] = ACTIONS(1914), + [anon_sym_impl] = ACTIONS(1914), + [anon_sym_let] = ACTIONS(1914), + [anon_sym_loop] = ACTIONS(1914), + [anon_sym_match] = ACTIONS(1914), + [anon_sym_mod] = ACTIONS(1914), + [anon_sym_pub] = ACTIONS(1914), + [anon_sym_return] = ACTIONS(1914), + [anon_sym_static] = ACTIONS(1914), + [anon_sym_struct] = ACTIONS(1914), + [anon_sym_trait] = ACTIONS(1914), + [anon_sym_type] = ACTIONS(1914), + [anon_sym_union] = ACTIONS(1914), + [anon_sym_unsafe] = ACTIONS(1914), + [anon_sym_use] = ACTIONS(1914), + [anon_sym_while] = ACTIONS(1914), + [anon_sym_extern] = ACTIONS(1914), + [anon_sym_yield] = ACTIONS(1914), + [anon_sym_move] = ACTIONS(1914), + [anon_sym_try] = ACTIONS(1914), + [sym_integer_literal] = ACTIONS(1912), + [aux_sym_string_literal_token1] = ACTIONS(1912), + [sym_char_literal] = ACTIONS(1912), + [anon_sym_true] = ACTIONS(1914), + [anon_sym_false] = ACTIONS(1914), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1914), + [sym_super] = ACTIONS(1914), + [sym_crate] = ACTIONS(1914), + [sym_metavariable] = ACTIONS(1912), + [sym__raw_string_literal_start] = ACTIONS(1912), + [sym_float_literal] = ACTIONS(1912), }, [527] = { [sym_line_comment] = STATE(527), [sym_block_comment] = STATE(527), - [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_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(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [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), + [ts_builtin_sym_end] = ACTIONS(1916), + [sym_identifier] = ACTIONS(1918), + [anon_sym_SEMI] = ACTIONS(1916), + [anon_sym_macro_rules_BANG] = ACTIONS(1916), + [anon_sym_LPAREN] = ACTIONS(1916), + [anon_sym_LBRACK] = ACTIONS(1916), + [anon_sym_LBRACE] = ACTIONS(1916), + [anon_sym_RBRACE] = ACTIONS(1916), + [anon_sym_STAR] = ACTIONS(1916), + [anon_sym_u8] = ACTIONS(1918), + [anon_sym_i8] = ACTIONS(1918), + [anon_sym_u16] = ACTIONS(1918), + [anon_sym_i16] = ACTIONS(1918), + [anon_sym_u32] = ACTIONS(1918), + [anon_sym_i32] = ACTIONS(1918), + [anon_sym_u64] = ACTIONS(1918), + [anon_sym_i64] = ACTIONS(1918), + [anon_sym_u128] = ACTIONS(1918), + [anon_sym_i128] = ACTIONS(1918), + [anon_sym_isize] = ACTIONS(1918), + [anon_sym_usize] = ACTIONS(1918), + [anon_sym_f32] = ACTIONS(1918), + [anon_sym_f64] = ACTIONS(1918), + [anon_sym_bool] = ACTIONS(1918), + [anon_sym_str] = ACTIONS(1918), + [anon_sym_char] = ACTIONS(1918), + [anon_sym_DASH] = ACTIONS(1916), + [anon_sym_BANG] = ACTIONS(1916), + [anon_sym_AMP] = ACTIONS(1916), + [anon_sym_PIPE] = ACTIONS(1916), + [anon_sym_LT] = ACTIONS(1916), + [anon_sym_DOT_DOT] = ACTIONS(1916), + [anon_sym_COLON_COLON] = ACTIONS(1916), + [anon_sym_POUND] = ACTIONS(1916), + [anon_sym_SQUOTE] = ACTIONS(1918), + [anon_sym_async] = ACTIONS(1918), + [anon_sym_break] = ACTIONS(1918), + [anon_sym_const] = ACTIONS(1918), + [anon_sym_continue] = ACTIONS(1918), + [anon_sym_default] = ACTIONS(1918), + [anon_sym_enum] = ACTIONS(1918), + [anon_sym_fn] = ACTIONS(1918), + [anon_sym_for] = ACTIONS(1918), + [anon_sym_if] = ACTIONS(1918), + [anon_sym_impl] = ACTIONS(1918), + [anon_sym_let] = ACTIONS(1918), + [anon_sym_loop] = ACTIONS(1918), + [anon_sym_match] = ACTIONS(1918), + [anon_sym_mod] = ACTIONS(1918), + [anon_sym_pub] = ACTIONS(1918), + [anon_sym_return] = ACTIONS(1918), + [anon_sym_static] = ACTIONS(1918), + [anon_sym_struct] = ACTIONS(1918), + [anon_sym_trait] = ACTIONS(1918), + [anon_sym_type] = ACTIONS(1918), + [anon_sym_union] = ACTIONS(1918), + [anon_sym_unsafe] = ACTIONS(1918), + [anon_sym_use] = ACTIONS(1918), + [anon_sym_while] = ACTIONS(1918), + [anon_sym_extern] = ACTIONS(1918), + [anon_sym_yield] = ACTIONS(1918), + [anon_sym_move] = ACTIONS(1918), + [anon_sym_try] = ACTIONS(1918), + [sym_integer_literal] = ACTIONS(1916), + [aux_sym_string_literal_token1] = ACTIONS(1916), + [sym_char_literal] = ACTIONS(1916), + [anon_sym_true] = ACTIONS(1918), + [anon_sym_false] = ACTIONS(1918), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1918), + [sym_super] = ACTIONS(1918), + [sym_crate] = ACTIONS(1918), + [sym_metavariable] = ACTIONS(1916), + [sym__raw_string_literal_start] = ACTIONS(1916), + [sym_float_literal] = ACTIONS(1916), }, [528] = { + [sym_empty_statement] = STATE(1389), + [sym_macro_definition] = STATE(1389), + [sym_attribute_item] = STATE(1389), + [sym_inner_attribute_item] = STATE(1389), + [sym_mod_item] = STATE(1389), + [sym_foreign_mod_item] = STATE(1389), + [sym_struct_item] = STATE(1389), + [sym_union_item] = STATE(1389), + [sym_enum_item] = STATE(1389), + [sym_extern_crate_declaration] = STATE(1389), + [sym_const_item] = STATE(1389), + [sym_static_item] = STATE(1389), + [sym_type_item] = STATE(1389), + [sym_function_item] = STATE(1389), + [sym_function_signature_item] = STATE(1389), + [sym_function_modifiers] = STATE(3601), + [sym_impl_item] = STATE(1389), + [sym_trait_item] = STATE(1389), + [sym_associated_type] = STATE(1389), + [sym_let_declaration] = STATE(1389), + [sym_use_declaration] = STATE(1389), + [sym_extern_modifier] = STATE(2140), + [sym_visibility_modifier] = STATE(1933), + [sym_bracketed_type] = STATE(3312), + [sym_generic_type_with_turbofish] = STATE(3351), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(3243), [sym_line_comment] = STATE(528), [sym_block_comment] = STATE(528), - [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_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(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [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), - }, - [529] = { - [sym_line_comment] = STATE(529), - [sym_block_comment] = STATE(529), - [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_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(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [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), - }, - [530] = { - [sym_line_comment] = STATE(530), - [sym_block_comment] = STATE(530), - [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_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(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [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), - }, - [531] = { - [sym_line_comment] = STATE(531), - [sym_block_comment] = STATE(531), - [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_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(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [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), - }, - [532] = { - [sym_line_comment] = STATE(532), - [sym_block_comment] = STATE(532), - [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_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(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [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), - }, - [533] = { - [sym_line_comment] = STATE(533), - [sym_block_comment] = STATE(533), - [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_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(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [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), - }, - [534] = { - [sym_line_comment] = STATE(534), - [sym_block_comment] = STATE(534), - [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_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(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [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), - }, - [535] = { - [sym_line_comment] = STATE(535), - [sym_block_comment] = STATE(535), - [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_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(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [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), - }, - [536] = { - [sym_line_comment] = STATE(536), - [sym_block_comment] = STATE(536), - [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_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(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [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), - }, - [537] = { - [sym_line_comment] = STATE(537), - [sym_block_comment] = STATE(537), - [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_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(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [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), - }, - [538] = { - [sym_line_comment] = STATE(538), - [sym_block_comment] = STATE(538), - [ts_builtin_sym_end] = ACTIONS(1898), - [sym_identifier] = ACTIONS(1900), - [anon_sym_SEMI] = ACTIONS(1898), - [anon_sym_macro_rules_BANG] = ACTIONS(1898), - [anon_sym_LPAREN] = ACTIONS(1898), - [anon_sym_LBRACK] = ACTIONS(1898), - [anon_sym_LBRACE] = ACTIONS(1898), - [anon_sym_RBRACE] = ACTIONS(1898), - [anon_sym_STAR] = ACTIONS(1898), - [anon_sym_u8] = ACTIONS(1900), - [anon_sym_i8] = ACTIONS(1900), - [anon_sym_u16] = ACTIONS(1900), - [anon_sym_i16] = ACTIONS(1900), - [anon_sym_u32] = ACTIONS(1900), - [anon_sym_i32] = ACTIONS(1900), - [anon_sym_u64] = ACTIONS(1900), - [anon_sym_i64] = ACTIONS(1900), - [anon_sym_u128] = ACTIONS(1900), - [anon_sym_i128] = ACTIONS(1900), - [anon_sym_isize] = ACTIONS(1900), - [anon_sym_usize] = ACTIONS(1900), - [anon_sym_f32] = ACTIONS(1900), - [anon_sym_f64] = ACTIONS(1900), - [anon_sym_bool] = ACTIONS(1900), - [anon_sym_str] = ACTIONS(1900), - [anon_sym_char] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1898), - [anon_sym_BANG] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(1898), - [anon_sym_PIPE] = ACTIONS(1898), - [anon_sym_LT] = ACTIONS(1898), - [anon_sym_DOT_DOT] = ACTIONS(1898), - [anon_sym_COLON_COLON] = ACTIONS(1898), - [anon_sym_POUND] = ACTIONS(1898), - [anon_sym_SQUOTE] = ACTIONS(1900), - [anon_sym_async] = ACTIONS(1900), - [anon_sym_break] = ACTIONS(1900), - [anon_sym_const] = ACTIONS(1900), - [anon_sym_continue] = ACTIONS(1900), - [anon_sym_default] = ACTIONS(1900), - [anon_sym_enum] = ACTIONS(1900), - [anon_sym_fn] = ACTIONS(1900), - [anon_sym_for] = ACTIONS(1900), - [anon_sym_if] = ACTIONS(1900), - [anon_sym_impl] = ACTIONS(1900), - [anon_sym_let] = ACTIONS(1900), - [anon_sym_loop] = ACTIONS(1900), - [anon_sym_match] = ACTIONS(1900), - [anon_sym_mod] = ACTIONS(1900), - [anon_sym_pub] = ACTIONS(1900), - [anon_sym_return] = ACTIONS(1900), - [anon_sym_static] = ACTIONS(1900), - [anon_sym_struct] = ACTIONS(1900), - [anon_sym_trait] = ACTIONS(1900), - [anon_sym_type] = ACTIONS(1900), - [anon_sym_union] = ACTIONS(1900), - [anon_sym_unsafe] = ACTIONS(1900), - [anon_sym_use] = ACTIONS(1900), - [anon_sym_while] = ACTIONS(1900), - [anon_sym_extern] = ACTIONS(1900), - [anon_sym_yield] = ACTIONS(1900), - [anon_sym_move] = ACTIONS(1900), - [anon_sym_try] = ACTIONS(1900), - [sym_integer_literal] = ACTIONS(1898), - [aux_sym_string_literal_token1] = ACTIONS(1898), - [sym_char_literal] = ACTIONS(1898), - [anon_sym_true] = ACTIONS(1900), - [anon_sym_false] = ACTIONS(1900), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1900), - [sym_super] = ACTIONS(1900), - [sym_crate] = ACTIONS(1900), - [sym_metavariable] = ACTIONS(1898), - [sym__raw_string_literal_start] = ACTIONS(1898), - [sym_float_literal] = ACTIONS(1898), - }, - [539] = { - [sym_line_comment] = STATE(539), - [sym_block_comment] = STATE(539), - [ts_builtin_sym_end] = ACTIONS(1902), - [sym_identifier] = ACTIONS(1904), - [anon_sym_SEMI] = ACTIONS(1902), - [anon_sym_macro_rules_BANG] = ACTIONS(1902), - [anon_sym_LPAREN] = ACTIONS(1902), - [anon_sym_LBRACK] = ACTIONS(1902), - [anon_sym_LBRACE] = ACTIONS(1902), - [anon_sym_RBRACE] = ACTIONS(1902), - [anon_sym_STAR] = ACTIONS(1902), - [anon_sym_u8] = ACTIONS(1904), - [anon_sym_i8] = ACTIONS(1904), - [anon_sym_u16] = ACTIONS(1904), - [anon_sym_i16] = ACTIONS(1904), - [anon_sym_u32] = ACTIONS(1904), - [anon_sym_i32] = ACTIONS(1904), - [anon_sym_u64] = ACTIONS(1904), - [anon_sym_i64] = ACTIONS(1904), - [anon_sym_u128] = ACTIONS(1904), - [anon_sym_i128] = ACTIONS(1904), - [anon_sym_isize] = ACTIONS(1904), - [anon_sym_usize] = ACTIONS(1904), - [anon_sym_f32] = ACTIONS(1904), - [anon_sym_f64] = ACTIONS(1904), - [anon_sym_bool] = ACTIONS(1904), - [anon_sym_str] = ACTIONS(1904), - [anon_sym_char] = ACTIONS(1904), - [anon_sym_DASH] = ACTIONS(1902), - [anon_sym_BANG] = ACTIONS(1902), - [anon_sym_AMP] = ACTIONS(1902), - [anon_sym_PIPE] = ACTIONS(1902), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_DOT_DOT] = ACTIONS(1902), - [anon_sym_COLON_COLON] = ACTIONS(1902), - [anon_sym_POUND] = ACTIONS(1902), - [anon_sym_SQUOTE] = ACTIONS(1904), - [anon_sym_async] = ACTIONS(1904), - [anon_sym_break] = ACTIONS(1904), - [anon_sym_const] = ACTIONS(1904), - [anon_sym_continue] = ACTIONS(1904), - [anon_sym_default] = ACTIONS(1904), - [anon_sym_enum] = ACTIONS(1904), - [anon_sym_fn] = ACTIONS(1904), - [anon_sym_for] = ACTIONS(1904), - [anon_sym_if] = ACTIONS(1904), - [anon_sym_impl] = ACTIONS(1904), - [anon_sym_let] = ACTIONS(1904), - [anon_sym_loop] = ACTIONS(1904), - [anon_sym_match] = ACTIONS(1904), - [anon_sym_mod] = ACTIONS(1904), - [anon_sym_pub] = ACTIONS(1904), - [anon_sym_return] = ACTIONS(1904), - [anon_sym_static] = ACTIONS(1904), - [anon_sym_struct] = ACTIONS(1904), - [anon_sym_trait] = ACTIONS(1904), - [anon_sym_type] = ACTIONS(1904), - [anon_sym_union] = ACTIONS(1904), - [anon_sym_unsafe] = ACTIONS(1904), - [anon_sym_use] = ACTIONS(1904), - [anon_sym_while] = ACTIONS(1904), - [anon_sym_extern] = ACTIONS(1904), - [anon_sym_yield] = ACTIONS(1904), - [anon_sym_move] = ACTIONS(1904), - [anon_sym_try] = ACTIONS(1904), - [sym_integer_literal] = ACTIONS(1902), - [aux_sym_string_literal_token1] = ACTIONS(1902), - [sym_char_literal] = ACTIONS(1902), - [anon_sym_true] = ACTIONS(1904), - [anon_sym_false] = ACTIONS(1904), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1904), - [sym_super] = ACTIONS(1904), - [sym_crate] = ACTIONS(1904), - [sym_metavariable] = ACTIONS(1902), - [sym__raw_string_literal_start] = ACTIONS(1902), - [sym_float_literal] = ACTIONS(1902), - }, - [540] = { - [sym_line_comment] = STATE(540), - [sym_block_comment] = STATE(540), - [ts_builtin_sym_end] = ACTIONS(1906), - [sym_identifier] = ACTIONS(1908), - [anon_sym_SEMI] = ACTIONS(1906), - [anon_sym_macro_rules_BANG] = ACTIONS(1906), - [anon_sym_LPAREN] = ACTIONS(1906), - [anon_sym_LBRACK] = ACTIONS(1906), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_RBRACE] = ACTIONS(1906), - [anon_sym_STAR] = ACTIONS(1906), - [anon_sym_u8] = ACTIONS(1908), - [anon_sym_i8] = ACTIONS(1908), - [anon_sym_u16] = ACTIONS(1908), - [anon_sym_i16] = ACTIONS(1908), - [anon_sym_u32] = ACTIONS(1908), - [anon_sym_i32] = ACTIONS(1908), - [anon_sym_u64] = ACTIONS(1908), - [anon_sym_i64] = ACTIONS(1908), - [anon_sym_u128] = ACTIONS(1908), - [anon_sym_i128] = ACTIONS(1908), - [anon_sym_isize] = ACTIONS(1908), - [anon_sym_usize] = ACTIONS(1908), - [anon_sym_f32] = ACTIONS(1908), - [anon_sym_f64] = ACTIONS(1908), - [anon_sym_bool] = ACTIONS(1908), - [anon_sym_str] = ACTIONS(1908), - [anon_sym_char] = ACTIONS(1908), - [anon_sym_DASH] = ACTIONS(1906), - [anon_sym_BANG] = ACTIONS(1906), - [anon_sym_AMP] = ACTIONS(1906), - [anon_sym_PIPE] = ACTIONS(1906), - [anon_sym_LT] = ACTIONS(1906), - [anon_sym_DOT_DOT] = ACTIONS(1906), - [anon_sym_COLON_COLON] = ACTIONS(1906), - [anon_sym_POUND] = ACTIONS(1906), - [anon_sym_SQUOTE] = ACTIONS(1908), - [anon_sym_async] = ACTIONS(1908), - [anon_sym_break] = ACTIONS(1908), - [anon_sym_const] = ACTIONS(1908), - [anon_sym_continue] = ACTIONS(1908), - [anon_sym_default] = ACTIONS(1908), - [anon_sym_enum] = ACTIONS(1908), - [anon_sym_fn] = ACTIONS(1908), - [anon_sym_for] = ACTIONS(1908), - [anon_sym_if] = ACTIONS(1908), - [anon_sym_impl] = ACTIONS(1908), - [anon_sym_let] = ACTIONS(1908), - [anon_sym_loop] = ACTIONS(1908), - [anon_sym_match] = ACTIONS(1908), - [anon_sym_mod] = ACTIONS(1908), - [anon_sym_pub] = ACTIONS(1908), - [anon_sym_return] = ACTIONS(1908), - [anon_sym_static] = ACTIONS(1908), - [anon_sym_struct] = ACTIONS(1908), - [anon_sym_trait] = ACTIONS(1908), - [anon_sym_type] = ACTIONS(1908), - [anon_sym_union] = ACTIONS(1908), - [anon_sym_unsafe] = ACTIONS(1908), - [anon_sym_use] = ACTIONS(1908), - [anon_sym_while] = ACTIONS(1908), - [anon_sym_extern] = ACTIONS(1908), - [anon_sym_yield] = ACTIONS(1908), - [anon_sym_move] = ACTIONS(1908), - [anon_sym_try] = ACTIONS(1908), - [sym_integer_literal] = ACTIONS(1906), - [aux_sym_string_literal_token1] = ACTIONS(1906), - [sym_char_literal] = ACTIONS(1906), - [anon_sym_true] = ACTIONS(1908), - [anon_sym_false] = ACTIONS(1908), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1908), - [sym_super] = ACTIONS(1908), - [sym_crate] = ACTIONS(1908), - [sym_metavariable] = ACTIONS(1906), - [sym__raw_string_literal_start] = ACTIONS(1906), - [sym_float_literal] = ACTIONS(1906), - }, - [541] = { - [sym_line_comment] = STATE(541), - [sym_block_comment] = STATE(541), - [ts_builtin_sym_end] = ACTIONS(1910), - [sym_identifier] = ACTIONS(1912), - [anon_sym_SEMI] = ACTIONS(1910), - [anon_sym_macro_rules_BANG] = ACTIONS(1910), - [anon_sym_LPAREN] = ACTIONS(1910), - [anon_sym_LBRACK] = ACTIONS(1910), - [anon_sym_LBRACE] = ACTIONS(1910), - [anon_sym_RBRACE] = ACTIONS(1910), - [anon_sym_STAR] = ACTIONS(1910), - [anon_sym_u8] = ACTIONS(1912), - [anon_sym_i8] = ACTIONS(1912), - [anon_sym_u16] = ACTIONS(1912), - [anon_sym_i16] = ACTIONS(1912), - [anon_sym_u32] = ACTIONS(1912), - [anon_sym_i32] = ACTIONS(1912), - [anon_sym_u64] = ACTIONS(1912), - [anon_sym_i64] = ACTIONS(1912), - [anon_sym_u128] = ACTIONS(1912), - [anon_sym_i128] = ACTIONS(1912), - [anon_sym_isize] = ACTIONS(1912), - [anon_sym_usize] = ACTIONS(1912), - [anon_sym_f32] = ACTIONS(1912), - [anon_sym_f64] = ACTIONS(1912), - [anon_sym_bool] = ACTIONS(1912), - [anon_sym_str] = ACTIONS(1912), - [anon_sym_char] = ACTIONS(1912), - [anon_sym_DASH] = ACTIONS(1910), - [anon_sym_BANG] = ACTIONS(1910), - [anon_sym_AMP] = ACTIONS(1910), - [anon_sym_PIPE] = ACTIONS(1910), - [anon_sym_LT] = ACTIONS(1910), - [anon_sym_DOT_DOT] = ACTIONS(1910), - [anon_sym_COLON_COLON] = ACTIONS(1910), - [anon_sym_POUND] = ACTIONS(1910), - [anon_sym_SQUOTE] = ACTIONS(1912), - [anon_sym_async] = ACTIONS(1912), - [anon_sym_break] = ACTIONS(1912), - [anon_sym_const] = ACTIONS(1912), - [anon_sym_continue] = ACTIONS(1912), - [anon_sym_default] = ACTIONS(1912), - [anon_sym_enum] = ACTIONS(1912), - [anon_sym_fn] = ACTIONS(1912), - [anon_sym_for] = ACTIONS(1912), - [anon_sym_if] = ACTIONS(1912), - [anon_sym_impl] = ACTIONS(1912), - [anon_sym_let] = ACTIONS(1912), - [anon_sym_loop] = ACTIONS(1912), - [anon_sym_match] = ACTIONS(1912), - [anon_sym_mod] = ACTIONS(1912), - [anon_sym_pub] = ACTIONS(1912), - [anon_sym_return] = ACTIONS(1912), - [anon_sym_static] = ACTIONS(1912), - [anon_sym_struct] = ACTIONS(1912), - [anon_sym_trait] = ACTIONS(1912), - [anon_sym_type] = ACTIONS(1912), - [anon_sym_union] = ACTIONS(1912), - [anon_sym_unsafe] = ACTIONS(1912), - [anon_sym_use] = ACTIONS(1912), - [anon_sym_while] = ACTIONS(1912), - [anon_sym_extern] = ACTIONS(1912), - [anon_sym_yield] = ACTIONS(1912), - [anon_sym_move] = ACTIONS(1912), - [anon_sym_try] = ACTIONS(1912), - [sym_integer_literal] = ACTIONS(1910), - [aux_sym_string_literal_token1] = ACTIONS(1910), - [sym_char_literal] = ACTIONS(1910), - [anon_sym_true] = ACTIONS(1912), - [anon_sym_false] = ACTIONS(1912), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1912), - [sym_super] = ACTIONS(1912), - [sym_crate] = ACTIONS(1912), - [sym_metavariable] = ACTIONS(1910), - [sym__raw_string_literal_start] = ACTIONS(1910), - [sym_float_literal] = ACTIONS(1910), - }, - [542] = { - [sym_line_comment] = STATE(542), - [sym_block_comment] = STATE(542), - [ts_builtin_sym_end] = ACTIONS(1914), - [sym_identifier] = ACTIONS(1916), - [anon_sym_SEMI] = ACTIONS(1914), - [anon_sym_macro_rules_BANG] = ACTIONS(1914), - [anon_sym_LPAREN] = ACTIONS(1914), - [anon_sym_LBRACK] = ACTIONS(1914), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_RBRACE] = ACTIONS(1914), - [anon_sym_STAR] = ACTIONS(1914), - [anon_sym_u8] = ACTIONS(1916), - [anon_sym_i8] = ACTIONS(1916), - [anon_sym_u16] = ACTIONS(1916), - [anon_sym_i16] = ACTIONS(1916), - [anon_sym_u32] = ACTIONS(1916), - [anon_sym_i32] = ACTIONS(1916), - [anon_sym_u64] = ACTIONS(1916), - [anon_sym_i64] = ACTIONS(1916), - [anon_sym_u128] = ACTIONS(1916), - [anon_sym_i128] = ACTIONS(1916), - [anon_sym_isize] = ACTIONS(1916), - [anon_sym_usize] = ACTIONS(1916), - [anon_sym_f32] = ACTIONS(1916), - [anon_sym_f64] = ACTIONS(1916), - [anon_sym_bool] = ACTIONS(1916), - [anon_sym_str] = ACTIONS(1916), - [anon_sym_char] = ACTIONS(1916), - [anon_sym_DASH] = ACTIONS(1914), - [anon_sym_BANG] = ACTIONS(1914), - [anon_sym_AMP] = ACTIONS(1914), - [anon_sym_PIPE] = ACTIONS(1914), - [anon_sym_LT] = ACTIONS(1914), - [anon_sym_DOT_DOT] = ACTIONS(1914), - [anon_sym_COLON_COLON] = ACTIONS(1914), - [anon_sym_POUND] = ACTIONS(1914), - [anon_sym_SQUOTE] = ACTIONS(1916), - [anon_sym_async] = ACTIONS(1916), - [anon_sym_break] = ACTIONS(1916), - [anon_sym_const] = ACTIONS(1916), - [anon_sym_continue] = ACTIONS(1916), - [anon_sym_default] = ACTIONS(1916), - [anon_sym_enum] = ACTIONS(1916), - [anon_sym_fn] = ACTIONS(1916), - [anon_sym_for] = ACTIONS(1916), - [anon_sym_if] = ACTIONS(1916), - [anon_sym_impl] = ACTIONS(1916), - [anon_sym_let] = ACTIONS(1916), - [anon_sym_loop] = ACTIONS(1916), - [anon_sym_match] = ACTIONS(1916), - [anon_sym_mod] = ACTIONS(1916), - [anon_sym_pub] = ACTIONS(1916), - [anon_sym_return] = ACTIONS(1916), - [anon_sym_static] = ACTIONS(1916), - [anon_sym_struct] = ACTIONS(1916), - [anon_sym_trait] = ACTIONS(1916), - [anon_sym_type] = ACTIONS(1916), - [anon_sym_union] = ACTIONS(1916), - [anon_sym_unsafe] = ACTIONS(1916), - [anon_sym_use] = ACTIONS(1916), - [anon_sym_while] = ACTIONS(1916), - [anon_sym_extern] = ACTIONS(1916), - [anon_sym_yield] = ACTIONS(1916), - [anon_sym_move] = ACTIONS(1916), - [anon_sym_try] = ACTIONS(1916), - [sym_integer_literal] = ACTIONS(1914), - [aux_sym_string_literal_token1] = ACTIONS(1914), - [sym_char_literal] = ACTIONS(1914), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1916), - [sym_super] = ACTIONS(1916), - [sym_crate] = ACTIONS(1916), - [sym_metavariable] = ACTIONS(1914), - [sym__raw_string_literal_start] = ACTIONS(1914), - [sym_float_literal] = ACTIONS(1914), - }, - [543] = { - [sym_line_comment] = STATE(543), - [sym_block_comment] = STATE(543), - [ts_builtin_sym_end] = ACTIONS(1918), + [aux_sym_declaration_list_repeat1] = STATE(667), + [aux_sym_function_modifiers_repeat1] = STATE(2220), [sym_identifier] = ACTIONS(1920), - [anon_sym_SEMI] = ACTIONS(1918), - [anon_sym_macro_rules_BANG] = ACTIONS(1918), - [anon_sym_LPAREN] = ACTIONS(1918), - [anon_sym_LBRACK] = ACTIONS(1918), - [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_RBRACE] = ACTIONS(1918), - [anon_sym_STAR] = ACTIONS(1918), - [anon_sym_u8] = ACTIONS(1920), - [anon_sym_i8] = ACTIONS(1920), - [anon_sym_u16] = ACTIONS(1920), - [anon_sym_i16] = ACTIONS(1920), - [anon_sym_u32] = ACTIONS(1920), - [anon_sym_i32] = ACTIONS(1920), - [anon_sym_u64] = ACTIONS(1920), - [anon_sym_i64] = ACTIONS(1920), - [anon_sym_u128] = ACTIONS(1920), - [anon_sym_i128] = ACTIONS(1920), - [anon_sym_isize] = ACTIONS(1920), - [anon_sym_usize] = ACTIONS(1920), - [anon_sym_f32] = ACTIONS(1920), - [anon_sym_f64] = ACTIONS(1920), - [anon_sym_bool] = ACTIONS(1920), - [anon_sym_str] = ACTIONS(1920), - [anon_sym_char] = ACTIONS(1920), - [anon_sym_DASH] = ACTIONS(1918), - [anon_sym_BANG] = ACTIONS(1918), - [anon_sym_AMP] = ACTIONS(1918), - [anon_sym_PIPE] = ACTIONS(1918), - [anon_sym_LT] = ACTIONS(1918), - [anon_sym_DOT_DOT] = ACTIONS(1918), - [anon_sym_COLON_COLON] = ACTIONS(1918), - [anon_sym_POUND] = ACTIONS(1918), - [anon_sym_SQUOTE] = ACTIONS(1920), - [anon_sym_async] = ACTIONS(1920), - [anon_sym_break] = ACTIONS(1920), - [anon_sym_const] = ACTIONS(1920), - [anon_sym_continue] = ACTIONS(1920), - [anon_sym_default] = ACTIONS(1920), - [anon_sym_enum] = ACTIONS(1920), - [anon_sym_fn] = ACTIONS(1920), - [anon_sym_for] = ACTIONS(1920), - [anon_sym_if] = ACTIONS(1920), - [anon_sym_impl] = ACTIONS(1920), - [anon_sym_let] = ACTIONS(1920), - [anon_sym_loop] = ACTIONS(1920), - [anon_sym_match] = ACTIONS(1920), - [anon_sym_mod] = ACTIONS(1920), - [anon_sym_pub] = ACTIONS(1920), - [anon_sym_return] = ACTIONS(1920), - [anon_sym_static] = ACTIONS(1920), - [anon_sym_struct] = ACTIONS(1920), - [anon_sym_trait] = ACTIONS(1920), - [anon_sym_type] = ACTIONS(1920), - [anon_sym_union] = ACTIONS(1920), - [anon_sym_unsafe] = ACTIONS(1920), - [anon_sym_use] = ACTIONS(1920), - [anon_sym_while] = ACTIONS(1920), - [anon_sym_extern] = ACTIONS(1920), - [anon_sym_yield] = ACTIONS(1920), - [anon_sym_move] = ACTIONS(1920), - [anon_sym_try] = ACTIONS(1920), - [sym_integer_literal] = ACTIONS(1918), - [aux_sym_string_literal_token1] = ACTIONS(1918), - [sym_char_literal] = ACTIONS(1918), - [anon_sym_true] = ACTIONS(1920), - [anon_sym_false] = ACTIONS(1920), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1920), - [sym_super] = ACTIONS(1920), - [sym_crate] = ACTIONS(1920), - [sym_metavariable] = ACTIONS(1918), - [sym__raw_string_literal_start] = ACTIONS(1918), - [sym_float_literal] = ACTIONS(1918), - }, - [544] = { - [sym_line_comment] = STATE(544), - [sym_block_comment] = STATE(544), - [ts_builtin_sym_end] = ACTIONS(1922), - [sym_identifier] = ACTIONS(1924), [anon_sym_SEMI] = ACTIONS(1922), - [anon_sym_macro_rules_BANG] = ACTIONS(1922), - [anon_sym_LPAREN] = ACTIONS(1922), - [anon_sym_LBRACK] = ACTIONS(1922), - [anon_sym_LBRACE] = ACTIONS(1922), - [anon_sym_RBRACE] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1922), - [anon_sym_u8] = ACTIONS(1924), - [anon_sym_i8] = ACTIONS(1924), - [anon_sym_u16] = ACTIONS(1924), - [anon_sym_i16] = ACTIONS(1924), - [anon_sym_u32] = ACTIONS(1924), - [anon_sym_i32] = ACTIONS(1924), - [anon_sym_u64] = ACTIONS(1924), - [anon_sym_i64] = ACTIONS(1924), - [anon_sym_u128] = ACTIONS(1924), - [anon_sym_i128] = ACTIONS(1924), - [anon_sym_isize] = ACTIONS(1924), - [anon_sym_usize] = ACTIONS(1924), - [anon_sym_f32] = ACTIONS(1924), - [anon_sym_f64] = ACTIONS(1924), - [anon_sym_bool] = ACTIONS(1924), - [anon_sym_str] = ACTIONS(1924), - [anon_sym_char] = ACTIONS(1924), - [anon_sym_DASH] = ACTIONS(1922), - [anon_sym_BANG] = ACTIONS(1922), - [anon_sym_AMP] = ACTIONS(1922), - [anon_sym_PIPE] = ACTIONS(1922), - [anon_sym_LT] = ACTIONS(1922), - [anon_sym_DOT_DOT] = ACTIONS(1922), - [anon_sym_COLON_COLON] = ACTIONS(1922), - [anon_sym_POUND] = ACTIONS(1922), - [anon_sym_SQUOTE] = ACTIONS(1924), - [anon_sym_async] = ACTIONS(1924), - [anon_sym_break] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1924), - [anon_sym_continue] = ACTIONS(1924), - [anon_sym_default] = ACTIONS(1924), - [anon_sym_enum] = ACTIONS(1924), - [anon_sym_fn] = ACTIONS(1924), - [anon_sym_for] = ACTIONS(1924), - [anon_sym_if] = ACTIONS(1924), - [anon_sym_impl] = ACTIONS(1924), - [anon_sym_let] = ACTIONS(1924), - [anon_sym_loop] = ACTIONS(1924), - [anon_sym_match] = ACTIONS(1924), - [anon_sym_mod] = ACTIONS(1924), - [anon_sym_pub] = ACTIONS(1924), - [anon_sym_return] = ACTIONS(1924), - [anon_sym_static] = ACTIONS(1924), - [anon_sym_struct] = ACTIONS(1924), - [anon_sym_trait] = ACTIONS(1924), - [anon_sym_type] = ACTIONS(1924), - [anon_sym_union] = ACTIONS(1924), - [anon_sym_unsafe] = ACTIONS(1924), - [anon_sym_use] = ACTIONS(1924), - [anon_sym_while] = ACTIONS(1924), - [anon_sym_extern] = ACTIONS(1924), - [anon_sym_yield] = ACTIONS(1924), - [anon_sym_move] = ACTIONS(1924), - [anon_sym_try] = ACTIONS(1924), - [sym_integer_literal] = ACTIONS(1922), - [aux_sym_string_literal_token1] = ACTIONS(1922), - [sym_char_literal] = ACTIONS(1922), - [anon_sym_true] = ACTIONS(1924), - [anon_sym_false] = ACTIONS(1924), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1924), - [sym_super] = ACTIONS(1924), - [sym_crate] = ACTIONS(1924), - [sym_metavariable] = ACTIONS(1922), - [sym__raw_string_literal_start] = ACTIONS(1922), - [sym_float_literal] = ACTIONS(1922), - }, - [545] = { - [sym_line_comment] = STATE(545), - [sym_block_comment] = STATE(545), - [ts_builtin_sym_end] = ACTIONS(1926), - [sym_identifier] = ACTIONS(1928), - [anon_sym_SEMI] = ACTIONS(1926), - [anon_sym_macro_rules_BANG] = ACTIONS(1926), - [anon_sym_LPAREN] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(1926), - [anon_sym_LBRACE] = ACTIONS(1926), + [anon_sym_macro_rules_BANG] = ACTIONS(1924), [anon_sym_RBRACE] = ACTIONS(1926), - [anon_sym_STAR] = ACTIONS(1926), [anon_sym_u8] = ACTIONS(1928), [anon_sym_i8] = ACTIONS(1928), [anon_sym_u16] = ACTIONS(1928), @@ -73834,860 +72506,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1928), [anon_sym_str] = ACTIONS(1928), [anon_sym_char] = ACTIONS(1928), - [anon_sym_DASH] = ACTIONS(1926), - [anon_sym_BANG] = ACTIONS(1926), - [anon_sym_AMP] = ACTIONS(1926), - [anon_sym_PIPE] = ACTIONS(1926), - [anon_sym_LT] = ACTIONS(1926), - [anon_sym_DOT_DOT] = ACTIONS(1926), - [anon_sym_COLON_COLON] = ACTIONS(1926), - [anon_sym_POUND] = ACTIONS(1926), - [anon_sym_SQUOTE] = ACTIONS(1928), - [anon_sym_async] = ACTIONS(1928), - [anon_sym_break] = ACTIONS(1928), - [anon_sym_const] = ACTIONS(1928), - [anon_sym_continue] = ACTIONS(1928), - [anon_sym_default] = ACTIONS(1928), - [anon_sym_enum] = ACTIONS(1928), - [anon_sym_fn] = ACTIONS(1928), - [anon_sym_for] = ACTIONS(1928), - [anon_sym_if] = ACTIONS(1928), - [anon_sym_impl] = ACTIONS(1928), - [anon_sym_let] = ACTIONS(1928), - [anon_sym_loop] = ACTIONS(1928), - [anon_sym_match] = ACTIONS(1928), - [anon_sym_mod] = ACTIONS(1928), - [anon_sym_pub] = ACTIONS(1928), - [anon_sym_return] = ACTIONS(1928), - [anon_sym_static] = ACTIONS(1928), - [anon_sym_struct] = ACTIONS(1928), - [anon_sym_trait] = ACTIONS(1928), - [anon_sym_type] = ACTIONS(1928), - [anon_sym_union] = ACTIONS(1928), - [anon_sym_unsafe] = ACTIONS(1928), - [anon_sym_use] = ACTIONS(1928), - [anon_sym_while] = ACTIONS(1928), - [anon_sym_extern] = ACTIONS(1928), - [anon_sym_yield] = ACTIONS(1928), - [anon_sym_move] = ACTIONS(1928), - [anon_sym_try] = ACTIONS(1928), - [sym_integer_literal] = ACTIONS(1926), - [aux_sym_string_literal_token1] = ACTIONS(1926), - [sym_char_literal] = ACTIONS(1926), - [anon_sym_true] = ACTIONS(1928), - [anon_sym_false] = ACTIONS(1928), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1928), - [sym_super] = ACTIONS(1928), - [sym_crate] = ACTIONS(1928), - [sym_metavariable] = ACTIONS(1926), - [sym__raw_string_literal_start] = ACTIONS(1926), - [sym_float_literal] = ACTIONS(1926), - }, - [546] = { - [sym_line_comment] = STATE(546), - [sym_block_comment] = STATE(546), - [ts_builtin_sym_end] = ACTIONS(1930), - [sym_identifier] = ACTIONS(1932), - [anon_sym_SEMI] = ACTIONS(1930), - [anon_sym_macro_rules_BANG] = ACTIONS(1930), - [anon_sym_LPAREN] = ACTIONS(1930), - [anon_sym_LBRACK] = ACTIONS(1930), - [anon_sym_LBRACE] = ACTIONS(1930), - [anon_sym_RBRACE] = ACTIONS(1930), - [anon_sym_STAR] = ACTIONS(1930), - [anon_sym_u8] = ACTIONS(1932), - [anon_sym_i8] = ACTIONS(1932), - [anon_sym_u16] = ACTIONS(1932), - [anon_sym_i16] = ACTIONS(1932), - [anon_sym_u32] = ACTIONS(1932), - [anon_sym_i32] = ACTIONS(1932), - [anon_sym_u64] = ACTIONS(1932), - [anon_sym_i64] = ACTIONS(1932), - [anon_sym_u128] = ACTIONS(1932), - [anon_sym_i128] = ACTIONS(1932), - [anon_sym_isize] = ACTIONS(1932), - [anon_sym_usize] = ACTIONS(1932), - [anon_sym_f32] = ACTIONS(1932), - [anon_sym_f64] = ACTIONS(1932), - [anon_sym_bool] = ACTIONS(1932), - [anon_sym_str] = ACTIONS(1932), - [anon_sym_char] = ACTIONS(1932), - [anon_sym_DASH] = ACTIONS(1930), - [anon_sym_BANG] = ACTIONS(1930), - [anon_sym_AMP] = ACTIONS(1930), - [anon_sym_PIPE] = ACTIONS(1930), - [anon_sym_LT] = ACTIONS(1930), - [anon_sym_DOT_DOT] = ACTIONS(1930), + [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1930), - [anon_sym_POUND] = ACTIONS(1930), - [anon_sym_SQUOTE] = ACTIONS(1932), - [anon_sym_async] = ACTIONS(1932), - [anon_sym_break] = ACTIONS(1932), - [anon_sym_const] = ACTIONS(1932), - [anon_sym_continue] = ACTIONS(1932), - [anon_sym_default] = ACTIONS(1932), - [anon_sym_enum] = ACTIONS(1932), - [anon_sym_fn] = ACTIONS(1932), - [anon_sym_for] = ACTIONS(1932), - [anon_sym_if] = ACTIONS(1932), - [anon_sym_impl] = ACTIONS(1932), - [anon_sym_let] = ACTIONS(1932), - [anon_sym_loop] = ACTIONS(1932), - [anon_sym_match] = ACTIONS(1932), - [anon_sym_mod] = ACTIONS(1932), - [anon_sym_pub] = ACTIONS(1932), - [anon_sym_return] = ACTIONS(1932), - [anon_sym_static] = ACTIONS(1932), - [anon_sym_struct] = ACTIONS(1932), - [anon_sym_trait] = ACTIONS(1932), - [anon_sym_type] = ACTIONS(1932), - [anon_sym_union] = ACTIONS(1932), - [anon_sym_unsafe] = ACTIONS(1932), - [anon_sym_use] = ACTIONS(1932), - [anon_sym_while] = ACTIONS(1932), - [anon_sym_extern] = ACTIONS(1932), - [anon_sym_yield] = ACTIONS(1932), - [anon_sym_move] = ACTIONS(1932), - [anon_sym_try] = ACTIONS(1932), - [sym_integer_literal] = ACTIONS(1930), - [aux_sym_string_literal_token1] = ACTIONS(1930), - [sym_char_literal] = ACTIONS(1930), - [anon_sym_true] = ACTIONS(1932), - [anon_sym_false] = ACTIONS(1932), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1932), - [sym_super] = ACTIONS(1932), - [sym_crate] = ACTIONS(1932), - [sym_metavariable] = ACTIONS(1930), - [sym__raw_string_literal_start] = ACTIONS(1930), - [sym_float_literal] = ACTIONS(1930), - }, - [547] = { - [sym_line_comment] = STATE(547), - [sym_block_comment] = STATE(547), - [ts_builtin_sym_end] = ACTIONS(1934), - [sym_identifier] = ACTIONS(1936), - [anon_sym_SEMI] = ACTIONS(1934), - [anon_sym_macro_rules_BANG] = ACTIONS(1934), - [anon_sym_LPAREN] = ACTIONS(1934), - [anon_sym_LBRACK] = ACTIONS(1934), - [anon_sym_LBRACE] = ACTIONS(1934), - [anon_sym_RBRACE] = ACTIONS(1934), - [anon_sym_STAR] = ACTIONS(1934), - [anon_sym_u8] = ACTIONS(1936), - [anon_sym_i8] = ACTIONS(1936), - [anon_sym_u16] = ACTIONS(1936), - [anon_sym_i16] = ACTIONS(1936), - [anon_sym_u32] = ACTIONS(1936), - [anon_sym_i32] = ACTIONS(1936), - [anon_sym_u64] = ACTIONS(1936), - [anon_sym_i64] = ACTIONS(1936), - [anon_sym_u128] = ACTIONS(1936), - [anon_sym_i128] = ACTIONS(1936), - [anon_sym_isize] = ACTIONS(1936), - [anon_sym_usize] = ACTIONS(1936), - [anon_sym_f32] = ACTIONS(1936), - [anon_sym_f64] = ACTIONS(1936), - [anon_sym_bool] = ACTIONS(1936), - [anon_sym_str] = ACTIONS(1936), - [anon_sym_char] = ACTIONS(1936), - [anon_sym_DASH] = ACTIONS(1934), - [anon_sym_BANG] = ACTIONS(1934), - [anon_sym_AMP] = ACTIONS(1934), - [anon_sym_PIPE] = ACTIONS(1934), - [anon_sym_LT] = ACTIONS(1934), - [anon_sym_DOT_DOT] = ACTIONS(1934), - [anon_sym_COLON_COLON] = ACTIONS(1934), - [anon_sym_POUND] = ACTIONS(1934), - [anon_sym_SQUOTE] = ACTIONS(1936), - [anon_sym_async] = ACTIONS(1936), - [anon_sym_break] = ACTIONS(1936), - [anon_sym_const] = ACTIONS(1936), - [anon_sym_continue] = ACTIONS(1936), + [anon_sym_POUND] = ACTIONS(1932), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1934), [anon_sym_default] = ACTIONS(1936), - [anon_sym_enum] = ACTIONS(1936), - [anon_sym_fn] = ACTIONS(1936), - [anon_sym_for] = ACTIONS(1936), - [anon_sym_if] = ACTIONS(1936), - [anon_sym_impl] = ACTIONS(1936), - [anon_sym_let] = ACTIONS(1936), - [anon_sym_loop] = ACTIONS(1936), - [anon_sym_match] = ACTIONS(1936), - [anon_sym_mod] = ACTIONS(1936), - [anon_sym_pub] = ACTIONS(1936), - [anon_sym_return] = ACTIONS(1936), - [anon_sym_static] = ACTIONS(1936), - [anon_sym_struct] = ACTIONS(1936), - [anon_sym_trait] = ACTIONS(1936), - [anon_sym_type] = ACTIONS(1936), - [anon_sym_union] = ACTIONS(1936), - [anon_sym_unsafe] = ACTIONS(1936), - [anon_sym_use] = ACTIONS(1936), - [anon_sym_while] = ACTIONS(1936), - [anon_sym_extern] = ACTIONS(1936), - [anon_sym_yield] = ACTIONS(1936), - [anon_sym_move] = ACTIONS(1936), - [anon_sym_try] = ACTIONS(1936), - [sym_integer_literal] = ACTIONS(1934), - [aux_sym_string_literal_token1] = ACTIONS(1934), - [sym_char_literal] = ACTIONS(1934), - [anon_sym_true] = ACTIONS(1936), - [anon_sym_false] = ACTIONS(1936), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1936), - [sym_super] = ACTIONS(1936), - [sym_crate] = ACTIONS(1936), - [sym_metavariable] = ACTIONS(1934), - [sym__raw_string_literal_start] = ACTIONS(1934), - [sym_float_literal] = ACTIONS(1934), - }, - [548] = { - [sym_line_comment] = STATE(548), - [sym_block_comment] = STATE(548), - [ts_builtin_sym_end] = ACTIONS(1938), - [sym_identifier] = ACTIONS(1940), - [anon_sym_SEMI] = ACTIONS(1938), - [anon_sym_macro_rules_BANG] = ACTIONS(1938), - [anon_sym_LPAREN] = ACTIONS(1938), - [anon_sym_LBRACK] = ACTIONS(1938), - [anon_sym_LBRACE] = ACTIONS(1938), - [anon_sym_RBRACE] = ACTIONS(1938), - [anon_sym_STAR] = ACTIONS(1938), - [anon_sym_u8] = ACTIONS(1940), - [anon_sym_i8] = ACTIONS(1940), - [anon_sym_u16] = ACTIONS(1940), - [anon_sym_i16] = ACTIONS(1940), - [anon_sym_u32] = ACTIONS(1940), - [anon_sym_i32] = ACTIONS(1940), - [anon_sym_u64] = ACTIONS(1940), - [anon_sym_i64] = ACTIONS(1940), - [anon_sym_u128] = ACTIONS(1940), - [anon_sym_i128] = ACTIONS(1940), - [anon_sym_isize] = ACTIONS(1940), - [anon_sym_usize] = ACTIONS(1940), - [anon_sym_f32] = ACTIONS(1940), - [anon_sym_f64] = ACTIONS(1940), - [anon_sym_bool] = ACTIONS(1940), - [anon_sym_str] = ACTIONS(1940), - [anon_sym_char] = ACTIONS(1940), - [anon_sym_DASH] = ACTIONS(1938), - [anon_sym_BANG] = ACTIONS(1938), - [anon_sym_AMP] = ACTIONS(1938), - [anon_sym_PIPE] = ACTIONS(1938), - [anon_sym_LT] = ACTIONS(1938), - [anon_sym_DOT_DOT] = ACTIONS(1938), - [anon_sym_COLON_COLON] = ACTIONS(1938), - [anon_sym_POUND] = ACTIONS(1938), - [anon_sym_SQUOTE] = ACTIONS(1940), - [anon_sym_async] = ACTIONS(1940), - [anon_sym_break] = ACTIONS(1940), - [anon_sym_const] = ACTIONS(1940), - [anon_sym_continue] = ACTIONS(1940), - [anon_sym_default] = ACTIONS(1940), - [anon_sym_enum] = ACTIONS(1940), + [anon_sym_enum] = ACTIONS(1938), [anon_sym_fn] = ACTIONS(1940), - [anon_sym_for] = ACTIONS(1940), - [anon_sym_if] = ACTIONS(1940), - [anon_sym_impl] = ACTIONS(1940), - [anon_sym_let] = ACTIONS(1940), - [anon_sym_loop] = ACTIONS(1940), - [anon_sym_match] = ACTIONS(1940), - [anon_sym_mod] = ACTIONS(1940), - [anon_sym_pub] = ACTIONS(1940), - [anon_sym_return] = ACTIONS(1940), - [anon_sym_static] = ACTIONS(1940), - [anon_sym_struct] = ACTIONS(1940), - [anon_sym_trait] = ACTIONS(1940), - [anon_sym_type] = ACTIONS(1940), - [anon_sym_union] = ACTIONS(1940), - [anon_sym_unsafe] = ACTIONS(1940), - [anon_sym_use] = ACTIONS(1940), - [anon_sym_while] = ACTIONS(1940), - [anon_sym_extern] = ACTIONS(1940), - [anon_sym_yield] = ACTIONS(1940), - [anon_sym_move] = ACTIONS(1940), - [anon_sym_try] = ACTIONS(1940), - [sym_integer_literal] = ACTIONS(1938), - [aux_sym_string_literal_token1] = ACTIONS(1938), - [sym_char_literal] = ACTIONS(1938), - [anon_sym_true] = ACTIONS(1940), - [anon_sym_false] = ACTIONS(1940), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1940), - [sym_super] = ACTIONS(1940), - [sym_crate] = ACTIONS(1940), - [sym_metavariable] = ACTIONS(1938), - [sym__raw_string_literal_start] = ACTIONS(1938), - [sym_float_literal] = ACTIONS(1938), - }, - [549] = { - [sym_line_comment] = STATE(549), - [sym_block_comment] = STATE(549), - [ts_builtin_sym_end] = ACTIONS(1942), - [sym_identifier] = ACTIONS(1944), - [anon_sym_SEMI] = ACTIONS(1942), - [anon_sym_macro_rules_BANG] = ACTIONS(1942), - [anon_sym_LPAREN] = ACTIONS(1942), - [anon_sym_LBRACK] = ACTIONS(1942), - [anon_sym_LBRACE] = ACTIONS(1942), - [anon_sym_RBRACE] = ACTIONS(1942), - [anon_sym_STAR] = ACTIONS(1942), - [anon_sym_u8] = ACTIONS(1944), - [anon_sym_i8] = ACTIONS(1944), - [anon_sym_u16] = ACTIONS(1944), - [anon_sym_i16] = ACTIONS(1944), - [anon_sym_u32] = ACTIONS(1944), - [anon_sym_i32] = ACTIONS(1944), - [anon_sym_u64] = ACTIONS(1944), - [anon_sym_i64] = ACTIONS(1944), - [anon_sym_u128] = ACTIONS(1944), - [anon_sym_i128] = ACTIONS(1944), - [anon_sym_isize] = ACTIONS(1944), - [anon_sym_usize] = ACTIONS(1944), - [anon_sym_f32] = ACTIONS(1944), - [anon_sym_f64] = ACTIONS(1944), - [anon_sym_bool] = ACTIONS(1944), - [anon_sym_str] = ACTIONS(1944), - [anon_sym_char] = ACTIONS(1944), - [anon_sym_DASH] = ACTIONS(1942), - [anon_sym_BANG] = ACTIONS(1942), - [anon_sym_AMP] = ACTIONS(1942), - [anon_sym_PIPE] = ACTIONS(1942), - [anon_sym_LT] = ACTIONS(1942), - [anon_sym_DOT_DOT] = ACTIONS(1942), - [anon_sym_COLON_COLON] = ACTIONS(1942), - [anon_sym_POUND] = ACTIONS(1942), - [anon_sym_SQUOTE] = ACTIONS(1944), - [anon_sym_async] = ACTIONS(1944), - [anon_sym_break] = ACTIONS(1944), - [anon_sym_const] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(1944), - [anon_sym_default] = ACTIONS(1944), - [anon_sym_enum] = ACTIONS(1944), - [anon_sym_fn] = ACTIONS(1944), - [anon_sym_for] = ACTIONS(1944), - [anon_sym_if] = ACTIONS(1944), - [anon_sym_impl] = ACTIONS(1944), + [anon_sym_impl] = ACTIONS(1942), [anon_sym_let] = ACTIONS(1944), - [anon_sym_loop] = ACTIONS(1944), - [anon_sym_match] = ACTIONS(1944), - [anon_sym_mod] = ACTIONS(1944), - [anon_sym_pub] = ACTIONS(1944), - [anon_sym_return] = ACTIONS(1944), - [anon_sym_static] = ACTIONS(1944), - [anon_sym_struct] = ACTIONS(1944), - [anon_sym_trait] = ACTIONS(1944), - [anon_sym_type] = ACTIONS(1944), - [anon_sym_union] = ACTIONS(1944), - [anon_sym_unsafe] = ACTIONS(1944), - [anon_sym_use] = ACTIONS(1944), - [anon_sym_while] = ACTIONS(1944), - [anon_sym_extern] = ACTIONS(1944), - [anon_sym_yield] = ACTIONS(1944), - [anon_sym_move] = ACTIONS(1944), - [anon_sym_try] = ACTIONS(1944), - [sym_integer_literal] = ACTIONS(1942), - [aux_sym_string_literal_token1] = ACTIONS(1942), - [sym_char_literal] = ACTIONS(1942), - [anon_sym_true] = ACTIONS(1944), - [anon_sym_false] = ACTIONS(1944), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1944), - [sym_super] = ACTIONS(1944), - [sym_crate] = ACTIONS(1944), - [sym_metavariable] = ACTIONS(1942), - [sym__raw_string_literal_start] = ACTIONS(1942), - [sym_float_literal] = ACTIONS(1942), - }, - [550] = { - [sym_line_comment] = STATE(550), - [sym_block_comment] = STATE(550), - [ts_builtin_sym_end] = ACTIONS(1946), - [sym_identifier] = ACTIONS(1948), - [anon_sym_SEMI] = ACTIONS(1946), - [anon_sym_macro_rules_BANG] = ACTIONS(1946), - [anon_sym_LPAREN] = ACTIONS(1946), - [anon_sym_LBRACK] = ACTIONS(1946), - [anon_sym_LBRACE] = ACTIONS(1946), - [anon_sym_RBRACE] = ACTIONS(1946), - [anon_sym_STAR] = ACTIONS(1946), - [anon_sym_u8] = ACTIONS(1948), - [anon_sym_i8] = ACTIONS(1948), - [anon_sym_u16] = ACTIONS(1948), - [anon_sym_i16] = ACTIONS(1948), - [anon_sym_u32] = ACTIONS(1948), - [anon_sym_i32] = ACTIONS(1948), - [anon_sym_u64] = ACTIONS(1948), - [anon_sym_i64] = ACTIONS(1948), - [anon_sym_u128] = ACTIONS(1948), - [anon_sym_i128] = ACTIONS(1948), - [anon_sym_isize] = ACTIONS(1948), - [anon_sym_usize] = ACTIONS(1948), - [anon_sym_f32] = ACTIONS(1948), - [anon_sym_f64] = ACTIONS(1948), - [anon_sym_bool] = ACTIONS(1948), - [anon_sym_str] = ACTIONS(1948), - [anon_sym_char] = ACTIONS(1948), - [anon_sym_DASH] = ACTIONS(1946), - [anon_sym_BANG] = ACTIONS(1946), - [anon_sym_AMP] = ACTIONS(1946), - [anon_sym_PIPE] = ACTIONS(1946), - [anon_sym_LT] = ACTIONS(1946), - [anon_sym_DOT_DOT] = ACTIONS(1946), - [anon_sym_COLON_COLON] = ACTIONS(1946), - [anon_sym_POUND] = ACTIONS(1946), - [anon_sym_SQUOTE] = ACTIONS(1948), - [anon_sym_async] = ACTIONS(1948), - [anon_sym_break] = ACTIONS(1948), - [anon_sym_const] = ACTIONS(1948), - [anon_sym_continue] = ACTIONS(1948), - [anon_sym_default] = ACTIONS(1948), - [anon_sym_enum] = ACTIONS(1948), - [anon_sym_fn] = ACTIONS(1948), - [anon_sym_for] = ACTIONS(1948), - [anon_sym_if] = ACTIONS(1948), - [anon_sym_impl] = ACTIONS(1948), - [anon_sym_let] = ACTIONS(1948), - [anon_sym_loop] = ACTIONS(1948), - [anon_sym_match] = ACTIONS(1948), - [anon_sym_mod] = ACTIONS(1948), - [anon_sym_pub] = ACTIONS(1948), - [anon_sym_return] = ACTIONS(1948), + [anon_sym_mod] = ACTIONS(1946), + [anon_sym_pub] = ACTIONS(67), [anon_sym_static] = ACTIONS(1948), - [anon_sym_struct] = ACTIONS(1948), - [anon_sym_trait] = ACTIONS(1948), - [anon_sym_type] = ACTIONS(1948), - [anon_sym_union] = ACTIONS(1948), - [anon_sym_unsafe] = ACTIONS(1948), - [anon_sym_use] = ACTIONS(1948), - [anon_sym_while] = ACTIONS(1948), - [anon_sym_extern] = ACTIONS(1948), - [anon_sym_yield] = ACTIONS(1948), - [anon_sym_move] = ACTIONS(1948), - [anon_sym_try] = ACTIONS(1948), - [sym_integer_literal] = ACTIONS(1946), - [aux_sym_string_literal_token1] = ACTIONS(1946), - [sym_char_literal] = ACTIONS(1946), - [anon_sym_true] = ACTIONS(1948), - [anon_sym_false] = ACTIONS(1948), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1948), - [sym_super] = ACTIONS(1948), - [sym_crate] = ACTIONS(1948), - [sym_metavariable] = ACTIONS(1946), - [sym__raw_string_literal_start] = ACTIONS(1946), - [sym_float_literal] = ACTIONS(1946), - }, - [551] = { - [sym_line_comment] = STATE(551), - [sym_block_comment] = STATE(551), - [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_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_struct] = ACTIONS(1950), [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(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [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), - }, - [552] = { - [sym_line_comment] = STATE(552), - [sym_block_comment] = STATE(552), - [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_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_type] = ACTIONS(1954), [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(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [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), - }, - [553] = { - [sym_line_comment] = STATE(553), - [sym_block_comment] = STATE(553), - [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_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_unsafe] = ACTIONS(1958), [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(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [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), - }, - [554] = { - [sym_line_comment] = STATE(554), - [sym_block_comment] = STATE(554), - [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_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_extern] = ACTIONS(1962), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [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), + [sym_crate] = ACTIONS(1966), + [sym_metavariable] = ACTIONS(1968), }, - [555] = { - [sym_line_comment] = STATE(555), - [sym_block_comment] = STATE(555), - [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_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(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [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), - }, - [556] = { - [sym_line_comment] = STATE(556), - [sym_block_comment] = STATE(556), + [529] = { + [sym_line_comment] = STATE(529), + [sym_block_comment] = STATE(529), [ts_builtin_sym_end] = ACTIONS(1970), [sym_identifier] = ACTIONS(1972), [anon_sym_SEMI] = ACTIONS(1970), @@ -74765,9 +72613,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1970), [sym_float_literal] = ACTIONS(1970), }, - [557] = { - [sym_line_comment] = STATE(557), - [sym_block_comment] = STATE(557), + [530] = { + [sym_line_comment] = STATE(530), + [sym_block_comment] = STATE(530), [ts_builtin_sym_end] = ACTIONS(1974), [sym_identifier] = ACTIONS(1976), [anon_sym_SEMI] = ACTIONS(1974), @@ -74845,9 +72693,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1974), [sym_float_literal] = ACTIONS(1974), }, - [558] = { - [sym_line_comment] = STATE(558), - [sym_block_comment] = STATE(558), + [531] = { + [sym_line_comment] = STATE(531), + [sym_block_comment] = STATE(531), [ts_builtin_sym_end] = ACTIONS(1978), [sym_identifier] = ACTIONS(1980), [anon_sym_SEMI] = ACTIONS(1978), @@ -74925,9 +72773,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1978), [sym_float_literal] = ACTIONS(1978), }, - [559] = { - [sym_line_comment] = STATE(559), - [sym_block_comment] = STATE(559), + [532] = { + [sym_line_comment] = STATE(532), + [sym_block_comment] = STATE(532), [ts_builtin_sym_end] = ACTIONS(1982), [sym_identifier] = ACTIONS(1984), [anon_sym_SEMI] = ACTIONS(1982), @@ -75005,9 +72853,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1982), [sym_float_literal] = ACTIONS(1982), }, - [560] = { - [sym_line_comment] = STATE(560), - [sym_block_comment] = STATE(560), + [533] = { + [sym_line_comment] = STATE(533), + [sym_block_comment] = STATE(533), [ts_builtin_sym_end] = ACTIONS(1986), [sym_identifier] = ACTIONS(1988), [anon_sym_SEMI] = ACTIONS(1986), @@ -75085,9 +72933,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1986), [sym_float_literal] = ACTIONS(1986), }, - [561] = { - [sym_line_comment] = STATE(561), - [sym_block_comment] = STATE(561), + [534] = { + [sym_line_comment] = STATE(534), + [sym_block_comment] = STATE(534), [ts_builtin_sym_end] = ACTIONS(1990), [sym_identifier] = ACTIONS(1992), [anon_sym_SEMI] = ACTIONS(1990), @@ -75165,9 +73013,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1990), [sym_float_literal] = ACTIONS(1990), }, - [562] = { - [sym_line_comment] = STATE(562), - [sym_block_comment] = STATE(562), + [535] = { + [sym_line_comment] = STATE(535), + [sym_block_comment] = STATE(535), [ts_builtin_sym_end] = ACTIONS(1994), [sym_identifier] = ACTIONS(1996), [anon_sym_SEMI] = ACTIONS(1994), @@ -75245,9 +73093,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1994), [sym_float_literal] = ACTIONS(1994), }, - [563] = { - [sym_line_comment] = STATE(563), - [sym_block_comment] = STATE(563), + [536] = { + [sym_line_comment] = STATE(536), + [sym_block_comment] = STATE(536), [ts_builtin_sym_end] = ACTIONS(1998), [sym_identifier] = ACTIONS(2000), [anon_sym_SEMI] = ACTIONS(1998), @@ -75325,9 +73173,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1998), [sym_float_literal] = ACTIONS(1998), }, - [564] = { - [sym_line_comment] = STATE(564), - [sym_block_comment] = STATE(564), + [537] = { + [sym_line_comment] = STATE(537), + [sym_block_comment] = STATE(537), [ts_builtin_sym_end] = ACTIONS(2002), [sym_identifier] = ACTIONS(2004), [anon_sym_SEMI] = ACTIONS(2002), @@ -75405,9 +73253,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2002), [sym_float_literal] = ACTIONS(2002), }, - [565] = { - [sym_line_comment] = STATE(565), - [sym_block_comment] = STATE(565), + [538] = { + [sym_line_comment] = STATE(538), + [sym_block_comment] = STATE(538), [ts_builtin_sym_end] = ACTIONS(2006), [sym_identifier] = ACTIONS(2008), [anon_sym_SEMI] = ACTIONS(2006), @@ -75485,9 +73333,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2006), [sym_float_literal] = ACTIONS(2006), }, - [566] = { - [sym_line_comment] = STATE(566), - [sym_block_comment] = STATE(566), + [539] = { + [sym_line_comment] = STATE(539), + [sym_block_comment] = STATE(539), [ts_builtin_sym_end] = ACTIONS(2010), [sym_identifier] = ACTIONS(2012), [anon_sym_SEMI] = ACTIONS(2010), @@ -75565,9 +73413,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2010), [sym_float_literal] = ACTIONS(2010), }, - [567] = { - [sym_line_comment] = STATE(567), - [sym_block_comment] = STATE(567), + [540] = { + [sym_line_comment] = STATE(540), + [sym_block_comment] = STATE(540), [ts_builtin_sym_end] = ACTIONS(2014), [sym_identifier] = ACTIONS(2016), [anon_sym_SEMI] = ACTIONS(2014), @@ -75645,9 +73493,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2014), [sym_float_literal] = ACTIONS(2014), }, - [568] = { - [sym_line_comment] = STATE(568), - [sym_block_comment] = STATE(568), + [541] = { + [sym_line_comment] = STATE(541), + [sym_block_comment] = STATE(541), [ts_builtin_sym_end] = ACTIONS(2018), [sym_identifier] = ACTIONS(2020), [anon_sym_SEMI] = ACTIONS(2018), @@ -75725,9 +73573,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2018), [sym_float_literal] = ACTIONS(2018), }, - [569] = { - [sym_line_comment] = STATE(569), - [sym_block_comment] = STATE(569), + [542] = { + [sym_line_comment] = STATE(542), + [sym_block_comment] = STATE(542), [ts_builtin_sym_end] = ACTIONS(2022), [sym_identifier] = ACTIONS(2024), [anon_sym_SEMI] = ACTIONS(2022), @@ -75805,9 +73653,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2022), [sym_float_literal] = ACTIONS(2022), }, - [570] = { - [sym_line_comment] = STATE(570), - [sym_block_comment] = STATE(570), + [543] = { + [sym_line_comment] = STATE(543), + [sym_block_comment] = STATE(543), [ts_builtin_sym_end] = ACTIONS(2026), [sym_identifier] = ACTIONS(2028), [anon_sym_SEMI] = ACTIONS(2026), @@ -75885,9 +73733,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2026), [sym_float_literal] = ACTIONS(2026), }, - [571] = { - [sym_line_comment] = STATE(571), - [sym_block_comment] = STATE(571), + [544] = { + [sym_line_comment] = STATE(544), + [sym_block_comment] = STATE(544), [ts_builtin_sym_end] = ACTIONS(2030), [sym_identifier] = ACTIONS(2032), [anon_sym_SEMI] = ACTIONS(2030), @@ -75965,9 +73813,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2030), [sym_float_literal] = ACTIONS(2030), }, - [572] = { - [sym_line_comment] = STATE(572), - [sym_block_comment] = STATE(572), + [545] = { + [sym_line_comment] = STATE(545), + [sym_block_comment] = STATE(545), [ts_builtin_sym_end] = ACTIONS(2034), [sym_identifier] = ACTIONS(2036), [anon_sym_SEMI] = ACTIONS(2034), @@ -76045,9 +73893,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2034), [sym_float_literal] = ACTIONS(2034), }, - [573] = { - [sym_line_comment] = STATE(573), - [sym_block_comment] = STATE(573), + [546] = { + [sym_line_comment] = STATE(546), + [sym_block_comment] = STATE(546), [ts_builtin_sym_end] = ACTIONS(2038), [sym_identifier] = ACTIONS(2040), [anon_sym_SEMI] = ACTIONS(2038), @@ -76125,9 +73973,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2038), [sym_float_literal] = ACTIONS(2038), }, - [574] = { - [sym_line_comment] = STATE(574), - [sym_block_comment] = STATE(574), + [547] = { + [sym_line_comment] = STATE(547), + [sym_block_comment] = STATE(547), [ts_builtin_sym_end] = ACTIONS(2042), [sym_identifier] = ACTIONS(2044), [anon_sym_SEMI] = ACTIONS(2042), @@ -76205,9 +74053,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2042), [sym_float_literal] = ACTIONS(2042), }, - [575] = { - [sym_line_comment] = STATE(575), - [sym_block_comment] = STATE(575), + [548] = { + [sym_line_comment] = STATE(548), + [sym_block_comment] = STATE(548), [ts_builtin_sym_end] = ACTIONS(2046), [sym_identifier] = ACTIONS(2048), [anon_sym_SEMI] = ACTIONS(2046), @@ -76285,9 +74133,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2046), [sym_float_literal] = ACTIONS(2046), }, - [576] = { - [sym_line_comment] = STATE(576), - [sym_block_comment] = STATE(576), + [549] = { + [sym_line_comment] = STATE(549), + [sym_block_comment] = STATE(549), [ts_builtin_sym_end] = ACTIONS(2050), [sym_identifier] = ACTIONS(2052), [anon_sym_SEMI] = ACTIONS(2050), @@ -76365,9 +74213,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2050), [sym_float_literal] = ACTIONS(2050), }, - [577] = { - [sym_line_comment] = STATE(577), - [sym_block_comment] = STATE(577), + [550] = { + [sym_line_comment] = STATE(550), + [sym_block_comment] = STATE(550), [ts_builtin_sym_end] = ACTIONS(2054), [sym_identifier] = ACTIONS(2056), [anon_sym_SEMI] = ACTIONS(2054), @@ -76445,9 +74293,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2054), [sym_float_literal] = ACTIONS(2054), }, - [578] = { - [sym_line_comment] = STATE(578), - [sym_block_comment] = STATE(578), + [551] = { + [sym_line_comment] = STATE(551), + [sym_block_comment] = STATE(551), [ts_builtin_sym_end] = ACTIONS(2058), [sym_identifier] = ACTIONS(2060), [anon_sym_SEMI] = ACTIONS(2058), @@ -76525,9 +74373,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2058), [sym_float_literal] = ACTIONS(2058), }, - [579] = { - [sym_line_comment] = STATE(579), - [sym_block_comment] = STATE(579), + [552] = { + [sym_line_comment] = STATE(552), + [sym_block_comment] = STATE(552), [ts_builtin_sym_end] = ACTIONS(2062), [sym_identifier] = ACTIONS(2064), [anon_sym_SEMI] = ACTIONS(2062), @@ -76605,9 +74453,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2062), [sym_float_literal] = ACTIONS(2062), }, - [580] = { - [sym_line_comment] = STATE(580), - [sym_block_comment] = STATE(580), + [553] = { + [sym_line_comment] = STATE(553), + [sym_block_comment] = STATE(553), [ts_builtin_sym_end] = ACTIONS(2066), [sym_identifier] = ACTIONS(2068), [anon_sym_SEMI] = ACTIONS(2066), @@ -76685,9 +74533,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2066), [sym_float_literal] = ACTIONS(2066), }, - [581] = { - [sym_line_comment] = STATE(581), - [sym_block_comment] = STATE(581), + [554] = { + [sym_line_comment] = STATE(554), + [sym_block_comment] = STATE(554), [ts_builtin_sym_end] = ACTIONS(2070), [sym_identifier] = ACTIONS(2072), [anon_sym_SEMI] = ACTIONS(2070), @@ -76765,9 +74613,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2070), [sym_float_literal] = ACTIONS(2070), }, - [582] = { - [sym_line_comment] = STATE(582), - [sym_block_comment] = STATE(582), + [555] = { + [sym_line_comment] = STATE(555), + [sym_block_comment] = STATE(555), [ts_builtin_sym_end] = ACTIONS(2074), [sym_identifier] = ACTIONS(2076), [anon_sym_SEMI] = ACTIONS(2074), @@ -76845,9 +74693,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2074), [sym_float_literal] = ACTIONS(2074), }, - [583] = { - [sym_line_comment] = STATE(583), - [sym_block_comment] = STATE(583), + [556] = { + [sym_line_comment] = STATE(556), + [sym_block_comment] = STATE(556), [ts_builtin_sym_end] = ACTIONS(2078), [sym_identifier] = ACTIONS(2080), [anon_sym_SEMI] = ACTIONS(2078), @@ -76925,9 +74773,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2078), [sym_float_literal] = ACTIONS(2078), }, - [584] = { - [sym_line_comment] = STATE(584), - [sym_block_comment] = STATE(584), + [557] = { + [sym_line_comment] = STATE(557), + [sym_block_comment] = STATE(557), [ts_builtin_sym_end] = ACTIONS(2082), [sym_identifier] = ACTIONS(2084), [anon_sym_SEMI] = ACTIONS(2082), @@ -77005,9 +74853,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2082), [sym_float_literal] = ACTIONS(2082), }, - [585] = { - [sym_line_comment] = STATE(585), - [sym_block_comment] = STATE(585), + [558] = { + [sym_line_comment] = STATE(558), + [sym_block_comment] = STATE(558), [ts_builtin_sym_end] = ACTIONS(2086), [sym_identifier] = ACTIONS(2088), [anon_sym_SEMI] = ACTIONS(2086), @@ -77085,9 +74933,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2086), [sym_float_literal] = ACTIONS(2086), }, - [586] = { - [sym_line_comment] = STATE(586), - [sym_block_comment] = STATE(586), + [559] = { + [sym_line_comment] = STATE(559), + [sym_block_comment] = STATE(559), [ts_builtin_sym_end] = ACTIONS(2090), [sym_identifier] = ACTIONS(2092), [anon_sym_SEMI] = ACTIONS(2090), @@ -77165,9 +75013,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2090), [sym_float_literal] = ACTIONS(2090), }, - [587] = { - [sym_line_comment] = STATE(587), - [sym_block_comment] = STATE(587), + [560] = { + [sym_line_comment] = STATE(560), + [sym_block_comment] = STATE(560), [ts_builtin_sym_end] = ACTIONS(2094), [sym_identifier] = ACTIONS(2096), [anon_sym_SEMI] = ACTIONS(2094), @@ -77245,9 +75093,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2094), [sym_float_literal] = ACTIONS(2094), }, - [588] = { - [sym_line_comment] = STATE(588), - [sym_block_comment] = STATE(588), + [561] = { + [sym_line_comment] = STATE(561), + [sym_block_comment] = STATE(561), [ts_builtin_sym_end] = ACTIONS(2098), [sym_identifier] = ACTIONS(2100), [anon_sym_SEMI] = ACTIONS(2098), @@ -77325,9 +75173,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2098), [sym_float_literal] = ACTIONS(2098), }, - [589] = { - [sym_line_comment] = STATE(589), - [sym_block_comment] = STATE(589), + [562] = { + [sym_line_comment] = STATE(562), + [sym_block_comment] = STATE(562), [ts_builtin_sym_end] = ACTIONS(2102), [sym_identifier] = ACTIONS(2104), [anon_sym_SEMI] = ACTIONS(2102), @@ -77405,9 +75253,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2102), [sym_float_literal] = ACTIONS(2102), }, - [590] = { - [sym_line_comment] = STATE(590), - [sym_block_comment] = STATE(590), + [563] = { + [sym_line_comment] = STATE(563), + [sym_block_comment] = STATE(563), [ts_builtin_sym_end] = ACTIONS(2106), [sym_identifier] = ACTIONS(2108), [anon_sym_SEMI] = ACTIONS(2106), @@ -77485,9 +75333,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2106), [sym_float_literal] = ACTIONS(2106), }, - [591] = { - [sym_line_comment] = STATE(591), - [sym_block_comment] = STATE(591), + [564] = { + [sym_line_comment] = STATE(564), + [sym_block_comment] = STATE(564), [ts_builtin_sym_end] = ACTIONS(2110), [sym_identifier] = ACTIONS(2112), [anon_sym_SEMI] = ACTIONS(2110), @@ -77565,9 +75413,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2110), [sym_float_literal] = ACTIONS(2110), }, - [592] = { - [sym_line_comment] = STATE(592), - [sym_block_comment] = STATE(592), + [565] = { + [sym_line_comment] = STATE(565), + [sym_block_comment] = STATE(565), [ts_builtin_sym_end] = ACTIONS(2114), [sym_identifier] = ACTIONS(2116), [anon_sym_SEMI] = ACTIONS(2114), @@ -77645,9 +75493,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2114), [sym_float_literal] = ACTIONS(2114), }, - [593] = { - [sym_line_comment] = STATE(593), - [sym_block_comment] = STATE(593), + [566] = { + [sym_line_comment] = STATE(566), + [sym_block_comment] = STATE(566), [ts_builtin_sym_end] = ACTIONS(2118), [sym_identifier] = ACTIONS(2120), [anon_sym_SEMI] = ACTIONS(2118), @@ -77725,9 +75573,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2118), [sym_float_literal] = ACTIONS(2118), }, - [594] = { - [sym_line_comment] = STATE(594), - [sym_block_comment] = STATE(594), + [567] = { + [sym_line_comment] = STATE(567), + [sym_block_comment] = STATE(567), [ts_builtin_sym_end] = ACTIONS(2122), [sym_identifier] = ACTIONS(2124), [anon_sym_SEMI] = ACTIONS(2122), @@ -77805,9 +75653,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2122), [sym_float_literal] = ACTIONS(2122), }, - [595] = { - [sym_line_comment] = STATE(595), - [sym_block_comment] = STATE(595), + [568] = { + [sym_line_comment] = STATE(568), + [sym_block_comment] = STATE(568), [ts_builtin_sym_end] = ACTIONS(2126), [sym_identifier] = ACTIONS(2128), [anon_sym_SEMI] = ACTIONS(2126), @@ -77885,9 +75733,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2126), [sym_float_literal] = ACTIONS(2126), }, - [596] = { - [sym_line_comment] = STATE(596), - [sym_block_comment] = STATE(596), + [569] = { + [sym_line_comment] = STATE(569), + [sym_block_comment] = STATE(569), [ts_builtin_sym_end] = ACTIONS(2130), [sym_identifier] = ACTIONS(2132), [anon_sym_SEMI] = ACTIONS(2130), @@ -77965,9 +75813,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2130), [sym_float_literal] = ACTIONS(2130), }, - [597] = { - [sym_line_comment] = STATE(597), - [sym_block_comment] = STATE(597), + [570] = { + [sym_line_comment] = STATE(570), + [sym_block_comment] = STATE(570), [ts_builtin_sym_end] = ACTIONS(2134), [sym_identifier] = ACTIONS(2136), [anon_sym_SEMI] = ACTIONS(2134), @@ -78045,9 +75893,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2134), [sym_float_literal] = ACTIONS(2134), }, - [598] = { - [sym_line_comment] = STATE(598), - [sym_block_comment] = STATE(598), + [571] = { + [sym_line_comment] = STATE(571), + [sym_block_comment] = STATE(571), [ts_builtin_sym_end] = ACTIONS(2138), [sym_identifier] = ACTIONS(2140), [anon_sym_SEMI] = ACTIONS(2138), @@ -78125,9 +75973,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2138), [sym_float_literal] = ACTIONS(2138), }, - [599] = { - [sym_line_comment] = STATE(599), - [sym_block_comment] = STATE(599), + [572] = { + [sym_line_comment] = STATE(572), + [sym_block_comment] = STATE(572), [ts_builtin_sym_end] = ACTIONS(2142), [sym_identifier] = ACTIONS(2144), [anon_sym_SEMI] = ACTIONS(2142), @@ -78205,9 +76053,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2142), [sym_float_literal] = ACTIONS(2142), }, - [600] = { - [sym_line_comment] = STATE(600), - [sym_block_comment] = STATE(600), + [573] = { + [sym_line_comment] = STATE(573), + [sym_block_comment] = STATE(573), [ts_builtin_sym_end] = ACTIONS(2146), [sym_identifier] = ACTIONS(2148), [anon_sym_SEMI] = ACTIONS(2146), @@ -78285,9 +76133,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2146), [sym_float_literal] = ACTIONS(2146), }, - [601] = { - [sym_line_comment] = STATE(601), - [sym_block_comment] = STATE(601), + [574] = { + [sym_line_comment] = STATE(574), + [sym_block_comment] = STATE(574), [ts_builtin_sym_end] = ACTIONS(2150), [sym_identifier] = ACTIONS(2152), [anon_sym_SEMI] = ACTIONS(2150), @@ -78365,9 +76213,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2150), [sym_float_literal] = ACTIONS(2150), }, - [602] = { - [sym_line_comment] = STATE(602), - [sym_block_comment] = STATE(602), + [575] = { + [sym_line_comment] = STATE(575), + [sym_block_comment] = STATE(575), [ts_builtin_sym_end] = ACTIONS(2154), [sym_identifier] = ACTIONS(2156), [anon_sym_SEMI] = ACTIONS(2154), @@ -78445,9 +76293,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2154), [sym_float_literal] = ACTIONS(2154), }, - [603] = { - [sym_line_comment] = STATE(603), - [sym_block_comment] = STATE(603), + [576] = { + [sym_line_comment] = STATE(576), + [sym_block_comment] = STATE(576), [ts_builtin_sym_end] = ACTIONS(2158), [sym_identifier] = ACTIONS(2160), [anon_sym_SEMI] = ACTIONS(2158), @@ -78525,9 +76373,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2158), [sym_float_literal] = ACTIONS(2158), }, - [604] = { - [sym_line_comment] = STATE(604), - [sym_block_comment] = STATE(604), + [577] = { + [sym_line_comment] = STATE(577), + [sym_block_comment] = STATE(577), [ts_builtin_sym_end] = ACTIONS(2162), [sym_identifier] = ACTIONS(2164), [anon_sym_SEMI] = ACTIONS(2162), @@ -78605,9 +76453,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2162), [sym_float_literal] = ACTIONS(2162), }, - [605] = { - [sym_line_comment] = STATE(605), - [sym_block_comment] = STATE(605), + [578] = { + [sym_line_comment] = STATE(578), + [sym_block_comment] = STATE(578), [ts_builtin_sym_end] = ACTIONS(2166), [sym_identifier] = ACTIONS(2168), [anon_sym_SEMI] = ACTIONS(2166), @@ -78685,9 +76533,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2166), [sym_float_literal] = ACTIONS(2166), }, - [606] = { - [sym_line_comment] = STATE(606), - [sym_block_comment] = STATE(606), + [579] = { + [sym_line_comment] = STATE(579), + [sym_block_comment] = STATE(579), [ts_builtin_sym_end] = ACTIONS(2170), [sym_identifier] = ACTIONS(2172), [anon_sym_SEMI] = ACTIONS(2170), @@ -78765,9 +76613,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2170), [sym_float_literal] = ACTIONS(2170), }, - [607] = { - [sym_line_comment] = STATE(607), - [sym_block_comment] = STATE(607), + [580] = { + [sym_line_comment] = STATE(580), + [sym_block_comment] = STATE(580), [ts_builtin_sym_end] = ACTIONS(2174), [sym_identifier] = ACTIONS(2176), [anon_sym_SEMI] = ACTIONS(2174), @@ -78845,9 +76693,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2174), [sym_float_literal] = ACTIONS(2174), }, - [608] = { - [sym_line_comment] = STATE(608), - [sym_block_comment] = STATE(608), + [581] = { + [sym_line_comment] = STATE(581), + [sym_block_comment] = STATE(581), [ts_builtin_sym_end] = ACTIONS(2178), [sym_identifier] = ACTIONS(2180), [anon_sym_SEMI] = ACTIONS(2178), @@ -78925,9 +76773,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2178), [sym_float_literal] = ACTIONS(2178), }, - [609] = { - [sym_line_comment] = STATE(609), - [sym_block_comment] = STATE(609), + [582] = { + [sym_line_comment] = STATE(582), + [sym_block_comment] = STATE(582), [ts_builtin_sym_end] = ACTIONS(2182), [sym_identifier] = ACTIONS(2184), [anon_sym_SEMI] = ACTIONS(2182), @@ -79005,9 +76853,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2182), [sym_float_literal] = ACTIONS(2182), }, - [610] = { - [sym_line_comment] = STATE(610), - [sym_block_comment] = STATE(610), + [583] = { + [sym_line_comment] = STATE(583), + [sym_block_comment] = STATE(583), [ts_builtin_sym_end] = ACTIONS(2186), [sym_identifier] = ACTIONS(2188), [anon_sym_SEMI] = ACTIONS(2186), @@ -79085,9 +76933,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2186), [sym_float_literal] = ACTIONS(2186), }, - [611] = { - [sym_line_comment] = STATE(611), - [sym_block_comment] = STATE(611), + [584] = { + [sym_line_comment] = STATE(584), + [sym_block_comment] = STATE(584), [ts_builtin_sym_end] = ACTIONS(2190), [sym_identifier] = ACTIONS(2192), [anon_sym_SEMI] = ACTIONS(2190), @@ -79165,9 +77013,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2190), [sym_float_literal] = ACTIONS(2190), }, - [612] = { - [sym_line_comment] = STATE(612), - [sym_block_comment] = STATE(612), + [585] = { + [sym_line_comment] = STATE(585), + [sym_block_comment] = STATE(585), [ts_builtin_sym_end] = ACTIONS(2194), [sym_identifier] = ACTIONS(2196), [anon_sym_SEMI] = ACTIONS(2194), @@ -79245,9 +77093,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2194), [sym_float_literal] = ACTIONS(2194), }, - [613] = { - [sym_line_comment] = STATE(613), - [sym_block_comment] = STATE(613), + [586] = { + [sym_line_comment] = STATE(586), + [sym_block_comment] = STATE(586), [ts_builtin_sym_end] = ACTIONS(2198), [sym_identifier] = ACTIONS(2200), [anon_sym_SEMI] = ACTIONS(2198), @@ -79325,9 +77173,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2198), [sym_float_literal] = ACTIONS(2198), }, - [614] = { - [sym_line_comment] = STATE(614), - [sym_block_comment] = STATE(614), + [587] = { + [sym_line_comment] = STATE(587), + [sym_block_comment] = STATE(587), [ts_builtin_sym_end] = ACTIONS(2202), [sym_identifier] = ACTIONS(2204), [anon_sym_SEMI] = ACTIONS(2202), @@ -79405,9 +77253,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2202), [sym_float_literal] = ACTIONS(2202), }, - [615] = { - [sym_line_comment] = STATE(615), - [sym_block_comment] = STATE(615), + [588] = { + [sym_line_comment] = STATE(588), + [sym_block_comment] = STATE(588), [ts_builtin_sym_end] = ACTIONS(2206), [sym_identifier] = ACTIONS(2208), [anon_sym_SEMI] = ACTIONS(2206), @@ -79485,9 +77333,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2206), [sym_float_literal] = ACTIONS(2206), }, - [616] = { - [sym_line_comment] = STATE(616), - [sym_block_comment] = STATE(616), + [589] = { + [sym_line_comment] = STATE(589), + [sym_block_comment] = STATE(589), [ts_builtin_sym_end] = ACTIONS(2210), [sym_identifier] = ACTIONS(2212), [anon_sym_SEMI] = ACTIONS(2210), @@ -79565,9 +77413,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2210), [sym_float_literal] = ACTIONS(2210), }, - [617] = { - [sym_line_comment] = STATE(617), - [sym_block_comment] = STATE(617), + [590] = { + [sym_line_comment] = STATE(590), + [sym_block_comment] = STATE(590), [ts_builtin_sym_end] = ACTIONS(2214), [sym_identifier] = ACTIONS(2216), [anon_sym_SEMI] = ACTIONS(2214), @@ -79645,9 +77493,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2214), [sym_float_literal] = ACTIONS(2214), }, - [618] = { - [sym_line_comment] = STATE(618), - [sym_block_comment] = STATE(618), + [591] = { + [sym_line_comment] = STATE(591), + [sym_block_comment] = STATE(591), [ts_builtin_sym_end] = ACTIONS(2218), [sym_identifier] = ACTIONS(2220), [anon_sym_SEMI] = ACTIONS(2218), @@ -79725,9 +77573,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2218), [sym_float_literal] = ACTIONS(2218), }, - [619] = { - [sym_line_comment] = STATE(619), - [sym_block_comment] = STATE(619), + [592] = { + [sym_line_comment] = STATE(592), + [sym_block_comment] = STATE(592), [ts_builtin_sym_end] = ACTIONS(2222), [sym_identifier] = ACTIONS(2224), [anon_sym_SEMI] = ACTIONS(2222), @@ -79805,9 +77653,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2222), [sym_float_literal] = ACTIONS(2222), }, - [620] = { - [sym_line_comment] = STATE(620), - [sym_block_comment] = STATE(620), + [593] = { + [sym_line_comment] = STATE(593), + [sym_block_comment] = STATE(593), [ts_builtin_sym_end] = ACTIONS(2226), [sym_identifier] = ACTIONS(2228), [anon_sym_SEMI] = ACTIONS(2226), @@ -79885,9 +77733,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2226), [sym_float_literal] = ACTIONS(2226), }, - [621] = { - [sym_line_comment] = STATE(621), - [sym_block_comment] = STATE(621), + [594] = { + [sym_line_comment] = STATE(594), + [sym_block_comment] = STATE(594), [ts_builtin_sym_end] = ACTIONS(2230), [sym_identifier] = ACTIONS(2232), [anon_sym_SEMI] = ACTIONS(2230), @@ -79965,9 +77813,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2230), [sym_float_literal] = ACTIONS(2230), }, - [622] = { - [sym_line_comment] = STATE(622), - [sym_block_comment] = STATE(622), + [595] = { + [sym_line_comment] = STATE(595), + [sym_block_comment] = STATE(595), [ts_builtin_sym_end] = ACTIONS(2234), [sym_identifier] = ACTIONS(2236), [anon_sym_SEMI] = ACTIONS(2234), @@ -80045,9 +77893,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2234), [sym_float_literal] = ACTIONS(2234), }, - [623] = { - [sym_line_comment] = STATE(623), - [sym_block_comment] = STATE(623), + [596] = { + [sym_line_comment] = STATE(596), + [sym_block_comment] = STATE(596), [ts_builtin_sym_end] = ACTIONS(2238), [sym_identifier] = ACTIONS(2240), [anon_sym_SEMI] = ACTIONS(2238), @@ -80125,9 +77973,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2238), [sym_float_literal] = ACTIONS(2238), }, - [624] = { - [sym_line_comment] = STATE(624), - [sym_block_comment] = STATE(624), + [597] = { + [sym_line_comment] = STATE(597), + [sym_block_comment] = STATE(597), [ts_builtin_sym_end] = ACTIONS(2242), [sym_identifier] = ACTIONS(2244), [anon_sym_SEMI] = ACTIONS(2242), @@ -80205,9 +78053,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2242), [sym_float_literal] = ACTIONS(2242), }, - [625] = { - [sym_line_comment] = STATE(625), - [sym_block_comment] = STATE(625), + [598] = { + [sym_line_comment] = STATE(598), + [sym_block_comment] = STATE(598), [ts_builtin_sym_end] = ACTIONS(2246), [sym_identifier] = ACTIONS(2248), [anon_sym_SEMI] = ACTIONS(2246), @@ -80285,9 +78133,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2246), [sym_float_literal] = ACTIONS(2246), }, - [626] = { - [sym_line_comment] = STATE(626), - [sym_block_comment] = STATE(626), + [599] = { + [sym_line_comment] = STATE(599), + [sym_block_comment] = STATE(599), [ts_builtin_sym_end] = ACTIONS(2250), [sym_identifier] = ACTIONS(2252), [anon_sym_SEMI] = ACTIONS(2250), @@ -80365,9 +78213,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2250), [sym_float_literal] = ACTIONS(2250), }, - [627] = { - [sym_line_comment] = STATE(627), - [sym_block_comment] = STATE(627), + [600] = { + [sym_line_comment] = STATE(600), + [sym_block_comment] = STATE(600), [ts_builtin_sym_end] = ACTIONS(2254), [sym_identifier] = ACTIONS(2256), [anon_sym_SEMI] = ACTIONS(2254), @@ -80445,9 +78293,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2254), [sym_float_literal] = ACTIONS(2254), }, - [628] = { - [sym_line_comment] = STATE(628), - [sym_block_comment] = STATE(628), + [601] = { + [sym_line_comment] = STATE(601), + [sym_block_comment] = STATE(601), [ts_builtin_sym_end] = ACTIONS(2258), [sym_identifier] = ACTIONS(2260), [anon_sym_SEMI] = ACTIONS(2258), @@ -80525,9 +78373,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2258), [sym_float_literal] = ACTIONS(2258), }, - [629] = { - [sym_line_comment] = STATE(629), - [sym_block_comment] = STATE(629), + [602] = { + [sym_line_comment] = STATE(602), + [sym_block_comment] = STATE(602), [ts_builtin_sym_end] = ACTIONS(2262), [sym_identifier] = ACTIONS(2264), [anon_sym_SEMI] = ACTIONS(2262), @@ -80605,9 +78453,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2262), [sym_float_literal] = ACTIONS(2262), }, - [630] = { - [sym_line_comment] = STATE(630), - [sym_block_comment] = STATE(630), + [603] = { + [sym_line_comment] = STATE(603), + [sym_block_comment] = STATE(603), [ts_builtin_sym_end] = ACTIONS(2266), [sym_identifier] = ACTIONS(2268), [anon_sym_SEMI] = ACTIONS(2266), @@ -80685,9 +78533,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2266), [sym_float_literal] = ACTIONS(2266), }, - [631] = { - [sym_line_comment] = STATE(631), - [sym_block_comment] = STATE(631), + [604] = { + [sym_line_comment] = STATE(604), + [sym_block_comment] = STATE(604), [ts_builtin_sym_end] = ACTIONS(2270), [sym_identifier] = ACTIONS(2272), [anon_sym_SEMI] = ACTIONS(2270), @@ -80765,9 +78613,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2270), [sym_float_literal] = ACTIONS(2270), }, - [632] = { - [sym_line_comment] = STATE(632), - [sym_block_comment] = STATE(632), + [605] = { + [sym_line_comment] = STATE(605), + [sym_block_comment] = STATE(605), + [ts_builtin_sym_end] = ACTIONS(1422), + [sym_identifier] = ACTIONS(1424), + [anon_sym_SEMI] = ACTIONS(1422), + [anon_sym_macro_rules_BANG] = ACTIONS(1422), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACK] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1422), + [anon_sym_RBRACE] = ACTIONS(1422), + [anon_sym_STAR] = ACTIONS(1422), + [anon_sym_u8] = ACTIONS(1424), + [anon_sym_i8] = ACTIONS(1424), + [anon_sym_u16] = ACTIONS(1424), + [anon_sym_i16] = ACTIONS(1424), + [anon_sym_u32] = ACTIONS(1424), + [anon_sym_i32] = ACTIONS(1424), + [anon_sym_u64] = ACTIONS(1424), + [anon_sym_i64] = ACTIONS(1424), + [anon_sym_u128] = ACTIONS(1424), + [anon_sym_i128] = ACTIONS(1424), + [anon_sym_isize] = ACTIONS(1424), + [anon_sym_usize] = ACTIONS(1424), + [anon_sym_f32] = ACTIONS(1424), + [anon_sym_f64] = ACTIONS(1424), + [anon_sym_bool] = ACTIONS(1424), + [anon_sym_str] = ACTIONS(1424), + [anon_sym_char] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1422), + [anon_sym_BANG] = ACTIONS(1422), + [anon_sym_AMP] = ACTIONS(1422), + [anon_sym_PIPE] = ACTIONS(1422), + [anon_sym_LT] = ACTIONS(1422), + [anon_sym_DOT_DOT] = ACTIONS(1422), + [anon_sym_COLON_COLON] = ACTIONS(1422), + [anon_sym_POUND] = ACTIONS(1422), + [anon_sym_SQUOTE] = ACTIONS(1424), + [anon_sym_async] = ACTIONS(1424), + [anon_sym_break] = ACTIONS(1424), + [anon_sym_const] = ACTIONS(1424), + [anon_sym_continue] = ACTIONS(1424), + [anon_sym_default] = ACTIONS(1424), + [anon_sym_enum] = ACTIONS(1424), + [anon_sym_fn] = ACTIONS(1424), + [anon_sym_for] = ACTIONS(1424), + [anon_sym_if] = ACTIONS(1424), + [anon_sym_impl] = ACTIONS(1424), + [anon_sym_let] = ACTIONS(1424), + [anon_sym_loop] = ACTIONS(1424), + [anon_sym_match] = ACTIONS(1424), + [anon_sym_mod] = ACTIONS(1424), + [anon_sym_pub] = ACTIONS(1424), + [anon_sym_return] = ACTIONS(1424), + [anon_sym_static] = ACTIONS(1424), + [anon_sym_struct] = ACTIONS(1424), + [anon_sym_trait] = ACTIONS(1424), + [anon_sym_type] = ACTIONS(1424), + [anon_sym_union] = ACTIONS(1424), + [anon_sym_unsafe] = ACTIONS(1424), + [anon_sym_use] = ACTIONS(1424), + [anon_sym_while] = ACTIONS(1424), + [anon_sym_extern] = ACTIONS(1424), + [anon_sym_yield] = ACTIONS(1424), + [anon_sym_move] = ACTIONS(1424), + [anon_sym_try] = ACTIONS(1424), + [sym_integer_literal] = ACTIONS(1422), + [aux_sym_string_literal_token1] = ACTIONS(1422), + [sym_char_literal] = ACTIONS(1422), + [anon_sym_true] = ACTIONS(1424), + [anon_sym_false] = ACTIONS(1424), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1424), + [sym_super] = ACTIONS(1424), + [sym_crate] = ACTIONS(1424), + [sym_metavariable] = ACTIONS(1422), + [sym__raw_string_literal_start] = ACTIONS(1422), + [sym_float_literal] = ACTIONS(1422), + }, + [606] = { + [sym_line_comment] = STATE(606), + [sym_block_comment] = STATE(606), [ts_builtin_sym_end] = ACTIONS(2274), [sym_identifier] = ACTIONS(2276), [anon_sym_SEMI] = ACTIONS(2274), @@ -80845,9 +78773,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2274), [sym_float_literal] = ACTIONS(2274), }, - [633] = { - [sym_line_comment] = STATE(633), - [sym_block_comment] = STATE(633), + [607] = { + [sym_line_comment] = STATE(607), + [sym_block_comment] = STATE(607), [ts_builtin_sym_end] = ACTIONS(2278), [sym_identifier] = ACTIONS(2280), [anon_sym_SEMI] = ACTIONS(2278), @@ -80925,9 +78853,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2278), [sym_float_literal] = ACTIONS(2278), }, - [634] = { - [sym_line_comment] = STATE(634), - [sym_block_comment] = STATE(634), + [608] = { + [sym_line_comment] = STATE(608), + [sym_block_comment] = STATE(608), [ts_builtin_sym_end] = ACTIONS(2282), [sym_identifier] = ACTIONS(2284), [anon_sym_SEMI] = ACTIONS(2282), @@ -81005,9 +78933,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2282), [sym_float_literal] = ACTIONS(2282), }, - [635] = { - [sym_line_comment] = STATE(635), - [sym_block_comment] = STATE(635), + [609] = { + [sym_line_comment] = STATE(609), + [sym_block_comment] = STATE(609), [ts_builtin_sym_end] = ACTIONS(2286), [sym_identifier] = ACTIONS(2288), [anon_sym_SEMI] = ACTIONS(2286), @@ -81085,9 +79013,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2286), [sym_float_literal] = ACTIONS(2286), }, - [636] = { - [sym_line_comment] = STATE(636), - [sym_block_comment] = STATE(636), + [610] = { + [sym_line_comment] = STATE(610), + [sym_block_comment] = STATE(610), [ts_builtin_sym_end] = ACTIONS(2290), [sym_identifier] = ACTIONS(2292), [anon_sym_SEMI] = ACTIONS(2290), @@ -81165,9 +79093,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2290), [sym_float_literal] = ACTIONS(2290), }, - [637] = { - [sym_line_comment] = STATE(637), - [sym_block_comment] = STATE(637), + [611] = { + [sym_line_comment] = STATE(611), + [sym_block_comment] = STATE(611), [ts_builtin_sym_end] = ACTIONS(2294), [sym_identifier] = ACTIONS(2296), [anon_sym_SEMI] = ACTIONS(2294), @@ -81245,9 +79173,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2294), [sym_float_literal] = ACTIONS(2294), }, - [638] = { - [sym_line_comment] = STATE(638), - [sym_block_comment] = STATE(638), + [612] = { + [sym_line_comment] = STATE(612), + [sym_block_comment] = STATE(612), [ts_builtin_sym_end] = ACTIONS(2298), [sym_identifier] = ACTIONS(2300), [anon_sym_SEMI] = ACTIONS(2298), @@ -81325,9 +79253,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2298), [sym_float_literal] = ACTIONS(2298), }, - [639] = { - [sym_line_comment] = STATE(639), - [sym_block_comment] = STATE(639), + [613] = { + [sym_line_comment] = STATE(613), + [sym_block_comment] = STATE(613), [ts_builtin_sym_end] = ACTIONS(2302), [sym_identifier] = ACTIONS(2304), [anon_sym_SEMI] = ACTIONS(2302), @@ -81405,9 +79333,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2302), [sym_float_literal] = ACTIONS(2302), }, - [640] = { - [sym_line_comment] = STATE(640), - [sym_block_comment] = STATE(640), + [614] = { + [sym_line_comment] = STATE(614), + [sym_block_comment] = STATE(614), [ts_builtin_sym_end] = ACTIONS(2306), [sym_identifier] = ACTIONS(2308), [anon_sym_SEMI] = ACTIONS(2306), @@ -81485,9 +79413,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2306), [sym_float_literal] = ACTIONS(2306), }, - [641] = { - [sym_line_comment] = STATE(641), - [sym_block_comment] = STATE(641), + [615] = { + [sym_line_comment] = STATE(615), + [sym_block_comment] = STATE(615), [ts_builtin_sym_end] = ACTIONS(2310), [sym_identifier] = ACTIONS(2312), [anon_sym_SEMI] = ACTIONS(2310), @@ -81565,9 +79493,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2310), [sym_float_literal] = ACTIONS(2310), }, - [642] = { - [sym_line_comment] = STATE(642), - [sym_block_comment] = STATE(642), + [616] = { + [sym_line_comment] = STATE(616), + [sym_block_comment] = STATE(616), [ts_builtin_sym_end] = ACTIONS(2314), [sym_identifier] = ACTIONS(2316), [anon_sym_SEMI] = ACTIONS(2314), @@ -81645,9 +79573,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2314), [sym_float_literal] = ACTIONS(2314), }, - [643] = { - [sym_line_comment] = STATE(643), - [sym_block_comment] = STATE(643), + [617] = { + [sym_line_comment] = STATE(617), + [sym_block_comment] = STATE(617), [ts_builtin_sym_end] = ACTIONS(2318), [sym_identifier] = ACTIONS(2320), [anon_sym_SEMI] = ACTIONS(2318), @@ -81725,9 +79653,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2318), [sym_float_literal] = ACTIONS(2318), }, - [644] = { - [sym_line_comment] = STATE(644), - [sym_block_comment] = STATE(644), + [618] = { + [sym_line_comment] = STATE(618), + [sym_block_comment] = STATE(618), [ts_builtin_sym_end] = ACTIONS(2322), [sym_identifier] = ACTIONS(2324), [anon_sym_SEMI] = ACTIONS(2322), @@ -81805,9 +79733,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2322), [sym_float_literal] = ACTIONS(2322), }, - [645] = { - [sym_line_comment] = STATE(645), - [sym_block_comment] = STATE(645), + [619] = { + [sym_line_comment] = STATE(619), + [sym_block_comment] = STATE(619), [ts_builtin_sym_end] = ACTIONS(2326), [sym_identifier] = ACTIONS(2328), [anon_sym_SEMI] = ACTIONS(2326), @@ -81885,89 +79813,1129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2326), [sym_float_literal] = ACTIONS(2326), }, - [646] = { - [sym_empty_statement] = STATE(1456), - [sym_macro_definition] = STATE(1456), - [sym_attribute_item] = STATE(1456), - [sym_inner_attribute_item] = STATE(1456), - [sym_mod_item] = STATE(1456), - [sym_foreign_mod_item] = STATE(1456), - [sym_struct_item] = STATE(1456), - [sym_union_item] = STATE(1456), - [sym_enum_item] = STATE(1456), - [sym_extern_crate_declaration] = STATE(1456), - [sym_const_item] = STATE(1456), - [sym_static_item] = STATE(1456), - [sym_type_item] = STATE(1456), - [sym_function_item] = STATE(1456), - [sym_function_signature_item] = STATE(1456), - [sym_function_modifiers] = STATE(3593), - [sym_impl_item] = STATE(1456), - [sym_trait_item] = STATE(1456), - [sym_associated_type] = STATE(1456), - [sym_let_declaration] = STATE(1456), - [sym_use_declaration] = STATE(1456), - [sym_extern_modifier] = STATE(2154), - [sym_visibility_modifier] = STATE(1934), - [sym_bracketed_type] = STATE(3324), - [sym_generic_type_with_turbofish] = STATE(3350), - [sym_macro_invocation] = STATE(1456), - [sym_scoped_identifier] = STATE(3156), - [sym_line_comment] = STATE(646), - [sym_block_comment] = STATE(646), - [aux_sym_declaration_list_repeat1] = STATE(692), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2330), - [anon_sym_SEMI] = ACTIONS(2332), + [620] = { + [sym_line_comment] = STATE(620), + [sym_block_comment] = STATE(620), + [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_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(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [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), + }, + [621] = { + [sym_line_comment] = STATE(621), + [sym_block_comment] = STATE(621), + [ts_builtin_sym_end] = ACTIONS(1240), + [sym_identifier] = ACTIONS(1242), + [anon_sym_SEMI] = ACTIONS(1240), + [anon_sym_macro_rules_BANG] = ACTIONS(1240), + [anon_sym_LPAREN] = ACTIONS(1240), + [anon_sym_LBRACK] = ACTIONS(1240), + [anon_sym_LBRACE] = ACTIONS(1240), + [anon_sym_RBRACE] = ACTIONS(1240), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_u8] = ACTIONS(1242), + [anon_sym_i8] = ACTIONS(1242), + [anon_sym_u16] = ACTIONS(1242), + [anon_sym_i16] = ACTIONS(1242), + [anon_sym_u32] = ACTIONS(1242), + [anon_sym_i32] = ACTIONS(1242), + [anon_sym_u64] = ACTIONS(1242), + [anon_sym_i64] = ACTIONS(1242), + [anon_sym_u128] = ACTIONS(1242), + [anon_sym_i128] = ACTIONS(1242), + [anon_sym_isize] = ACTIONS(1242), + [anon_sym_usize] = ACTIONS(1242), + [anon_sym_f32] = ACTIONS(1242), + [anon_sym_f64] = ACTIONS(1242), + [anon_sym_bool] = ACTIONS(1242), + [anon_sym_str] = ACTIONS(1242), + [anon_sym_char] = ACTIONS(1242), + [anon_sym_DASH] = ACTIONS(1240), + [anon_sym_BANG] = ACTIONS(1240), + [anon_sym_AMP] = ACTIONS(1240), + [anon_sym_PIPE] = ACTIONS(1240), + [anon_sym_LT] = ACTIONS(1240), + [anon_sym_DOT_DOT] = ACTIONS(1240), + [anon_sym_COLON_COLON] = ACTIONS(1240), + [anon_sym_POUND] = ACTIONS(1240), + [anon_sym_SQUOTE] = ACTIONS(1242), + [anon_sym_async] = ACTIONS(1242), + [anon_sym_break] = ACTIONS(1242), + [anon_sym_const] = ACTIONS(1242), + [anon_sym_continue] = ACTIONS(1242), + [anon_sym_default] = ACTIONS(1242), + [anon_sym_enum] = ACTIONS(1242), + [anon_sym_fn] = ACTIONS(1242), + [anon_sym_for] = ACTIONS(1242), + [anon_sym_if] = ACTIONS(1242), + [anon_sym_impl] = ACTIONS(1242), + [anon_sym_let] = ACTIONS(1242), + [anon_sym_loop] = ACTIONS(1242), + [anon_sym_match] = ACTIONS(1242), + [anon_sym_mod] = ACTIONS(1242), + [anon_sym_pub] = ACTIONS(1242), + [anon_sym_return] = ACTIONS(1242), + [anon_sym_static] = ACTIONS(1242), + [anon_sym_struct] = ACTIONS(1242), + [anon_sym_trait] = ACTIONS(1242), + [anon_sym_type] = ACTIONS(1242), + [anon_sym_union] = ACTIONS(1242), + [anon_sym_unsafe] = ACTIONS(1242), + [anon_sym_use] = ACTIONS(1242), + [anon_sym_while] = ACTIONS(1242), + [anon_sym_extern] = ACTIONS(1242), + [anon_sym_yield] = ACTIONS(1242), + [anon_sym_move] = ACTIONS(1242), + [anon_sym_try] = ACTIONS(1242), + [sym_integer_literal] = ACTIONS(1240), + [aux_sym_string_literal_token1] = ACTIONS(1240), + [sym_char_literal] = ACTIONS(1240), + [anon_sym_true] = ACTIONS(1242), + [anon_sym_false] = ACTIONS(1242), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1242), + [sym_super] = ACTIONS(1242), + [sym_crate] = ACTIONS(1242), + [sym_metavariable] = ACTIONS(1240), + [sym__raw_string_literal_start] = ACTIONS(1240), + [sym_float_literal] = ACTIONS(1240), + }, + [622] = { + [sym_line_comment] = STATE(622), + [sym_block_comment] = STATE(622), + [ts_builtin_sym_end] = ACTIONS(2334), + [sym_identifier] = ACTIONS(2336), + [anon_sym_SEMI] = ACTIONS(2334), [anon_sym_macro_rules_BANG] = ACTIONS(2334), - [anon_sym_RBRACE] = ACTIONS(2336), - [anon_sym_u8] = ACTIONS(2338), - [anon_sym_i8] = ACTIONS(2338), - [anon_sym_u16] = ACTIONS(2338), - [anon_sym_i16] = ACTIONS(2338), - [anon_sym_u32] = ACTIONS(2338), - [anon_sym_i32] = ACTIONS(2338), - [anon_sym_u64] = ACTIONS(2338), - [anon_sym_i64] = ACTIONS(2338), - [anon_sym_u128] = ACTIONS(2338), - [anon_sym_i128] = ACTIONS(2338), - [anon_sym_isize] = ACTIONS(2338), - [anon_sym_usize] = ACTIONS(2338), - [anon_sym_f32] = ACTIONS(2338), - [anon_sym_f64] = ACTIONS(2338), - [anon_sym_bool] = ACTIONS(2338), - [anon_sym_str] = ACTIONS(2338), - [anon_sym_char] = ACTIONS(2338), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(2340), + [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_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(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [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), + }, + [623] = { + [sym_line_comment] = STATE(623), + [sym_block_comment] = STATE(623), + [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_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(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [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), + }, + [624] = { + [sym_line_comment] = STATE(624), + [sym_block_comment] = STATE(624), + [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_async] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(2344), + [anon_sym_async] = ACTIONS(2344), + [anon_sym_break] = ACTIONS(2344), [anon_sym_const] = ACTIONS(2344), - [anon_sym_default] = ACTIONS(2346), + [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_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(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [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), + }, + [625] = { + [sym_line_comment] = STATE(625), + [sym_block_comment] = STATE(625), + [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(2350), + [anon_sym_fn] = ACTIONS(2348), + [anon_sym_for] = 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(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [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), + }, + [626] = { + [sym_line_comment] = STATE(626), + [sym_block_comment] = STATE(626), + [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_if] = ACTIONS(2352), [anon_sym_impl] = ACTIONS(2352), - [anon_sym_let] = ACTIONS(2354), + [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(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [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), + }, + [627] = { + [sym_line_comment] = STATE(627), + [sym_block_comment] = STATE(627), + [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_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(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [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), + }, + [628] = { + [sym_empty_statement] = STATE(1389), + [sym_macro_definition] = STATE(1389), + [sym_attribute_item] = STATE(1389), + [sym_inner_attribute_item] = STATE(1389), + [sym_mod_item] = STATE(1389), + [sym_foreign_mod_item] = STATE(1389), + [sym_struct_item] = STATE(1389), + [sym_union_item] = STATE(1389), + [sym_enum_item] = STATE(1389), + [sym_extern_crate_declaration] = STATE(1389), + [sym_const_item] = STATE(1389), + [sym_static_item] = STATE(1389), + [sym_type_item] = STATE(1389), + [sym_function_item] = STATE(1389), + [sym_function_signature_item] = STATE(1389), + [sym_function_modifiers] = STATE(3601), + [sym_impl_item] = STATE(1389), + [sym_trait_item] = STATE(1389), + [sym_associated_type] = STATE(1389), + [sym_let_declaration] = STATE(1389), + [sym_use_declaration] = STATE(1389), + [sym_extern_modifier] = STATE(2140), + [sym_visibility_modifier] = STATE(1933), + [sym_bracketed_type] = STATE(3312), + [sym_generic_type_with_turbofish] = STATE(3351), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(3243), + [sym_line_comment] = STATE(628), + [sym_block_comment] = STATE(628), + [aux_sym_declaration_list_repeat1] = STATE(667), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(1920), + [anon_sym_SEMI] = ACTIONS(1922), + [anon_sym_macro_rules_BANG] = ACTIONS(1924), + [anon_sym_RBRACE] = ACTIONS(2358), + [anon_sym_u8] = ACTIONS(1928), + [anon_sym_i8] = ACTIONS(1928), + [anon_sym_u16] = ACTIONS(1928), + [anon_sym_i16] = ACTIONS(1928), + [anon_sym_u32] = ACTIONS(1928), + [anon_sym_i32] = ACTIONS(1928), + [anon_sym_u64] = ACTIONS(1928), + [anon_sym_i64] = ACTIONS(1928), + [anon_sym_u128] = ACTIONS(1928), + [anon_sym_i128] = ACTIONS(1928), + [anon_sym_isize] = ACTIONS(1928), + [anon_sym_usize] = ACTIONS(1928), + [anon_sym_f32] = ACTIONS(1928), + [anon_sym_f64] = ACTIONS(1928), + [anon_sym_bool] = ACTIONS(1928), + [anon_sym_str] = ACTIONS(1928), + [anon_sym_char] = ACTIONS(1928), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1930), + [anon_sym_POUND] = ACTIONS(1932), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1934), + [anon_sym_default] = ACTIONS(1936), + [anon_sym_enum] = ACTIONS(1938), + [anon_sym_fn] = ACTIONS(1940), + [anon_sym_impl] = ACTIONS(1942), + [anon_sym_let] = ACTIONS(1944), + [anon_sym_mod] = ACTIONS(1946), [anon_sym_pub] = ACTIONS(67), - [anon_sym_static] = ACTIONS(2358), - [anon_sym_struct] = ACTIONS(2360), + [anon_sym_static] = ACTIONS(1948), + [anon_sym_struct] = ACTIONS(1950), + [anon_sym_trait] = ACTIONS(1952), + [anon_sym_type] = ACTIONS(1954), + [anon_sym_union] = ACTIONS(1956), + [anon_sym_unsafe] = ACTIONS(1958), + [anon_sym_use] = ACTIONS(1960), + [anon_sym_extern] = ACTIONS(1962), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1964), + [sym_super] = ACTIONS(1964), + [sym_crate] = ACTIONS(1966), + [sym_metavariable] = ACTIONS(1968), + }, + [629] = { + [sym_line_comment] = STATE(629), + [sym_block_comment] = STATE(629), + [ts_builtin_sym_end] = ACTIONS(2360), + [sym_identifier] = ACTIONS(2362), + [anon_sym_SEMI] = ACTIONS(2360), + [anon_sym_macro_rules_BANG] = ACTIONS(2360), + [anon_sym_LPAREN] = ACTIONS(2360), + [anon_sym_LBRACK] = ACTIONS(2360), + [anon_sym_LBRACE] = ACTIONS(2360), + [anon_sym_RBRACE] = ACTIONS(2360), + [anon_sym_STAR] = ACTIONS(2360), + [anon_sym_u8] = ACTIONS(2362), + [anon_sym_i8] = ACTIONS(2362), + [anon_sym_u16] = ACTIONS(2362), + [anon_sym_i16] = ACTIONS(2362), + [anon_sym_u32] = ACTIONS(2362), + [anon_sym_i32] = ACTIONS(2362), + [anon_sym_u64] = ACTIONS(2362), + [anon_sym_i64] = ACTIONS(2362), + [anon_sym_u128] = ACTIONS(2362), + [anon_sym_i128] = ACTIONS(2362), + [anon_sym_isize] = ACTIONS(2362), + [anon_sym_usize] = ACTIONS(2362), + [anon_sym_f32] = ACTIONS(2362), + [anon_sym_f64] = ACTIONS(2362), + [anon_sym_bool] = ACTIONS(2362), + [anon_sym_str] = ACTIONS(2362), + [anon_sym_char] = ACTIONS(2362), + [anon_sym_DASH] = ACTIONS(2360), + [anon_sym_BANG] = ACTIONS(2360), + [anon_sym_AMP] = ACTIONS(2360), + [anon_sym_PIPE] = ACTIONS(2360), + [anon_sym_LT] = ACTIONS(2360), + [anon_sym_DOT_DOT] = ACTIONS(2360), + [anon_sym_COLON_COLON] = ACTIONS(2360), + [anon_sym_POUND] = ACTIONS(2360), + [anon_sym_SQUOTE] = ACTIONS(2362), + [anon_sym_async] = ACTIONS(2362), + [anon_sym_break] = ACTIONS(2362), + [anon_sym_const] = ACTIONS(2362), + [anon_sym_continue] = ACTIONS(2362), + [anon_sym_default] = ACTIONS(2362), + [anon_sym_enum] = ACTIONS(2362), + [anon_sym_fn] = ACTIONS(2362), + [anon_sym_for] = ACTIONS(2362), + [anon_sym_if] = ACTIONS(2362), + [anon_sym_impl] = ACTIONS(2362), + [anon_sym_let] = ACTIONS(2362), + [anon_sym_loop] = ACTIONS(2362), + [anon_sym_match] = ACTIONS(2362), + [anon_sym_mod] = ACTIONS(2362), + [anon_sym_pub] = ACTIONS(2362), + [anon_sym_return] = ACTIONS(2362), + [anon_sym_static] = ACTIONS(2362), + [anon_sym_struct] = ACTIONS(2362), [anon_sym_trait] = ACTIONS(2362), - [anon_sym_type] = ACTIONS(2364), + [anon_sym_type] = ACTIONS(2362), + [anon_sym_union] = ACTIONS(2362), + [anon_sym_unsafe] = ACTIONS(2362), + [anon_sym_use] = ACTIONS(2362), + [anon_sym_while] = ACTIONS(2362), + [anon_sym_extern] = ACTIONS(2362), + [anon_sym_yield] = ACTIONS(2362), + [anon_sym_move] = ACTIONS(2362), + [anon_sym_try] = ACTIONS(2362), + [sym_integer_literal] = ACTIONS(2360), + [aux_sym_string_literal_token1] = ACTIONS(2360), + [sym_char_literal] = ACTIONS(2360), + [anon_sym_true] = ACTIONS(2362), + [anon_sym_false] = ACTIONS(2362), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2362), + [sym_super] = ACTIONS(2362), + [sym_crate] = ACTIONS(2362), + [sym_metavariable] = ACTIONS(2360), + [sym__raw_string_literal_start] = ACTIONS(2360), + [sym_float_literal] = ACTIONS(2360), + }, + [630] = { + [sym_line_comment] = STATE(630), + [sym_block_comment] = STATE(630), + [ts_builtin_sym_end] = ACTIONS(2364), + [sym_identifier] = ACTIONS(2366), + [anon_sym_SEMI] = ACTIONS(2364), + [anon_sym_macro_rules_BANG] = ACTIONS(2364), + [anon_sym_LPAREN] = ACTIONS(2364), + [anon_sym_LBRACK] = ACTIONS(2364), + [anon_sym_LBRACE] = ACTIONS(2364), + [anon_sym_RBRACE] = ACTIONS(2364), + [anon_sym_STAR] = ACTIONS(2364), + [anon_sym_u8] = ACTIONS(2366), + [anon_sym_i8] = ACTIONS(2366), + [anon_sym_u16] = ACTIONS(2366), + [anon_sym_i16] = ACTIONS(2366), + [anon_sym_u32] = ACTIONS(2366), + [anon_sym_i32] = ACTIONS(2366), + [anon_sym_u64] = ACTIONS(2366), + [anon_sym_i64] = ACTIONS(2366), + [anon_sym_u128] = ACTIONS(2366), + [anon_sym_i128] = ACTIONS(2366), + [anon_sym_isize] = ACTIONS(2366), + [anon_sym_usize] = ACTIONS(2366), + [anon_sym_f32] = ACTIONS(2366), + [anon_sym_f64] = ACTIONS(2366), + [anon_sym_bool] = ACTIONS(2366), + [anon_sym_str] = ACTIONS(2366), + [anon_sym_char] = ACTIONS(2366), + [anon_sym_DASH] = ACTIONS(2364), + [anon_sym_BANG] = ACTIONS(2364), + [anon_sym_AMP] = ACTIONS(2364), + [anon_sym_PIPE] = ACTIONS(2364), + [anon_sym_LT] = ACTIONS(2364), + [anon_sym_DOT_DOT] = ACTIONS(2364), + [anon_sym_COLON_COLON] = ACTIONS(2364), + [anon_sym_POUND] = ACTIONS(2364), + [anon_sym_SQUOTE] = ACTIONS(2366), + [anon_sym_async] = ACTIONS(2366), + [anon_sym_break] = ACTIONS(2366), + [anon_sym_const] = ACTIONS(2366), + [anon_sym_continue] = ACTIONS(2366), + [anon_sym_default] = ACTIONS(2366), + [anon_sym_enum] = ACTIONS(2366), + [anon_sym_fn] = ACTIONS(2366), + [anon_sym_for] = ACTIONS(2366), + [anon_sym_if] = ACTIONS(2366), + [anon_sym_impl] = ACTIONS(2366), + [anon_sym_let] = ACTIONS(2366), + [anon_sym_loop] = ACTIONS(2366), + [anon_sym_match] = ACTIONS(2366), + [anon_sym_mod] = ACTIONS(2366), + [anon_sym_pub] = ACTIONS(2366), + [anon_sym_return] = ACTIONS(2366), + [anon_sym_static] = ACTIONS(2366), + [anon_sym_struct] = ACTIONS(2366), + [anon_sym_trait] = ACTIONS(2366), + [anon_sym_type] = ACTIONS(2366), [anon_sym_union] = ACTIONS(2366), - [anon_sym_unsafe] = ACTIONS(2368), + [anon_sym_unsafe] = ACTIONS(2366), + [anon_sym_use] = ACTIONS(2366), + [anon_sym_while] = ACTIONS(2366), + [anon_sym_extern] = ACTIONS(2366), + [anon_sym_yield] = ACTIONS(2366), + [anon_sym_move] = ACTIONS(2366), + [anon_sym_try] = ACTIONS(2366), + [sym_integer_literal] = ACTIONS(2364), + [aux_sym_string_literal_token1] = ACTIONS(2364), + [sym_char_literal] = ACTIONS(2364), + [anon_sym_true] = ACTIONS(2366), + [anon_sym_false] = ACTIONS(2366), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2366), + [sym_super] = ACTIONS(2366), + [sym_crate] = ACTIONS(2366), + [sym_metavariable] = ACTIONS(2364), + [sym__raw_string_literal_start] = ACTIONS(2364), + [sym_float_literal] = ACTIONS(2364), + }, + [631] = { + [sym_line_comment] = STATE(631), + [sym_block_comment] = STATE(631), + [ts_builtin_sym_end] = ACTIONS(2368), + [sym_identifier] = ACTIONS(2370), + [anon_sym_SEMI] = ACTIONS(2368), + [anon_sym_macro_rules_BANG] = ACTIONS(2368), + [anon_sym_LPAREN] = ACTIONS(2368), + [anon_sym_LBRACK] = ACTIONS(2368), + [anon_sym_LBRACE] = ACTIONS(2368), + [anon_sym_RBRACE] = ACTIONS(2368), + [anon_sym_STAR] = ACTIONS(2368), + [anon_sym_u8] = ACTIONS(2370), + [anon_sym_i8] = ACTIONS(2370), + [anon_sym_u16] = ACTIONS(2370), + [anon_sym_i16] = ACTIONS(2370), + [anon_sym_u32] = ACTIONS(2370), + [anon_sym_i32] = ACTIONS(2370), + [anon_sym_u64] = ACTIONS(2370), + [anon_sym_i64] = ACTIONS(2370), + [anon_sym_u128] = ACTIONS(2370), + [anon_sym_i128] = ACTIONS(2370), + [anon_sym_isize] = ACTIONS(2370), + [anon_sym_usize] = ACTIONS(2370), + [anon_sym_f32] = ACTIONS(2370), + [anon_sym_f64] = ACTIONS(2370), + [anon_sym_bool] = ACTIONS(2370), + [anon_sym_str] = ACTIONS(2370), + [anon_sym_char] = ACTIONS(2370), + [anon_sym_DASH] = ACTIONS(2368), + [anon_sym_BANG] = ACTIONS(2368), + [anon_sym_AMP] = ACTIONS(2368), + [anon_sym_PIPE] = ACTIONS(2368), + [anon_sym_LT] = ACTIONS(2368), + [anon_sym_DOT_DOT] = ACTIONS(2368), + [anon_sym_COLON_COLON] = ACTIONS(2368), + [anon_sym_POUND] = ACTIONS(2368), + [anon_sym_SQUOTE] = ACTIONS(2370), + [anon_sym_async] = ACTIONS(2370), + [anon_sym_break] = ACTIONS(2370), + [anon_sym_const] = ACTIONS(2370), + [anon_sym_continue] = ACTIONS(2370), + [anon_sym_default] = ACTIONS(2370), + [anon_sym_enum] = ACTIONS(2370), + [anon_sym_fn] = ACTIONS(2370), + [anon_sym_for] = ACTIONS(2370), + [anon_sym_if] = ACTIONS(2370), + [anon_sym_impl] = ACTIONS(2370), + [anon_sym_let] = ACTIONS(2370), + [anon_sym_loop] = ACTIONS(2370), + [anon_sym_match] = ACTIONS(2370), + [anon_sym_mod] = ACTIONS(2370), + [anon_sym_pub] = ACTIONS(2370), + [anon_sym_return] = ACTIONS(2370), + [anon_sym_static] = ACTIONS(2370), + [anon_sym_struct] = ACTIONS(2370), + [anon_sym_trait] = ACTIONS(2370), + [anon_sym_type] = ACTIONS(2370), + [anon_sym_union] = ACTIONS(2370), + [anon_sym_unsafe] = ACTIONS(2370), [anon_sym_use] = ACTIONS(2370), - [anon_sym_extern] = ACTIONS(2372), + [anon_sym_while] = ACTIONS(2370), + [anon_sym_extern] = ACTIONS(2370), + [anon_sym_yield] = ACTIONS(2370), + [anon_sym_move] = ACTIONS(2370), + [anon_sym_try] = ACTIONS(2370), + [sym_integer_literal] = ACTIONS(2368), + [aux_sym_string_literal_token1] = ACTIONS(2368), + [sym_char_literal] = ACTIONS(2368), + [anon_sym_true] = ACTIONS(2370), + [anon_sym_false] = ACTIONS(2370), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2370), + [sym_super] = ACTIONS(2370), + [sym_crate] = ACTIONS(2370), + [sym_metavariable] = ACTIONS(2368), + [sym__raw_string_literal_start] = ACTIONS(2368), + [sym_float_literal] = ACTIONS(2368), + }, + [632] = { + [sym_line_comment] = STATE(632), + [sym_block_comment] = STATE(632), + [ts_builtin_sym_end] = ACTIONS(2372), + [sym_identifier] = ACTIONS(2374), + [anon_sym_SEMI] = ACTIONS(2372), + [anon_sym_macro_rules_BANG] = ACTIONS(2372), + [anon_sym_LPAREN] = ACTIONS(2372), + [anon_sym_LBRACK] = ACTIONS(2372), + [anon_sym_LBRACE] = ACTIONS(2372), + [anon_sym_RBRACE] = ACTIONS(2372), + [anon_sym_STAR] = ACTIONS(2372), + [anon_sym_u8] = ACTIONS(2374), + [anon_sym_i8] = ACTIONS(2374), + [anon_sym_u16] = ACTIONS(2374), + [anon_sym_i16] = ACTIONS(2374), + [anon_sym_u32] = ACTIONS(2374), + [anon_sym_i32] = ACTIONS(2374), + [anon_sym_u64] = ACTIONS(2374), + [anon_sym_i64] = ACTIONS(2374), + [anon_sym_u128] = ACTIONS(2374), + [anon_sym_i128] = ACTIONS(2374), + [anon_sym_isize] = ACTIONS(2374), + [anon_sym_usize] = ACTIONS(2374), + [anon_sym_f32] = ACTIONS(2374), + [anon_sym_f64] = ACTIONS(2374), + [anon_sym_bool] = ACTIONS(2374), + [anon_sym_str] = ACTIONS(2374), + [anon_sym_char] = ACTIONS(2374), + [anon_sym_DASH] = ACTIONS(2372), + [anon_sym_BANG] = ACTIONS(2372), + [anon_sym_AMP] = ACTIONS(2372), + [anon_sym_PIPE] = ACTIONS(2372), + [anon_sym_LT] = ACTIONS(2372), + [anon_sym_DOT_DOT] = ACTIONS(2372), + [anon_sym_COLON_COLON] = ACTIONS(2372), + [anon_sym_POUND] = ACTIONS(2372), + [anon_sym_SQUOTE] = ACTIONS(2374), + [anon_sym_async] = ACTIONS(2374), + [anon_sym_break] = ACTIONS(2374), + [anon_sym_const] = ACTIONS(2374), + [anon_sym_continue] = ACTIONS(2374), + [anon_sym_default] = ACTIONS(2374), + [anon_sym_enum] = ACTIONS(2374), + [anon_sym_fn] = ACTIONS(2374), + [anon_sym_for] = ACTIONS(2374), + [anon_sym_if] = ACTIONS(2374), + [anon_sym_impl] = ACTIONS(2374), + [anon_sym_let] = ACTIONS(2374), + [anon_sym_loop] = ACTIONS(2374), + [anon_sym_match] = ACTIONS(2374), + [anon_sym_mod] = ACTIONS(2374), + [anon_sym_pub] = ACTIONS(2374), + [anon_sym_return] = ACTIONS(2374), + [anon_sym_static] = ACTIONS(2374), + [anon_sym_struct] = ACTIONS(2374), + [anon_sym_trait] = ACTIONS(2374), + [anon_sym_type] = ACTIONS(2374), + [anon_sym_union] = ACTIONS(2374), + [anon_sym_unsafe] = ACTIONS(2374), + [anon_sym_use] = ACTIONS(2374), + [anon_sym_while] = ACTIONS(2374), + [anon_sym_extern] = ACTIONS(2374), + [anon_sym_yield] = ACTIONS(2374), + [anon_sym_move] = ACTIONS(2374), + [anon_sym_try] = ACTIONS(2374), + [sym_integer_literal] = ACTIONS(2372), + [aux_sym_string_literal_token1] = ACTIONS(2372), + [sym_char_literal] = ACTIONS(2372), + [anon_sym_true] = ACTIONS(2374), + [anon_sym_false] = ACTIONS(2374), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(2374), [sym_super] = ACTIONS(2374), - [sym_crate] = ACTIONS(2376), - [sym_metavariable] = ACTIONS(2378), + [sym_crate] = ACTIONS(2374), + [sym_metavariable] = ACTIONS(2372), + [sym__raw_string_literal_start] = ACTIONS(2372), + [sym_float_literal] = ACTIONS(2372), }, - [647] = { - [sym_line_comment] = STATE(647), - [sym_block_comment] = STATE(647), + [633] = { + [sym_line_comment] = STATE(633), + [sym_block_comment] = STATE(633), + [ts_builtin_sym_end] = ACTIONS(2376), + [sym_identifier] = ACTIONS(2378), + [anon_sym_SEMI] = ACTIONS(2376), + [anon_sym_macro_rules_BANG] = ACTIONS(2376), + [anon_sym_LPAREN] = ACTIONS(2376), + [anon_sym_LBRACK] = ACTIONS(2376), + [anon_sym_LBRACE] = ACTIONS(2376), + [anon_sym_RBRACE] = ACTIONS(2376), + [anon_sym_STAR] = ACTIONS(2376), + [anon_sym_u8] = ACTIONS(2378), + [anon_sym_i8] = ACTIONS(2378), + [anon_sym_u16] = ACTIONS(2378), + [anon_sym_i16] = ACTIONS(2378), + [anon_sym_u32] = ACTIONS(2378), + [anon_sym_i32] = ACTIONS(2378), + [anon_sym_u64] = ACTIONS(2378), + [anon_sym_i64] = ACTIONS(2378), + [anon_sym_u128] = ACTIONS(2378), + [anon_sym_i128] = ACTIONS(2378), + [anon_sym_isize] = ACTIONS(2378), + [anon_sym_usize] = ACTIONS(2378), + [anon_sym_f32] = ACTIONS(2378), + [anon_sym_f64] = ACTIONS(2378), + [anon_sym_bool] = ACTIONS(2378), + [anon_sym_str] = ACTIONS(2378), + [anon_sym_char] = ACTIONS(2378), + [anon_sym_DASH] = ACTIONS(2376), + [anon_sym_BANG] = ACTIONS(2376), + [anon_sym_AMP] = ACTIONS(2376), + [anon_sym_PIPE] = ACTIONS(2376), + [anon_sym_LT] = ACTIONS(2376), + [anon_sym_DOT_DOT] = ACTIONS(2376), + [anon_sym_COLON_COLON] = ACTIONS(2376), + [anon_sym_POUND] = ACTIONS(2376), + [anon_sym_SQUOTE] = ACTIONS(2378), + [anon_sym_async] = ACTIONS(2378), + [anon_sym_break] = ACTIONS(2378), + [anon_sym_const] = ACTIONS(2378), + [anon_sym_continue] = ACTIONS(2378), + [anon_sym_default] = ACTIONS(2378), + [anon_sym_enum] = ACTIONS(2378), + [anon_sym_fn] = ACTIONS(2378), + [anon_sym_for] = ACTIONS(2378), + [anon_sym_if] = ACTIONS(2378), + [anon_sym_impl] = ACTIONS(2378), + [anon_sym_let] = ACTIONS(2378), + [anon_sym_loop] = ACTIONS(2378), + [anon_sym_match] = ACTIONS(2378), + [anon_sym_mod] = ACTIONS(2378), + [anon_sym_pub] = ACTIONS(2378), + [anon_sym_return] = ACTIONS(2378), + [anon_sym_static] = ACTIONS(2378), + [anon_sym_struct] = ACTIONS(2378), + [anon_sym_trait] = ACTIONS(2378), + [anon_sym_type] = ACTIONS(2378), + [anon_sym_union] = ACTIONS(2378), + [anon_sym_unsafe] = ACTIONS(2378), + [anon_sym_use] = ACTIONS(2378), + [anon_sym_while] = ACTIONS(2378), + [anon_sym_extern] = ACTIONS(2378), + [anon_sym_yield] = ACTIONS(2378), + [anon_sym_move] = ACTIONS(2378), + [anon_sym_try] = ACTIONS(2378), + [sym_integer_literal] = ACTIONS(2376), + [aux_sym_string_literal_token1] = ACTIONS(2376), + [sym_char_literal] = ACTIONS(2376), + [anon_sym_true] = ACTIONS(2378), + [anon_sym_false] = ACTIONS(2378), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2378), + [sym_super] = ACTIONS(2378), + [sym_crate] = ACTIONS(2378), + [sym_metavariable] = ACTIONS(2376), + [sym__raw_string_literal_start] = ACTIONS(2376), + [sym_float_literal] = ACTIONS(2376), + }, + [634] = { + [sym_line_comment] = STATE(634), + [sym_block_comment] = STATE(634), [ts_builtin_sym_end] = ACTIONS(2380), [sym_identifier] = ACTIONS(2382), [anon_sym_SEMI] = ACTIONS(2380), @@ -82045,9 +81013,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2380), [sym_float_literal] = ACTIONS(2380), }, - [648] = { - [sym_line_comment] = STATE(648), - [sym_block_comment] = STATE(648), + [635] = { + [sym_line_comment] = STATE(635), + [sym_block_comment] = STATE(635), [ts_builtin_sym_end] = ACTIONS(2384), [sym_identifier] = ACTIONS(2386), [anon_sym_SEMI] = ACTIONS(2384), @@ -82125,9 +81093,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2384), [sym_float_literal] = ACTIONS(2384), }, - [649] = { - [sym_line_comment] = STATE(649), - [sym_block_comment] = STATE(649), + [636] = { + [sym_line_comment] = STATE(636), + [sym_block_comment] = STATE(636), + [ts_builtin_sym_end] = ACTIONS(1244), + [sym_identifier] = ACTIONS(1246), + [anon_sym_SEMI] = ACTIONS(1244), + [anon_sym_macro_rules_BANG] = ACTIONS(1244), + [anon_sym_LPAREN] = ACTIONS(1244), + [anon_sym_LBRACK] = ACTIONS(1244), + [anon_sym_LBRACE] = ACTIONS(1244), + [anon_sym_RBRACE] = ACTIONS(1244), + [anon_sym_STAR] = ACTIONS(1244), + [anon_sym_u8] = ACTIONS(1246), + [anon_sym_i8] = ACTIONS(1246), + [anon_sym_u16] = ACTIONS(1246), + [anon_sym_i16] = ACTIONS(1246), + [anon_sym_u32] = ACTIONS(1246), + [anon_sym_i32] = ACTIONS(1246), + [anon_sym_u64] = ACTIONS(1246), + [anon_sym_i64] = ACTIONS(1246), + [anon_sym_u128] = ACTIONS(1246), + [anon_sym_i128] = ACTIONS(1246), + [anon_sym_isize] = ACTIONS(1246), + [anon_sym_usize] = ACTIONS(1246), + [anon_sym_f32] = ACTIONS(1246), + [anon_sym_f64] = ACTIONS(1246), + [anon_sym_bool] = ACTIONS(1246), + [anon_sym_str] = ACTIONS(1246), + [anon_sym_char] = ACTIONS(1246), + [anon_sym_DASH] = ACTIONS(1244), + [anon_sym_BANG] = ACTIONS(1244), + [anon_sym_AMP] = ACTIONS(1244), + [anon_sym_PIPE] = ACTIONS(1244), + [anon_sym_LT] = ACTIONS(1244), + [anon_sym_DOT_DOT] = ACTIONS(1244), + [anon_sym_COLON_COLON] = ACTIONS(1244), + [anon_sym_POUND] = ACTIONS(1244), + [anon_sym_SQUOTE] = ACTIONS(1246), + [anon_sym_async] = ACTIONS(1246), + [anon_sym_break] = ACTIONS(1246), + [anon_sym_const] = ACTIONS(1246), + [anon_sym_continue] = ACTIONS(1246), + [anon_sym_default] = ACTIONS(1246), + [anon_sym_enum] = ACTIONS(1246), + [anon_sym_fn] = ACTIONS(1246), + [anon_sym_for] = ACTIONS(1246), + [anon_sym_if] = ACTIONS(1246), + [anon_sym_impl] = ACTIONS(1246), + [anon_sym_let] = ACTIONS(1246), + [anon_sym_loop] = ACTIONS(1246), + [anon_sym_match] = ACTIONS(1246), + [anon_sym_mod] = ACTIONS(1246), + [anon_sym_pub] = ACTIONS(1246), + [anon_sym_return] = ACTIONS(1246), + [anon_sym_static] = ACTIONS(1246), + [anon_sym_struct] = ACTIONS(1246), + [anon_sym_trait] = ACTIONS(1246), + [anon_sym_type] = ACTIONS(1246), + [anon_sym_union] = ACTIONS(1246), + [anon_sym_unsafe] = ACTIONS(1246), + [anon_sym_use] = ACTIONS(1246), + [anon_sym_while] = ACTIONS(1246), + [anon_sym_extern] = ACTIONS(1246), + [anon_sym_yield] = ACTIONS(1246), + [anon_sym_move] = ACTIONS(1246), + [anon_sym_try] = ACTIONS(1246), + [sym_integer_literal] = ACTIONS(1244), + [aux_sym_string_literal_token1] = ACTIONS(1244), + [sym_char_literal] = ACTIONS(1244), + [anon_sym_true] = ACTIONS(1246), + [anon_sym_false] = ACTIONS(1246), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1246), + [sym_super] = ACTIONS(1246), + [sym_crate] = ACTIONS(1246), + [sym_metavariable] = ACTIONS(1244), + [sym__raw_string_literal_start] = ACTIONS(1244), + [sym_float_literal] = ACTIONS(1244), + }, + [637] = { + [sym_line_comment] = STATE(637), + [sym_block_comment] = STATE(637), [ts_builtin_sym_end] = ACTIONS(2388), [sym_identifier] = ACTIONS(2390), [anon_sym_SEMI] = ACTIONS(2388), @@ -82205,9 +81253,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2388), [sym_float_literal] = ACTIONS(2388), }, - [650] = { - [sym_line_comment] = STATE(650), - [sym_block_comment] = STATE(650), + [638] = { + [sym_line_comment] = STATE(638), + [sym_block_comment] = STATE(638), [ts_builtin_sym_end] = ACTIONS(2392), [sym_identifier] = ACTIONS(2394), [anon_sym_SEMI] = ACTIONS(2392), @@ -82285,9 +81333,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2392), [sym_float_literal] = ACTIONS(2392), }, - [651] = { - [sym_line_comment] = STATE(651), - [sym_block_comment] = STATE(651), + [639] = { + [sym_line_comment] = STATE(639), + [sym_block_comment] = STATE(639), [ts_builtin_sym_end] = ACTIONS(2396), [sym_identifier] = ACTIONS(2398), [anon_sym_SEMI] = ACTIONS(2396), @@ -82365,1529 +81413,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2396), [sym_float_literal] = ACTIONS(2396), }, - [652] = { - [sym_line_comment] = STATE(652), - [sym_block_comment] = STATE(652), - [ts_builtin_sym_end] = ACTIONS(1432), - [sym_identifier] = ACTIONS(1434), - [anon_sym_SEMI] = ACTIONS(1432), - [anon_sym_macro_rules_BANG] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_LBRACK] = ACTIONS(1432), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_RBRACE] = ACTIONS(1432), - [anon_sym_STAR] = ACTIONS(1432), - [anon_sym_u8] = ACTIONS(1434), - [anon_sym_i8] = ACTIONS(1434), - [anon_sym_u16] = ACTIONS(1434), - [anon_sym_i16] = ACTIONS(1434), - [anon_sym_u32] = ACTIONS(1434), - [anon_sym_i32] = ACTIONS(1434), - [anon_sym_u64] = ACTIONS(1434), - [anon_sym_i64] = ACTIONS(1434), - [anon_sym_u128] = ACTIONS(1434), - [anon_sym_i128] = ACTIONS(1434), - [anon_sym_isize] = ACTIONS(1434), - [anon_sym_usize] = ACTIONS(1434), - [anon_sym_f32] = ACTIONS(1434), - [anon_sym_f64] = ACTIONS(1434), - [anon_sym_bool] = ACTIONS(1434), - [anon_sym_str] = ACTIONS(1434), - [anon_sym_char] = ACTIONS(1434), - [anon_sym_DASH] = ACTIONS(1432), - [anon_sym_BANG] = ACTIONS(1432), - [anon_sym_AMP] = ACTIONS(1432), - [anon_sym_PIPE] = ACTIONS(1432), - [anon_sym_LT] = ACTIONS(1432), - [anon_sym_DOT_DOT] = ACTIONS(1432), - [anon_sym_COLON_COLON] = ACTIONS(1432), - [anon_sym_POUND] = ACTIONS(1432), - [anon_sym_SQUOTE] = ACTIONS(1434), - [anon_sym_async] = ACTIONS(1434), - [anon_sym_break] = ACTIONS(1434), - [anon_sym_const] = ACTIONS(1434), - [anon_sym_continue] = ACTIONS(1434), - [anon_sym_default] = ACTIONS(1434), - [anon_sym_enum] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_for] = ACTIONS(1434), - [anon_sym_if] = ACTIONS(1434), - [anon_sym_impl] = ACTIONS(1434), - [anon_sym_let] = ACTIONS(1434), - [anon_sym_loop] = ACTIONS(1434), - [anon_sym_match] = ACTIONS(1434), - [anon_sym_mod] = ACTIONS(1434), - [anon_sym_pub] = ACTIONS(1434), - [anon_sym_return] = ACTIONS(1434), - [anon_sym_static] = ACTIONS(1434), - [anon_sym_struct] = ACTIONS(1434), - [anon_sym_trait] = ACTIONS(1434), - [anon_sym_type] = ACTIONS(1434), - [anon_sym_union] = ACTIONS(1434), - [anon_sym_unsafe] = ACTIONS(1434), - [anon_sym_use] = ACTIONS(1434), - [anon_sym_while] = ACTIONS(1434), - [anon_sym_extern] = ACTIONS(1434), - [anon_sym_yield] = ACTIONS(1434), - [anon_sym_move] = ACTIONS(1434), - [anon_sym_try] = ACTIONS(1434), - [sym_integer_literal] = ACTIONS(1432), - [aux_sym_string_literal_token1] = ACTIONS(1432), - [sym_char_literal] = ACTIONS(1432), - [anon_sym_true] = ACTIONS(1434), - [anon_sym_false] = ACTIONS(1434), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1434), - [sym_super] = ACTIONS(1434), - [sym_crate] = ACTIONS(1434), - [sym_metavariable] = ACTIONS(1432), - [sym__raw_string_literal_start] = ACTIONS(1432), - [sym_float_literal] = ACTIONS(1432), - }, - [653] = { - [sym_line_comment] = STATE(653), - [sym_block_comment] = STATE(653), - [ts_builtin_sym_end] = ACTIONS(2400), - [sym_identifier] = ACTIONS(2402), - [anon_sym_SEMI] = ACTIONS(2400), - [anon_sym_macro_rules_BANG] = ACTIONS(2400), - [anon_sym_LPAREN] = ACTIONS(2400), - [anon_sym_LBRACK] = ACTIONS(2400), - [anon_sym_LBRACE] = ACTIONS(2400), - [anon_sym_RBRACE] = ACTIONS(2400), - [anon_sym_STAR] = ACTIONS(2400), - [anon_sym_u8] = ACTIONS(2402), - [anon_sym_i8] = ACTIONS(2402), - [anon_sym_u16] = ACTIONS(2402), - [anon_sym_i16] = ACTIONS(2402), - [anon_sym_u32] = ACTIONS(2402), - [anon_sym_i32] = ACTIONS(2402), - [anon_sym_u64] = ACTIONS(2402), - [anon_sym_i64] = ACTIONS(2402), - [anon_sym_u128] = ACTIONS(2402), - [anon_sym_i128] = ACTIONS(2402), - [anon_sym_isize] = ACTIONS(2402), - [anon_sym_usize] = ACTIONS(2402), - [anon_sym_f32] = ACTIONS(2402), - [anon_sym_f64] = ACTIONS(2402), - [anon_sym_bool] = ACTIONS(2402), - [anon_sym_str] = ACTIONS(2402), - [anon_sym_char] = ACTIONS(2402), - [anon_sym_DASH] = ACTIONS(2400), - [anon_sym_BANG] = ACTIONS(2400), - [anon_sym_AMP] = ACTIONS(2400), - [anon_sym_PIPE] = ACTIONS(2400), - [anon_sym_LT] = ACTIONS(2400), - [anon_sym_DOT_DOT] = ACTIONS(2400), - [anon_sym_COLON_COLON] = ACTIONS(2400), - [anon_sym_POUND] = ACTIONS(2400), - [anon_sym_SQUOTE] = ACTIONS(2402), - [anon_sym_async] = ACTIONS(2402), - [anon_sym_break] = ACTIONS(2402), - [anon_sym_const] = ACTIONS(2402), - [anon_sym_continue] = ACTIONS(2402), - [anon_sym_default] = ACTIONS(2402), - [anon_sym_enum] = ACTIONS(2402), - [anon_sym_fn] = ACTIONS(2402), - [anon_sym_for] = ACTIONS(2402), - [anon_sym_if] = ACTIONS(2402), - [anon_sym_impl] = ACTIONS(2402), - [anon_sym_let] = ACTIONS(2402), - [anon_sym_loop] = ACTIONS(2402), - [anon_sym_match] = ACTIONS(2402), - [anon_sym_mod] = ACTIONS(2402), - [anon_sym_pub] = ACTIONS(2402), - [anon_sym_return] = ACTIONS(2402), - [anon_sym_static] = ACTIONS(2402), - [anon_sym_struct] = ACTIONS(2402), - [anon_sym_trait] = ACTIONS(2402), - [anon_sym_type] = ACTIONS(2402), - [anon_sym_union] = ACTIONS(2402), - [anon_sym_unsafe] = ACTIONS(2402), - [anon_sym_use] = ACTIONS(2402), - [anon_sym_while] = ACTIONS(2402), - [anon_sym_extern] = ACTIONS(2402), - [anon_sym_yield] = ACTIONS(2402), - [anon_sym_move] = ACTIONS(2402), - [anon_sym_try] = ACTIONS(2402), - [sym_integer_literal] = ACTIONS(2400), - [aux_sym_string_literal_token1] = ACTIONS(2400), - [sym_char_literal] = ACTIONS(2400), - [anon_sym_true] = ACTIONS(2402), - [anon_sym_false] = ACTIONS(2402), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2402), - [sym_super] = ACTIONS(2402), - [sym_crate] = ACTIONS(2402), - [sym_metavariable] = ACTIONS(2400), - [sym__raw_string_literal_start] = ACTIONS(2400), - [sym_float_literal] = ACTIONS(2400), - }, - [654] = { - [sym_empty_statement] = STATE(1456), - [sym_macro_definition] = STATE(1456), - [sym_attribute_item] = STATE(1456), - [sym_inner_attribute_item] = STATE(1456), - [sym_mod_item] = STATE(1456), - [sym_foreign_mod_item] = STATE(1456), - [sym_struct_item] = STATE(1456), - [sym_union_item] = STATE(1456), - [sym_enum_item] = STATE(1456), - [sym_extern_crate_declaration] = STATE(1456), - [sym_const_item] = STATE(1456), - [sym_static_item] = STATE(1456), - [sym_type_item] = STATE(1456), - [sym_function_item] = STATE(1456), - [sym_function_signature_item] = STATE(1456), - [sym_function_modifiers] = STATE(3593), - [sym_impl_item] = STATE(1456), - [sym_trait_item] = STATE(1456), - [sym_associated_type] = STATE(1456), - [sym_let_declaration] = STATE(1456), - [sym_use_declaration] = STATE(1456), - [sym_extern_modifier] = STATE(2154), - [sym_visibility_modifier] = STATE(1934), - [sym_bracketed_type] = STATE(3324), - [sym_generic_type_with_turbofish] = STATE(3350), - [sym_macro_invocation] = STATE(1456), - [sym_scoped_identifier] = STATE(3156), - [sym_line_comment] = STATE(654), - [sym_block_comment] = STATE(654), - [aux_sym_declaration_list_repeat1] = STATE(646), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2330), - [anon_sym_SEMI] = ACTIONS(2332), - [anon_sym_macro_rules_BANG] = ACTIONS(2334), - [anon_sym_RBRACE] = ACTIONS(2404), - [anon_sym_u8] = ACTIONS(2338), - [anon_sym_i8] = ACTIONS(2338), - [anon_sym_u16] = ACTIONS(2338), - [anon_sym_i16] = ACTIONS(2338), - [anon_sym_u32] = ACTIONS(2338), - [anon_sym_i32] = ACTIONS(2338), - [anon_sym_u64] = ACTIONS(2338), - [anon_sym_i64] = ACTIONS(2338), - [anon_sym_u128] = ACTIONS(2338), - [anon_sym_i128] = ACTIONS(2338), - [anon_sym_isize] = ACTIONS(2338), - [anon_sym_usize] = ACTIONS(2338), - [anon_sym_f32] = ACTIONS(2338), - [anon_sym_f64] = ACTIONS(2338), - [anon_sym_bool] = ACTIONS(2338), - [anon_sym_str] = ACTIONS(2338), - [anon_sym_char] = ACTIONS(2338), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(2340), - [anon_sym_POUND] = ACTIONS(2342), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(2344), - [anon_sym_default] = ACTIONS(2346), - [anon_sym_enum] = ACTIONS(2348), - [anon_sym_fn] = ACTIONS(2350), - [anon_sym_impl] = ACTIONS(2352), - [anon_sym_let] = ACTIONS(2354), - [anon_sym_mod] = ACTIONS(2356), - [anon_sym_pub] = ACTIONS(67), - [anon_sym_static] = ACTIONS(2358), - [anon_sym_struct] = ACTIONS(2360), - [anon_sym_trait] = ACTIONS(2362), - [anon_sym_type] = ACTIONS(2364), - [anon_sym_union] = ACTIONS(2366), - [anon_sym_unsafe] = ACTIONS(2368), - [anon_sym_use] = ACTIONS(2370), - [anon_sym_extern] = ACTIONS(2372), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2374), - [sym_super] = ACTIONS(2374), - [sym_crate] = ACTIONS(2376), - [sym_metavariable] = ACTIONS(2378), - }, - [655] = { - [sym_line_comment] = STATE(655), - [sym_block_comment] = STATE(655), - [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_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(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [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), - }, - [656] = { - [sym_line_comment] = STATE(656), - [sym_block_comment] = STATE(656), - [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_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(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [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), - }, - [657] = { - [sym_line_comment] = STATE(657), - [sym_block_comment] = STATE(657), - [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_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(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [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), - }, - [658] = { - [sym_line_comment] = STATE(658), - [sym_block_comment] = STATE(658), - [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_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(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [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), - }, - [659] = { - [sym_line_comment] = STATE(659), - [sym_block_comment] = STATE(659), - [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_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(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [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), - }, - [660] = { - [sym_line_comment] = STATE(660), - [sym_block_comment] = STATE(660), - [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_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(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [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), - }, - [661] = { - [sym_line_comment] = STATE(661), - [sym_block_comment] = STATE(661), - [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_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(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [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), - }, - [662] = { - [sym_line_comment] = STATE(662), - [sym_block_comment] = STATE(662), - [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_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(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [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), - }, - [663] = { - [sym_line_comment] = STATE(663), - [sym_block_comment] = STATE(663), - [ts_builtin_sym_end] = ACTIONS(1244), - [sym_identifier] = ACTIONS(1246), - [anon_sym_SEMI] = ACTIONS(1244), - [anon_sym_macro_rules_BANG] = ACTIONS(1244), - [anon_sym_LPAREN] = ACTIONS(1244), - [anon_sym_LBRACK] = ACTIONS(1244), - [anon_sym_LBRACE] = ACTIONS(1244), - [anon_sym_RBRACE] = ACTIONS(1244), - [anon_sym_STAR] = ACTIONS(1244), - [anon_sym_u8] = ACTIONS(1246), - [anon_sym_i8] = ACTIONS(1246), - [anon_sym_u16] = ACTIONS(1246), - [anon_sym_i16] = ACTIONS(1246), - [anon_sym_u32] = ACTIONS(1246), - [anon_sym_i32] = ACTIONS(1246), - [anon_sym_u64] = ACTIONS(1246), - [anon_sym_i64] = ACTIONS(1246), - [anon_sym_u128] = ACTIONS(1246), - [anon_sym_i128] = ACTIONS(1246), - [anon_sym_isize] = ACTIONS(1246), - [anon_sym_usize] = ACTIONS(1246), - [anon_sym_f32] = ACTIONS(1246), - [anon_sym_f64] = ACTIONS(1246), - [anon_sym_bool] = ACTIONS(1246), - [anon_sym_str] = ACTIONS(1246), - [anon_sym_char] = ACTIONS(1246), - [anon_sym_DASH] = ACTIONS(1244), - [anon_sym_BANG] = ACTIONS(1244), - [anon_sym_AMP] = ACTIONS(1244), - [anon_sym_PIPE] = ACTIONS(1244), - [anon_sym_LT] = ACTIONS(1244), - [anon_sym_DOT_DOT] = ACTIONS(1244), - [anon_sym_COLON_COLON] = ACTIONS(1244), - [anon_sym_POUND] = ACTIONS(1244), - [anon_sym_SQUOTE] = ACTIONS(1246), - [anon_sym_async] = ACTIONS(1246), - [anon_sym_break] = ACTIONS(1246), - [anon_sym_const] = ACTIONS(1246), - [anon_sym_continue] = ACTIONS(1246), - [anon_sym_default] = ACTIONS(1246), - [anon_sym_enum] = ACTIONS(1246), - [anon_sym_fn] = ACTIONS(1246), - [anon_sym_for] = ACTIONS(1246), - [anon_sym_if] = ACTIONS(1246), - [anon_sym_impl] = ACTIONS(1246), - [anon_sym_let] = ACTIONS(1246), - [anon_sym_loop] = ACTIONS(1246), - [anon_sym_match] = ACTIONS(1246), - [anon_sym_mod] = ACTIONS(1246), - [anon_sym_pub] = ACTIONS(1246), - [anon_sym_return] = ACTIONS(1246), - [anon_sym_static] = ACTIONS(1246), - [anon_sym_struct] = ACTIONS(1246), - [anon_sym_trait] = ACTIONS(1246), - [anon_sym_type] = ACTIONS(1246), - [anon_sym_union] = ACTIONS(1246), - [anon_sym_unsafe] = ACTIONS(1246), - [anon_sym_use] = ACTIONS(1246), - [anon_sym_while] = ACTIONS(1246), - [anon_sym_extern] = ACTIONS(1246), - [anon_sym_yield] = ACTIONS(1246), - [anon_sym_move] = ACTIONS(1246), - [anon_sym_try] = ACTIONS(1246), - [sym_integer_literal] = ACTIONS(1244), - [aux_sym_string_literal_token1] = ACTIONS(1244), - [sym_char_literal] = ACTIONS(1244), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1246), - [sym_super] = ACTIONS(1246), - [sym_crate] = ACTIONS(1246), - [sym_metavariable] = ACTIONS(1244), - [sym__raw_string_literal_start] = ACTIONS(1244), - [sym_float_literal] = ACTIONS(1244), - }, - [664] = { - [sym_line_comment] = STATE(664), - [sym_block_comment] = STATE(664), - [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_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(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [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), - }, - [665] = { - [sym_line_comment] = STATE(665), - [sym_block_comment] = STATE(665), - [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_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(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [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), - }, - [666] = { - [sym_line_comment] = STATE(666), - [sym_block_comment] = STATE(666), - [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_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(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [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), - }, - [667] = { - [sym_line_comment] = STATE(667), - [sym_block_comment] = STATE(667), - [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_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(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [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), - }, - [668] = { - [sym_line_comment] = STATE(668), - [sym_block_comment] = STATE(668), - [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_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(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [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), - }, - [669] = { - [sym_line_comment] = STATE(669), - [sym_block_comment] = STATE(669), - [ts_builtin_sym_end] = ACTIONS(1240), - [sym_identifier] = ACTIONS(1242), - [anon_sym_SEMI] = ACTIONS(1240), - [anon_sym_macro_rules_BANG] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(1240), - [anon_sym_LBRACK] = ACTIONS(1240), - [anon_sym_LBRACE] = ACTIONS(1240), - [anon_sym_RBRACE] = ACTIONS(1240), - [anon_sym_STAR] = ACTIONS(1240), - [anon_sym_u8] = ACTIONS(1242), - [anon_sym_i8] = ACTIONS(1242), - [anon_sym_u16] = ACTIONS(1242), - [anon_sym_i16] = ACTIONS(1242), - [anon_sym_u32] = ACTIONS(1242), - [anon_sym_i32] = ACTIONS(1242), - [anon_sym_u64] = ACTIONS(1242), - [anon_sym_i64] = ACTIONS(1242), - [anon_sym_u128] = ACTIONS(1242), - [anon_sym_i128] = ACTIONS(1242), - [anon_sym_isize] = ACTIONS(1242), - [anon_sym_usize] = ACTIONS(1242), - [anon_sym_f32] = ACTIONS(1242), - [anon_sym_f64] = ACTIONS(1242), - [anon_sym_bool] = ACTIONS(1242), - [anon_sym_str] = ACTIONS(1242), - [anon_sym_char] = ACTIONS(1242), - [anon_sym_DASH] = ACTIONS(1240), - [anon_sym_BANG] = ACTIONS(1240), - [anon_sym_AMP] = ACTIONS(1240), - [anon_sym_PIPE] = ACTIONS(1240), - [anon_sym_LT] = ACTIONS(1240), - [anon_sym_DOT_DOT] = ACTIONS(1240), - [anon_sym_COLON_COLON] = ACTIONS(1240), - [anon_sym_POUND] = ACTIONS(1240), - [anon_sym_SQUOTE] = ACTIONS(1242), - [anon_sym_async] = ACTIONS(1242), - [anon_sym_break] = ACTIONS(1242), - [anon_sym_const] = ACTIONS(1242), - [anon_sym_continue] = ACTIONS(1242), - [anon_sym_default] = ACTIONS(1242), - [anon_sym_enum] = ACTIONS(1242), - [anon_sym_fn] = ACTIONS(1242), - [anon_sym_for] = ACTIONS(1242), - [anon_sym_if] = ACTIONS(1242), - [anon_sym_impl] = ACTIONS(1242), - [anon_sym_let] = ACTIONS(1242), - [anon_sym_loop] = ACTIONS(1242), - [anon_sym_match] = ACTIONS(1242), - [anon_sym_mod] = ACTIONS(1242), - [anon_sym_pub] = ACTIONS(1242), - [anon_sym_return] = ACTIONS(1242), - [anon_sym_static] = ACTIONS(1242), - [anon_sym_struct] = ACTIONS(1242), - [anon_sym_trait] = ACTIONS(1242), - [anon_sym_type] = ACTIONS(1242), - [anon_sym_union] = ACTIONS(1242), - [anon_sym_unsafe] = ACTIONS(1242), - [anon_sym_use] = ACTIONS(1242), - [anon_sym_while] = ACTIONS(1242), - [anon_sym_extern] = ACTIONS(1242), - [anon_sym_yield] = ACTIONS(1242), - [anon_sym_move] = ACTIONS(1242), - [anon_sym_try] = ACTIONS(1242), - [sym_integer_literal] = ACTIONS(1240), - [aux_sym_string_literal_token1] = ACTIONS(1240), - [sym_char_literal] = ACTIONS(1240), - [anon_sym_true] = ACTIONS(1242), - [anon_sym_false] = ACTIONS(1242), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1242), - [sym_super] = ACTIONS(1242), - [sym_crate] = ACTIONS(1242), - [sym_metavariable] = ACTIONS(1240), - [sym__raw_string_literal_start] = ACTIONS(1240), - [sym_float_literal] = ACTIONS(1240), - }, - [670] = { - [sym_line_comment] = STATE(670), - [sym_block_comment] = STATE(670), - [ts_builtin_sym_end] = ACTIONS(1206), - [sym_identifier] = ACTIONS(1208), - [anon_sym_SEMI] = ACTIONS(1206), - [anon_sym_macro_rules_BANG] = ACTIONS(1206), - [anon_sym_LPAREN] = ACTIONS(1206), - [anon_sym_LBRACK] = ACTIONS(1206), - [anon_sym_LBRACE] = ACTIONS(1206), - [anon_sym_RBRACE] = ACTIONS(1206), - [anon_sym_STAR] = ACTIONS(1206), - [anon_sym_u8] = ACTIONS(1208), - [anon_sym_i8] = ACTIONS(1208), - [anon_sym_u16] = ACTIONS(1208), - [anon_sym_i16] = ACTIONS(1208), - [anon_sym_u32] = ACTIONS(1208), - [anon_sym_i32] = ACTIONS(1208), - [anon_sym_u64] = ACTIONS(1208), - [anon_sym_i64] = ACTIONS(1208), - [anon_sym_u128] = ACTIONS(1208), - [anon_sym_i128] = ACTIONS(1208), - [anon_sym_isize] = ACTIONS(1208), - [anon_sym_usize] = ACTIONS(1208), - [anon_sym_f32] = ACTIONS(1208), - [anon_sym_f64] = ACTIONS(1208), - [anon_sym_bool] = ACTIONS(1208), - [anon_sym_str] = ACTIONS(1208), - [anon_sym_char] = ACTIONS(1208), - [anon_sym_DASH] = ACTIONS(1206), - [anon_sym_BANG] = ACTIONS(1206), - [anon_sym_AMP] = ACTIONS(1206), - [anon_sym_PIPE] = ACTIONS(1206), - [anon_sym_LT] = ACTIONS(1206), - [anon_sym_DOT_DOT] = ACTIONS(1206), - [anon_sym_COLON_COLON] = ACTIONS(1206), - [anon_sym_POUND] = ACTIONS(1206), - [anon_sym_SQUOTE] = ACTIONS(1208), - [anon_sym_async] = ACTIONS(1208), - [anon_sym_break] = ACTIONS(1208), - [anon_sym_const] = ACTIONS(1208), - [anon_sym_continue] = ACTIONS(1208), - [anon_sym_default] = ACTIONS(1208), - [anon_sym_enum] = ACTIONS(1208), - [anon_sym_fn] = ACTIONS(1208), - [anon_sym_for] = ACTIONS(1208), - [anon_sym_if] = ACTIONS(1208), - [anon_sym_impl] = ACTIONS(1208), - [anon_sym_let] = ACTIONS(1208), - [anon_sym_loop] = ACTIONS(1208), - [anon_sym_match] = ACTIONS(1208), - [anon_sym_mod] = ACTIONS(1208), - [anon_sym_pub] = ACTIONS(1208), - [anon_sym_return] = ACTIONS(1208), - [anon_sym_static] = ACTIONS(1208), - [anon_sym_struct] = ACTIONS(1208), - [anon_sym_trait] = ACTIONS(1208), - [anon_sym_type] = ACTIONS(1208), - [anon_sym_union] = ACTIONS(1208), - [anon_sym_unsafe] = ACTIONS(1208), - [anon_sym_use] = ACTIONS(1208), - [anon_sym_while] = ACTIONS(1208), - [anon_sym_extern] = ACTIONS(1208), - [anon_sym_yield] = ACTIONS(1208), - [anon_sym_move] = ACTIONS(1208), - [anon_sym_try] = ACTIONS(1208), - [sym_integer_literal] = ACTIONS(1206), - [aux_sym_string_literal_token1] = ACTIONS(1206), - [sym_char_literal] = ACTIONS(1206), - [anon_sym_true] = ACTIONS(1208), - [anon_sym_false] = ACTIONS(1208), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1208), - [sym_super] = ACTIONS(1208), - [sym_crate] = ACTIONS(1208), - [sym_metavariable] = ACTIONS(1206), - [sym__raw_string_literal_start] = ACTIONS(1206), - [sym_float_literal] = ACTIONS(1206), - }, - [671] = { - [sym_line_comment] = STATE(671), - [sym_block_comment] = STATE(671), + [640] = { + [sym_line_comment] = STATE(640), + [sym_block_comment] = STATE(640), [ts_builtin_sym_end] = ACTIONS(1232), [sym_identifier] = ACTIONS(1234), [anon_sym_SEMI] = ACTIONS(1232), @@ -83961,1693 +81489,2733 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_self] = ACTIONS(1234), [sym_super] = ACTIONS(1234), [sym_crate] = ACTIONS(1234), - [sym_metavariable] = ACTIONS(1232), - [sym__raw_string_literal_start] = ACTIONS(1232), - [sym_float_literal] = ACTIONS(1232), - }, - [672] = { - [sym_line_comment] = STATE(672), - [sym_block_comment] = STATE(672), - [ts_builtin_sym_end] = ACTIONS(1236), - [sym_identifier] = ACTIONS(1238), - [anon_sym_SEMI] = ACTIONS(1236), - [anon_sym_macro_rules_BANG] = ACTIONS(1236), - [anon_sym_LPAREN] = ACTIONS(1236), - [anon_sym_LBRACK] = ACTIONS(1236), - [anon_sym_LBRACE] = ACTIONS(1236), - [anon_sym_RBRACE] = ACTIONS(1236), - [anon_sym_STAR] = ACTIONS(1236), - [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(1236), - [anon_sym_BANG] = ACTIONS(1236), - [anon_sym_AMP] = ACTIONS(1236), - [anon_sym_PIPE] = ACTIONS(1236), - [anon_sym_LT] = ACTIONS(1236), - [anon_sym_DOT_DOT] = ACTIONS(1236), - [anon_sym_COLON_COLON] = ACTIONS(1236), - [anon_sym_POUND] = ACTIONS(1236), - [anon_sym_SQUOTE] = ACTIONS(1238), - [anon_sym_async] = ACTIONS(1238), - [anon_sym_break] = ACTIONS(1238), - [anon_sym_const] = ACTIONS(1238), - [anon_sym_continue] = ACTIONS(1238), - [anon_sym_default] = ACTIONS(1238), - [anon_sym_enum] = ACTIONS(1238), - [anon_sym_fn] = ACTIONS(1238), - [anon_sym_for] = ACTIONS(1238), - [anon_sym_if] = ACTIONS(1238), - [anon_sym_impl] = ACTIONS(1238), - [anon_sym_let] = ACTIONS(1238), - [anon_sym_loop] = ACTIONS(1238), - [anon_sym_match] = ACTIONS(1238), - [anon_sym_mod] = ACTIONS(1238), - [anon_sym_pub] = ACTIONS(1238), - [anon_sym_return] = ACTIONS(1238), - [anon_sym_static] = ACTIONS(1238), - [anon_sym_struct] = ACTIONS(1238), - [anon_sym_trait] = ACTIONS(1238), - [anon_sym_type] = ACTIONS(1238), - [anon_sym_union] = ACTIONS(1238), - [anon_sym_unsafe] = ACTIONS(1238), - [anon_sym_use] = ACTIONS(1238), - [anon_sym_while] = ACTIONS(1238), - [anon_sym_extern] = ACTIONS(1238), - [anon_sym_yield] = ACTIONS(1238), - [anon_sym_move] = ACTIONS(1238), - [anon_sym_try] = ACTIONS(1238), - [sym_integer_literal] = ACTIONS(1236), - [aux_sym_string_literal_token1] = ACTIONS(1236), - [sym_char_literal] = ACTIONS(1236), - [anon_sym_true] = ACTIONS(1238), - [anon_sym_false] = ACTIONS(1238), + [sym_metavariable] = ACTIONS(1232), + [sym__raw_string_literal_start] = ACTIONS(1232), + [sym_float_literal] = ACTIONS(1232), + }, + [641] = { + [sym_line_comment] = STATE(641), + [sym_block_comment] = STATE(641), + [ts_builtin_sym_end] = ACTIONS(2400), + [sym_identifier] = ACTIONS(2402), + [anon_sym_SEMI] = ACTIONS(2400), + [anon_sym_macro_rules_BANG] = ACTIONS(2400), + [anon_sym_LPAREN] = ACTIONS(2400), + [anon_sym_LBRACK] = ACTIONS(2400), + [anon_sym_LBRACE] = ACTIONS(2400), + [anon_sym_RBRACE] = ACTIONS(2400), + [anon_sym_STAR] = ACTIONS(2400), + [anon_sym_u8] = ACTIONS(2402), + [anon_sym_i8] = ACTIONS(2402), + [anon_sym_u16] = ACTIONS(2402), + [anon_sym_i16] = ACTIONS(2402), + [anon_sym_u32] = ACTIONS(2402), + [anon_sym_i32] = ACTIONS(2402), + [anon_sym_u64] = ACTIONS(2402), + [anon_sym_i64] = ACTIONS(2402), + [anon_sym_u128] = ACTIONS(2402), + [anon_sym_i128] = ACTIONS(2402), + [anon_sym_isize] = ACTIONS(2402), + [anon_sym_usize] = ACTIONS(2402), + [anon_sym_f32] = ACTIONS(2402), + [anon_sym_f64] = ACTIONS(2402), + [anon_sym_bool] = ACTIONS(2402), + [anon_sym_str] = ACTIONS(2402), + [anon_sym_char] = ACTIONS(2402), + [anon_sym_DASH] = ACTIONS(2400), + [anon_sym_BANG] = ACTIONS(2400), + [anon_sym_AMP] = ACTIONS(2400), + [anon_sym_PIPE] = ACTIONS(2400), + [anon_sym_LT] = ACTIONS(2400), + [anon_sym_DOT_DOT] = ACTIONS(2400), + [anon_sym_COLON_COLON] = ACTIONS(2400), + [anon_sym_POUND] = ACTIONS(2400), + [anon_sym_SQUOTE] = ACTIONS(2402), + [anon_sym_async] = ACTIONS(2402), + [anon_sym_break] = ACTIONS(2402), + [anon_sym_const] = ACTIONS(2402), + [anon_sym_continue] = ACTIONS(2402), + [anon_sym_default] = ACTIONS(2402), + [anon_sym_enum] = ACTIONS(2402), + [anon_sym_fn] = ACTIONS(2402), + [anon_sym_for] = ACTIONS(2402), + [anon_sym_if] = ACTIONS(2402), + [anon_sym_impl] = ACTIONS(2402), + [anon_sym_let] = ACTIONS(2402), + [anon_sym_loop] = ACTIONS(2402), + [anon_sym_match] = ACTIONS(2402), + [anon_sym_mod] = ACTIONS(2402), + [anon_sym_pub] = ACTIONS(2402), + [anon_sym_return] = ACTIONS(2402), + [anon_sym_static] = ACTIONS(2402), + [anon_sym_struct] = ACTIONS(2402), + [anon_sym_trait] = ACTIONS(2402), + [anon_sym_type] = ACTIONS(2402), + [anon_sym_union] = ACTIONS(2402), + [anon_sym_unsafe] = ACTIONS(2402), + [anon_sym_use] = ACTIONS(2402), + [anon_sym_while] = ACTIONS(2402), + [anon_sym_extern] = ACTIONS(2402), + [anon_sym_yield] = ACTIONS(2402), + [anon_sym_move] = ACTIONS(2402), + [anon_sym_try] = ACTIONS(2402), + [sym_integer_literal] = ACTIONS(2400), + [aux_sym_string_literal_token1] = ACTIONS(2400), + [sym_char_literal] = ACTIONS(2400), + [anon_sym_true] = ACTIONS(2402), + [anon_sym_false] = ACTIONS(2402), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1238), - [sym_super] = ACTIONS(1238), - [sym_crate] = ACTIONS(1238), - [sym_metavariable] = ACTIONS(1236), - [sym__raw_string_literal_start] = ACTIONS(1236), - [sym_float_literal] = ACTIONS(1236), + [sym_self] = ACTIONS(2402), + [sym_super] = ACTIONS(2402), + [sym_crate] = ACTIONS(2402), + [sym_metavariable] = ACTIONS(2400), + [sym__raw_string_literal_start] = ACTIONS(2400), + [sym_float_literal] = ACTIONS(2400), }, - [673] = { - [sym_line_comment] = STATE(673), - [sym_block_comment] = STATE(673), - [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_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(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [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), + [642] = { + [sym_line_comment] = STATE(642), + [sym_block_comment] = STATE(642), + [ts_builtin_sym_end] = ACTIONS(2404), + [sym_identifier] = ACTIONS(2406), + [anon_sym_SEMI] = ACTIONS(2404), + [anon_sym_macro_rules_BANG] = ACTIONS(2404), + [anon_sym_LPAREN] = ACTIONS(2404), + [anon_sym_LBRACK] = ACTIONS(2404), + [anon_sym_LBRACE] = ACTIONS(2404), + [anon_sym_RBRACE] = ACTIONS(2404), + [anon_sym_STAR] = ACTIONS(2404), + [anon_sym_u8] = ACTIONS(2406), + [anon_sym_i8] = ACTIONS(2406), + [anon_sym_u16] = ACTIONS(2406), + [anon_sym_i16] = ACTIONS(2406), + [anon_sym_u32] = ACTIONS(2406), + [anon_sym_i32] = ACTIONS(2406), + [anon_sym_u64] = ACTIONS(2406), + [anon_sym_i64] = ACTIONS(2406), + [anon_sym_u128] = ACTIONS(2406), + [anon_sym_i128] = ACTIONS(2406), + [anon_sym_isize] = ACTIONS(2406), + [anon_sym_usize] = ACTIONS(2406), + [anon_sym_f32] = ACTIONS(2406), + [anon_sym_f64] = ACTIONS(2406), + [anon_sym_bool] = ACTIONS(2406), + [anon_sym_str] = ACTIONS(2406), + [anon_sym_char] = ACTIONS(2406), + [anon_sym_DASH] = ACTIONS(2404), + [anon_sym_BANG] = ACTIONS(2404), + [anon_sym_AMP] = ACTIONS(2404), + [anon_sym_PIPE] = ACTIONS(2404), + [anon_sym_LT] = ACTIONS(2404), + [anon_sym_DOT_DOT] = ACTIONS(2404), + [anon_sym_COLON_COLON] = ACTIONS(2404), + [anon_sym_POUND] = ACTIONS(2404), + [anon_sym_SQUOTE] = ACTIONS(2406), + [anon_sym_async] = ACTIONS(2406), + [anon_sym_break] = ACTIONS(2406), + [anon_sym_const] = ACTIONS(2406), + [anon_sym_continue] = ACTIONS(2406), + [anon_sym_default] = ACTIONS(2406), + [anon_sym_enum] = ACTIONS(2406), + [anon_sym_fn] = ACTIONS(2406), + [anon_sym_for] = ACTIONS(2406), + [anon_sym_if] = ACTIONS(2406), + [anon_sym_impl] = ACTIONS(2406), + [anon_sym_let] = ACTIONS(2406), + [anon_sym_loop] = ACTIONS(2406), + [anon_sym_match] = ACTIONS(2406), + [anon_sym_mod] = ACTIONS(2406), + [anon_sym_pub] = ACTIONS(2406), + [anon_sym_return] = ACTIONS(2406), + [anon_sym_static] = ACTIONS(2406), + [anon_sym_struct] = ACTIONS(2406), + [anon_sym_trait] = ACTIONS(2406), + [anon_sym_type] = ACTIONS(2406), + [anon_sym_union] = ACTIONS(2406), + [anon_sym_unsafe] = ACTIONS(2406), + [anon_sym_use] = ACTIONS(2406), + [anon_sym_while] = ACTIONS(2406), + [anon_sym_extern] = ACTIONS(2406), + [anon_sym_yield] = ACTIONS(2406), + [anon_sym_move] = ACTIONS(2406), + [anon_sym_try] = ACTIONS(2406), + [sym_integer_literal] = ACTIONS(2404), + [aux_sym_string_literal_token1] = ACTIONS(2404), + [sym_char_literal] = ACTIONS(2404), + [anon_sym_true] = ACTIONS(2406), + [anon_sym_false] = ACTIONS(2406), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2406), + [sym_super] = ACTIONS(2406), + [sym_crate] = ACTIONS(2406), + [sym_metavariable] = ACTIONS(2404), + [sym__raw_string_literal_start] = ACTIONS(2404), + [sym_float_literal] = ACTIONS(2404), }, - [674] = { - [sym_line_comment] = STATE(674), - [sym_block_comment] = STATE(674), - [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_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(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [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), + [643] = { + [sym_line_comment] = STATE(643), + [sym_block_comment] = STATE(643), + [ts_builtin_sym_end] = ACTIONS(2408), + [sym_identifier] = ACTIONS(2410), + [anon_sym_SEMI] = ACTIONS(2408), + [anon_sym_macro_rules_BANG] = ACTIONS(2408), + [anon_sym_LPAREN] = ACTIONS(2408), + [anon_sym_LBRACK] = ACTIONS(2408), + [anon_sym_LBRACE] = ACTIONS(2408), + [anon_sym_RBRACE] = ACTIONS(2408), + [anon_sym_STAR] = ACTIONS(2408), + [anon_sym_u8] = ACTIONS(2410), + [anon_sym_i8] = ACTIONS(2410), + [anon_sym_u16] = ACTIONS(2410), + [anon_sym_i16] = ACTIONS(2410), + [anon_sym_u32] = ACTIONS(2410), + [anon_sym_i32] = ACTIONS(2410), + [anon_sym_u64] = ACTIONS(2410), + [anon_sym_i64] = ACTIONS(2410), + [anon_sym_u128] = ACTIONS(2410), + [anon_sym_i128] = ACTIONS(2410), + [anon_sym_isize] = ACTIONS(2410), + [anon_sym_usize] = ACTIONS(2410), + [anon_sym_f32] = ACTIONS(2410), + [anon_sym_f64] = ACTIONS(2410), + [anon_sym_bool] = ACTIONS(2410), + [anon_sym_str] = ACTIONS(2410), + [anon_sym_char] = ACTIONS(2410), + [anon_sym_DASH] = ACTIONS(2408), + [anon_sym_BANG] = ACTIONS(2408), + [anon_sym_AMP] = ACTIONS(2408), + [anon_sym_PIPE] = ACTIONS(2408), + [anon_sym_LT] = ACTIONS(2408), + [anon_sym_DOT_DOT] = ACTIONS(2408), + [anon_sym_COLON_COLON] = ACTIONS(2408), + [anon_sym_POUND] = ACTIONS(2408), + [anon_sym_SQUOTE] = ACTIONS(2410), + [anon_sym_async] = ACTIONS(2410), + [anon_sym_break] = ACTIONS(2410), + [anon_sym_const] = ACTIONS(2410), + [anon_sym_continue] = ACTIONS(2410), + [anon_sym_default] = ACTIONS(2410), + [anon_sym_enum] = ACTIONS(2410), + [anon_sym_fn] = ACTIONS(2410), + [anon_sym_for] = ACTIONS(2410), + [anon_sym_if] = ACTIONS(2410), + [anon_sym_impl] = ACTIONS(2410), + [anon_sym_let] = ACTIONS(2410), + [anon_sym_loop] = ACTIONS(2410), + [anon_sym_match] = ACTIONS(2410), + [anon_sym_mod] = ACTIONS(2410), + [anon_sym_pub] = ACTIONS(2410), + [anon_sym_return] = ACTIONS(2410), + [anon_sym_static] = ACTIONS(2410), + [anon_sym_struct] = ACTIONS(2410), + [anon_sym_trait] = ACTIONS(2410), + [anon_sym_type] = ACTIONS(2410), + [anon_sym_union] = ACTIONS(2410), + [anon_sym_unsafe] = ACTIONS(2410), + [anon_sym_use] = ACTIONS(2410), + [anon_sym_while] = ACTIONS(2410), + [anon_sym_extern] = ACTIONS(2410), + [anon_sym_yield] = ACTIONS(2410), + [anon_sym_move] = ACTIONS(2410), + [anon_sym_try] = ACTIONS(2410), + [sym_integer_literal] = ACTIONS(2408), + [aux_sym_string_literal_token1] = ACTIONS(2408), + [sym_char_literal] = ACTIONS(2408), + [anon_sym_true] = ACTIONS(2410), + [anon_sym_false] = ACTIONS(2410), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2410), + [sym_super] = ACTIONS(2410), + [sym_crate] = ACTIONS(2410), + [sym_metavariable] = ACTIONS(2408), + [sym__raw_string_literal_start] = ACTIONS(2408), + [sym_float_literal] = ACTIONS(2408), }, - [675] = { - [sym_line_comment] = STATE(675), - [sym_block_comment] = STATE(675), - [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_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(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [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), + [644] = { + [sym_line_comment] = STATE(644), + [sym_block_comment] = STATE(644), + [ts_builtin_sym_end] = ACTIONS(2412), + [sym_identifier] = ACTIONS(2414), + [anon_sym_SEMI] = ACTIONS(2412), + [anon_sym_macro_rules_BANG] = ACTIONS(2412), + [anon_sym_LPAREN] = ACTIONS(2412), + [anon_sym_LBRACK] = ACTIONS(2412), + [anon_sym_LBRACE] = ACTIONS(2412), + [anon_sym_RBRACE] = ACTIONS(2412), + [anon_sym_STAR] = ACTIONS(2412), + [anon_sym_u8] = ACTIONS(2414), + [anon_sym_i8] = ACTIONS(2414), + [anon_sym_u16] = ACTIONS(2414), + [anon_sym_i16] = ACTIONS(2414), + [anon_sym_u32] = ACTIONS(2414), + [anon_sym_i32] = ACTIONS(2414), + [anon_sym_u64] = ACTIONS(2414), + [anon_sym_i64] = ACTIONS(2414), + [anon_sym_u128] = ACTIONS(2414), + [anon_sym_i128] = ACTIONS(2414), + [anon_sym_isize] = ACTIONS(2414), + [anon_sym_usize] = ACTIONS(2414), + [anon_sym_f32] = ACTIONS(2414), + [anon_sym_f64] = ACTIONS(2414), + [anon_sym_bool] = ACTIONS(2414), + [anon_sym_str] = ACTIONS(2414), + [anon_sym_char] = ACTIONS(2414), + [anon_sym_DASH] = ACTIONS(2412), + [anon_sym_BANG] = ACTIONS(2412), + [anon_sym_AMP] = ACTIONS(2412), + [anon_sym_PIPE] = ACTIONS(2412), + [anon_sym_LT] = ACTIONS(2412), + [anon_sym_DOT_DOT] = ACTIONS(2412), + [anon_sym_COLON_COLON] = ACTIONS(2412), + [anon_sym_POUND] = ACTIONS(2412), + [anon_sym_SQUOTE] = ACTIONS(2414), + [anon_sym_async] = ACTIONS(2414), + [anon_sym_break] = ACTIONS(2414), + [anon_sym_const] = ACTIONS(2414), + [anon_sym_continue] = ACTIONS(2414), + [anon_sym_default] = ACTIONS(2414), + [anon_sym_enum] = ACTIONS(2414), + [anon_sym_fn] = ACTIONS(2414), + [anon_sym_for] = ACTIONS(2414), + [anon_sym_if] = ACTIONS(2414), + [anon_sym_impl] = ACTIONS(2414), + [anon_sym_let] = ACTIONS(2414), + [anon_sym_loop] = ACTIONS(2414), + [anon_sym_match] = ACTIONS(2414), + [anon_sym_mod] = ACTIONS(2414), + [anon_sym_pub] = ACTIONS(2414), + [anon_sym_return] = ACTIONS(2414), + [anon_sym_static] = ACTIONS(2414), + [anon_sym_struct] = ACTIONS(2414), + [anon_sym_trait] = ACTIONS(2414), + [anon_sym_type] = ACTIONS(2414), + [anon_sym_union] = ACTIONS(2414), + [anon_sym_unsafe] = ACTIONS(2414), + [anon_sym_use] = ACTIONS(2414), + [anon_sym_while] = ACTIONS(2414), + [anon_sym_extern] = ACTIONS(2414), + [anon_sym_yield] = ACTIONS(2414), + [anon_sym_move] = ACTIONS(2414), + [anon_sym_try] = ACTIONS(2414), + [sym_integer_literal] = ACTIONS(2412), + [aux_sym_string_literal_token1] = ACTIONS(2412), + [sym_char_literal] = ACTIONS(2412), + [anon_sym_true] = ACTIONS(2414), + [anon_sym_false] = ACTIONS(2414), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2414), + [sym_super] = ACTIONS(2414), + [sym_crate] = ACTIONS(2414), + [sym_metavariable] = ACTIONS(2412), + [sym__raw_string_literal_start] = ACTIONS(2412), + [sym_float_literal] = ACTIONS(2412), }, - [676] = { - [sym_line_comment] = STATE(676), - [sym_block_comment] = STATE(676), - [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_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(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [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), + [645] = { + [sym_line_comment] = STATE(645), + [sym_block_comment] = STATE(645), + [ts_builtin_sym_end] = ACTIONS(2416), + [sym_identifier] = ACTIONS(2418), + [anon_sym_SEMI] = ACTIONS(2416), + [anon_sym_macro_rules_BANG] = ACTIONS(2416), + [anon_sym_LPAREN] = ACTIONS(2416), + [anon_sym_LBRACK] = ACTIONS(2416), + [anon_sym_LBRACE] = ACTIONS(2416), + [anon_sym_RBRACE] = ACTIONS(2416), + [anon_sym_STAR] = ACTIONS(2416), + [anon_sym_u8] = ACTIONS(2418), + [anon_sym_i8] = ACTIONS(2418), + [anon_sym_u16] = ACTIONS(2418), + [anon_sym_i16] = ACTIONS(2418), + [anon_sym_u32] = ACTIONS(2418), + [anon_sym_i32] = ACTIONS(2418), + [anon_sym_u64] = ACTIONS(2418), + [anon_sym_i64] = ACTIONS(2418), + [anon_sym_u128] = ACTIONS(2418), + [anon_sym_i128] = ACTIONS(2418), + [anon_sym_isize] = ACTIONS(2418), + [anon_sym_usize] = ACTIONS(2418), + [anon_sym_f32] = ACTIONS(2418), + [anon_sym_f64] = ACTIONS(2418), + [anon_sym_bool] = ACTIONS(2418), + [anon_sym_str] = ACTIONS(2418), + [anon_sym_char] = ACTIONS(2418), + [anon_sym_DASH] = ACTIONS(2416), + [anon_sym_BANG] = ACTIONS(2416), + [anon_sym_AMP] = ACTIONS(2416), + [anon_sym_PIPE] = ACTIONS(2416), + [anon_sym_LT] = ACTIONS(2416), + [anon_sym_DOT_DOT] = ACTIONS(2416), + [anon_sym_COLON_COLON] = ACTIONS(2416), + [anon_sym_POUND] = ACTIONS(2416), + [anon_sym_SQUOTE] = ACTIONS(2418), + [anon_sym_async] = ACTIONS(2418), + [anon_sym_break] = ACTIONS(2418), + [anon_sym_const] = ACTIONS(2418), + [anon_sym_continue] = ACTIONS(2418), + [anon_sym_default] = ACTIONS(2418), + [anon_sym_enum] = ACTIONS(2418), + [anon_sym_fn] = ACTIONS(2418), + [anon_sym_for] = ACTIONS(2418), + [anon_sym_if] = ACTIONS(2418), + [anon_sym_impl] = ACTIONS(2418), + [anon_sym_let] = ACTIONS(2418), + [anon_sym_loop] = ACTIONS(2418), + [anon_sym_match] = ACTIONS(2418), + [anon_sym_mod] = ACTIONS(2418), + [anon_sym_pub] = ACTIONS(2418), + [anon_sym_return] = ACTIONS(2418), + [anon_sym_static] = ACTIONS(2418), + [anon_sym_struct] = ACTIONS(2418), + [anon_sym_trait] = ACTIONS(2418), + [anon_sym_type] = ACTIONS(2418), + [anon_sym_union] = ACTIONS(2418), + [anon_sym_unsafe] = ACTIONS(2418), + [anon_sym_use] = ACTIONS(2418), + [anon_sym_while] = ACTIONS(2418), + [anon_sym_extern] = ACTIONS(2418), + [anon_sym_yield] = ACTIONS(2418), + [anon_sym_move] = ACTIONS(2418), + [anon_sym_try] = ACTIONS(2418), + [sym_integer_literal] = ACTIONS(2416), + [aux_sym_string_literal_token1] = ACTIONS(2416), + [sym_char_literal] = ACTIONS(2416), + [anon_sym_true] = ACTIONS(2418), + [anon_sym_false] = ACTIONS(2418), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2418), + [sym_super] = ACTIONS(2418), + [sym_crate] = ACTIONS(2418), + [sym_metavariable] = ACTIONS(2416), + [sym__raw_string_literal_start] = ACTIONS(2416), + [sym_float_literal] = ACTIONS(2416), }, - [677] = { - [sym_line_comment] = STATE(677), - [sym_block_comment] = STATE(677), - [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_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(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [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), + [646] = { + [sym_line_comment] = STATE(646), + [sym_block_comment] = STATE(646), + [ts_builtin_sym_end] = ACTIONS(2420), + [sym_identifier] = ACTIONS(2422), + [anon_sym_SEMI] = ACTIONS(2420), + [anon_sym_macro_rules_BANG] = ACTIONS(2420), + [anon_sym_LPAREN] = ACTIONS(2420), + [anon_sym_LBRACK] = ACTIONS(2420), + [anon_sym_LBRACE] = ACTIONS(2420), + [anon_sym_RBRACE] = ACTIONS(2420), + [anon_sym_STAR] = ACTIONS(2420), + [anon_sym_u8] = ACTIONS(2422), + [anon_sym_i8] = ACTIONS(2422), + [anon_sym_u16] = ACTIONS(2422), + [anon_sym_i16] = ACTIONS(2422), + [anon_sym_u32] = ACTIONS(2422), + [anon_sym_i32] = ACTIONS(2422), + [anon_sym_u64] = ACTIONS(2422), + [anon_sym_i64] = ACTIONS(2422), + [anon_sym_u128] = ACTIONS(2422), + [anon_sym_i128] = ACTIONS(2422), + [anon_sym_isize] = ACTIONS(2422), + [anon_sym_usize] = ACTIONS(2422), + [anon_sym_f32] = ACTIONS(2422), + [anon_sym_f64] = ACTIONS(2422), + [anon_sym_bool] = ACTIONS(2422), + [anon_sym_str] = ACTIONS(2422), + [anon_sym_char] = ACTIONS(2422), + [anon_sym_DASH] = ACTIONS(2420), + [anon_sym_BANG] = ACTIONS(2420), + [anon_sym_AMP] = ACTIONS(2420), + [anon_sym_PIPE] = ACTIONS(2420), + [anon_sym_LT] = ACTIONS(2420), + [anon_sym_DOT_DOT] = ACTIONS(2420), + [anon_sym_COLON_COLON] = ACTIONS(2420), + [anon_sym_POUND] = ACTIONS(2420), + [anon_sym_SQUOTE] = ACTIONS(2422), + [anon_sym_async] = ACTIONS(2422), + [anon_sym_break] = ACTIONS(2422), + [anon_sym_const] = ACTIONS(2422), + [anon_sym_continue] = ACTIONS(2422), + [anon_sym_default] = ACTIONS(2422), + [anon_sym_enum] = ACTIONS(2422), + [anon_sym_fn] = ACTIONS(2422), + [anon_sym_for] = ACTIONS(2422), + [anon_sym_if] = ACTIONS(2422), + [anon_sym_impl] = ACTIONS(2422), + [anon_sym_let] = ACTIONS(2422), + [anon_sym_loop] = ACTIONS(2422), + [anon_sym_match] = ACTIONS(2422), + [anon_sym_mod] = ACTIONS(2422), + [anon_sym_pub] = ACTIONS(2422), + [anon_sym_return] = ACTIONS(2422), + [anon_sym_static] = ACTIONS(2422), + [anon_sym_struct] = ACTIONS(2422), + [anon_sym_trait] = ACTIONS(2422), + [anon_sym_type] = ACTIONS(2422), + [anon_sym_union] = ACTIONS(2422), + [anon_sym_unsafe] = ACTIONS(2422), + [anon_sym_use] = ACTIONS(2422), + [anon_sym_while] = ACTIONS(2422), + [anon_sym_extern] = ACTIONS(2422), + [anon_sym_yield] = ACTIONS(2422), + [anon_sym_move] = ACTIONS(2422), + [anon_sym_try] = ACTIONS(2422), + [sym_integer_literal] = ACTIONS(2420), + [aux_sym_string_literal_token1] = ACTIONS(2420), + [sym_char_literal] = ACTIONS(2420), + [anon_sym_true] = ACTIONS(2422), + [anon_sym_false] = ACTIONS(2422), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2422), + [sym_super] = ACTIONS(2422), + [sym_crate] = ACTIONS(2422), + [sym_metavariable] = ACTIONS(2420), + [sym__raw_string_literal_start] = ACTIONS(2420), + [sym_float_literal] = ACTIONS(2420), }, - [678] = { - [sym_line_comment] = STATE(678), - [sym_block_comment] = STATE(678), - [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_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(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [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), + [647] = { + [sym_line_comment] = STATE(647), + [sym_block_comment] = STATE(647), + [ts_builtin_sym_end] = ACTIONS(2424), + [sym_identifier] = ACTIONS(2426), + [anon_sym_SEMI] = ACTIONS(2424), + [anon_sym_macro_rules_BANG] = ACTIONS(2424), + [anon_sym_LPAREN] = ACTIONS(2424), + [anon_sym_LBRACK] = ACTIONS(2424), + [anon_sym_LBRACE] = ACTIONS(2424), + [anon_sym_RBRACE] = ACTIONS(2424), + [anon_sym_STAR] = ACTIONS(2424), + [anon_sym_u8] = ACTIONS(2426), + [anon_sym_i8] = ACTIONS(2426), + [anon_sym_u16] = ACTIONS(2426), + [anon_sym_i16] = ACTIONS(2426), + [anon_sym_u32] = ACTIONS(2426), + [anon_sym_i32] = ACTIONS(2426), + [anon_sym_u64] = ACTIONS(2426), + [anon_sym_i64] = ACTIONS(2426), + [anon_sym_u128] = ACTIONS(2426), + [anon_sym_i128] = ACTIONS(2426), + [anon_sym_isize] = ACTIONS(2426), + [anon_sym_usize] = ACTIONS(2426), + [anon_sym_f32] = ACTIONS(2426), + [anon_sym_f64] = ACTIONS(2426), + [anon_sym_bool] = ACTIONS(2426), + [anon_sym_str] = ACTIONS(2426), + [anon_sym_char] = ACTIONS(2426), + [anon_sym_DASH] = ACTIONS(2424), + [anon_sym_BANG] = ACTIONS(2424), + [anon_sym_AMP] = ACTIONS(2424), + [anon_sym_PIPE] = ACTIONS(2424), + [anon_sym_LT] = ACTIONS(2424), + [anon_sym_DOT_DOT] = ACTIONS(2424), + [anon_sym_COLON_COLON] = ACTIONS(2424), + [anon_sym_POUND] = ACTIONS(2424), + [anon_sym_SQUOTE] = ACTIONS(2426), + [anon_sym_async] = ACTIONS(2426), + [anon_sym_break] = ACTIONS(2426), + [anon_sym_const] = ACTIONS(2426), + [anon_sym_continue] = ACTIONS(2426), + [anon_sym_default] = ACTIONS(2426), + [anon_sym_enum] = ACTIONS(2426), + [anon_sym_fn] = ACTIONS(2426), + [anon_sym_for] = ACTIONS(2426), + [anon_sym_if] = ACTIONS(2426), + [anon_sym_impl] = ACTIONS(2426), + [anon_sym_let] = ACTIONS(2426), + [anon_sym_loop] = ACTIONS(2426), + [anon_sym_match] = ACTIONS(2426), + [anon_sym_mod] = ACTIONS(2426), + [anon_sym_pub] = ACTIONS(2426), + [anon_sym_return] = ACTIONS(2426), + [anon_sym_static] = ACTIONS(2426), + [anon_sym_struct] = ACTIONS(2426), + [anon_sym_trait] = ACTIONS(2426), + [anon_sym_type] = ACTIONS(2426), + [anon_sym_union] = ACTIONS(2426), + [anon_sym_unsafe] = ACTIONS(2426), + [anon_sym_use] = ACTIONS(2426), + [anon_sym_while] = ACTIONS(2426), + [anon_sym_extern] = ACTIONS(2426), + [anon_sym_yield] = ACTIONS(2426), + [anon_sym_move] = ACTIONS(2426), + [anon_sym_try] = ACTIONS(2426), + [sym_integer_literal] = ACTIONS(2424), + [aux_sym_string_literal_token1] = ACTIONS(2424), + [sym_char_literal] = ACTIONS(2424), + [anon_sym_true] = ACTIONS(2426), + [anon_sym_false] = ACTIONS(2426), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2426), + [sym_super] = ACTIONS(2426), + [sym_crate] = ACTIONS(2426), + [sym_metavariable] = ACTIONS(2424), + [sym__raw_string_literal_start] = ACTIONS(2424), + [sym_float_literal] = ACTIONS(2424), }, - [679] = { - [sym_line_comment] = STATE(679), - [sym_block_comment] = STATE(679), - [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_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(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [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), + [648] = { + [sym_line_comment] = STATE(648), + [sym_block_comment] = STATE(648), + [ts_builtin_sym_end] = ACTIONS(2428), + [sym_identifier] = ACTIONS(2430), + [anon_sym_SEMI] = ACTIONS(2428), + [anon_sym_macro_rules_BANG] = ACTIONS(2428), + [anon_sym_LPAREN] = ACTIONS(2428), + [anon_sym_LBRACK] = ACTIONS(2428), + [anon_sym_LBRACE] = ACTIONS(2428), + [anon_sym_RBRACE] = ACTIONS(2428), + [anon_sym_STAR] = ACTIONS(2428), + [anon_sym_u8] = ACTIONS(2430), + [anon_sym_i8] = ACTIONS(2430), + [anon_sym_u16] = ACTIONS(2430), + [anon_sym_i16] = ACTIONS(2430), + [anon_sym_u32] = ACTIONS(2430), + [anon_sym_i32] = ACTIONS(2430), + [anon_sym_u64] = ACTIONS(2430), + [anon_sym_i64] = ACTIONS(2430), + [anon_sym_u128] = ACTIONS(2430), + [anon_sym_i128] = ACTIONS(2430), + [anon_sym_isize] = ACTIONS(2430), + [anon_sym_usize] = ACTIONS(2430), + [anon_sym_f32] = ACTIONS(2430), + [anon_sym_f64] = ACTIONS(2430), + [anon_sym_bool] = ACTIONS(2430), + [anon_sym_str] = ACTIONS(2430), + [anon_sym_char] = ACTIONS(2430), + [anon_sym_DASH] = ACTIONS(2428), + [anon_sym_BANG] = ACTIONS(2428), + [anon_sym_AMP] = ACTIONS(2428), + [anon_sym_PIPE] = ACTIONS(2428), + [anon_sym_LT] = ACTIONS(2428), + [anon_sym_DOT_DOT] = ACTIONS(2428), + [anon_sym_COLON_COLON] = ACTIONS(2428), + [anon_sym_POUND] = ACTIONS(2428), + [anon_sym_SQUOTE] = ACTIONS(2430), + [anon_sym_async] = ACTIONS(2430), + [anon_sym_break] = ACTIONS(2430), + [anon_sym_const] = ACTIONS(2430), + [anon_sym_continue] = ACTIONS(2430), + [anon_sym_default] = ACTIONS(2430), + [anon_sym_enum] = ACTIONS(2430), + [anon_sym_fn] = ACTIONS(2430), + [anon_sym_for] = ACTIONS(2430), + [anon_sym_if] = ACTIONS(2430), + [anon_sym_impl] = ACTIONS(2430), + [anon_sym_let] = ACTIONS(2430), + [anon_sym_loop] = ACTIONS(2430), + [anon_sym_match] = ACTIONS(2430), + [anon_sym_mod] = ACTIONS(2430), + [anon_sym_pub] = ACTIONS(2430), + [anon_sym_return] = ACTIONS(2430), + [anon_sym_static] = ACTIONS(2430), + [anon_sym_struct] = ACTIONS(2430), + [anon_sym_trait] = ACTIONS(2430), + [anon_sym_type] = ACTIONS(2430), + [anon_sym_union] = ACTIONS(2430), + [anon_sym_unsafe] = ACTIONS(2430), + [anon_sym_use] = ACTIONS(2430), + [anon_sym_while] = ACTIONS(2430), + [anon_sym_extern] = ACTIONS(2430), + [anon_sym_yield] = ACTIONS(2430), + [anon_sym_move] = ACTIONS(2430), + [anon_sym_try] = ACTIONS(2430), + [sym_integer_literal] = ACTIONS(2428), + [aux_sym_string_literal_token1] = ACTIONS(2428), + [sym_char_literal] = ACTIONS(2428), + [anon_sym_true] = ACTIONS(2430), + [anon_sym_false] = ACTIONS(2430), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2430), + [sym_super] = ACTIONS(2430), + [sym_crate] = ACTIONS(2430), + [sym_metavariable] = ACTIONS(2428), + [sym__raw_string_literal_start] = ACTIONS(2428), + [sym_float_literal] = ACTIONS(2428), }, - [680] = { - [sym_line_comment] = STATE(680), - [sym_block_comment] = STATE(680), - [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_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(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [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), + [649] = { + [sym_line_comment] = STATE(649), + [sym_block_comment] = STATE(649), + [ts_builtin_sym_end] = ACTIONS(2432), + [sym_identifier] = ACTIONS(2434), + [anon_sym_SEMI] = ACTIONS(2432), + [anon_sym_macro_rules_BANG] = ACTIONS(2432), + [anon_sym_LPAREN] = ACTIONS(2432), + [anon_sym_LBRACK] = ACTIONS(2432), + [anon_sym_LBRACE] = ACTIONS(2432), + [anon_sym_RBRACE] = ACTIONS(2432), + [anon_sym_STAR] = ACTIONS(2432), + [anon_sym_u8] = ACTIONS(2434), + [anon_sym_i8] = ACTIONS(2434), + [anon_sym_u16] = ACTIONS(2434), + [anon_sym_i16] = ACTIONS(2434), + [anon_sym_u32] = ACTIONS(2434), + [anon_sym_i32] = ACTIONS(2434), + [anon_sym_u64] = ACTIONS(2434), + [anon_sym_i64] = ACTIONS(2434), + [anon_sym_u128] = ACTIONS(2434), + [anon_sym_i128] = ACTIONS(2434), + [anon_sym_isize] = ACTIONS(2434), + [anon_sym_usize] = ACTIONS(2434), + [anon_sym_f32] = ACTIONS(2434), + [anon_sym_f64] = ACTIONS(2434), + [anon_sym_bool] = ACTIONS(2434), + [anon_sym_str] = ACTIONS(2434), + [anon_sym_char] = ACTIONS(2434), + [anon_sym_DASH] = ACTIONS(2432), + [anon_sym_BANG] = ACTIONS(2432), + [anon_sym_AMP] = ACTIONS(2432), + [anon_sym_PIPE] = ACTIONS(2432), + [anon_sym_LT] = ACTIONS(2432), + [anon_sym_DOT_DOT] = ACTIONS(2432), + [anon_sym_COLON_COLON] = ACTIONS(2432), + [anon_sym_POUND] = ACTIONS(2432), + [anon_sym_SQUOTE] = ACTIONS(2434), + [anon_sym_async] = ACTIONS(2434), + [anon_sym_break] = ACTIONS(2434), + [anon_sym_const] = ACTIONS(2434), + [anon_sym_continue] = ACTIONS(2434), + [anon_sym_default] = ACTIONS(2434), + [anon_sym_enum] = ACTIONS(2434), + [anon_sym_fn] = ACTIONS(2434), + [anon_sym_for] = ACTIONS(2434), + [anon_sym_if] = ACTIONS(2434), + [anon_sym_impl] = ACTIONS(2434), + [anon_sym_let] = ACTIONS(2434), + [anon_sym_loop] = ACTIONS(2434), + [anon_sym_match] = ACTIONS(2434), + [anon_sym_mod] = ACTIONS(2434), + [anon_sym_pub] = ACTIONS(2434), + [anon_sym_return] = ACTIONS(2434), + [anon_sym_static] = ACTIONS(2434), + [anon_sym_struct] = ACTIONS(2434), + [anon_sym_trait] = ACTIONS(2434), + [anon_sym_type] = ACTIONS(2434), + [anon_sym_union] = ACTIONS(2434), + [anon_sym_unsafe] = ACTIONS(2434), + [anon_sym_use] = ACTIONS(2434), + [anon_sym_while] = ACTIONS(2434), + [anon_sym_extern] = ACTIONS(2434), + [anon_sym_yield] = ACTIONS(2434), + [anon_sym_move] = ACTIONS(2434), + [anon_sym_try] = ACTIONS(2434), + [sym_integer_literal] = ACTIONS(2432), + [aux_sym_string_literal_token1] = ACTIONS(2432), + [sym_char_literal] = ACTIONS(2432), + [anon_sym_true] = ACTIONS(2434), + [anon_sym_false] = ACTIONS(2434), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2434), + [sym_super] = ACTIONS(2434), + [sym_crate] = ACTIONS(2434), + [sym_metavariable] = ACTIONS(2432), + [sym__raw_string_literal_start] = ACTIONS(2432), + [sym_float_literal] = ACTIONS(2432), }, - [681] = { - [sym_line_comment] = STATE(681), - [sym_block_comment] = STATE(681), - [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_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(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [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), + [650] = { + [sym_line_comment] = STATE(650), + [sym_block_comment] = STATE(650), + [ts_builtin_sym_end] = ACTIONS(2436), + [sym_identifier] = ACTIONS(2438), + [anon_sym_SEMI] = ACTIONS(2436), + [anon_sym_macro_rules_BANG] = ACTIONS(2436), + [anon_sym_LPAREN] = ACTIONS(2436), + [anon_sym_LBRACK] = ACTIONS(2436), + [anon_sym_LBRACE] = ACTIONS(2436), + [anon_sym_RBRACE] = ACTIONS(2436), + [anon_sym_STAR] = ACTIONS(2436), + [anon_sym_u8] = ACTIONS(2438), + [anon_sym_i8] = ACTIONS(2438), + [anon_sym_u16] = ACTIONS(2438), + [anon_sym_i16] = ACTIONS(2438), + [anon_sym_u32] = ACTIONS(2438), + [anon_sym_i32] = ACTIONS(2438), + [anon_sym_u64] = ACTIONS(2438), + [anon_sym_i64] = ACTIONS(2438), + [anon_sym_u128] = ACTIONS(2438), + [anon_sym_i128] = ACTIONS(2438), + [anon_sym_isize] = ACTIONS(2438), + [anon_sym_usize] = ACTIONS(2438), + [anon_sym_f32] = ACTIONS(2438), + [anon_sym_f64] = ACTIONS(2438), + [anon_sym_bool] = ACTIONS(2438), + [anon_sym_str] = ACTIONS(2438), + [anon_sym_char] = ACTIONS(2438), + [anon_sym_DASH] = ACTIONS(2436), + [anon_sym_BANG] = ACTIONS(2436), + [anon_sym_AMP] = ACTIONS(2436), + [anon_sym_PIPE] = ACTIONS(2436), + [anon_sym_LT] = ACTIONS(2436), + [anon_sym_DOT_DOT] = ACTIONS(2436), + [anon_sym_COLON_COLON] = ACTIONS(2436), + [anon_sym_POUND] = ACTIONS(2436), + [anon_sym_SQUOTE] = ACTIONS(2438), + [anon_sym_async] = ACTIONS(2438), + [anon_sym_break] = ACTIONS(2438), + [anon_sym_const] = ACTIONS(2438), + [anon_sym_continue] = ACTIONS(2438), + [anon_sym_default] = ACTIONS(2438), + [anon_sym_enum] = ACTIONS(2438), + [anon_sym_fn] = ACTIONS(2438), + [anon_sym_for] = ACTIONS(2438), + [anon_sym_if] = ACTIONS(2438), + [anon_sym_impl] = ACTIONS(2438), + [anon_sym_let] = ACTIONS(2438), + [anon_sym_loop] = ACTIONS(2438), + [anon_sym_match] = ACTIONS(2438), + [anon_sym_mod] = ACTIONS(2438), + [anon_sym_pub] = ACTIONS(2438), + [anon_sym_return] = ACTIONS(2438), + [anon_sym_static] = ACTIONS(2438), + [anon_sym_struct] = ACTIONS(2438), + [anon_sym_trait] = ACTIONS(2438), + [anon_sym_type] = ACTIONS(2438), + [anon_sym_union] = ACTIONS(2438), + [anon_sym_unsafe] = ACTIONS(2438), + [anon_sym_use] = ACTIONS(2438), + [anon_sym_while] = ACTIONS(2438), + [anon_sym_extern] = ACTIONS(2438), + [anon_sym_yield] = ACTIONS(2438), + [anon_sym_move] = ACTIONS(2438), + [anon_sym_try] = ACTIONS(2438), + [sym_integer_literal] = ACTIONS(2436), + [aux_sym_string_literal_token1] = ACTIONS(2436), + [sym_char_literal] = ACTIONS(2436), + [anon_sym_true] = ACTIONS(2438), + [anon_sym_false] = ACTIONS(2438), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2438), + [sym_super] = ACTIONS(2438), + [sym_crate] = ACTIONS(2438), + [sym_metavariable] = ACTIONS(2436), + [sym__raw_string_literal_start] = ACTIONS(2436), + [sym_float_literal] = ACTIONS(2436), }, - [682] = { - [sym_line_comment] = STATE(682), - [sym_block_comment] = STATE(682), - [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_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(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [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), + [651] = { + [sym_line_comment] = STATE(651), + [sym_block_comment] = STATE(651), + [ts_builtin_sym_end] = ACTIONS(2440), + [sym_identifier] = ACTIONS(2442), + [anon_sym_SEMI] = ACTIONS(2440), + [anon_sym_macro_rules_BANG] = ACTIONS(2440), + [anon_sym_LPAREN] = ACTIONS(2440), + [anon_sym_LBRACK] = ACTIONS(2440), + [anon_sym_LBRACE] = ACTIONS(2440), + [anon_sym_RBRACE] = ACTIONS(2440), + [anon_sym_STAR] = ACTIONS(2440), + [anon_sym_u8] = ACTIONS(2442), + [anon_sym_i8] = ACTIONS(2442), + [anon_sym_u16] = ACTIONS(2442), + [anon_sym_i16] = ACTIONS(2442), + [anon_sym_u32] = ACTIONS(2442), + [anon_sym_i32] = ACTIONS(2442), + [anon_sym_u64] = ACTIONS(2442), + [anon_sym_i64] = ACTIONS(2442), + [anon_sym_u128] = ACTIONS(2442), + [anon_sym_i128] = ACTIONS(2442), + [anon_sym_isize] = ACTIONS(2442), + [anon_sym_usize] = ACTIONS(2442), + [anon_sym_f32] = ACTIONS(2442), + [anon_sym_f64] = ACTIONS(2442), + [anon_sym_bool] = ACTIONS(2442), + [anon_sym_str] = ACTIONS(2442), + [anon_sym_char] = ACTIONS(2442), + [anon_sym_DASH] = ACTIONS(2440), + [anon_sym_BANG] = ACTIONS(2440), + [anon_sym_AMP] = ACTIONS(2440), + [anon_sym_PIPE] = ACTIONS(2440), + [anon_sym_LT] = ACTIONS(2440), + [anon_sym_DOT_DOT] = ACTIONS(2440), + [anon_sym_COLON_COLON] = ACTIONS(2440), + [anon_sym_POUND] = ACTIONS(2440), + [anon_sym_SQUOTE] = ACTIONS(2442), + [anon_sym_async] = ACTIONS(2442), + [anon_sym_break] = ACTIONS(2442), + [anon_sym_const] = ACTIONS(2442), + [anon_sym_continue] = ACTIONS(2442), + [anon_sym_default] = ACTIONS(2442), + [anon_sym_enum] = ACTIONS(2442), + [anon_sym_fn] = ACTIONS(2442), + [anon_sym_for] = ACTIONS(2442), + [anon_sym_if] = ACTIONS(2442), + [anon_sym_impl] = ACTIONS(2442), + [anon_sym_let] = ACTIONS(2442), + [anon_sym_loop] = ACTIONS(2442), + [anon_sym_match] = ACTIONS(2442), + [anon_sym_mod] = ACTIONS(2442), + [anon_sym_pub] = ACTIONS(2442), + [anon_sym_return] = ACTIONS(2442), + [anon_sym_static] = ACTIONS(2442), + [anon_sym_struct] = ACTIONS(2442), + [anon_sym_trait] = ACTIONS(2442), + [anon_sym_type] = ACTIONS(2442), + [anon_sym_union] = ACTIONS(2442), + [anon_sym_unsafe] = ACTIONS(2442), + [anon_sym_use] = ACTIONS(2442), + [anon_sym_while] = ACTIONS(2442), + [anon_sym_extern] = ACTIONS(2442), + [anon_sym_yield] = ACTIONS(2442), + [anon_sym_move] = ACTIONS(2442), + [anon_sym_try] = ACTIONS(2442), + [sym_integer_literal] = ACTIONS(2440), + [aux_sym_string_literal_token1] = ACTIONS(2440), + [sym_char_literal] = ACTIONS(2440), + [anon_sym_true] = ACTIONS(2442), + [anon_sym_false] = ACTIONS(2442), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2442), + [sym_super] = ACTIONS(2442), + [sym_crate] = ACTIONS(2442), + [sym_metavariable] = ACTIONS(2440), + [sym__raw_string_literal_start] = ACTIONS(2440), + [sym_float_literal] = ACTIONS(2440), }, - [683] = { - [sym_line_comment] = STATE(683), - [sym_block_comment] = STATE(683), - [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_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(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [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), + [652] = { + [sym_line_comment] = STATE(652), + [sym_block_comment] = STATE(652), + [ts_builtin_sym_end] = ACTIONS(2444), + [sym_identifier] = ACTIONS(2446), + [anon_sym_SEMI] = ACTIONS(2444), + [anon_sym_macro_rules_BANG] = ACTIONS(2444), + [anon_sym_LPAREN] = ACTIONS(2444), + [anon_sym_LBRACK] = ACTIONS(2444), + [anon_sym_LBRACE] = ACTIONS(2444), + [anon_sym_RBRACE] = ACTIONS(2444), + [anon_sym_STAR] = ACTIONS(2444), + [anon_sym_u8] = ACTIONS(2446), + [anon_sym_i8] = ACTIONS(2446), + [anon_sym_u16] = ACTIONS(2446), + [anon_sym_i16] = ACTIONS(2446), + [anon_sym_u32] = ACTIONS(2446), + [anon_sym_i32] = ACTIONS(2446), + [anon_sym_u64] = ACTIONS(2446), + [anon_sym_i64] = ACTIONS(2446), + [anon_sym_u128] = ACTIONS(2446), + [anon_sym_i128] = ACTIONS(2446), + [anon_sym_isize] = ACTIONS(2446), + [anon_sym_usize] = ACTIONS(2446), + [anon_sym_f32] = ACTIONS(2446), + [anon_sym_f64] = ACTIONS(2446), + [anon_sym_bool] = ACTIONS(2446), + [anon_sym_str] = ACTIONS(2446), + [anon_sym_char] = ACTIONS(2446), + [anon_sym_DASH] = ACTIONS(2444), + [anon_sym_BANG] = ACTIONS(2444), + [anon_sym_AMP] = ACTIONS(2444), + [anon_sym_PIPE] = ACTIONS(2444), + [anon_sym_LT] = ACTIONS(2444), + [anon_sym_DOT_DOT] = ACTIONS(2444), + [anon_sym_COLON_COLON] = ACTIONS(2444), + [anon_sym_POUND] = ACTIONS(2444), + [anon_sym_SQUOTE] = ACTIONS(2446), + [anon_sym_async] = ACTIONS(2446), + [anon_sym_break] = ACTIONS(2446), + [anon_sym_const] = ACTIONS(2446), + [anon_sym_continue] = ACTIONS(2446), + [anon_sym_default] = ACTIONS(2446), + [anon_sym_enum] = ACTIONS(2446), + [anon_sym_fn] = ACTIONS(2446), + [anon_sym_for] = ACTIONS(2446), + [anon_sym_if] = ACTIONS(2446), + [anon_sym_impl] = ACTIONS(2446), + [anon_sym_let] = ACTIONS(2446), + [anon_sym_loop] = ACTIONS(2446), + [anon_sym_match] = ACTIONS(2446), + [anon_sym_mod] = ACTIONS(2446), + [anon_sym_pub] = ACTIONS(2446), + [anon_sym_return] = ACTIONS(2446), + [anon_sym_static] = ACTIONS(2446), + [anon_sym_struct] = ACTIONS(2446), + [anon_sym_trait] = ACTIONS(2446), + [anon_sym_type] = ACTIONS(2446), + [anon_sym_union] = ACTIONS(2446), + [anon_sym_unsafe] = ACTIONS(2446), + [anon_sym_use] = ACTIONS(2446), + [anon_sym_while] = ACTIONS(2446), + [anon_sym_extern] = ACTIONS(2446), + [anon_sym_yield] = ACTIONS(2446), + [anon_sym_move] = ACTIONS(2446), + [anon_sym_try] = ACTIONS(2446), + [sym_integer_literal] = ACTIONS(2444), + [aux_sym_string_literal_token1] = ACTIONS(2444), + [sym_char_literal] = ACTIONS(2444), + [anon_sym_true] = ACTIONS(2446), + [anon_sym_false] = ACTIONS(2446), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2446), + [sym_super] = ACTIONS(2446), + [sym_crate] = ACTIONS(2446), + [sym_metavariable] = ACTIONS(2444), + [sym__raw_string_literal_start] = ACTIONS(2444), + [sym_float_literal] = ACTIONS(2444), }, - [684] = { - [sym_line_comment] = STATE(684), - [sym_block_comment] = STATE(684), - [ts_builtin_sym_end] = ACTIONS(2502), - [sym_identifier] = ACTIONS(2504), - [anon_sym_SEMI] = ACTIONS(2502), - [anon_sym_macro_rules_BANG] = ACTIONS(2502), - [anon_sym_LPAREN] = ACTIONS(2502), - [anon_sym_LBRACK] = ACTIONS(2502), - [anon_sym_LBRACE] = ACTIONS(2502), - [anon_sym_RBRACE] = ACTIONS(2502), - [anon_sym_STAR] = ACTIONS(2502), - [anon_sym_u8] = ACTIONS(2504), - [anon_sym_i8] = ACTIONS(2504), - [anon_sym_u16] = ACTIONS(2504), - [anon_sym_i16] = ACTIONS(2504), - [anon_sym_u32] = ACTIONS(2504), - [anon_sym_i32] = ACTIONS(2504), - [anon_sym_u64] = ACTIONS(2504), - [anon_sym_i64] = ACTIONS(2504), - [anon_sym_u128] = ACTIONS(2504), - [anon_sym_i128] = ACTIONS(2504), - [anon_sym_isize] = ACTIONS(2504), - [anon_sym_usize] = ACTIONS(2504), - [anon_sym_f32] = ACTIONS(2504), - [anon_sym_f64] = ACTIONS(2504), - [anon_sym_bool] = ACTIONS(2504), - [anon_sym_str] = ACTIONS(2504), - [anon_sym_char] = ACTIONS(2504), - [anon_sym_DASH] = ACTIONS(2502), - [anon_sym_BANG] = ACTIONS(2502), - [anon_sym_AMP] = ACTIONS(2502), - [anon_sym_PIPE] = ACTIONS(2502), - [anon_sym_LT] = ACTIONS(2502), - [anon_sym_DOT_DOT] = ACTIONS(2502), - [anon_sym_COLON_COLON] = ACTIONS(2502), - [anon_sym_POUND] = ACTIONS(2502), - [anon_sym_SQUOTE] = ACTIONS(2504), - [anon_sym_async] = ACTIONS(2504), - [anon_sym_break] = ACTIONS(2504), - [anon_sym_const] = ACTIONS(2504), - [anon_sym_continue] = ACTIONS(2504), - [anon_sym_default] = ACTIONS(2504), - [anon_sym_enum] = ACTIONS(2504), - [anon_sym_fn] = ACTIONS(2504), - [anon_sym_for] = ACTIONS(2504), - [anon_sym_if] = ACTIONS(2504), - [anon_sym_impl] = ACTIONS(2504), - [anon_sym_let] = ACTIONS(2504), - [anon_sym_loop] = ACTIONS(2504), - [anon_sym_match] = ACTIONS(2504), - [anon_sym_mod] = ACTIONS(2504), - [anon_sym_pub] = ACTIONS(2504), - [anon_sym_return] = ACTIONS(2504), - [anon_sym_static] = ACTIONS(2504), - [anon_sym_struct] = ACTIONS(2504), - [anon_sym_trait] = ACTIONS(2504), - [anon_sym_type] = ACTIONS(2504), - [anon_sym_union] = ACTIONS(2504), - [anon_sym_unsafe] = ACTIONS(2504), - [anon_sym_use] = ACTIONS(2504), - [anon_sym_while] = ACTIONS(2504), - [anon_sym_extern] = ACTIONS(2504), - [anon_sym_yield] = ACTIONS(2504), - [anon_sym_move] = ACTIONS(2504), - [anon_sym_try] = ACTIONS(2504), - [sym_integer_literal] = ACTIONS(2502), - [aux_sym_string_literal_token1] = ACTIONS(2502), - [sym_char_literal] = ACTIONS(2502), - [anon_sym_true] = ACTIONS(2504), - [anon_sym_false] = ACTIONS(2504), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2504), - [sym_super] = ACTIONS(2504), - [sym_crate] = ACTIONS(2504), - [sym_metavariable] = ACTIONS(2502), - [sym__raw_string_literal_start] = ACTIONS(2502), - [sym_float_literal] = ACTIONS(2502), + [653] = { + [sym_line_comment] = STATE(653), + [sym_block_comment] = STATE(653), + [ts_builtin_sym_end] = ACTIONS(2448), + [sym_identifier] = ACTIONS(2450), + [anon_sym_SEMI] = ACTIONS(2448), + [anon_sym_macro_rules_BANG] = ACTIONS(2448), + [anon_sym_LPAREN] = ACTIONS(2448), + [anon_sym_LBRACK] = ACTIONS(2448), + [anon_sym_LBRACE] = ACTIONS(2448), + [anon_sym_RBRACE] = ACTIONS(2448), + [anon_sym_STAR] = ACTIONS(2448), + [anon_sym_u8] = ACTIONS(2450), + [anon_sym_i8] = ACTIONS(2450), + [anon_sym_u16] = ACTIONS(2450), + [anon_sym_i16] = ACTIONS(2450), + [anon_sym_u32] = ACTIONS(2450), + [anon_sym_i32] = ACTIONS(2450), + [anon_sym_u64] = ACTIONS(2450), + [anon_sym_i64] = ACTIONS(2450), + [anon_sym_u128] = ACTIONS(2450), + [anon_sym_i128] = ACTIONS(2450), + [anon_sym_isize] = ACTIONS(2450), + [anon_sym_usize] = ACTIONS(2450), + [anon_sym_f32] = ACTIONS(2450), + [anon_sym_f64] = ACTIONS(2450), + [anon_sym_bool] = ACTIONS(2450), + [anon_sym_str] = ACTIONS(2450), + [anon_sym_char] = ACTIONS(2450), + [anon_sym_DASH] = ACTIONS(2448), + [anon_sym_BANG] = ACTIONS(2448), + [anon_sym_AMP] = ACTIONS(2448), + [anon_sym_PIPE] = ACTIONS(2448), + [anon_sym_LT] = ACTIONS(2448), + [anon_sym_DOT_DOT] = ACTIONS(2448), + [anon_sym_COLON_COLON] = ACTIONS(2448), + [anon_sym_POUND] = ACTIONS(2448), + [anon_sym_SQUOTE] = ACTIONS(2450), + [anon_sym_async] = ACTIONS(2450), + [anon_sym_break] = ACTIONS(2450), + [anon_sym_const] = ACTIONS(2450), + [anon_sym_continue] = ACTIONS(2450), + [anon_sym_default] = ACTIONS(2450), + [anon_sym_enum] = ACTIONS(2450), + [anon_sym_fn] = ACTIONS(2450), + [anon_sym_for] = ACTIONS(2450), + [anon_sym_if] = ACTIONS(2450), + [anon_sym_impl] = ACTIONS(2450), + [anon_sym_let] = ACTIONS(2450), + [anon_sym_loop] = ACTIONS(2450), + [anon_sym_match] = ACTIONS(2450), + [anon_sym_mod] = ACTIONS(2450), + [anon_sym_pub] = ACTIONS(2450), + [anon_sym_return] = ACTIONS(2450), + [anon_sym_static] = ACTIONS(2450), + [anon_sym_struct] = ACTIONS(2450), + [anon_sym_trait] = ACTIONS(2450), + [anon_sym_type] = ACTIONS(2450), + [anon_sym_union] = ACTIONS(2450), + [anon_sym_unsafe] = ACTIONS(2450), + [anon_sym_use] = ACTIONS(2450), + [anon_sym_while] = ACTIONS(2450), + [anon_sym_extern] = ACTIONS(2450), + [anon_sym_yield] = ACTIONS(2450), + [anon_sym_move] = ACTIONS(2450), + [anon_sym_try] = ACTIONS(2450), + [sym_integer_literal] = ACTIONS(2448), + [aux_sym_string_literal_token1] = ACTIONS(2448), + [sym_char_literal] = ACTIONS(2448), + [anon_sym_true] = ACTIONS(2450), + [anon_sym_false] = ACTIONS(2450), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2450), + [sym_super] = ACTIONS(2450), + [sym_crate] = ACTIONS(2450), + [sym_metavariable] = ACTIONS(2448), + [sym__raw_string_literal_start] = ACTIONS(2448), + [sym_float_literal] = ACTIONS(2448), }, - [685] = { - [sym_line_comment] = STATE(685), - [sym_block_comment] = STATE(685), - [ts_builtin_sym_end] = ACTIONS(2506), - [sym_identifier] = ACTIONS(2508), - [anon_sym_SEMI] = ACTIONS(2506), - [anon_sym_macro_rules_BANG] = ACTIONS(2506), - [anon_sym_LPAREN] = ACTIONS(2506), - [anon_sym_LBRACK] = ACTIONS(2506), - [anon_sym_LBRACE] = ACTIONS(2506), - [anon_sym_RBRACE] = ACTIONS(2506), - [anon_sym_STAR] = ACTIONS(2506), - [anon_sym_u8] = ACTIONS(2508), - [anon_sym_i8] = ACTIONS(2508), - [anon_sym_u16] = ACTIONS(2508), - [anon_sym_i16] = ACTIONS(2508), - [anon_sym_u32] = ACTIONS(2508), - [anon_sym_i32] = ACTIONS(2508), - [anon_sym_u64] = ACTIONS(2508), - [anon_sym_i64] = ACTIONS(2508), - [anon_sym_u128] = ACTIONS(2508), - [anon_sym_i128] = ACTIONS(2508), - [anon_sym_isize] = ACTIONS(2508), - [anon_sym_usize] = ACTIONS(2508), - [anon_sym_f32] = ACTIONS(2508), - [anon_sym_f64] = ACTIONS(2508), - [anon_sym_bool] = ACTIONS(2508), - [anon_sym_str] = ACTIONS(2508), - [anon_sym_char] = ACTIONS(2508), - [anon_sym_DASH] = ACTIONS(2506), - [anon_sym_BANG] = ACTIONS(2506), - [anon_sym_AMP] = ACTIONS(2506), - [anon_sym_PIPE] = ACTIONS(2506), - [anon_sym_LT] = ACTIONS(2506), - [anon_sym_DOT_DOT] = ACTIONS(2506), - [anon_sym_COLON_COLON] = ACTIONS(2506), - [anon_sym_POUND] = ACTIONS(2506), - [anon_sym_SQUOTE] = ACTIONS(2508), - [anon_sym_async] = ACTIONS(2508), - [anon_sym_break] = ACTIONS(2508), - [anon_sym_const] = ACTIONS(2508), - [anon_sym_continue] = ACTIONS(2508), - [anon_sym_default] = ACTIONS(2508), - [anon_sym_enum] = ACTIONS(2508), - [anon_sym_fn] = ACTIONS(2508), - [anon_sym_for] = ACTIONS(2508), - [anon_sym_if] = ACTIONS(2508), - [anon_sym_impl] = ACTIONS(2508), - [anon_sym_let] = ACTIONS(2508), - [anon_sym_loop] = ACTIONS(2508), - [anon_sym_match] = ACTIONS(2508), - [anon_sym_mod] = ACTIONS(2508), - [anon_sym_pub] = ACTIONS(2508), - [anon_sym_return] = ACTIONS(2508), - [anon_sym_static] = ACTIONS(2508), - [anon_sym_struct] = ACTIONS(2508), - [anon_sym_trait] = ACTIONS(2508), - [anon_sym_type] = ACTIONS(2508), - [anon_sym_union] = ACTIONS(2508), - [anon_sym_unsafe] = ACTIONS(2508), - [anon_sym_use] = ACTIONS(2508), - [anon_sym_while] = ACTIONS(2508), - [anon_sym_extern] = ACTIONS(2508), - [anon_sym_yield] = ACTIONS(2508), - [anon_sym_move] = ACTIONS(2508), - [anon_sym_try] = ACTIONS(2508), - [sym_integer_literal] = ACTIONS(2506), - [aux_sym_string_literal_token1] = ACTIONS(2506), - [sym_char_literal] = ACTIONS(2506), - [anon_sym_true] = ACTIONS(2508), - [anon_sym_false] = ACTIONS(2508), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2508), - [sym_super] = ACTIONS(2508), - [sym_crate] = ACTIONS(2508), - [sym_metavariable] = ACTIONS(2506), - [sym__raw_string_literal_start] = ACTIONS(2506), - [sym_float_literal] = ACTIONS(2506), + [654] = { + [sym_line_comment] = STATE(654), + [sym_block_comment] = STATE(654), + [ts_builtin_sym_end] = ACTIONS(2452), + [sym_identifier] = ACTIONS(2454), + [anon_sym_SEMI] = ACTIONS(2452), + [anon_sym_macro_rules_BANG] = ACTIONS(2452), + [anon_sym_LPAREN] = ACTIONS(2452), + [anon_sym_LBRACK] = ACTIONS(2452), + [anon_sym_LBRACE] = ACTIONS(2452), + [anon_sym_RBRACE] = ACTIONS(2452), + [anon_sym_STAR] = ACTIONS(2452), + [anon_sym_u8] = ACTIONS(2454), + [anon_sym_i8] = ACTIONS(2454), + [anon_sym_u16] = ACTIONS(2454), + [anon_sym_i16] = ACTIONS(2454), + [anon_sym_u32] = ACTIONS(2454), + [anon_sym_i32] = ACTIONS(2454), + [anon_sym_u64] = ACTIONS(2454), + [anon_sym_i64] = ACTIONS(2454), + [anon_sym_u128] = ACTIONS(2454), + [anon_sym_i128] = ACTIONS(2454), + [anon_sym_isize] = ACTIONS(2454), + [anon_sym_usize] = ACTIONS(2454), + [anon_sym_f32] = ACTIONS(2454), + [anon_sym_f64] = ACTIONS(2454), + [anon_sym_bool] = ACTIONS(2454), + [anon_sym_str] = ACTIONS(2454), + [anon_sym_char] = ACTIONS(2454), + [anon_sym_DASH] = ACTIONS(2452), + [anon_sym_BANG] = ACTIONS(2452), + [anon_sym_AMP] = ACTIONS(2452), + [anon_sym_PIPE] = ACTIONS(2452), + [anon_sym_LT] = ACTIONS(2452), + [anon_sym_DOT_DOT] = ACTIONS(2452), + [anon_sym_COLON_COLON] = ACTIONS(2452), + [anon_sym_POUND] = ACTIONS(2452), + [anon_sym_SQUOTE] = ACTIONS(2454), + [anon_sym_async] = ACTIONS(2454), + [anon_sym_break] = ACTIONS(2454), + [anon_sym_const] = ACTIONS(2454), + [anon_sym_continue] = ACTIONS(2454), + [anon_sym_default] = ACTIONS(2454), + [anon_sym_enum] = ACTIONS(2454), + [anon_sym_fn] = ACTIONS(2454), + [anon_sym_for] = ACTIONS(2454), + [anon_sym_if] = ACTIONS(2454), + [anon_sym_impl] = ACTIONS(2454), + [anon_sym_let] = ACTIONS(2454), + [anon_sym_loop] = ACTIONS(2454), + [anon_sym_match] = ACTIONS(2454), + [anon_sym_mod] = ACTIONS(2454), + [anon_sym_pub] = ACTIONS(2454), + [anon_sym_return] = ACTIONS(2454), + [anon_sym_static] = ACTIONS(2454), + [anon_sym_struct] = ACTIONS(2454), + [anon_sym_trait] = ACTIONS(2454), + [anon_sym_type] = ACTIONS(2454), + [anon_sym_union] = ACTIONS(2454), + [anon_sym_unsafe] = ACTIONS(2454), + [anon_sym_use] = ACTIONS(2454), + [anon_sym_while] = ACTIONS(2454), + [anon_sym_extern] = ACTIONS(2454), + [anon_sym_yield] = ACTIONS(2454), + [anon_sym_move] = ACTIONS(2454), + [anon_sym_try] = ACTIONS(2454), + [sym_integer_literal] = ACTIONS(2452), + [aux_sym_string_literal_token1] = ACTIONS(2452), + [sym_char_literal] = ACTIONS(2452), + [anon_sym_true] = ACTIONS(2454), + [anon_sym_false] = ACTIONS(2454), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2454), + [sym_super] = ACTIONS(2454), + [sym_crate] = ACTIONS(2454), + [sym_metavariable] = ACTIONS(2452), + [sym__raw_string_literal_start] = ACTIONS(2452), + [sym_float_literal] = ACTIONS(2452), }, - [686] = { - [sym_line_comment] = STATE(686), - [sym_block_comment] = STATE(686), - [ts_builtin_sym_end] = ACTIONS(2510), - [sym_identifier] = ACTIONS(2512), - [anon_sym_SEMI] = ACTIONS(2510), - [anon_sym_macro_rules_BANG] = ACTIONS(2510), - [anon_sym_LPAREN] = ACTIONS(2510), - [anon_sym_LBRACK] = ACTIONS(2510), - [anon_sym_LBRACE] = ACTIONS(2510), - [anon_sym_RBRACE] = ACTIONS(2510), - [anon_sym_STAR] = ACTIONS(2510), - [anon_sym_u8] = ACTIONS(2512), - [anon_sym_i8] = ACTIONS(2512), - [anon_sym_u16] = ACTIONS(2512), - [anon_sym_i16] = ACTIONS(2512), - [anon_sym_u32] = ACTIONS(2512), - [anon_sym_i32] = ACTIONS(2512), - [anon_sym_u64] = ACTIONS(2512), - [anon_sym_i64] = ACTIONS(2512), - [anon_sym_u128] = ACTIONS(2512), - [anon_sym_i128] = ACTIONS(2512), - [anon_sym_isize] = ACTIONS(2512), - [anon_sym_usize] = ACTIONS(2512), - [anon_sym_f32] = ACTIONS(2512), - [anon_sym_f64] = ACTIONS(2512), - [anon_sym_bool] = ACTIONS(2512), - [anon_sym_str] = ACTIONS(2512), - [anon_sym_char] = ACTIONS(2512), - [anon_sym_DASH] = ACTIONS(2510), - [anon_sym_BANG] = ACTIONS(2510), - [anon_sym_AMP] = ACTIONS(2510), - [anon_sym_PIPE] = ACTIONS(2510), - [anon_sym_LT] = ACTIONS(2510), - [anon_sym_DOT_DOT] = ACTIONS(2510), - [anon_sym_COLON_COLON] = ACTIONS(2510), - [anon_sym_POUND] = ACTIONS(2510), - [anon_sym_SQUOTE] = ACTIONS(2512), - [anon_sym_async] = ACTIONS(2512), - [anon_sym_break] = ACTIONS(2512), - [anon_sym_const] = ACTIONS(2512), - [anon_sym_continue] = ACTIONS(2512), - [anon_sym_default] = ACTIONS(2512), - [anon_sym_enum] = ACTIONS(2512), - [anon_sym_fn] = ACTIONS(2512), - [anon_sym_for] = ACTIONS(2512), - [anon_sym_if] = ACTIONS(2512), - [anon_sym_impl] = ACTIONS(2512), - [anon_sym_let] = ACTIONS(2512), - [anon_sym_loop] = ACTIONS(2512), - [anon_sym_match] = ACTIONS(2512), - [anon_sym_mod] = ACTIONS(2512), - [anon_sym_pub] = ACTIONS(2512), - [anon_sym_return] = ACTIONS(2512), - [anon_sym_static] = ACTIONS(2512), - [anon_sym_struct] = ACTIONS(2512), - [anon_sym_trait] = ACTIONS(2512), - [anon_sym_type] = ACTIONS(2512), - [anon_sym_union] = ACTIONS(2512), - [anon_sym_unsafe] = ACTIONS(2512), - [anon_sym_use] = ACTIONS(2512), - [anon_sym_while] = ACTIONS(2512), - [anon_sym_extern] = ACTIONS(2512), - [anon_sym_yield] = ACTIONS(2512), - [anon_sym_move] = ACTIONS(2512), - [anon_sym_try] = ACTIONS(2512), - [sym_integer_literal] = ACTIONS(2510), - [aux_sym_string_literal_token1] = ACTIONS(2510), - [sym_char_literal] = ACTIONS(2510), - [anon_sym_true] = ACTIONS(2512), - [anon_sym_false] = ACTIONS(2512), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2512), - [sym_super] = ACTIONS(2512), - [sym_crate] = ACTIONS(2512), - [sym_metavariable] = ACTIONS(2510), - [sym__raw_string_literal_start] = ACTIONS(2510), - [sym_float_literal] = ACTIONS(2510), + [655] = { + [sym_line_comment] = STATE(655), + [sym_block_comment] = STATE(655), + [ts_builtin_sym_end] = ACTIONS(2456), + [sym_identifier] = ACTIONS(2458), + [anon_sym_SEMI] = ACTIONS(2456), + [anon_sym_macro_rules_BANG] = ACTIONS(2456), + [anon_sym_LPAREN] = ACTIONS(2456), + [anon_sym_LBRACK] = ACTIONS(2456), + [anon_sym_LBRACE] = ACTIONS(2456), + [anon_sym_RBRACE] = ACTIONS(2456), + [anon_sym_STAR] = ACTIONS(2456), + [anon_sym_u8] = ACTIONS(2458), + [anon_sym_i8] = ACTIONS(2458), + [anon_sym_u16] = ACTIONS(2458), + [anon_sym_i16] = ACTIONS(2458), + [anon_sym_u32] = ACTIONS(2458), + [anon_sym_i32] = ACTIONS(2458), + [anon_sym_u64] = ACTIONS(2458), + [anon_sym_i64] = ACTIONS(2458), + [anon_sym_u128] = ACTIONS(2458), + [anon_sym_i128] = ACTIONS(2458), + [anon_sym_isize] = ACTIONS(2458), + [anon_sym_usize] = ACTIONS(2458), + [anon_sym_f32] = ACTIONS(2458), + [anon_sym_f64] = ACTIONS(2458), + [anon_sym_bool] = ACTIONS(2458), + [anon_sym_str] = ACTIONS(2458), + [anon_sym_char] = ACTIONS(2458), + [anon_sym_DASH] = ACTIONS(2456), + [anon_sym_BANG] = ACTIONS(2456), + [anon_sym_AMP] = ACTIONS(2456), + [anon_sym_PIPE] = ACTIONS(2456), + [anon_sym_LT] = ACTIONS(2456), + [anon_sym_DOT_DOT] = ACTIONS(2456), + [anon_sym_COLON_COLON] = ACTIONS(2456), + [anon_sym_POUND] = ACTIONS(2456), + [anon_sym_SQUOTE] = ACTIONS(2458), + [anon_sym_async] = ACTIONS(2458), + [anon_sym_break] = ACTIONS(2458), + [anon_sym_const] = ACTIONS(2458), + [anon_sym_continue] = ACTIONS(2458), + [anon_sym_default] = ACTIONS(2458), + [anon_sym_enum] = ACTIONS(2458), + [anon_sym_fn] = ACTIONS(2458), + [anon_sym_for] = ACTIONS(2458), + [anon_sym_if] = ACTIONS(2458), + [anon_sym_impl] = ACTIONS(2458), + [anon_sym_let] = ACTIONS(2458), + [anon_sym_loop] = ACTIONS(2458), + [anon_sym_match] = ACTIONS(2458), + [anon_sym_mod] = ACTIONS(2458), + [anon_sym_pub] = ACTIONS(2458), + [anon_sym_return] = ACTIONS(2458), + [anon_sym_static] = ACTIONS(2458), + [anon_sym_struct] = ACTIONS(2458), + [anon_sym_trait] = ACTIONS(2458), + [anon_sym_type] = ACTIONS(2458), + [anon_sym_union] = ACTIONS(2458), + [anon_sym_unsafe] = ACTIONS(2458), + [anon_sym_use] = ACTIONS(2458), + [anon_sym_while] = ACTIONS(2458), + [anon_sym_extern] = ACTIONS(2458), + [anon_sym_yield] = ACTIONS(2458), + [anon_sym_move] = ACTIONS(2458), + [anon_sym_try] = ACTIONS(2458), + [sym_integer_literal] = ACTIONS(2456), + [aux_sym_string_literal_token1] = ACTIONS(2456), + [sym_char_literal] = ACTIONS(2456), + [anon_sym_true] = ACTIONS(2458), + [anon_sym_false] = ACTIONS(2458), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2458), + [sym_super] = ACTIONS(2458), + [sym_crate] = ACTIONS(2458), + [sym_metavariable] = ACTIONS(2456), + [sym__raw_string_literal_start] = ACTIONS(2456), + [sym_float_literal] = ACTIONS(2456), }, - [687] = { - [sym_line_comment] = STATE(687), - [sym_block_comment] = STATE(687), - [ts_builtin_sym_end] = ACTIONS(2514), - [sym_identifier] = ACTIONS(2516), - [anon_sym_SEMI] = ACTIONS(2514), - [anon_sym_macro_rules_BANG] = ACTIONS(2514), - [anon_sym_LPAREN] = ACTIONS(2514), - [anon_sym_LBRACK] = ACTIONS(2514), - [anon_sym_LBRACE] = ACTIONS(2514), - [anon_sym_RBRACE] = ACTIONS(2514), - [anon_sym_STAR] = ACTIONS(2514), - [anon_sym_u8] = ACTIONS(2516), - [anon_sym_i8] = ACTIONS(2516), - [anon_sym_u16] = ACTIONS(2516), - [anon_sym_i16] = ACTIONS(2516), - [anon_sym_u32] = ACTIONS(2516), - [anon_sym_i32] = ACTIONS(2516), - [anon_sym_u64] = ACTIONS(2516), - [anon_sym_i64] = ACTIONS(2516), - [anon_sym_u128] = ACTIONS(2516), - [anon_sym_i128] = ACTIONS(2516), - [anon_sym_isize] = ACTIONS(2516), - [anon_sym_usize] = ACTIONS(2516), - [anon_sym_f32] = ACTIONS(2516), - [anon_sym_f64] = ACTIONS(2516), - [anon_sym_bool] = ACTIONS(2516), - [anon_sym_str] = ACTIONS(2516), - [anon_sym_char] = ACTIONS(2516), - [anon_sym_DASH] = ACTIONS(2514), - [anon_sym_BANG] = ACTIONS(2514), - [anon_sym_AMP] = ACTIONS(2514), - [anon_sym_PIPE] = ACTIONS(2514), - [anon_sym_LT] = ACTIONS(2514), - [anon_sym_DOT_DOT] = ACTIONS(2514), - [anon_sym_COLON_COLON] = ACTIONS(2514), - [anon_sym_POUND] = ACTIONS(2514), - [anon_sym_SQUOTE] = ACTIONS(2516), - [anon_sym_async] = ACTIONS(2516), - [anon_sym_break] = ACTIONS(2516), - [anon_sym_const] = ACTIONS(2516), - [anon_sym_continue] = ACTIONS(2516), - [anon_sym_default] = ACTIONS(2516), - [anon_sym_enum] = ACTIONS(2516), - [anon_sym_fn] = ACTIONS(2516), - [anon_sym_for] = ACTIONS(2516), - [anon_sym_if] = ACTIONS(2516), - [anon_sym_impl] = ACTIONS(2516), - [anon_sym_let] = ACTIONS(2516), - [anon_sym_loop] = ACTIONS(2516), - [anon_sym_match] = ACTIONS(2516), - [anon_sym_mod] = ACTIONS(2516), - [anon_sym_pub] = ACTIONS(2516), - [anon_sym_return] = ACTIONS(2516), - [anon_sym_static] = ACTIONS(2516), - [anon_sym_struct] = ACTIONS(2516), - [anon_sym_trait] = ACTIONS(2516), - [anon_sym_type] = ACTIONS(2516), - [anon_sym_union] = ACTIONS(2516), - [anon_sym_unsafe] = ACTIONS(2516), - [anon_sym_use] = ACTIONS(2516), - [anon_sym_while] = ACTIONS(2516), - [anon_sym_extern] = ACTIONS(2516), - [anon_sym_yield] = ACTIONS(2516), - [anon_sym_move] = ACTIONS(2516), - [anon_sym_try] = ACTIONS(2516), - [sym_integer_literal] = ACTIONS(2514), - [aux_sym_string_literal_token1] = ACTIONS(2514), - [sym_char_literal] = ACTIONS(2514), - [anon_sym_true] = ACTIONS(2516), - [anon_sym_false] = ACTIONS(2516), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2516), - [sym_super] = ACTIONS(2516), - [sym_crate] = ACTIONS(2516), - [sym_metavariable] = ACTIONS(2514), - [sym__raw_string_literal_start] = ACTIONS(2514), - [sym_float_literal] = ACTIONS(2514), + [656] = { + [sym_line_comment] = STATE(656), + [sym_block_comment] = STATE(656), + [ts_builtin_sym_end] = ACTIONS(2460), + [sym_identifier] = ACTIONS(2462), + [anon_sym_SEMI] = ACTIONS(2460), + [anon_sym_macro_rules_BANG] = ACTIONS(2460), + [anon_sym_LPAREN] = ACTIONS(2460), + [anon_sym_LBRACK] = ACTIONS(2460), + [anon_sym_LBRACE] = ACTIONS(2460), + [anon_sym_RBRACE] = ACTIONS(2460), + [anon_sym_STAR] = ACTIONS(2460), + [anon_sym_u8] = ACTIONS(2462), + [anon_sym_i8] = ACTIONS(2462), + [anon_sym_u16] = ACTIONS(2462), + [anon_sym_i16] = ACTIONS(2462), + [anon_sym_u32] = ACTIONS(2462), + [anon_sym_i32] = ACTIONS(2462), + [anon_sym_u64] = ACTIONS(2462), + [anon_sym_i64] = ACTIONS(2462), + [anon_sym_u128] = ACTIONS(2462), + [anon_sym_i128] = ACTIONS(2462), + [anon_sym_isize] = ACTIONS(2462), + [anon_sym_usize] = ACTIONS(2462), + [anon_sym_f32] = ACTIONS(2462), + [anon_sym_f64] = ACTIONS(2462), + [anon_sym_bool] = ACTIONS(2462), + [anon_sym_str] = ACTIONS(2462), + [anon_sym_char] = ACTIONS(2462), + [anon_sym_DASH] = ACTIONS(2460), + [anon_sym_BANG] = ACTIONS(2460), + [anon_sym_AMP] = ACTIONS(2460), + [anon_sym_PIPE] = ACTIONS(2460), + [anon_sym_LT] = ACTIONS(2460), + [anon_sym_DOT_DOT] = ACTIONS(2460), + [anon_sym_COLON_COLON] = ACTIONS(2460), + [anon_sym_POUND] = ACTIONS(2460), + [anon_sym_SQUOTE] = ACTIONS(2462), + [anon_sym_async] = ACTIONS(2462), + [anon_sym_break] = ACTIONS(2462), + [anon_sym_const] = ACTIONS(2462), + [anon_sym_continue] = ACTIONS(2462), + [anon_sym_default] = ACTIONS(2462), + [anon_sym_enum] = ACTIONS(2462), + [anon_sym_fn] = ACTIONS(2462), + [anon_sym_for] = ACTIONS(2462), + [anon_sym_if] = ACTIONS(2462), + [anon_sym_impl] = ACTIONS(2462), + [anon_sym_let] = ACTIONS(2462), + [anon_sym_loop] = ACTIONS(2462), + [anon_sym_match] = ACTIONS(2462), + [anon_sym_mod] = ACTIONS(2462), + [anon_sym_pub] = ACTIONS(2462), + [anon_sym_return] = ACTIONS(2462), + [anon_sym_static] = ACTIONS(2462), + [anon_sym_struct] = ACTIONS(2462), + [anon_sym_trait] = ACTIONS(2462), + [anon_sym_type] = ACTIONS(2462), + [anon_sym_union] = ACTIONS(2462), + [anon_sym_unsafe] = ACTIONS(2462), + [anon_sym_use] = ACTIONS(2462), + [anon_sym_while] = ACTIONS(2462), + [anon_sym_extern] = ACTIONS(2462), + [anon_sym_yield] = ACTIONS(2462), + [anon_sym_move] = ACTIONS(2462), + [anon_sym_try] = ACTIONS(2462), + [sym_integer_literal] = ACTIONS(2460), + [aux_sym_string_literal_token1] = ACTIONS(2460), + [sym_char_literal] = ACTIONS(2460), + [anon_sym_true] = ACTIONS(2462), + [anon_sym_false] = ACTIONS(2462), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2462), + [sym_super] = ACTIONS(2462), + [sym_crate] = ACTIONS(2462), + [sym_metavariable] = ACTIONS(2460), + [sym__raw_string_literal_start] = ACTIONS(2460), + [sym_float_literal] = ACTIONS(2460), }, - [688] = { - [sym_line_comment] = STATE(688), - [sym_block_comment] = STATE(688), - [ts_builtin_sym_end] = ACTIONS(2518), - [sym_identifier] = ACTIONS(2520), - [anon_sym_SEMI] = ACTIONS(2518), - [anon_sym_macro_rules_BANG] = ACTIONS(2518), - [anon_sym_LPAREN] = ACTIONS(2518), - [anon_sym_LBRACK] = ACTIONS(2518), - [anon_sym_LBRACE] = ACTIONS(2518), - [anon_sym_RBRACE] = ACTIONS(2518), - [anon_sym_STAR] = ACTIONS(2518), - [anon_sym_u8] = ACTIONS(2520), - [anon_sym_i8] = ACTIONS(2520), - [anon_sym_u16] = ACTIONS(2520), - [anon_sym_i16] = ACTIONS(2520), - [anon_sym_u32] = ACTIONS(2520), - [anon_sym_i32] = ACTIONS(2520), - [anon_sym_u64] = ACTIONS(2520), - [anon_sym_i64] = ACTIONS(2520), - [anon_sym_u128] = ACTIONS(2520), - [anon_sym_i128] = ACTIONS(2520), - [anon_sym_isize] = ACTIONS(2520), - [anon_sym_usize] = ACTIONS(2520), - [anon_sym_f32] = ACTIONS(2520), - [anon_sym_f64] = ACTIONS(2520), - [anon_sym_bool] = ACTIONS(2520), - [anon_sym_str] = ACTIONS(2520), - [anon_sym_char] = ACTIONS(2520), - [anon_sym_DASH] = ACTIONS(2518), - [anon_sym_BANG] = ACTIONS(2518), - [anon_sym_AMP] = ACTIONS(2518), - [anon_sym_PIPE] = ACTIONS(2518), - [anon_sym_LT] = ACTIONS(2518), - [anon_sym_DOT_DOT] = ACTIONS(2518), - [anon_sym_COLON_COLON] = ACTIONS(2518), - [anon_sym_POUND] = ACTIONS(2518), - [anon_sym_SQUOTE] = ACTIONS(2520), - [anon_sym_async] = ACTIONS(2520), - [anon_sym_break] = ACTIONS(2520), - [anon_sym_const] = ACTIONS(2520), - [anon_sym_continue] = ACTIONS(2520), - [anon_sym_default] = ACTIONS(2520), - [anon_sym_enum] = ACTIONS(2520), - [anon_sym_fn] = ACTIONS(2520), - [anon_sym_for] = ACTIONS(2520), - [anon_sym_if] = ACTIONS(2520), - [anon_sym_impl] = ACTIONS(2520), - [anon_sym_let] = ACTIONS(2520), - [anon_sym_loop] = ACTIONS(2520), - [anon_sym_match] = ACTIONS(2520), - [anon_sym_mod] = ACTIONS(2520), - [anon_sym_pub] = ACTIONS(2520), - [anon_sym_return] = ACTIONS(2520), - [anon_sym_static] = ACTIONS(2520), - [anon_sym_struct] = ACTIONS(2520), - [anon_sym_trait] = ACTIONS(2520), - [anon_sym_type] = ACTIONS(2520), - [anon_sym_union] = ACTIONS(2520), - [anon_sym_unsafe] = ACTIONS(2520), - [anon_sym_use] = ACTIONS(2520), - [anon_sym_while] = ACTIONS(2520), - [anon_sym_extern] = ACTIONS(2520), - [anon_sym_yield] = ACTIONS(2520), - [anon_sym_move] = ACTIONS(2520), - [anon_sym_try] = ACTIONS(2520), - [sym_integer_literal] = ACTIONS(2518), - [aux_sym_string_literal_token1] = ACTIONS(2518), - [sym_char_literal] = ACTIONS(2518), - [anon_sym_true] = ACTIONS(2520), - [anon_sym_false] = ACTIONS(2520), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2520), - [sym_super] = ACTIONS(2520), - [sym_crate] = ACTIONS(2520), - [sym_metavariable] = ACTIONS(2518), - [sym__raw_string_literal_start] = ACTIONS(2518), - [sym_float_literal] = ACTIONS(2518), + [657] = { + [sym_line_comment] = STATE(657), + [sym_block_comment] = STATE(657), + [ts_builtin_sym_end] = ACTIONS(2464), + [sym_identifier] = ACTIONS(2466), + [anon_sym_SEMI] = ACTIONS(2464), + [anon_sym_macro_rules_BANG] = ACTIONS(2464), + [anon_sym_LPAREN] = ACTIONS(2464), + [anon_sym_LBRACK] = ACTIONS(2464), + [anon_sym_LBRACE] = ACTIONS(2464), + [anon_sym_RBRACE] = ACTIONS(2464), + [anon_sym_STAR] = ACTIONS(2464), + [anon_sym_u8] = ACTIONS(2466), + [anon_sym_i8] = ACTIONS(2466), + [anon_sym_u16] = ACTIONS(2466), + [anon_sym_i16] = ACTIONS(2466), + [anon_sym_u32] = ACTIONS(2466), + [anon_sym_i32] = ACTIONS(2466), + [anon_sym_u64] = ACTIONS(2466), + [anon_sym_i64] = ACTIONS(2466), + [anon_sym_u128] = ACTIONS(2466), + [anon_sym_i128] = ACTIONS(2466), + [anon_sym_isize] = ACTIONS(2466), + [anon_sym_usize] = ACTIONS(2466), + [anon_sym_f32] = ACTIONS(2466), + [anon_sym_f64] = ACTIONS(2466), + [anon_sym_bool] = ACTIONS(2466), + [anon_sym_str] = ACTIONS(2466), + [anon_sym_char] = ACTIONS(2466), + [anon_sym_DASH] = ACTIONS(2464), + [anon_sym_BANG] = ACTIONS(2464), + [anon_sym_AMP] = ACTIONS(2464), + [anon_sym_PIPE] = ACTIONS(2464), + [anon_sym_LT] = ACTIONS(2464), + [anon_sym_DOT_DOT] = ACTIONS(2464), + [anon_sym_COLON_COLON] = ACTIONS(2464), + [anon_sym_POUND] = ACTIONS(2464), + [anon_sym_SQUOTE] = ACTIONS(2466), + [anon_sym_async] = ACTIONS(2466), + [anon_sym_break] = ACTIONS(2466), + [anon_sym_const] = ACTIONS(2466), + [anon_sym_continue] = ACTIONS(2466), + [anon_sym_default] = ACTIONS(2466), + [anon_sym_enum] = ACTIONS(2466), + [anon_sym_fn] = ACTIONS(2466), + [anon_sym_for] = ACTIONS(2466), + [anon_sym_if] = ACTIONS(2466), + [anon_sym_impl] = ACTIONS(2466), + [anon_sym_let] = ACTIONS(2466), + [anon_sym_loop] = ACTIONS(2466), + [anon_sym_match] = ACTIONS(2466), + [anon_sym_mod] = ACTIONS(2466), + [anon_sym_pub] = ACTIONS(2466), + [anon_sym_return] = ACTIONS(2466), + [anon_sym_static] = ACTIONS(2466), + [anon_sym_struct] = ACTIONS(2466), + [anon_sym_trait] = ACTIONS(2466), + [anon_sym_type] = ACTIONS(2466), + [anon_sym_union] = ACTIONS(2466), + [anon_sym_unsafe] = ACTIONS(2466), + [anon_sym_use] = ACTIONS(2466), + [anon_sym_while] = ACTIONS(2466), + [anon_sym_extern] = ACTIONS(2466), + [anon_sym_yield] = ACTIONS(2466), + [anon_sym_move] = ACTIONS(2466), + [anon_sym_try] = ACTIONS(2466), + [sym_integer_literal] = ACTIONS(2464), + [aux_sym_string_literal_token1] = ACTIONS(2464), + [sym_char_literal] = ACTIONS(2464), + [anon_sym_true] = ACTIONS(2466), + [anon_sym_false] = ACTIONS(2466), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2466), + [sym_super] = ACTIONS(2466), + [sym_crate] = ACTIONS(2466), + [sym_metavariable] = ACTIONS(2464), + [sym__raw_string_literal_start] = ACTIONS(2464), + [sym_float_literal] = ACTIONS(2464), }, - [689] = { - [sym_line_comment] = STATE(689), - [sym_block_comment] = STATE(689), - [ts_builtin_sym_end] = ACTIONS(2522), - [sym_identifier] = ACTIONS(2524), - [anon_sym_SEMI] = ACTIONS(2522), - [anon_sym_macro_rules_BANG] = ACTIONS(2522), - [anon_sym_LPAREN] = ACTIONS(2522), - [anon_sym_LBRACK] = ACTIONS(2522), - [anon_sym_LBRACE] = ACTIONS(2522), - [anon_sym_RBRACE] = ACTIONS(2522), - [anon_sym_STAR] = ACTIONS(2522), - [anon_sym_u8] = ACTIONS(2524), - [anon_sym_i8] = ACTIONS(2524), - [anon_sym_u16] = ACTIONS(2524), - [anon_sym_i16] = ACTIONS(2524), - [anon_sym_u32] = ACTIONS(2524), - [anon_sym_i32] = ACTIONS(2524), - [anon_sym_u64] = ACTIONS(2524), - [anon_sym_i64] = ACTIONS(2524), - [anon_sym_u128] = ACTIONS(2524), - [anon_sym_i128] = ACTIONS(2524), - [anon_sym_isize] = ACTIONS(2524), - [anon_sym_usize] = ACTIONS(2524), - [anon_sym_f32] = ACTIONS(2524), - [anon_sym_f64] = ACTIONS(2524), - [anon_sym_bool] = ACTIONS(2524), - [anon_sym_str] = ACTIONS(2524), - [anon_sym_char] = ACTIONS(2524), - [anon_sym_DASH] = ACTIONS(2522), - [anon_sym_BANG] = ACTIONS(2522), - [anon_sym_AMP] = ACTIONS(2522), - [anon_sym_PIPE] = ACTIONS(2522), - [anon_sym_LT] = ACTIONS(2522), - [anon_sym_DOT_DOT] = ACTIONS(2522), - [anon_sym_COLON_COLON] = ACTIONS(2522), - [anon_sym_POUND] = ACTIONS(2522), - [anon_sym_SQUOTE] = ACTIONS(2524), - [anon_sym_async] = ACTIONS(2524), - [anon_sym_break] = ACTIONS(2524), - [anon_sym_const] = ACTIONS(2524), - [anon_sym_continue] = ACTIONS(2524), - [anon_sym_default] = ACTIONS(2524), - [anon_sym_enum] = ACTIONS(2524), - [anon_sym_fn] = ACTIONS(2524), - [anon_sym_for] = ACTIONS(2524), - [anon_sym_if] = ACTIONS(2524), - [anon_sym_impl] = ACTIONS(2524), - [anon_sym_let] = ACTIONS(2524), - [anon_sym_loop] = ACTIONS(2524), - [anon_sym_match] = ACTIONS(2524), - [anon_sym_mod] = ACTIONS(2524), - [anon_sym_pub] = ACTIONS(2524), - [anon_sym_return] = ACTIONS(2524), - [anon_sym_static] = ACTIONS(2524), - [anon_sym_struct] = ACTIONS(2524), - [anon_sym_trait] = ACTIONS(2524), - [anon_sym_type] = ACTIONS(2524), - [anon_sym_union] = ACTIONS(2524), - [anon_sym_unsafe] = ACTIONS(2524), - [anon_sym_use] = ACTIONS(2524), - [anon_sym_while] = ACTIONS(2524), - [anon_sym_extern] = ACTIONS(2524), - [anon_sym_yield] = ACTIONS(2524), - [anon_sym_move] = ACTIONS(2524), - [anon_sym_try] = ACTIONS(2524), - [sym_integer_literal] = ACTIONS(2522), - [aux_sym_string_literal_token1] = ACTIONS(2522), - [sym_char_literal] = ACTIONS(2522), - [anon_sym_true] = ACTIONS(2524), - [anon_sym_false] = ACTIONS(2524), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2524), - [sym_super] = ACTIONS(2524), - [sym_crate] = ACTIONS(2524), - [sym_metavariable] = ACTIONS(2522), - [sym__raw_string_literal_start] = ACTIONS(2522), - [sym_float_literal] = ACTIONS(2522), + [658] = { + [sym_line_comment] = STATE(658), + [sym_block_comment] = STATE(658), + [ts_builtin_sym_end] = ACTIONS(2468), + [sym_identifier] = ACTIONS(2470), + [anon_sym_SEMI] = ACTIONS(2468), + [anon_sym_macro_rules_BANG] = ACTIONS(2468), + [anon_sym_LPAREN] = ACTIONS(2468), + [anon_sym_LBRACK] = ACTIONS(2468), + [anon_sym_LBRACE] = ACTIONS(2468), + [anon_sym_RBRACE] = ACTIONS(2468), + [anon_sym_STAR] = ACTIONS(2468), + [anon_sym_u8] = ACTIONS(2470), + [anon_sym_i8] = ACTIONS(2470), + [anon_sym_u16] = ACTIONS(2470), + [anon_sym_i16] = ACTIONS(2470), + [anon_sym_u32] = ACTIONS(2470), + [anon_sym_i32] = ACTIONS(2470), + [anon_sym_u64] = ACTIONS(2470), + [anon_sym_i64] = ACTIONS(2470), + [anon_sym_u128] = ACTIONS(2470), + [anon_sym_i128] = ACTIONS(2470), + [anon_sym_isize] = ACTIONS(2470), + [anon_sym_usize] = ACTIONS(2470), + [anon_sym_f32] = ACTIONS(2470), + [anon_sym_f64] = ACTIONS(2470), + [anon_sym_bool] = ACTIONS(2470), + [anon_sym_str] = ACTIONS(2470), + [anon_sym_char] = ACTIONS(2470), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_BANG] = ACTIONS(2468), + [anon_sym_AMP] = ACTIONS(2468), + [anon_sym_PIPE] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2468), + [anon_sym_DOT_DOT] = ACTIONS(2468), + [anon_sym_COLON_COLON] = ACTIONS(2468), + [anon_sym_POUND] = ACTIONS(2468), + [anon_sym_SQUOTE] = ACTIONS(2470), + [anon_sym_async] = ACTIONS(2470), + [anon_sym_break] = ACTIONS(2470), + [anon_sym_const] = ACTIONS(2470), + [anon_sym_continue] = ACTIONS(2470), + [anon_sym_default] = ACTIONS(2470), + [anon_sym_enum] = ACTIONS(2470), + [anon_sym_fn] = ACTIONS(2470), + [anon_sym_for] = ACTIONS(2470), + [anon_sym_if] = ACTIONS(2470), + [anon_sym_impl] = ACTIONS(2470), + [anon_sym_let] = ACTIONS(2470), + [anon_sym_loop] = ACTIONS(2470), + [anon_sym_match] = ACTIONS(2470), + [anon_sym_mod] = ACTIONS(2470), + [anon_sym_pub] = ACTIONS(2470), + [anon_sym_return] = ACTIONS(2470), + [anon_sym_static] = ACTIONS(2470), + [anon_sym_struct] = ACTIONS(2470), + [anon_sym_trait] = ACTIONS(2470), + [anon_sym_type] = ACTIONS(2470), + [anon_sym_union] = ACTIONS(2470), + [anon_sym_unsafe] = ACTIONS(2470), + [anon_sym_use] = ACTIONS(2470), + [anon_sym_while] = ACTIONS(2470), + [anon_sym_extern] = ACTIONS(2470), + [anon_sym_yield] = ACTIONS(2470), + [anon_sym_move] = ACTIONS(2470), + [anon_sym_try] = ACTIONS(2470), + [sym_integer_literal] = ACTIONS(2468), + [aux_sym_string_literal_token1] = ACTIONS(2468), + [sym_char_literal] = ACTIONS(2468), + [anon_sym_true] = ACTIONS(2470), + [anon_sym_false] = ACTIONS(2470), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2470), + [sym_super] = ACTIONS(2470), + [sym_crate] = ACTIONS(2470), + [sym_metavariable] = ACTIONS(2468), + [sym__raw_string_literal_start] = ACTIONS(2468), + [sym_float_literal] = ACTIONS(2468), }, - [690] = { - [sym_empty_statement] = STATE(1456), - [sym_macro_definition] = STATE(1456), - [sym_attribute_item] = STATE(1456), - [sym_inner_attribute_item] = STATE(1456), - [sym_mod_item] = STATE(1456), - [sym_foreign_mod_item] = STATE(1456), - [sym_struct_item] = STATE(1456), - [sym_union_item] = STATE(1456), - [sym_enum_item] = STATE(1456), - [sym_extern_crate_declaration] = STATE(1456), - [sym_const_item] = STATE(1456), - [sym_static_item] = STATE(1456), - [sym_type_item] = STATE(1456), - [sym_function_item] = STATE(1456), - [sym_function_signature_item] = STATE(1456), - [sym_function_modifiers] = STATE(3593), - [sym_impl_item] = STATE(1456), - [sym_trait_item] = STATE(1456), - [sym_associated_type] = STATE(1456), - [sym_let_declaration] = STATE(1456), - [sym_use_declaration] = STATE(1456), - [sym_extern_modifier] = STATE(2154), - [sym_visibility_modifier] = STATE(1934), - [sym_bracketed_type] = STATE(3324), - [sym_generic_type_with_turbofish] = STATE(3350), - [sym_macro_invocation] = STATE(1456), - [sym_scoped_identifier] = STATE(3156), - [sym_line_comment] = STATE(690), - [sym_block_comment] = STATE(690), - [aux_sym_declaration_list_repeat1] = STATE(698), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2330), - [anon_sym_SEMI] = ACTIONS(2332), - [anon_sym_macro_rules_BANG] = ACTIONS(2334), - [anon_sym_RBRACE] = ACTIONS(2526), - [anon_sym_u8] = ACTIONS(2338), - [anon_sym_i8] = ACTIONS(2338), - [anon_sym_u16] = ACTIONS(2338), - [anon_sym_i16] = ACTIONS(2338), - [anon_sym_u32] = ACTIONS(2338), - [anon_sym_i32] = ACTIONS(2338), - [anon_sym_u64] = ACTIONS(2338), - [anon_sym_i64] = ACTIONS(2338), - [anon_sym_u128] = ACTIONS(2338), - [anon_sym_i128] = ACTIONS(2338), - [anon_sym_isize] = ACTIONS(2338), - [anon_sym_usize] = ACTIONS(2338), - [anon_sym_f32] = ACTIONS(2338), - [anon_sym_f64] = ACTIONS(2338), - [anon_sym_bool] = ACTIONS(2338), - [anon_sym_str] = ACTIONS(2338), - [anon_sym_char] = ACTIONS(2338), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(2340), - [anon_sym_POUND] = ACTIONS(2342), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(2344), - [anon_sym_default] = ACTIONS(2346), - [anon_sym_enum] = ACTIONS(2348), - [anon_sym_fn] = ACTIONS(2350), - [anon_sym_impl] = ACTIONS(2352), - [anon_sym_let] = ACTIONS(2354), - [anon_sym_mod] = ACTIONS(2356), - [anon_sym_pub] = ACTIONS(67), - [anon_sym_static] = ACTIONS(2358), - [anon_sym_struct] = ACTIONS(2360), - [anon_sym_trait] = ACTIONS(2362), - [anon_sym_type] = ACTIONS(2364), - [anon_sym_union] = ACTIONS(2366), - [anon_sym_unsafe] = ACTIONS(2368), - [anon_sym_use] = ACTIONS(2370), - [anon_sym_extern] = ACTIONS(2372), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2374), - [sym_super] = ACTIONS(2374), - [sym_crate] = ACTIONS(2376), - [sym_metavariable] = ACTIONS(2378), + [659] = { + [sym_line_comment] = STATE(659), + [sym_block_comment] = STATE(659), + [ts_builtin_sym_end] = ACTIONS(2472), + [sym_identifier] = ACTIONS(2474), + [anon_sym_SEMI] = ACTIONS(2472), + [anon_sym_macro_rules_BANG] = ACTIONS(2472), + [anon_sym_LPAREN] = ACTIONS(2472), + [anon_sym_LBRACK] = ACTIONS(2472), + [anon_sym_LBRACE] = ACTIONS(2472), + [anon_sym_RBRACE] = ACTIONS(2472), + [anon_sym_STAR] = ACTIONS(2472), + [anon_sym_u8] = ACTIONS(2474), + [anon_sym_i8] = ACTIONS(2474), + [anon_sym_u16] = ACTIONS(2474), + [anon_sym_i16] = ACTIONS(2474), + [anon_sym_u32] = ACTIONS(2474), + [anon_sym_i32] = ACTIONS(2474), + [anon_sym_u64] = ACTIONS(2474), + [anon_sym_i64] = ACTIONS(2474), + [anon_sym_u128] = ACTIONS(2474), + [anon_sym_i128] = ACTIONS(2474), + [anon_sym_isize] = ACTIONS(2474), + [anon_sym_usize] = ACTIONS(2474), + [anon_sym_f32] = ACTIONS(2474), + [anon_sym_f64] = ACTIONS(2474), + [anon_sym_bool] = ACTIONS(2474), + [anon_sym_str] = ACTIONS(2474), + [anon_sym_char] = ACTIONS(2474), + [anon_sym_DASH] = ACTIONS(2472), + [anon_sym_BANG] = ACTIONS(2472), + [anon_sym_AMP] = ACTIONS(2472), + [anon_sym_PIPE] = ACTIONS(2472), + [anon_sym_LT] = ACTIONS(2472), + [anon_sym_DOT_DOT] = ACTIONS(2472), + [anon_sym_COLON_COLON] = ACTIONS(2472), + [anon_sym_POUND] = ACTIONS(2472), + [anon_sym_SQUOTE] = ACTIONS(2474), + [anon_sym_async] = ACTIONS(2474), + [anon_sym_break] = ACTIONS(2474), + [anon_sym_const] = ACTIONS(2474), + [anon_sym_continue] = ACTIONS(2474), + [anon_sym_default] = ACTIONS(2474), + [anon_sym_enum] = ACTIONS(2474), + [anon_sym_fn] = ACTIONS(2474), + [anon_sym_for] = ACTIONS(2474), + [anon_sym_if] = ACTIONS(2474), + [anon_sym_impl] = ACTIONS(2474), + [anon_sym_let] = ACTIONS(2474), + [anon_sym_loop] = ACTIONS(2474), + [anon_sym_match] = ACTIONS(2474), + [anon_sym_mod] = ACTIONS(2474), + [anon_sym_pub] = ACTIONS(2474), + [anon_sym_return] = ACTIONS(2474), + [anon_sym_static] = ACTIONS(2474), + [anon_sym_struct] = ACTIONS(2474), + [anon_sym_trait] = ACTIONS(2474), + [anon_sym_type] = ACTIONS(2474), + [anon_sym_union] = ACTIONS(2474), + [anon_sym_unsafe] = ACTIONS(2474), + [anon_sym_use] = ACTIONS(2474), + [anon_sym_while] = ACTIONS(2474), + [anon_sym_extern] = ACTIONS(2474), + [anon_sym_yield] = ACTIONS(2474), + [anon_sym_move] = ACTIONS(2474), + [anon_sym_try] = ACTIONS(2474), + [sym_integer_literal] = ACTIONS(2472), + [aux_sym_string_literal_token1] = ACTIONS(2472), + [sym_char_literal] = ACTIONS(2472), + [anon_sym_true] = ACTIONS(2474), + [anon_sym_false] = ACTIONS(2474), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2474), + [sym_super] = ACTIONS(2474), + [sym_crate] = ACTIONS(2474), + [sym_metavariable] = ACTIONS(2472), + [sym__raw_string_literal_start] = ACTIONS(2472), + [sym_float_literal] = ACTIONS(2472), }, - [691] = { - [sym_line_comment] = STATE(691), - [sym_block_comment] = STATE(691), - [ts_builtin_sym_end] = ACTIONS(2528), - [sym_identifier] = ACTIONS(2530), - [anon_sym_SEMI] = ACTIONS(2528), - [anon_sym_macro_rules_BANG] = ACTIONS(2528), - [anon_sym_LPAREN] = ACTIONS(2528), - [anon_sym_LBRACK] = ACTIONS(2528), - [anon_sym_LBRACE] = ACTIONS(2528), - [anon_sym_RBRACE] = ACTIONS(2528), - [anon_sym_STAR] = ACTIONS(2528), - [anon_sym_u8] = ACTIONS(2530), - [anon_sym_i8] = ACTIONS(2530), - [anon_sym_u16] = ACTIONS(2530), - [anon_sym_i16] = ACTIONS(2530), - [anon_sym_u32] = ACTIONS(2530), - [anon_sym_i32] = ACTIONS(2530), - [anon_sym_u64] = ACTIONS(2530), - [anon_sym_i64] = ACTIONS(2530), - [anon_sym_u128] = ACTIONS(2530), - [anon_sym_i128] = ACTIONS(2530), - [anon_sym_isize] = ACTIONS(2530), - [anon_sym_usize] = ACTIONS(2530), - [anon_sym_f32] = ACTIONS(2530), - [anon_sym_f64] = ACTIONS(2530), - [anon_sym_bool] = ACTIONS(2530), - [anon_sym_str] = ACTIONS(2530), - [anon_sym_char] = ACTIONS(2530), - [anon_sym_DASH] = ACTIONS(2528), - [anon_sym_BANG] = ACTIONS(2528), - [anon_sym_AMP] = ACTIONS(2528), - [anon_sym_PIPE] = ACTIONS(2528), - [anon_sym_LT] = ACTIONS(2528), - [anon_sym_DOT_DOT] = ACTIONS(2528), - [anon_sym_COLON_COLON] = ACTIONS(2528), - [anon_sym_POUND] = ACTIONS(2528), - [anon_sym_SQUOTE] = ACTIONS(2530), - [anon_sym_async] = ACTIONS(2530), - [anon_sym_break] = ACTIONS(2530), + [660] = { + [sym_line_comment] = STATE(660), + [sym_block_comment] = STATE(660), + [ts_builtin_sym_end] = ACTIONS(2476), + [sym_identifier] = ACTIONS(2478), + [anon_sym_SEMI] = ACTIONS(2476), + [anon_sym_macro_rules_BANG] = ACTIONS(2476), + [anon_sym_LPAREN] = ACTIONS(2476), + [anon_sym_LBRACK] = ACTIONS(2476), + [anon_sym_LBRACE] = ACTIONS(2476), + [anon_sym_RBRACE] = ACTIONS(2476), + [anon_sym_STAR] = ACTIONS(2476), + [anon_sym_u8] = ACTIONS(2478), + [anon_sym_i8] = ACTIONS(2478), + [anon_sym_u16] = ACTIONS(2478), + [anon_sym_i16] = ACTIONS(2478), + [anon_sym_u32] = ACTIONS(2478), + [anon_sym_i32] = ACTIONS(2478), + [anon_sym_u64] = ACTIONS(2478), + [anon_sym_i64] = ACTIONS(2478), + [anon_sym_u128] = ACTIONS(2478), + [anon_sym_i128] = ACTIONS(2478), + [anon_sym_isize] = ACTIONS(2478), + [anon_sym_usize] = ACTIONS(2478), + [anon_sym_f32] = ACTIONS(2478), + [anon_sym_f64] = ACTIONS(2478), + [anon_sym_bool] = ACTIONS(2478), + [anon_sym_str] = ACTIONS(2478), + [anon_sym_char] = ACTIONS(2478), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_BANG] = ACTIONS(2476), + [anon_sym_AMP] = ACTIONS(2476), + [anon_sym_PIPE] = ACTIONS(2476), + [anon_sym_LT] = ACTIONS(2476), + [anon_sym_DOT_DOT] = ACTIONS(2476), + [anon_sym_COLON_COLON] = ACTIONS(2476), + [anon_sym_POUND] = ACTIONS(2476), + [anon_sym_SQUOTE] = ACTIONS(2478), + [anon_sym_async] = ACTIONS(2478), + [anon_sym_break] = ACTIONS(2478), + [anon_sym_const] = ACTIONS(2478), + [anon_sym_continue] = ACTIONS(2478), + [anon_sym_default] = ACTIONS(2478), + [anon_sym_enum] = ACTIONS(2478), + [anon_sym_fn] = ACTIONS(2478), + [anon_sym_for] = ACTIONS(2478), + [anon_sym_if] = ACTIONS(2478), + [anon_sym_impl] = ACTIONS(2478), + [anon_sym_let] = ACTIONS(2478), + [anon_sym_loop] = ACTIONS(2478), + [anon_sym_match] = ACTIONS(2478), + [anon_sym_mod] = ACTIONS(2478), + [anon_sym_pub] = ACTIONS(2478), + [anon_sym_return] = ACTIONS(2478), + [anon_sym_static] = ACTIONS(2478), + [anon_sym_struct] = ACTIONS(2478), + [anon_sym_trait] = ACTIONS(2478), + [anon_sym_type] = ACTIONS(2478), + [anon_sym_union] = ACTIONS(2478), + [anon_sym_unsafe] = ACTIONS(2478), + [anon_sym_use] = ACTIONS(2478), + [anon_sym_while] = ACTIONS(2478), + [anon_sym_extern] = ACTIONS(2478), + [anon_sym_yield] = ACTIONS(2478), + [anon_sym_move] = ACTIONS(2478), + [anon_sym_try] = ACTIONS(2478), + [sym_integer_literal] = ACTIONS(2476), + [aux_sym_string_literal_token1] = ACTIONS(2476), + [sym_char_literal] = ACTIONS(2476), + [anon_sym_true] = ACTIONS(2478), + [anon_sym_false] = ACTIONS(2478), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2478), + [sym_super] = ACTIONS(2478), + [sym_crate] = ACTIONS(2478), + [sym_metavariable] = ACTIONS(2476), + [sym__raw_string_literal_start] = ACTIONS(2476), + [sym_float_literal] = ACTIONS(2476), + }, + [661] = { + [sym_line_comment] = STATE(661), + [sym_block_comment] = STATE(661), + [ts_builtin_sym_end] = ACTIONS(2480), + [sym_identifier] = ACTIONS(2482), + [anon_sym_SEMI] = ACTIONS(2480), + [anon_sym_macro_rules_BANG] = ACTIONS(2480), + [anon_sym_LPAREN] = ACTIONS(2480), + [anon_sym_LBRACK] = ACTIONS(2480), + [anon_sym_LBRACE] = ACTIONS(2480), + [anon_sym_RBRACE] = ACTIONS(2480), + [anon_sym_STAR] = ACTIONS(2480), + [anon_sym_u8] = ACTIONS(2482), + [anon_sym_i8] = ACTIONS(2482), + [anon_sym_u16] = ACTIONS(2482), + [anon_sym_i16] = ACTIONS(2482), + [anon_sym_u32] = ACTIONS(2482), + [anon_sym_i32] = ACTIONS(2482), + [anon_sym_u64] = ACTIONS(2482), + [anon_sym_i64] = ACTIONS(2482), + [anon_sym_u128] = ACTIONS(2482), + [anon_sym_i128] = ACTIONS(2482), + [anon_sym_isize] = ACTIONS(2482), + [anon_sym_usize] = ACTIONS(2482), + [anon_sym_f32] = ACTIONS(2482), + [anon_sym_f64] = ACTIONS(2482), + [anon_sym_bool] = ACTIONS(2482), + [anon_sym_str] = ACTIONS(2482), + [anon_sym_char] = ACTIONS(2482), + [anon_sym_DASH] = ACTIONS(2480), + [anon_sym_BANG] = ACTIONS(2480), + [anon_sym_AMP] = ACTIONS(2480), + [anon_sym_PIPE] = ACTIONS(2480), + [anon_sym_LT] = ACTIONS(2480), + [anon_sym_DOT_DOT] = ACTIONS(2480), + [anon_sym_COLON_COLON] = ACTIONS(2480), + [anon_sym_POUND] = ACTIONS(2480), + [anon_sym_SQUOTE] = ACTIONS(2482), + [anon_sym_async] = ACTIONS(2482), + [anon_sym_break] = ACTIONS(2482), + [anon_sym_const] = ACTIONS(2482), + [anon_sym_continue] = ACTIONS(2482), + [anon_sym_default] = ACTIONS(2482), + [anon_sym_enum] = ACTIONS(2482), + [anon_sym_fn] = ACTIONS(2482), + [anon_sym_for] = ACTIONS(2482), + [anon_sym_if] = ACTIONS(2482), + [anon_sym_impl] = ACTIONS(2482), + [anon_sym_let] = ACTIONS(2482), + [anon_sym_loop] = ACTIONS(2482), + [anon_sym_match] = ACTIONS(2482), + [anon_sym_mod] = ACTIONS(2482), + [anon_sym_pub] = ACTIONS(2482), + [anon_sym_return] = ACTIONS(2482), + [anon_sym_static] = ACTIONS(2482), + [anon_sym_struct] = ACTIONS(2482), + [anon_sym_trait] = ACTIONS(2482), + [anon_sym_type] = ACTIONS(2482), + [anon_sym_union] = ACTIONS(2482), + [anon_sym_unsafe] = ACTIONS(2482), + [anon_sym_use] = ACTIONS(2482), + [anon_sym_while] = ACTIONS(2482), + [anon_sym_extern] = ACTIONS(2482), + [anon_sym_yield] = ACTIONS(2482), + [anon_sym_move] = ACTIONS(2482), + [anon_sym_try] = ACTIONS(2482), + [sym_integer_literal] = ACTIONS(2480), + [aux_sym_string_literal_token1] = ACTIONS(2480), + [sym_char_literal] = ACTIONS(2480), + [anon_sym_true] = ACTIONS(2482), + [anon_sym_false] = ACTIONS(2482), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2482), + [sym_super] = ACTIONS(2482), + [sym_crate] = ACTIONS(2482), + [sym_metavariable] = ACTIONS(2480), + [sym__raw_string_literal_start] = ACTIONS(2480), + [sym_float_literal] = ACTIONS(2480), + }, + [662] = { + [sym_line_comment] = STATE(662), + [sym_block_comment] = STATE(662), + [ts_builtin_sym_end] = ACTIONS(2484), + [sym_identifier] = ACTIONS(2486), + [anon_sym_SEMI] = ACTIONS(2484), + [anon_sym_macro_rules_BANG] = ACTIONS(2484), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(2484), + [anon_sym_LBRACE] = ACTIONS(2484), + [anon_sym_RBRACE] = ACTIONS(2484), + [anon_sym_STAR] = ACTIONS(2484), + [anon_sym_u8] = ACTIONS(2486), + [anon_sym_i8] = ACTIONS(2486), + [anon_sym_u16] = ACTIONS(2486), + [anon_sym_i16] = ACTIONS(2486), + [anon_sym_u32] = ACTIONS(2486), + [anon_sym_i32] = ACTIONS(2486), + [anon_sym_u64] = ACTIONS(2486), + [anon_sym_i64] = ACTIONS(2486), + [anon_sym_u128] = ACTIONS(2486), + [anon_sym_i128] = ACTIONS(2486), + [anon_sym_isize] = ACTIONS(2486), + [anon_sym_usize] = ACTIONS(2486), + [anon_sym_f32] = ACTIONS(2486), + [anon_sym_f64] = ACTIONS(2486), + [anon_sym_bool] = ACTIONS(2486), + [anon_sym_str] = ACTIONS(2486), + [anon_sym_char] = ACTIONS(2486), + [anon_sym_DASH] = ACTIONS(2484), + [anon_sym_BANG] = ACTIONS(2484), + [anon_sym_AMP] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2484), + [anon_sym_LT] = ACTIONS(2484), + [anon_sym_DOT_DOT] = ACTIONS(2484), + [anon_sym_COLON_COLON] = ACTIONS(2484), + [anon_sym_POUND] = ACTIONS(2484), + [anon_sym_SQUOTE] = ACTIONS(2486), + [anon_sym_async] = ACTIONS(2486), + [anon_sym_break] = ACTIONS(2486), + [anon_sym_const] = ACTIONS(2486), + [anon_sym_continue] = ACTIONS(2486), + [anon_sym_default] = ACTIONS(2486), + [anon_sym_enum] = ACTIONS(2486), + [anon_sym_fn] = ACTIONS(2486), + [anon_sym_for] = ACTIONS(2486), + [anon_sym_if] = ACTIONS(2486), + [anon_sym_impl] = ACTIONS(2486), + [anon_sym_let] = ACTIONS(2486), + [anon_sym_loop] = ACTIONS(2486), + [anon_sym_match] = ACTIONS(2486), + [anon_sym_mod] = ACTIONS(2486), + [anon_sym_pub] = ACTIONS(2486), + [anon_sym_return] = ACTIONS(2486), + [anon_sym_static] = ACTIONS(2486), + [anon_sym_struct] = ACTIONS(2486), + [anon_sym_trait] = ACTIONS(2486), + [anon_sym_type] = ACTIONS(2486), + [anon_sym_union] = ACTIONS(2486), + [anon_sym_unsafe] = ACTIONS(2486), + [anon_sym_use] = ACTIONS(2486), + [anon_sym_while] = ACTIONS(2486), + [anon_sym_extern] = ACTIONS(2486), + [anon_sym_yield] = ACTIONS(2486), + [anon_sym_move] = ACTIONS(2486), + [anon_sym_try] = ACTIONS(2486), + [sym_integer_literal] = ACTIONS(2484), + [aux_sym_string_literal_token1] = ACTIONS(2484), + [sym_char_literal] = ACTIONS(2484), + [anon_sym_true] = ACTIONS(2486), + [anon_sym_false] = ACTIONS(2486), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2486), + [sym_super] = ACTIONS(2486), + [sym_crate] = ACTIONS(2486), + [sym_metavariable] = ACTIONS(2484), + [sym__raw_string_literal_start] = ACTIONS(2484), + [sym_float_literal] = ACTIONS(2484), + }, + [663] = { + [sym_line_comment] = STATE(663), + [sym_block_comment] = STATE(663), + [ts_builtin_sym_end] = ACTIONS(2488), + [sym_identifier] = ACTIONS(2490), + [anon_sym_SEMI] = ACTIONS(2488), + [anon_sym_macro_rules_BANG] = ACTIONS(2488), + [anon_sym_LPAREN] = ACTIONS(2488), + [anon_sym_LBRACK] = ACTIONS(2488), + [anon_sym_LBRACE] = ACTIONS(2488), + [anon_sym_RBRACE] = ACTIONS(2488), + [anon_sym_STAR] = ACTIONS(2488), + [anon_sym_u8] = ACTIONS(2490), + [anon_sym_i8] = ACTIONS(2490), + [anon_sym_u16] = ACTIONS(2490), + [anon_sym_i16] = ACTIONS(2490), + [anon_sym_u32] = ACTIONS(2490), + [anon_sym_i32] = ACTIONS(2490), + [anon_sym_u64] = ACTIONS(2490), + [anon_sym_i64] = ACTIONS(2490), + [anon_sym_u128] = ACTIONS(2490), + [anon_sym_i128] = ACTIONS(2490), + [anon_sym_isize] = ACTIONS(2490), + [anon_sym_usize] = ACTIONS(2490), + [anon_sym_f32] = ACTIONS(2490), + [anon_sym_f64] = ACTIONS(2490), + [anon_sym_bool] = ACTIONS(2490), + [anon_sym_str] = ACTIONS(2490), + [anon_sym_char] = ACTIONS(2490), + [anon_sym_DASH] = ACTIONS(2488), + [anon_sym_BANG] = ACTIONS(2488), + [anon_sym_AMP] = ACTIONS(2488), + [anon_sym_PIPE] = ACTIONS(2488), + [anon_sym_LT] = ACTIONS(2488), + [anon_sym_DOT_DOT] = ACTIONS(2488), + [anon_sym_COLON_COLON] = ACTIONS(2488), + [anon_sym_POUND] = ACTIONS(2488), + [anon_sym_SQUOTE] = ACTIONS(2490), + [anon_sym_async] = ACTIONS(2490), + [anon_sym_break] = ACTIONS(2490), + [anon_sym_const] = ACTIONS(2490), + [anon_sym_continue] = ACTIONS(2490), + [anon_sym_default] = ACTIONS(2490), + [anon_sym_enum] = ACTIONS(2490), + [anon_sym_fn] = ACTIONS(2490), + [anon_sym_for] = ACTIONS(2490), + [anon_sym_if] = ACTIONS(2490), + [anon_sym_impl] = ACTIONS(2490), + [anon_sym_let] = ACTIONS(2490), + [anon_sym_loop] = ACTIONS(2490), + [anon_sym_match] = ACTIONS(2490), + [anon_sym_mod] = ACTIONS(2490), + [anon_sym_pub] = ACTIONS(2490), + [anon_sym_return] = ACTIONS(2490), + [anon_sym_static] = ACTIONS(2490), + [anon_sym_struct] = ACTIONS(2490), + [anon_sym_trait] = ACTIONS(2490), + [anon_sym_type] = ACTIONS(2490), + [anon_sym_union] = ACTIONS(2490), + [anon_sym_unsafe] = ACTIONS(2490), + [anon_sym_use] = ACTIONS(2490), + [anon_sym_while] = ACTIONS(2490), + [anon_sym_extern] = ACTIONS(2490), + [anon_sym_yield] = ACTIONS(2490), + [anon_sym_move] = ACTIONS(2490), + [anon_sym_try] = ACTIONS(2490), + [sym_integer_literal] = ACTIONS(2488), + [aux_sym_string_literal_token1] = ACTIONS(2488), + [sym_char_literal] = ACTIONS(2488), + [anon_sym_true] = ACTIONS(2490), + [anon_sym_false] = ACTIONS(2490), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2490), + [sym_super] = ACTIONS(2490), + [sym_crate] = ACTIONS(2490), + [sym_metavariable] = ACTIONS(2488), + [sym__raw_string_literal_start] = ACTIONS(2488), + [sym_float_literal] = ACTIONS(2488), + }, + [664] = { + [sym_line_comment] = STATE(664), + [sym_block_comment] = STATE(664), + [ts_builtin_sym_end] = ACTIONS(2492), + [sym_identifier] = ACTIONS(2494), + [anon_sym_SEMI] = ACTIONS(2492), + [anon_sym_macro_rules_BANG] = ACTIONS(2492), + [anon_sym_LPAREN] = ACTIONS(2492), + [anon_sym_LBRACK] = ACTIONS(2492), + [anon_sym_LBRACE] = ACTIONS(2492), + [anon_sym_RBRACE] = ACTIONS(2492), + [anon_sym_STAR] = ACTIONS(2492), + [anon_sym_u8] = ACTIONS(2494), + [anon_sym_i8] = ACTIONS(2494), + [anon_sym_u16] = ACTIONS(2494), + [anon_sym_i16] = ACTIONS(2494), + [anon_sym_u32] = ACTIONS(2494), + [anon_sym_i32] = ACTIONS(2494), + [anon_sym_u64] = ACTIONS(2494), + [anon_sym_i64] = ACTIONS(2494), + [anon_sym_u128] = ACTIONS(2494), + [anon_sym_i128] = ACTIONS(2494), + [anon_sym_isize] = ACTIONS(2494), + [anon_sym_usize] = ACTIONS(2494), + [anon_sym_f32] = ACTIONS(2494), + [anon_sym_f64] = ACTIONS(2494), + [anon_sym_bool] = ACTIONS(2494), + [anon_sym_str] = ACTIONS(2494), + [anon_sym_char] = ACTIONS(2494), + [anon_sym_DASH] = ACTIONS(2492), + [anon_sym_BANG] = ACTIONS(2492), + [anon_sym_AMP] = ACTIONS(2492), + [anon_sym_PIPE] = ACTIONS(2492), + [anon_sym_LT] = ACTIONS(2492), + [anon_sym_DOT_DOT] = ACTIONS(2492), + [anon_sym_COLON_COLON] = ACTIONS(2492), + [anon_sym_POUND] = ACTIONS(2492), + [anon_sym_SQUOTE] = ACTIONS(2494), + [anon_sym_async] = ACTIONS(2494), + [anon_sym_break] = ACTIONS(2494), + [anon_sym_const] = ACTIONS(2494), + [anon_sym_continue] = ACTIONS(2494), + [anon_sym_default] = ACTIONS(2494), + [anon_sym_enum] = ACTIONS(2494), + [anon_sym_fn] = ACTIONS(2494), + [anon_sym_for] = ACTIONS(2494), + [anon_sym_if] = ACTIONS(2494), + [anon_sym_impl] = ACTIONS(2494), + [anon_sym_let] = ACTIONS(2494), + [anon_sym_loop] = ACTIONS(2494), + [anon_sym_match] = ACTIONS(2494), + [anon_sym_mod] = ACTIONS(2494), + [anon_sym_pub] = ACTIONS(2494), + [anon_sym_return] = ACTIONS(2494), + [anon_sym_static] = ACTIONS(2494), + [anon_sym_struct] = ACTIONS(2494), + [anon_sym_trait] = ACTIONS(2494), + [anon_sym_type] = ACTIONS(2494), + [anon_sym_union] = ACTIONS(2494), + [anon_sym_unsafe] = ACTIONS(2494), + [anon_sym_use] = ACTIONS(2494), + [anon_sym_while] = ACTIONS(2494), + [anon_sym_extern] = ACTIONS(2494), + [anon_sym_yield] = ACTIONS(2494), + [anon_sym_move] = ACTIONS(2494), + [anon_sym_try] = ACTIONS(2494), + [sym_integer_literal] = ACTIONS(2492), + [aux_sym_string_literal_token1] = ACTIONS(2492), + [sym_char_literal] = ACTIONS(2492), + [anon_sym_true] = ACTIONS(2494), + [anon_sym_false] = ACTIONS(2494), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2494), + [sym_super] = ACTIONS(2494), + [sym_crate] = ACTIONS(2494), + [sym_metavariable] = ACTIONS(2492), + [sym__raw_string_literal_start] = ACTIONS(2492), + [sym_float_literal] = ACTIONS(2492), + }, + [665] = { + [sym_line_comment] = STATE(665), + [sym_block_comment] = STATE(665), + [ts_builtin_sym_end] = ACTIONS(2496), + [sym_identifier] = ACTIONS(2498), + [anon_sym_SEMI] = ACTIONS(2496), + [anon_sym_macro_rules_BANG] = ACTIONS(2496), + [anon_sym_LPAREN] = ACTIONS(2496), + [anon_sym_LBRACK] = ACTIONS(2496), + [anon_sym_LBRACE] = ACTIONS(2496), + [anon_sym_RBRACE] = ACTIONS(2496), + [anon_sym_STAR] = ACTIONS(2496), + [anon_sym_u8] = ACTIONS(2498), + [anon_sym_i8] = ACTIONS(2498), + [anon_sym_u16] = ACTIONS(2498), + [anon_sym_i16] = ACTIONS(2498), + [anon_sym_u32] = ACTIONS(2498), + [anon_sym_i32] = ACTIONS(2498), + [anon_sym_u64] = ACTIONS(2498), + [anon_sym_i64] = ACTIONS(2498), + [anon_sym_u128] = ACTIONS(2498), + [anon_sym_i128] = ACTIONS(2498), + [anon_sym_isize] = ACTIONS(2498), + [anon_sym_usize] = ACTIONS(2498), + [anon_sym_f32] = ACTIONS(2498), + [anon_sym_f64] = ACTIONS(2498), + [anon_sym_bool] = ACTIONS(2498), + [anon_sym_str] = ACTIONS(2498), + [anon_sym_char] = ACTIONS(2498), + [anon_sym_DASH] = ACTIONS(2496), + [anon_sym_BANG] = ACTIONS(2496), + [anon_sym_AMP] = ACTIONS(2496), + [anon_sym_PIPE] = ACTIONS(2496), + [anon_sym_LT] = ACTIONS(2496), + [anon_sym_DOT_DOT] = ACTIONS(2496), + [anon_sym_COLON_COLON] = ACTIONS(2496), + [anon_sym_POUND] = ACTIONS(2496), + [anon_sym_SQUOTE] = ACTIONS(2498), + [anon_sym_async] = ACTIONS(2498), + [anon_sym_break] = ACTIONS(2498), + [anon_sym_const] = ACTIONS(2498), + [anon_sym_continue] = ACTIONS(2498), + [anon_sym_default] = ACTIONS(2498), + [anon_sym_enum] = ACTIONS(2498), + [anon_sym_fn] = ACTIONS(2498), + [anon_sym_for] = ACTIONS(2498), + [anon_sym_if] = ACTIONS(2498), + [anon_sym_impl] = ACTIONS(2498), + [anon_sym_let] = ACTIONS(2498), + [anon_sym_loop] = ACTIONS(2498), + [anon_sym_match] = ACTIONS(2498), + [anon_sym_mod] = ACTIONS(2498), + [anon_sym_pub] = ACTIONS(2498), + [anon_sym_return] = ACTIONS(2498), + [anon_sym_static] = ACTIONS(2498), + [anon_sym_struct] = ACTIONS(2498), + [anon_sym_trait] = ACTIONS(2498), + [anon_sym_type] = ACTIONS(2498), + [anon_sym_union] = ACTIONS(2498), + [anon_sym_unsafe] = ACTIONS(2498), + [anon_sym_use] = ACTIONS(2498), + [anon_sym_while] = ACTIONS(2498), + [anon_sym_extern] = ACTIONS(2498), + [anon_sym_yield] = ACTIONS(2498), + [anon_sym_move] = ACTIONS(2498), + [anon_sym_try] = ACTIONS(2498), + [sym_integer_literal] = ACTIONS(2496), + [aux_sym_string_literal_token1] = ACTIONS(2496), + [sym_char_literal] = ACTIONS(2496), + [anon_sym_true] = ACTIONS(2498), + [anon_sym_false] = ACTIONS(2498), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2498), + [sym_super] = ACTIONS(2498), + [sym_crate] = ACTIONS(2498), + [sym_metavariable] = ACTIONS(2496), + [sym__raw_string_literal_start] = ACTIONS(2496), + [sym_float_literal] = ACTIONS(2496), + }, + [666] = { + [sym_line_comment] = STATE(666), + [sym_block_comment] = STATE(666), + [ts_builtin_sym_end] = ACTIONS(2500), + [sym_identifier] = ACTIONS(2502), + [anon_sym_SEMI] = ACTIONS(2500), + [anon_sym_macro_rules_BANG] = ACTIONS(2500), + [anon_sym_LPAREN] = ACTIONS(2500), + [anon_sym_LBRACK] = ACTIONS(2500), + [anon_sym_LBRACE] = ACTIONS(2500), + [anon_sym_RBRACE] = ACTIONS(2500), + [anon_sym_STAR] = ACTIONS(2500), + [anon_sym_u8] = ACTIONS(2502), + [anon_sym_i8] = ACTIONS(2502), + [anon_sym_u16] = ACTIONS(2502), + [anon_sym_i16] = ACTIONS(2502), + [anon_sym_u32] = ACTIONS(2502), + [anon_sym_i32] = ACTIONS(2502), + [anon_sym_u64] = ACTIONS(2502), + [anon_sym_i64] = ACTIONS(2502), + [anon_sym_u128] = ACTIONS(2502), + [anon_sym_i128] = ACTIONS(2502), + [anon_sym_isize] = ACTIONS(2502), + [anon_sym_usize] = ACTIONS(2502), + [anon_sym_f32] = ACTIONS(2502), + [anon_sym_f64] = ACTIONS(2502), + [anon_sym_bool] = ACTIONS(2502), + [anon_sym_str] = ACTIONS(2502), + [anon_sym_char] = ACTIONS(2502), + [anon_sym_DASH] = ACTIONS(2500), + [anon_sym_BANG] = ACTIONS(2500), + [anon_sym_AMP] = ACTIONS(2500), + [anon_sym_PIPE] = ACTIONS(2500), + [anon_sym_LT] = ACTIONS(2500), + [anon_sym_DOT_DOT] = ACTIONS(2500), + [anon_sym_COLON_COLON] = ACTIONS(2500), + [anon_sym_POUND] = ACTIONS(2500), + [anon_sym_SQUOTE] = ACTIONS(2502), + [anon_sym_async] = ACTIONS(2502), + [anon_sym_break] = ACTIONS(2502), + [anon_sym_const] = ACTIONS(2502), + [anon_sym_continue] = ACTIONS(2502), + [anon_sym_default] = ACTIONS(2502), + [anon_sym_enum] = ACTIONS(2502), + [anon_sym_fn] = ACTIONS(2502), + [anon_sym_for] = ACTIONS(2502), + [anon_sym_if] = ACTIONS(2502), + [anon_sym_impl] = ACTIONS(2502), + [anon_sym_let] = ACTIONS(2502), + [anon_sym_loop] = ACTIONS(2502), + [anon_sym_match] = ACTIONS(2502), + [anon_sym_mod] = ACTIONS(2502), + [anon_sym_pub] = ACTIONS(2502), + [anon_sym_return] = ACTIONS(2502), + [anon_sym_static] = ACTIONS(2502), + [anon_sym_struct] = ACTIONS(2502), + [anon_sym_trait] = ACTIONS(2502), + [anon_sym_type] = ACTIONS(2502), + [anon_sym_union] = ACTIONS(2502), + [anon_sym_unsafe] = ACTIONS(2502), + [anon_sym_use] = ACTIONS(2502), + [anon_sym_while] = ACTIONS(2502), + [anon_sym_extern] = ACTIONS(2502), + [anon_sym_yield] = ACTIONS(2502), + [anon_sym_move] = ACTIONS(2502), + [anon_sym_try] = ACTIONS(2502), + [sym_integer_literal] = ACTIONS(2500), + [aux_sym_string_literal_token1] = ACTIONS(2500), + [sym_char_literal] = ACTIONS(2500), + [anon_sym_true] = ACTIONS(2502), + [anon_sym_false] = ACTIONS(2502), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2502), + [sym_super] = ACTIONS(2502), + [sym_crate] = ACTIONS(2502), + [sym_metavariable] = ACTIONS(2500), + [sym__raw_string_literal_start] = ACTIONS(2500), + [sym_float_literal] = ACTIONS(2500), + }, + [667] = { + [sym_empty_statement] = STATE(1389), + [sym_macro_definition] = STATE(1389), + [sym_attribute_item] = STATE(1389), + [sym_inner_attribute_item] = STATE(1389), + [sym_mod_item] = STATE(1389), + [sym_foreign_mod_item] = STATE(1389), + [sym_struct_item] = STATE(1389), + [sym_union_item] = STATE(1389), + [sym_enum_item] = STATE(1389), + [sym_extern_crate_declaration] = STATE(1389), + [sym_const_item] = STATE(1389), + [sym_static_item] = STATE(1389), + [sym_type_item] = STATE(1389), + [sym_function_item] = STATE(1389), + [sym_function_signature_item] = STATE(1389), + [sym_function_modifiers] = STATE(3601), + [sym_impl_item] = STATE(1389), + [sym_trait_item] = STATE(1389), + [sym_associated_type] = STATE(1389), + [sym_let_declaration] = STATE(1389), + [sym_use_declaration] = STATE(1389), + [sym_extern_modifier] = STATE(2140), + [sym_visibility_modifier] = STATE(1933), + [sym_bracketed_type] = STATE(3312), + [sym_generic_type_with_turbofish] = STATE(3351), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(3243), + [sym_line_comment] = STATE(667), + [sym_block_comment] = STATE(667), + [aux_sym_declaration_list_repeat1] = STATE(667), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2504), + [anon_sym_SEMI] = ACTIONS(2507), + [anon_sym_macro_rules_BANG] = ACTIONS(2510), + [anon_sym_RBRACE] = 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_LT] = ACTIONS(2518), + [anon_sym_COLON_COLON] = ACTIONS(2521), + [anon_sym_POUND] = ACTIONS(2524), + [anon_sym_async] = ACTIONS(2527), [anon_sym_const] = ACTIONS(2530), - [anon_sym_continue] = ACTIONS(2530), - [anon_sym_default] = ACTIONS(2530), - [anon_sym_enum] = ACTIONS(2530), - [anon_sym_fn] = ACTIONS(2530), - [anon_sym_for] = ACTIONS(2530), - [anon_sym_if] = ACTIONS(2530), - [anon_sym_impl] = ACTIONS(2530), - [anon_sym_let] = ACTIONS(2530), - [anon_sym_loop] = ACTIONS(2530), - [anon_sym_match] = ACTIONS(2530), - [anon_sym_mod] = ACTIONS(2530), - [anon_sym_pub] = ACTIONS(2530), - [anon_sym_return] = ACTIONS(2530), - [anon_sym_static] = ACTIONS(2530), - [anon_sym_struct] = ACTIONS(2530), - [anon_sym_trait] = ACTIONS(2530), - [anon_sym_type] = ACTIONS(2530), - [anon_sym_union] = ACTIONS(2530), - [anon_sym_unsafe] = ACTIONS(2530), - [anon_sym_use] = ACTIONS(2530), - [anon_sym_while] = ACTIONS(2530), - [anon_sym_extern] = ACTIONS(2530), - [anon_sym_yield] = ACTIONS(2530), - [anon_sym_move] = ACTIONS(2530), - [anon_sym_try] = ACTIONS(2530), - [sym_integer_literal] = ACTIONS(2528), - [aux_sym_string_literal_token1] = ACTIONS(2528), - [sym_char_literal] = ACTIONS(2528), - [anon_sym_true] = ACTIONS(2530), - [anon_sym_false] = ACTIONS(2530), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2530), - [sym_super] = ACTIONS(2530), - [sym_crate] = ACTIONS(2530), - [sym_metavariable] = ACTIONS(2528), - [sym__raw_string_literal_start] = ACTIONS(2528), - [sym_float_literal] = ACTIONS(2528), + [anon_sym_default] = ACTIONS(2533), + [anon_sym_enum] = ACTIONS(2536), + [anon_sym_fn] = ACTIONS(2539), + [anon_sym_impl] = ACTIONS(2542), + [anon_sym_let] = ACTIONS(2545), + [anon_sym_mod] = ACTIONS(2548), + [anon_sym_pub] = ACTIONS(2551), + [anon_sym_static] = ACTIONS(2554), + [anon_sym_struct] = ACTIONS(2557), + [anon_sym_trait] = ACTIONS(2560), + [anon_sym_type] = ACTIONS(2563), + [anon_sym_union] = ACTIONS(2566), + [anon_sym_unsafe] = ACTIONS(2569), + [anon_sym_use] = ACTIONS(2572), + [anon_sym_extern] = ACTIONS(2575), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2578), + [sym_super] = ACTIONS(2578), + [sym_crate] = ACTIONS(2581), + [sym_metavariable] = ACTIONS(2584), }, - [692] = { - [sym_empty_statement] = STATE(1456), - [sym_macro_definition] = STATE(1456), - [sym_attribute_item] = STATE(1456), - [sym_inner_attribute_item] = STATE(1456), - [sym_mod_item] = STATE(1456), - [sym_foreign_mod_item] = STATE(1456), - [sym_struct_item] = STATE(1456), - [sym_union_item] = STATE(1456), - [sym_enum_item] = STATE(1456), - [sym_extern_crate_declaration] = STATE(1456), - [sym_const_item] = STATE(1456), - [sym_static_item] = STATE(1456), - [sym_type_item] = STATE(1456), - [sym_function_item] = STATE(1456), - [sym_function_signature_item] = STATE(1456), - [sym_function_modifiers] = STATE(3593), - [sym_impl_item] = STATE(1456), - [sym_trait_item] = STATE(1456), - [sym_associated_type] = STATE(1456), - [sym_let_declaration] = STATE(1456), - [sym_use_declaration] = STATE(1456), - [sym_extern_modifier] = STATE(2154), - [sym_visibility_modifier] = STATE(1934), - [sym_bracketed_type] = STATE(3324), - [sym_generic_type_with_turbofish] = STATE(3350), - [sym_macro_invocation] = STATE(1456), - [sym_scoped_identifier] = STATE(3156), - [sym_line_comment] = STATE(692), - [sym_block_comment] = STATE(692), - [aux_sym_declaration_list_repeat1] = STATE(692), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2532), - [anon_sym_SEMI] = ACTIONS(2535), - [anon_sym_macro_rules_BANG] = ACTIONS(2538), - [anon_sym_RBRACE] = 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_LT] = ACTIONS(2546), - [anon_sym_COLON_COLON] = ACTIONS(2549), - [anon_sym_POUND] = ACTIONS(2552), - [anon_sym_async] = ACTIONS(2555), - [anon_sym_const] = ACTIONS(2558), - [anon_sym_default] = ACTIONS(2561), - [anon_sym_enum] = ACTIONS(2564), - [anon_sym_fn] = ACTIONS(2567), - [anon_sym_impl] = ACTIONS(2570), - [anon_sym_let] = ACTIONS(2573), - [anon_sym_mod] = ACTIONS(2576), - [anon_sym_pub] = ACTIONS(2579), - [anon_sym_static] = ACTIONS(2582), - [anon_sym_struct] = ACTIONS(2585), - [anon_sym_trait] = ACTIONS(2588), - [anon_sym_type] = ACTIONS(2591), - [anon_sym_union] = ACTIONS(2594), + [668] = { + [sym_line_comment] = STATE(668), + [sym_block_comment] = STATE(668), + [ts_builtin_sym_end] = ACTIONS(2587), + [sym_identifier] = ACTIONS(2589), + [anon_sym_SEMI] = ACTIONS(2587), + [anon_sym_macro_rules_BANG] = ACTIONS(2587), + [anon_sym_LPAREN] = ACTIONS(2587), + [anon_sym_LBRACK] = ACTIONS(2587), + [anon_sym_LBRACE] = ACTIONS(2587), + [anon_sym_RBRACE] = ACTIONS(2587), + [anon_sym_STAR] = ACTIONS(2587), + [anon_sym_u8] = ACTIONS(2589), + [anon_sym_i8] = ACTIONS(2589), + [anon_sym_u16] = ACTIONS(2589), + [anon_sym_i16] = ACTIONS(2589), + [anon_sym_u32] = ACTIONS(2589), + [anon_sym_i32] = ACTIONS(2589), + [anon_sym_u64] = ACTIONS(2589), + [anon_sym_i64] = ACTIONS(2589), + [anon_sym_u128] = ACTIONS(2589), + [anon_sym_i128] = ACTIONS(2589), + [anon_sym_isize] = ACTIONS(2589), + [anon_sym_usize] = ACTIONS(2589), + [anon_sym_f32] = ACTIONS(2589), + [anon_sym_f64] = ACTIONS(2589), + [anon_sym_bool] = ACTIONS(2589), + [anon_sym_str] = ACTIONS(2589), + [anon_sym_char] = ACTIONS(2589), + [anon_sym_DASH] = ACTIONS(2587), + [anon_sym_BANG] = ACTIONS(2587), + [anon_sym_AMP] = ACTIONS(2587), + [anon_sym_PIPE] = ACTIONS(2587), + [anon_sym_LT] = ACTIONS(2587), + [anon_sym_DOT_DOT] = ACTIONS(2587), + [anon_sym_COLON_COLON] = ACTIONS(2587), + [anon_sym_POUND] = ACTIONS(2587), + [anon_sym_SQUOTE] = ACTIONS(2589), + [anon_sym_async] = ACTIONS(2589), + [anon_sym_break] = ACTIONS(2589), + [anon_sym_const] = ACTIONS(2589), + [anon_sym_continue] = ACTIONS(2589), + [anon_sym_default] = ACTIONS(2589), + [anon_sym_enum] = ACTIONS(2589), + [anon_sym_fn] = ACTIONS(2589), + [anon_sym_for] = ACTIONS(2589), + [anon_sym_if] = ACTIONS(2589), + [anon_sym_impl] = ACTIONS(2589), + [anon_sym_let] = ACTIONS(2589), + [anon_sym_loop] = ACTIONS(2589), + [anon_sym_match] = ACTIONS(2589), + [anon_sym_mod] = ACTIONS(2589), + [anon_sym_pub] = ACTIONS(2589), + [anon_sym_return] = ACTIONS(2589), + [anon_sym_static] = ACTIONS(2589), + [anon_sym_struct] = ACTIONS(2589), + [anon_sym_trait] = ACTIONS(2589), + [anon_sym_type] = ACTIONS(2589), + [anon_sym_union] = ACTIONS(2589), + [anon_sym_unsafe] = ACTIONS(2589), + [anon_sym_use] = ACTIONS(2589), + [anon_sym_while] = ACTIONS(2589), + [anon_sym_extern] = ACTIONS(2589), + [anon_sym_yield] = ACTIONS(2589), + [anon_sym_move] = ACTIONS(2589), + [anon_sym_try] = ACTIONS(2589), + [sym_integer_literal] = ACTIONS(2587), + [aux_sym_string_literal_token1] = ACTIONS(2587), + [sym_char_literal] = ACTIONS(2587), + [anon_sym_true] = ACTIONS(2589), + [anon_sym_false] = ACTIONS(2589), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2589), + [sym_super] = ACTIONS(2589), + [sym_crate] = ACTIONS(2589), + [sym_metavariable] = ACTIONS(2587), + [sym__raw_string_literal_start] = ACTIONS(2587), + [sym_float_literal] = ACTIONS(2587), + }, + [669] = { + [sym_line_comment] = STATE(669), + [sym_block_comment] = STATE(669), + [ts_builtin_sym_end] = ACTIONS(2591), + [sym_identifier] = ACTIONS(2593), + [anon_sym_SEMI] = ACTIONS(2591), + [anon_sym_macro_rules_BANG] = ACTIONS(2591), + [anon_sym_LPAREN] = ACTIONS(2591), + [anon_sym_LBRACK] = ACTIONS(2591), + [anon_sym_LBRACE] = ACTIONS(2591), + [anon_sym_RBRACE] = ACTIONS(2591), + [anon_sym_STAR] = ACTIONS(2591), + [anon_sym_u8] = ACTIONS(2593), + [anon_sym_i8] = ACTIONS(2593), + [anon_sym_u16] = ACTIONS(2593), + [anon_sym_i16] = ACTIONS(2593), + [anon_sym_u32] = ACTIONS(2593), + [anon_sym_i32] = ACTIONS(2593), + [anon_sym_u64] = ACTIONS(2593), + [anon_sym_i64] = ACTIONS(2593), + [anon_sym_u128] = ACTIONS(2593), + [anon_sym_i128] = ACTIONS(2593), + [anon_sym_isize] = ACTIONS(2593), + [anon_sym_usize] = ACTIONS(2593), + [anon_sym_f32] = ACTIONS(2593), + [anon_sym_f64] = ACTIONS(2593), + [anon_sym_bool] = ACTIONS(2593), + [anon_sym_str] = ACTIONS(2593), + [anon_sym_char] = ACTIONS(2593), + [anon_sym_DASH] = ACTIONS(2591), + [anon_sym_BANG] = ACTIONS(2591), + [anon_sym_AMP] = ACTIONS(2591), + [anon_sym_PIPE] = ACTIONS(2591), + [anon_sym_LT] = ACTIONS(2591), + [anon_sym_DOT_DOT] = ACTIONS(2591), + [anon_sym_COLON_COLON] = ACTIONS(2591), + [anon_sym_POUND] = ACTIONS(2591), + [anon_sym_SQUOTE] = ACTIONS(2593), + [anon_sym_async] = ACTIONS(2593), + [anon_sym_break] = ACTIONS(2593), + [anon_sym_const] = ACTIONS(2593), + [anon_sym_continue] = ACTIONS(2593), + [anon_sym_default] = ACTIONS(2593), + [anon_sym_enum] = ACTIONS(2593), + [anon_sym_fn] = ACTIONS(2593), + [anon_sym_for] = ACTIONS(2593), + [anon_sym_if] = ACTIONS(2593), + [anon_sym_impl] = ACTIONS(2593), + [anon_sym_let] = ACTIONS(2593), + [anon_sym_loop] = ACTIONS(2593), + [anon_sym_match] = ACTIONS(2593), + [anon_sym_mod] = ACTIONS(2593), + [anon_sym_pub] = ACTIONS(2593), + [anon_sym_return] = ACTIONS(2593), + [anon_sym_static] = ACTIONS(2593), + [anon_sym_struct] = ACTIONS(2593), + [anon_sym_trait] = ACTIONS(2593), + [anon_sym_type] = ACTIONS(2593), + [anon_sym_union] = ACTIONS(2593), + [anon_sym_unsafe] = ACTIONS(2593), + [anon_sym_use] = ACTIONS(2593), + [anon_sym_while] = ACTIONS(2593), + [anon_sym_extern] = ACTIONS(2593), + [anon_sym_yield] = ACTIONS(2593), + [anon_sym_move] = ACTIONS(2593), + [anon_sym_try] = ACTIONS(2593), + [sym_integer_literal] = ACTIONS(2591), + [aux_sym_string_literal_token1] = ACTIONS(2591), + [sym_char_literal] = ACTIONS(2591), + [anon_sym_true] = ACTIONS(2593), + [anon_sym_false] = ACTIONS(2593), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2593), + [sym_super] = ACTIONS(2593), + [sym_crate] = ACTIONS(2593), + [sym_metavariable] = ACTIONS(2591), + [sym__raw_string_literal_start] = ACTIONS(2591), + [sym_float_literal] = ACTIONS(2591), + }, + [670] = { + [sym_line_comment] = STATE(670), + [sym_block_comment] = STATE(670), + [ts_builtin_sym_end] = ACTIONS(2595), + [sym_identifier] = ACTIONS(2597), + [anon_sym_SEMI] = ACTIONS(2595), + [anon_sym_macro_rules_BANG] = ACTIONS(2595), + [anon_sym_LPAREN] = ACTIONS(2595), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2595), + [anon_sym_RBRACE] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2595), + [anon_sym_u8] = ACTIONS(2597), + [anon_sym_i8] = ACTIONS(2597), + [anon_sym_u16] = ACTIONS(2597), + [anon_sym_i16] = ACTIONS(2597), + [anon_sym_u32] = ACTIONS(2597), + [anon_sym_i32] = ACTIONS(2597), + [anon_sym_u64] = ACTIONS(2597), + [anon_sym_i64] = ACTIONS(2597), + [anon_sym_u128] = ACTIONS(2597), + [anon_sym_i128] = ACTIONS(2597), + [anon_sym_isize] = ACTIONS(2597), + [anon_sym_usize] = ACTIONS(2597), + [anon_sym_f32] = ACTIONS(2597), + [anon_sym_f64] = ACTIONS(2597), + [anon_sym_bool] = ACTIONS(2597), + [anon_sym_str] = ACTIONS(2597), + [anon_sym_char] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_BANG] = ACTIONS(2595), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_PIPE] = ACTIONS(2595), + [anon_sym_LT] = ACTIONS(2595), + [anon_sym_DOT_DOT] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2595), + [anon_sym_POUND] = ACTIONS(2595), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_async] = ACTIONS(2597), + [anon_sym_break] = ACTIONS(2597), + [anon_sym_const] = ACTIONS(2597), + [anon_sym_continue] = ACTIONS(2597), + [anon_sym_default] = ACTIONS(2597), + [anon_sym_enum] = ACTIONS(2597), + [anon_sym_fn] = ACTIONS(2597), + [anon_sym_for] = ACTIONS(2597), + [anon_sym_if] = ACTIONS(2597), + [anon_sym_impl] = ACTIONS(2597), + [anon_sym_let] = ACTIONS(2597), + [anon_sym_loop] = ACTIONS(2597), + [anon_sym_match] = ACTIONS(2597), + [anon_sym_mod] = ACTIONS(2597), + [anon_sym_pub] = ACTIONS(2597), + [anon_sym_return] = ACTIONS(2597), + [anon_sym_static] = ACTIONS(2597), + [anon_sym_struct] = ACTIONS(2597), + [anon_sym_trait] = ACTIONS(2597), + [anon_sym_type] = ACTIONS(2597), + [anon_sym_union] = ACTIONS(2597), [anon_sym_unsafe] = ACTIONS(2597), - [anon_sym_use] = ACTIONS(2600), - [anon_sym_extern] = ACTIONS(2603), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2606), - [sym_super] = ACTIONS(2606), + [anon_sym_use] = ACTIONS(2597), + [anon_sym_while] = ACTIONS(2597), + [anon_sym_extern] = ACTIONS(2597), + [anon_sym_yield] = ACTIONS(2597), + [anon_sym_move] = ACTIONS(2597), + [anon_sym_try] = ACTIONS(2597), + [sym_integer_literal] = ACTIONS(2595), + [aux_sym_string_literal_token1] = ACTIONS(2595), + [sym_char_literal] = ACTIONS(2595), + [anon_sym_true] = ACTIONS(2597), + [anon_sym_false] = ACTIONS(2597), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2597), + [sym_super] = ACTIONS(2597), + [sym_crate] = ACTIONS(2597), + [sym_metavariable] = ACTIONS(2595), + [sym__raw_string_literal_start] = ACTIONS(2595), + [sym_float_literal] = ACTIONS(2595), + }, + [671] = { + [sym_line_comment] = STATE(671), + [sym_block_comment] = STATE(671), + [ts_builtin_sym_end] = ACTIONS(2599), + [sym_identifier] = ACTIONS(2601), + [anon_sym_SEMI] = ACTIONS(2599), + [anon_sym_macro_rules_BANG] = ACTIONS(2599), + [anon_sym_LPAREN] = ACTIONS(2599), + [anon_sym_LBRACK] = ACTIONS(2599), + [anon_sym_LBRACE] = ACTIONS(2599), + [anon_sym_RBRACE] = ACTIONS(2599), + [anon_sym_STAR] = ACTIONS(2599), + [anon_sym_u8] = ACTIONS(2601), + [anon_sym_i8] = ACTIONS(2601), + [anon_sym_u16] = ACTIONS(2601), + [anon_sym_i16] = ACTIONS(2601), + [anon_sym_u32] = ACTIONS(2601), + [anon_sym_i32] = ACTIONS(2601), + [anon_sym_u64] = ACTIONS(2601), + [anon_sym_i64] = ACTIONS(2601), + [anon_sym_u128] = ACTIONS(2601), + [anon_sym_i128] = ACTIONS(2601), + [anon_sym_isize] = ACTIONS(2601), + [anon_sym_usize] = ACTIONS(2601), + [anon_sym_f32] = ACTIONS(2601), + [anon_sym_f64] = ACTIONS(2601), + [anon_sym_bool] = ACTIONS(2601), + [anon_sym_str] = ACTIONS(2601), + [anon_sym_char] = ACTIONS(2601), + [anon_sym_DASH] = ACTIONS(2599), + [anon_sym_BANG] = ACTIONS(2599), + [anon_sym_AMP] = ACTIONS(2599), + [anon_sym_PIPE] = ACTIONS(2599), + [anon_sym_LT] = ACTIONS(2599), + [anon_sym_DOT_DOT] = ACTIONS(2599), + [anon_sym_COLON_COLON] = ACTIONS(2599), + [anon_sym_POUND] = ACTIONS(2599), + [anon_sym_SQUOTE] = ACTIONS(2601), + [anon_sym_async] = ACTIONS(2601), + [anon_sym_break] = ACTIONS(2601), + [anon_sym_const] = ACTIONS(2601), + [anon_sym_continue] = ACTIONS(2601), + [anon_sym_default] = ACTIONS(2601), + [anon_sym_enum] = ACTIONS(2601), + [anon_sym_fn] = ACTIONS(2601), + [anon_sym_for] = ACTIONS(2601), + [anon_sym_if] = ACTIONS(2601), + [anon_sym_impl] = ACTIONS(2601), + [anon_sym_let] = ACTIONS(2601), + [anon_sym_loop] = ACTIONS(2601), + [anon_sym_match] = ACTIONS(2601), + [anon_sym_mod] = ACTIONS(2601), + [anon_sym_pub] = ACTIONS(2601), + [anon_sym_return] = ACTIONS(2601), + [anon_sym_static] = ACTIONS(2601), + [anon_sym_struct] = ACTIONS(2601), + [anon_sym_trait] = ACTIONS(2601), + [anon_sym_type] = ACTIONS(2601), + [anon_sym_union] = ACTIONS(2601), + [anon_sym_unsafe] = ACTIONS(2601), + [anon_sym_use] = ACTIONS(2601), + [anon_sym_while] = ACTIONS(2601), + [anon_sym_extern] = ACTIONS(2601), + [anon_sym_yield] = ACTIONS(2601), + [anon_sym_move] = ACTIONS(2601), + [anon_sym_try] = ACTIONS(2601), + [sym_integer_literal] = ACTIONS(2599), + [aux_sym_string_literal_token1] = ACTIONS(2599), + [sym_char_literal] = ACTIONS(2599), + [anon_sym_true] = ACTIONS(2601), + [anon_sym_false] = ACTIONS(2601), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2601), + [sym_super] = ACTIONS(2601), + [sym_crate] = ACTIONS(2601), + [sym_metavariable] = ACTIONS(2599), + [sym__raw_string_literal_start] = ACTIONS(2599), + [sym_float_literal] = ACTIONS(2599), + }, + [672] = { + [sym_line_comment] = STATE(672), + [sym_block_comment] = STATE(672), + [ts_builtin_sym_end] = ACTIONS(2603), + [sym_identifier] = ACTIONS(2605), + [anon_sym_SEMI] = ACTIONS(2603), + [anon_sym_macro_rules_BANG] = ACTIONS(2603), + [anon_sym_LPAREN] = ACTIONS(2603), + [anon_sym_LBRACK] = ACTIONS(2603), + [anon_sym_LBRACE] = ACTIONS(2603), + [anon_sym_RBRACE] = ACTIONS(2603), + [anon_sym_STAR] = ACTIONS(2603), + [anon_sym_u8] = ACTIONS(2605), + [anon_sym_i8] = ACTIONS(2605), + [anon_sym_u16] = ACTIONS(2605), + [anon_sym_i16] = ACTIONS(2605), + [anon_sym_u32] = ACTIONS(2605), + [anon_sym_i32] = ACTIONS(2605), + [anon_sym_u64] = ACTIONS(2605), + [anon_sym_i64] = ACTIONS(2605), + [anon_sym_u128] = ACTIONS(2605), + [anon_sym_i128] = ACTIONS(2605), + [anon_sym_isize] = ACTIONS(2605), + [anon_sym_usize] = ACTIONS(2605), + [anon_sym_f32] = ACTIONS(2605), + [anon_sym_f64] = ACTIONS(2605), + [anon_sym_bool] = ACTIONS(2605), + [anon_sym_str] = ACTIONS(2605), + [anon_sym_char] = ACTIONS(2605), + [anon_sym_DASH] = ACTIONS(2603), + [anon_sym_BANG] = ACTIONS(2603), + [anon_sym_AMP] = ACTIONS(2603), + [anon_sym_PIPE] = ACTIONS(2603), + [anon_sym_LT] = ACTIONS(2603), + [anon_sym_DOT_DOT] = ACTIONS(2603), + [anon_sym_COLON_COLON] = ACTIONS(2603), + [anon_sym_POUND] = ACTIONS(2603), + [anon_sym_SQUOTE] = ACTIONS(2605), + [anon_sym_async] = ACTIONS(2605), + [anon_sym_break] = ACTIONS(2605), + [anon_sym_const] = ACTIONS(2605), + [anon_sym_continue] = ACTIONS(2605), + [anon_sym_default] = ACTIONS(2605), + [anon_sym_enum] = ACTIONS(2605), + [anon_sym_fn] = ACTIONS(2605), + [anon_sym_for] = ACTIONS(2605), + [anon_sym_if] = ACTIONS(2605), + [anon_sym_impl] = ACTIONS(2605), + [anon_sym_let] = ACTIONS(2605), + [anon_sym_loop] = ACTIONS(2605), + [anon_sym_match] = ACTIONS(2605), + [anon_sym_mod] = ACTIONS(2605), + [anon_sym_pub] = ACTIONS(2605), + [anon_sym_return] = ACTIONS(2605), + [anon_sym_static] = ACTIONS(2605), + [anon_sym_struct] = ACTIONS(2605), + [anon_sym_trait] = ACTIONS(2605), + [anon_sym_type] = ACTIONS(2605), + [anon_sym_union] = ACTIONS(2605), + [anon_sym_unsafe] = ACTIONS(2605), + [anon_sym_use] = ACTIONS(2605), + [anon_sym_while] = ACTIONS(2605), + [anon_sym_extern] = ACTIONS(2605), + [anon_sym_yield] = ACTIONS(2605), + [anon_sym_move] = ACTIONS(2605), + [anon_sym_try] = ACTIONS(2605), + [sym_integer_literal] = ACTIONS(2603), + [aux_sym_string_literal_token1] = ACTIONS(2603), + [sym_char_literal] = ACTIONS(2603), + [anon_sym_true] = ACTIONS(2605), + [anon_sym_false] = ACTIONS(2605), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2605), + [sym_super] = ACTIONS(2605), + [sym_crate] = ACTIONS(2605), + [sym_metavariable] = ACTIONS(2603), + [sym__raw_string_literal_start] = ACTIONS(2603), + [sym_float_literal] = ACTIONS(2603), + }, + [673] = { + [sym_line_comment] = STATE(673), + [sym_block_comment] = STATE(673), + [ts_builtin_sym_end] = ACTIONS(2607), + [sym_identifier] = ACTIONS(2609), + [anon_sym_SEMI] = ACTIONS(2607), + [anon_sym_macro_rules_BANG] = ACTIONS(2607), + [anon_sym_LPAREN] = ACTIONS(2607), + [anon_sym_LBRACK] = ACTIONS(2607), + [anon_sym_LBRACE] = ACTIONS(2607), + [anon_sym_RBRACE] = ACTIONS(2607), + [anon_sym_STAR] = ACTIONS(2607), + [anon_sym_u8] = ACTIONS(2609), + [anon_sym_i8] = ACTIONS(2609), + [anon_sym_u16] = ACTIONS(2609), + [anon_sym_i16] = ACTIONS(2609), + [anon_sym_u32] = ACTIONS(2609), + [anon_sym_i32] = ACTIONS(2609), + [anon_sym_u64] = ACTIONS(2609), + [anon_sym_i64] = ACTIONS(2609), + [anon_sym_u128] = ACTIONS(2609), + [anon_sym_i128] = ACTIONS(2609), + [anon_sym_isize] = ACTIONS(2609), + [anon_sym_usize] = ACTIONS(2609), + [anon_sym_f32] = ACTIONS(2609), + [anon_sym_f64] = ACTIONS(2609), + [anon_sym_bool] = ACTIONS(2609), + [anon_sym_str] = ACTIONS(2609), + [anon_sym_char] = ACTIONS(2609), + [anon_sym_DASH] = ACTIONS(2607), + [anon_sym_BANG] = ACTIONS(2607), + [anon_sym_AMP] = ACTIONS(2607), + [anon_sym_PIPE] = ACTIONS(2607), + [anon_sym_LT] = ACTIONS(2607), + [anon_sym_DOT_DOT] = ACTIONS(2607), + [anon_sym_COLON_COLON] = ACTIONS(2607), + [anon_sym_POUND] = ACTIONS(2607), + [anon_sym_SQUOTE] = ACTIONS(2609), + [anon_sym_async] = ACTIONS(2609), + [anon_sym_break] = ACTIONS(2609), + [anon_sym_const] = ACTIONS(2609), + [anon_sym_continue] = ACTIONS(2609), + [anon_sym_default] = ACTIONS(2609), + [anon_sym_enum] = ACTIONS(2609), + [anon_sym_fn] = ACTIONS(2609), + [anon_sym_for] = ACTIONS(2609), + [anon_sym_if] = ACTIONS(2609), + [anon_sym_impl] = ACTIONS(2609), + [anon_sym_let] = ACTIONS(2609), + [anon_sym_loop] = ACTIONS(2609), + [anon_sym_match] = ACTIONS(2609), + [anon_sym_mod] = ACTIONS(2609), + [anon_sym_pub] = ACTIONS(2609), + [anon_sym_return] = ACTIONS(2609), + [anon_sym_static] = ACTIONS(2609), + [anon_sym_struct] = ACTIONS(2609), + [anon_sym_trait] = ACTIONS(2609), + [anon_sym_type] = ACTIONS(2609), + [anon_sym_union] = ACTIONS(2609), + [anon_sym_unsafe] = ACTIONS(2609), + [anon_sym_use] = ACTIONS(2609), + [anon_sym_while] = ACTIONS(2609), + [anon_sym_extern] = ACTIONS(2609), + [anon_sym_yield] = ACTIONS(2609), + [anon_sym_move] = ACTIONS(2609), + [anon_sym_try] = ACTIONS(2609), + [sym_integer_literal] = ACTIONS(2607), + [aux_sym_string_literal_token1] = ACTIONS(2607), + [sym_char_literal] = ACTIONS(2607), + [anon_sym_true] = ACTIONS(2609), + [anon_sym_false] = ACTIONS(2609), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2609), + [sym_super] = ACTIONS(2609), [sym_crate] = ACTIONS(2609), - [sym_metavariable] = ACTIONS(2612), + [sym_metavariable] = ACTIONS(2607), + [sym__raw_string_literal_start] = ACTIONS(2607), + [sym_float_literal] = ACTIONS(2607), }, - [693] = { - [sym_line_comment] = STATE(693), - [sym_block_comment] = STATE(693), + [674] = { + [sym_line_comment] = STATE(674), + [sym_block_comment] = STATE(674), + [ts_builtin_sym_end] = ACTIONS(2611), + [sym_identifier] = ACTIONS(2613), + [anon_sym_SEMI] = ACTIONS(2611), + [anon_sym_macro_rules_BANG] = ACTIONS(2611), + [anon_sym_LPAREN] = ACTIONS(2611), + [anon_sym_LBRACK] = ACTIONS(2611), + [anon_sym_LBRACE] = ACTIONS(2611), + [anon_sym_RBRACE] = ACTIONS(2611), + [anon_sym_STAR] = ACTIONS(2611), + [anon_sym_u8] = ACTIONS(2613), + [anon_sym_i8] = ACTIONS(2613), + [anon_sym_u16] = ACTIONS(2613), + [anon_sym_i16] = ACTIONS(2613), + [anon_sym_u32] = ACTIONS(2613), + [anon_sym_i32] = ACTIONS(2613), + [anon_sym_u64] = ACTIONS(2613), + [anon_sym_i64] = ACTIONS(2613), + [anon_sym_u128] = ACTIONS(2613), + [anon_sym_i128] = ACTIONS(2613), + [anon_sym_isize] = ACTIONS(2613), + [anon_sym_usize] = ACTIONS(2613), + [anon_sym_f32] = ACTIONS(2613), + [anon_sym_f64] = ACTIONS(2613), + [anon_sym_bool] = ACTIONS(2613), + [anon_sym_str] = ACTIONS(2613), + [anon_sym_char] = ACTIONS(2613), + [anon_sym_DASH] = ACTIONS(2611), + [anon_sym_BANG] = ACTIONS(2611), + [anon_sym_AMP] = ACTIONS(2611), + [anon_sym_PIPE] = ACTIONS(2611), + [anon_sym_LT] = ACTIONS(2611), + [anon_sym_DOT_DOT] = ACTIONS(2611), + [anon_sym_COLON_COLON] = ACTIONS(2611), + [anon_sym_POUND] = ACTIONS(2611), + [anon_sym_SQUOTE] = ACTIONS(2613), + [anon_sym_async] = ACTIONS(2613), + [anon_sym_break] = ACTIONS(2613), + [anon_sym_const] = ACTIONS(2613), + [anon_sym_continue] = ACTIONS(2613), + [anon_sym_default] = ACTIONS(2613), + [anon_sym_enum] = ACTIONS(2613), + [anon_sym_fn] = ACTIONS(2613), + [anon_sym_for] = ACTIONS(2613), + [anon_sym_if] = ACTIONS(2613), + [anon_sym_impl] = ACTIONS(2613), + [anon_sym_let] = ACTIONS(2613), + [anon_sym_loop] = ACTIONS(2613), + [anon_sym_match] = ACTIONS(2613), + [anon_sym_mod] = ACTIONS(2613), + [anon_sym_pub] = ACTIONS(2613), + [anon_sym_return] = ACTIONS(2613), + [anon_sym_static] = ACTIONS(2613), + [anon_sym_struct] = ACTIONS(2613), + [anon_sym_trait] = ACTIONS(2613), + [anon_sym_type] = ACTIONS(2613), + [anon_sym_union] = ACTIONS(2613), + [anon_sym_unsafe] = ACTIONS(2613), + [anon_sym_use] = ACTIONS(2613), + [anon_sym_while] = ACTIONS(2613), + [anon_sym_extern] = ACTIONS(2613), + [anon_sym_yield] = ACTIONS(2613), + [anon_sym_move] = ACTIONS(2613), + [anon_sym_try] = ACTIONS(2613), + [sym_integer_literal] = ACTIONS(2611), + [aux_sym_string_literal_token1] = ACTIONS(2611), + [sym_char_literal] = ACTIONS(2611), + [anon_sym_true] = ACTIONS(2613), + [anon_sym_false] = ACTIONS(2613), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2613), + [sym_super] = ACTIONS(2613), + [sym_crate] = ACTIONS(2613), + [sym_metavariable] = ACTIONS(2611), + [sym__raw_string_literal_start] = ACTIONS(2611), + [sym_float_literal] = ACTIONS(2611), + }, + [675] = { + [sym_line_comment] = STATE(675), + [sym_block_comment] = STATE(675), [ts_builtin_sym_end] = ACTIONS(2615), [sym_identifier] = ACTIONS(2617), [anon_sym_SEMI] = ACTIONS(2615), @@ -85725,9 +84293,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2615), [sym_float_literal] = ACTIONS(2615), }, - [694] = { - [sym_line_comment] = STATE(694), - [sym_block_comment] = STATE(694), + [676] = { + [sym_line_comment] = STATE(676), + [sym_block_comment] = STATE(676), [ts_builtin_sym_end] = ACTIONS(2619), [sym_identifier] = ACTIONS(2621), [anon_sym_SEMI] = ACTIONS(2619), @@ -85805,9 +84373,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2619), [sym_float_literal] = ACTIONS(2619), }, - [695] = { - [sym_line_comment] = STATE(695), - [sym_block_comment] = STATE(695), + [677] = { + [sym_line_comment] = STATE(677), + [sym_block_comment] = STATE(677), [ts_builtin_sym_end] = ACTIONS(2623), [sym_identifier] = ACTIONS(2625), [anon_sym_SEMI] = ACTIONS(2623), @@ -85885,9 +84453,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2623), [sym_float_literal] = ACTIONS(2623), }, - [696] = { - [sym_line_comment] = STATE(696), - [sym_block_comment] = STATE(696), + [678] = { + [sym_line_comment] = STATE(678), + [sym_block_comment] = STATE(678), [ts_builtin_sym_end] = ACTIONS(2627), [sym_identifier] = ACTIONS(2629), [anon_sym_SEMI] = ACTIONS(2627), @@ -85965,9 +84533,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2627), [sym_float_literal] = ACTIONS(2627), }, - [697] = { - [sym_line_comment] = STATE(697), - [sym_block_comment] = STATE(697), + [679] = { + [sym_line_comment] = STATE(679), + [sym_block_comment] = STATE(679), [ts_builtin_sym_end] = ACTIONS(2631), [sym_identifier] = ACTIONS(2633), [anon_sym_SEMI] = ACTIONS(2631), @@ -86045,2169 +84613,3529 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2631), [sym_float_literal] = ACTIONS(2631), }, - [698] = { - [sym_empty_statement] = STATE(1456), - [sym_macro_definition] = STATE(1456), - [sym_attribute_item] = STATE(1456), - [sym_inner_attribute_item] = STATE(1456), - [sym_mod_item] = STATE(1456), - [sym_foreign_mod_item] = STATE(1456), - [sym_struct_item] = STATE(1456), - [sym_union_item] = STATE(1456), - [sym_enum_item] = STATE(1456), - [sym_extern_crate_declaration] = STATE(1456), - [sym_const_item] = STATE(1456), - [sym_static_item] = STATE(1456), - [sym_type_item] = STATE(1456), - [sym_function_item] = STATE(1456), - [sym_function_signature_item] = STATE(1456), - [sym_function_modifiers] = STATE(3593), - [sym_impl_item] = STATE(1456), - [sym_trait_item] = STATE(1456), - [sym_associated_type] = STATE(1456), - [sym_let_declaration] = STATE(1456), - [sym_use_declaration] = STATE(1456), - [sym_extern_modifier] = STATE(2154), - [sym_visibility_modifier] = STATE(1934), - [sym_bracketed_type] = STATE(3324), - [sym_generic_type_with_turbofish] = STATE(3350), - [sym_macro_invocation] = STATE(1456), - [sym_scoped_identifier] = STATE(3156), - [sym_line_comment] = STATE(698), - [sym_block_comment] = STATE(698), - [aux_sym_declaration_list_repeat1] = STATE(692), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2330), - [anon_sym_SEMI] = ACTIONS(2332), - [anon_sym_macro_rules_BANG] = ACTIONS(2334), + [680] = { + [sym_line_comment] = STATE(680), + [sym_block_comment] = STATE(680), + [ts_builtin_sym_end] = ACTIONS(2635), + [sym_identifier] = ACTIONS(2637), + [anon_sym_SEMI] = ACTIONS(2635), + [anon_sym_macro_rules_BANG] = ACTIONS(2635), + [anon_sym_LPAREN] = ACTIONS(2635), + [anon_sym_LBRACK] = ACTIONS(2635), + [anon_sym_LBRACE] = ACTIONS(2635), [anon_sym_RBRACE] = ACTIONS(2635), - [anon_sym_u8] = ACTIONS(2338), - [anon_sym_i8] = ACTIONS(2338), - [anon_sym_u16] = ACTIONS(2338), - [anon_sym_i16] = ACTIONS(2338), - [anon_sym_u32] = ACTIONS(2338), - [anon_sym_i32] = ACTIONS(2338), - [anon_sym_u64] = ACTIONS(2338), - [anon_sym_i64] = ACTIONS(2338), - [anon_sym_u128] = ACTIONS(2338), - [anon_sym_i128] = ACTIONS(2338), - [anon_sym_isize] = ACTIONS(2338), - [anon_sym_usize] = ACTIONS(2338), - [anon_sym_f32] = ACTIONS(2338), - [anon_sym_f64] = ACTIONS(2338), - [anon_sym_bool] = ACTIONS(2338), - [anon_sym_str] = ACTIONS(2338), - [anon_sym_char] = ACTIONS(2338), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(2340), - [anon_sym_POUND] = ACTIONS(2342), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(2344), - [anon_sym_default] = ACTIONS(2346), - [anon_sym_enum] = ACTIONS(2348), - [anon_sym_fn] = ACTIONS(2350), - [anon_sym_impl] = ACTIONS(2352), - [anon_sym_let] = ACTIONS(2354), - [anon_sym_mod] = ACTIONS(2356), - [anon_sym_pub] = ACTIONS(67), - [anon_sym_static] = ACTIONS(2358), - [anon_sym_struct] = ACTIONS(2360), - [anon_sym_trait] = ACTIONS(2362), - [anon_sym_type] = ACTIONS(2364), - [anon_sym_union] = ACTIONS(2366), - [anon_sym_unsafe] = ACTIONS(2368), - [anon_sym_use] = ACTIONS(2370), - [anon_sym_extern] = ACTIONS(2372), + [anon_sym_STAR] = ACTIONS(2635), + [anon_sym_u8] = ACTIONS(2637), + [anon_sym_i8] = ACTIONS(2637), + [anon_sym_u16] = ACTIONS(2637), + [anon_sym_i16] = ACTIONS(2637), + [anon_sym_u32] = ACTIONS(2637), + [anon_sym_i32] = ACTIONS(2637), + [anon_sym_u64] = ACTIONS(2637), + [anon_sym_i64] = ACTIONS(2637), + [anon_sym_u128] = ACTIONS(2637), + [anon_sym_i128] = ACTIONS(2637), + [anon_sym_isize] = ACTIONS(2637), + [anon_sym_usize] = ACTIONS(2637), + [anon_sym_f32] = ACTIONS(2637), + [anon_sym_f64] = ACTIONS(2637), + [anon_sym_bool] = ACTIONS(2637), + [anon_sym_str] = ACTIONS(2637), + [anon_sym_char] = ACTIONS(2637), + [anon_sym_DASH] = ACTIONS(2635), + [anon_sym_BANG] = ACTIONS(2635), + [anon_sym_AMP] = ACTIONS(2635), + [anon_sym_PIPE] = ACTIONS(2635), + [anon_sym_LT] = ACTIONS(2635), + [anon_sym_DOT_DOT] = ACTIONS(2635), + [anon_sym_COLON_COLON] = ACTIONS(2635), + [anon_sym_POUND] = ACTIONS(2635), + [anon_sym_SQUOTE] = ACTIONS(2637), + [anon_sym_async] = ACTIONS(2637), + [anon_sym_break] = ACTIONS(2637), + [anon_sym_const] = ACTIONS(2637), + [anon_sym_continue] = ACTIONS(2637), + [anon_sym_default] = ACTIONS(2637), + [anon_sym_enum] = ACTIONS(2637), + [anon_sym_fn] = ACTIONS(2637), + [anon_sym_for] = ACTIONS(2637), + [anon_sym_if] = ACTIONS(2637), + [anon_sym_impl] = ACTIONS(2637), + [anon_sym_let] = ACTIONS(2637), + [anon_sym_loop] = ACTIONS(2637), + [anon_sym_match] = ACTIONS(2637), + [anon_sym_mod] = ACTIONS(2637), + [anon_sym_pub] = ACTIONS(2637), + [anon_sym_return] = ACTIONS(2637), + [anon_sym_static] = ACTIONS(2637), + [anon_sym_struct] = ACTIONS(2637), + [anon_sym_trait] = ACTIONS(2637), + [anon_sym_type] = ACTIONS(2637), + [anon_sym_union] = ACTIONS(2637), + [anon_sym_unsafe] = ACTIONS(2637), + [anon_sym_use] = ACTIONS(2637), + [anon_sym_while] = ACTIONS(2637), + [anon_sym_extern] = ACTIONS(2637), + [anon_sym_yield] = ACTIONS(2637), + [anon_sym_move] = ACTIONS(2637), + [anon_sym_try] = ACTIONS(2637), + [sym_integer_literal] = ACTIONS(2635), + [aux_sym_string_literal_token1] = ACTIONS(2635), + [sym_char_literal] = ACTIONS(2635), + [anon_sym_true] = ACTIONS(2637), + [anon_sym_false] = ACTIONS(2637), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2637), + [sym_super] = ACTIONS(2637), + [sym_crate] = ACTIONS(2637), + [sym_metavariable] = ACTIONS(2635), + [sym__raw_string_literal_start] = ACTIONS(2635), + [sym_float_literal] = ACTIONS(2635), + }, + [681] = { + [sym_line_comment] = STATE(681), + [sym_block_comment] = STATE(681), + [ts_builtin_sym_end] = ACTIONS(2639), + [sym_identifier] = ACTIONS(2641), + [anon_sym_SEMI] = ACTIONS(2639), + [anon_sym_macro_rules_BANG] = ACTIONS(2639), + [anon_sym_LPAREN] = ACTIONS(2639), + [anon_sym_LBRACK] = ACTIONS(2639), + [anon_sym_LBRACE] = ACTIONS(2639), + [anon_sym_RBRACE] = ACTIONS(2639), + [anon_sym_STAR] = ACTIONS(2639), + [anon_sym_u8] = ACTIONS(2641), + [anon_sym_i8] = ACTIONS(2641), + [anon_sym_u16] = ACTIONS(2641), + [anon_sym_i16] = ACTIONS(2641), + [anon_sym_u32] = ACTIONS(2641), + [anon_sym_i32] = ACTIONS(2641), + [anon_sym_u64] = ACTIONS(2641), + [anon_sym_i64] = ACTIONS(2641), + [anon_sym_u128] = ACTIONS(2641), + [anon_sym_i128] = ACTIONS(2641), + [anon_sym_isize] = ACTIONS(2641), + [anon_sym_usize] = ACTIONS(2641), + [anon_sym_f32] = ACTIONS(2641), + [anon_sym_f64] = ACTIONS(2641), + [anon_sym_bool] = ACTIONS(2641), + [anon_sym_str] = ACTIONS(2641), + [anon_sym_char] = ACTIONS(2641), + [anon_sym_DASH] = ACTIONS(2639), + [anon_sym_BANG] = ACTIONS(2639), + [anon_sym_AMP] = ACTIONS(2639), + [anon_sym_PIPE] = ACTIONS(2639), + [anon_sym_LT] = ACTIONS(2639), + [anon_sym_DOT_DOT] = ACTIONS(2639), + [anon_sym_COLON_COLON] = ACTIONS(2639), + [anon_sym_POUND] = ACTIONS(2639), + [anon_sym_SQUOTE] = ACTIONS(2641), + [anon_sym_async] = ACTIONS(2641), + [anon_sym_break] = ACTIONS(2641), + [anon_sym_const] = ACTIONS(2641), + [anon_sym_continue] = ACTIONS(2641), + [anon_sym_default] = ACTIONS(2641), + [anon_sym_enum] = ACTIONS(2641), + [anon_sym_fn] = ACTIONS(2641), + [anon_sym_for] = ACTIONS(2641), + [anon_sym_if] = ACTIONS(2641), + [anon_sym_impl] = ACTIONS(2641), + [anon_sym_let] = ACTIONS(2641), + [anon_sym_loop] = ACTIONS(2641), + [anon_sym_match] = ACTIONS(2641), + [anon_sym_mod] = ACTIONS(2641), + [anon_sym_pub] = ACTIONS(2641), + [anon_sym_return] = ACTIONS(2641), + [anon_sym_static] = ACTIONS(2641), + [anon_sym_struct] = ACTIONS(2641), + [anon_sym_trait] = ACTIONS(2641), + [anon_sym_type] = ACTIONS(2641), + [anon_sym_union] = ACTIONS(2641), + [anon_sym_unsafe] = ACTIONS(2641), + [anon_sym_use] = ACTIONS(2641), + [anon_sym_while] = ACTIONS(2641), + [anon_sym_extern] = ACTIONS(2641), + [anon_sym_yield] = ACTIONS(2641), + [anon_sym_move] = ACTIONS(2641), + [anon_sym_try] = ACTIONS(2641), + [sym_integer_literal] = ACTIONS(2639), + [aux_sym_string_literal_token1] = ACTIONS(2639), + [sym_char_literal] = ACTIONS(2639), + [anon_sym_true] = ACTIONS(2641), + [anon_sym_false] = ACTIONS(2641), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2641), + [sym_super] = ACTIONS(2641), + [sym_crate] = ACTIONS(2641), + [sym_metavariable] = ACTIONS(2639), + [sym__raw_string_literal_start] = ACTIONS(2639), + [sym_float_literal] = ACTIONS(2639), + }, + [682] = { + [sym_line_comment] = STATE(682), + [sym_block_comment] = STATE(682), + [ts_builtin_sym_end] = ACTIONS(2643), + [sym_identifier] = ACTIONS(2645), + [anon_sym_SEMI] = ACTIONS(2643), + [anon_sym_macro_rules_BANG] = ACTIONS(2643), + [anon_sym_LPAREN] = ACTIONS(2643), + [anon_sym_LBRACK] = ACTIONS(2643), + [anon_sym_LBRACE] = ACTIONS(2643), + [anon_sym_RBRACE] = ACTIONS(2643), + [anon_sym_STAR] = ACTIONS(2643), + [anon_sym_u8] = ACTIONS(2645), + [anon_sym_i8] = ACTIONS(2645), + [anon_sym_u16] = ACTIONS(2645), + [anon_sym_i16] = ACTIONS(2645), + [anon_sym_u32] = ACTIONS(2645), + [anon_sym_i32] = ACTIONS(2645), + [anon_sym_u64] = ACTIONS(2645), + [anon_sym_i64] = ACTIONS(2645), + [anon_sym_u128] = ACTIONS(2645), + [anon_sym_i128] = ACTIONS(2645), + [anon_sym_isize] = ACTIONS(2645), + [anon_sym_usize] = ACTIONS(2645), + [anon_sym_f32] = ACTIONS(2645), + [anon_sym_f64] = ACTIONS(2645), + [anon_sym_bool] = ACTIONS(2645), + [anon_sym_str] = ACTIONS(2645), + [anon_sym_char] = ACTIONS(2645), + [anon_sym_DASH] = ACTIONS(2643), + [anon_sym_BANG] = ACTIONS(2643), + [anon_sym_AMP] = ACTIONS(2643), + [anon_sym_PIPE] = ACTIONS(2643), + [anon_sym_LT] = ACTIONS(2643), + [anon_sym_DOT_DOT] = ACTIONS(2643), + [anon_sym_COLON_COLON] = ACTIONS(2643), + [anon_sym_POUND] = ACTIONS(2643), + [anon_sym_SQUOTE] = ACTIONS(2645), + [anon_sym_async] = ACTIONS(2645), + [anon_sym_break] = ACTIONS(2645), + [anon_sym_const] = ACTIONS(2645), + [anon_sym_continue] = ACTIONS(2645), + [anon_sym_default] = ACTIONS(2645), + [anon_sym_enum] = ACTIONS(2645), + [anon_sym_fn] = ACTIONS(2645), + [anon_sym_for] = ACTIONS(2645), + [anon_sym_if] = ACTIONS(2645), + [anon_sym_impl] = ACTIONS(2645), + [anon_sym_let] = ACTIONS(2645), + [anon_sym_loop] = ACTIONS(2645), + [anon_sym_match] = ACTIONS(2645), + [anon_sym_mod] = ACTIONS(2645), + [anon_sym_pub] = ACTIONS(2645), + [anon_sym_return] = ACTIONS(2645), + [anon_sym_static] = ACTIONS(2645), + [anon_sym_struct] = ACTIONS(2645), + [anon_sym_trait] = ACTIONS(2645), + [anon_sym_type] = ACTIONS(2645), + [anon_sym_union] = ACTIONS(2645), + [anon_sym_unsafe] = ACTIONS(2645), + [anon_sym_use] = ACTIONS(2645), + [anon_sym_while] = ACTIONS(2645), + [anon_sym_extern] = ACTIONS(2645), + [anon_sym_yield] = ACTIONS(2645), + [anon_sym_move] = ACTIONS(2645), + [anon_sym_try] = ACTIONS(2645), + [sym_integer_literal] = ACTIONS(2643), + [aux_sym_string_literal_token1] = ACTIONS(2643), + [sym_char_literal] = ACTIONS(2643), + [anon_sym_true] = ACTIONS(2645), + [anon_sym_false] = ACTIONS(2645), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2645), + [sym_super] = ACTIONS(2645), + [sym_crate] = ACTIONS(2645), + [sym_metavariable] = ACTIONS(2643), + [sym__raw_string_literal_start] = ACTIONS(2643), + [sym_float_literal] = ACTIONS(2643), + }, + [683] = { + [sym_line_comment] = STATE(683), + [sym_block_comment] = STATE(683), + [ts_builtin_sym_end] = ACTIONS(2647), + [sym_identifier] = ACTIONS(2649), + [anon_sym_SEMI] = ACTIONS(2647), + [anon_sym_macro_rules_BANG] = ACTIONS(2647), + [anon_sym_LPAREN] = ACTIONS(2647), + [anon_sym_LBRACK] = ACTIONS(2647), + [anon_sym_LBRACE] = ACTIONS(2647), + [anon_sym_RBRACE] = ACTIONS(2647), + [anon_sym_STAR] = ACTIONS(2647), + [anon_sym_u8] = ACTIONS(2649), + [anon_sym_i8] = ACTIONS(2649), + [anon_sym_u16] = ACTIONS(2649), + [anon_sym_i16] = ACTIONS(2649), + [anon_sym_u32] = ACTIONS(2649), + [anon_sym_i32] = ACTIONS(2649), + [anon_sym_u64] = ACTIONS(2649), + [anon_sym_i64] = ACTIONS(2649), + [anon_sym_u128] = ACTIONS(2649), + [anon_sym_i128] = ACTIONS(2649), + [anon_sym_isize] = ACTIONS(2649), + [anon_sym_usize] = ACTIONS(2649), + [anon_sym_f32] = ACTIONS(2649), + [anon_sym_f64] = ACTIONS(2649), + [anon_sym_bool] = ACTIONS(2649), + [anon_sym_str] = ACTIONS(2649), + [anon_sym_char] = ACTIONS(2649), + [anon_sym_DASH] = ACTIONS(2647), + [anon_sym_BANG] = ACTIONS(2647), + [anon_sym_AMP] = ACTIONS(2647), + [anon_sym_PIPE] = ACTIONS(2647), + [anon_sym_LT] = ACTIONS(2647), + [anon_sym_DOT_DOT] = ACTIONS(2647), + [anon_sym_COLON_COLON] = ACTIONS(2647), + [anon_sym_POUND] = ACTIONS(2647), + [anon_sym_SQUOTE] = ACTIONS(2649), + [anon_sym_async] = ACTIONS(2649), + [anon_sym_break] = ACTIONS(2649), + [anon_sym_const] = ACTIONS(2649), + [anon_sym_continue] = ACTIONS(2649), + [anon_sym_default] = ACTIONS(2649), + [anon_sym_enum] = ACTIONS(2649), + [anon_sym_fn] = ACTIONS(2649), + [anon_sym_for] = ACTIONS(2649), + [anon_sym_if] = ACTIONS(2649), + [anon_sym_impl] = ACTIONS(2649), + [anon_sym_let] = ACTIONS(2649), + [anon_sym_loop] = ACTIONS(2649), + [anon_sym_match] = ACTIONS(2649), + [anon_sym_mod] = ACTIONS(2649), + [anon_sym_pub] = ACTIONS(2649), + [anon_sym_return] = ACTIONS(2649), + [anon_sym_static] = ACTIONS(2649), + [anon_sym_struct] = ACTIONS(2649), + [anon_sym_trait] = ACTIONS(2649), + [anon_sym_type] = ACTIONS(2649), + [anon_sym_union] = ACTIONS(2649), + [anon_sym_unsafe] = ACTIONS(2649), + [anon_sym_use] = ACTIONS(2649), + [anon_sym_while] = ACTIONS(2649), + [anon_sym_extern] = ACTIONS(2649), + [anon_sym_yield] = ACTIONS(2649), + [anon_sym_move] = ACTIONS(2649), + [anon_sym_try] = ACTIONS(2649), + [sym_integer_literal] = ACTIONS(2647), + [aux_sym_string_literal_token1] = ACTIONS(2647), + [sym_char_literal] = ACTIONS(2647), + [anon_sym_true] = ACTIONS(2649), + [anon_sym_false] = ACTIONS(2649), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2649), + [sym_super] = ACTIONS(2649), + [sym_crate] = ACTIONS(2649), + [sym_metavariable] = ACTIONS(2647), + [sym__raw_string_literal_start] = ACTIONS(2647), + [sym_float_literal] = ACTIONS(2647), + }, + [684] = { + [sym_line_comment] = STATE(684), + [sym_block_comment] = STATE(684), + [ts_builtin_sym_end] = ACTIONS(2651), + [sym_identifier] = ACTIONS(2653), + [anon_sym_SEMI] = ACTIONS(2651), + [anon_sym_macro_rules_BANG] = ACTIONS(2651), + [anon_sym_LPAREN] = ACTIONS(2651), + [anon_sym_LBRACK] = ACTIONS(2651), + [anon_sym_LBRACE] = ACTIONS(2651), + [anon_sym_RBRACE] = ACTIONS(2651), + [anon_sym_STAR] = ACTIONS(2651), + [anon_sym_u8] = ACTIONS(2653), + [anon_sym_i8] = ACTIONS(2653), + [anon_sym_u16] = ACTIONS(2653), + [anon_sym_i16] = ACTIONS(2653), + [anon_sym_u32] = ACTIONS(2653), + [anon_sym_i32] = ACTIONS(2653), + [anon_sym_u64] = ACTIONS(2653), + [anon_sym_i64] = ACTIONS(2653), + [anon_sym_u128] = ACTIONS(2653), + [anon_sym_i128] = ACTIONS(2653), + [anon_sym_isize] = ACTIONS(2653), + [anon_sym_usize] = ACTIONS(2653), + [anon_sym_f32] = ACTIONS(2653), + [anon_sym_f64] = ACTIONS(2653), + [anon_sym_bool] = ACTIONS(2653), + [anon_sym_str] = ACTIONS(2653), + [anon_sym_char] = ACTIONS(2653), + [anon_sym_DASH] = ACTIONS(2651), + [anon_sym_BANG] = ACTIONS(2651), + [anon_sym_AMP] = ACTIONS(2651), + [anon_sym_PIPE] = ACTIONS(2651), + [anon_sym_LT] = ACTIONS(2651), + [anon_sym_DOT_DOT] = ACTIONS(2651), + [anon_sym_COLON_COLON] = ACTIONS(2651), + [anon_sym_POUND] = ACTIONS(2651), + [anon_sym_SQUOTE] = ACTIONS(2653), + [anon_sym_async] = ACTIONS(2653), + [anon_sym_break] = ACTIONS(2653), + [anon_sym_const] = ACTIONS(2653), + [anon_sym_continue] = ACTIONS(2653), + [anon_sym_default] = ACTIONS(2653), + [anon_sym_enum] = ACTIONS(2653), + [anon_sym_fn] = ACTIONS(2653), + [anon_sym_for] = ACTIONS(2653), + [anon_sym_if] = ACTIONS(2653), + [anon_sym_impl] = ACTIONS(2653), + [anon_sym_let] = ACTIONS(2653), + [anon_sym_loop] = ACTIONS(2653), + [anon_sym_match] = ACTIONS(2653), + [anon_sym_mod] = ACTIONS(2653), + [anon_sym_pub] = ACTIONS(2653), + [anon_sym_return] = ACTIONS(2653), + [anon_sym_static] = ACTIONS(2653), + [anon_sym_struct] = ACTIONS(2653), + [anon_sym_trait] = ACTIONS(2653), + [anon_sym_type] = ACTIONS(2653), + [anon_sym_union] = ACTIONS(2653), + [anon_sym_unsafe] = ACTIONS(2653), + [anon_sym_use] = ACTIONS(2653), + [anon_sym_while] = ACTIONS(2653), + [anon_sym_extern] = ACTIONS(2653), + [anon_sym_yield] = ACTIONS(2653), + [anon_sym_move] = ACTIONS(2653), + [anon_sym_try] = ACTIONS(2653), + [sym_integer_literal] = ACTIONS(2651), + [aux_sym_string_literal_token1] = ACTIONS(2651), + [sym_char_literal] = ACTIONS(2651), + [anon_sym_true] = ACTIONS(2653), + [anon_sym_false] = ACTIONS(2653), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2653), + [sym_super] = ACTIONS(2653), + [sym_crate] = ACTIONS(2653), + [sym_metavariable] = ACTIONS(2651), + [sym__raw_string_literal_start] = ACTIONS(2651), + [sym_float_literal] = ACTIONS(2651), + }, + [685] = { + [sym_line_comment] = STATE(685), + [sym_block_comment] = STATE(685), + [ts_builtin_sym_end] = ACTIONS(2655), + [sym_identifier] = ACTIONS(2657), + [anon_sym_SEMI] = ACTIONS(2655), + [anon_sym_macro_rules_BANG] = ACTIONS(2655), + [anon_sym_LPAREN] = ACTIONS(2655), + [anon_sym_LBRACK] = ACTIONS(2655), + [anon_sym_LBRACE] = ACTIONS(2655), + [anon_sym_RBRACE] = ACTIONS(2655), + [anon_sym_STAR] = ACTIONS(2655), + [anon_sym_u8] = ACTIONS(2657), + [anon_sym_i8] = ACTIONS(2657), + [anon_sym_u16] = ACTIONS(2657), + [anon_sym_i16] = ACTIONS(2657), + [anon_sym_u32] = ACTIONS(2657), + [anon_sym_i32] = ACTIONS(2657), + [anon_sym_u64] = ACTIONS(2657), + [anon_sym_i64] = ACTIONS(2657), + [anon_sym_u128] = ACTIONS(2657), + [anon_sym_i128] = ACTIONS(2657), + [anon_sym_isize] = ACTIONS(2657), + [anon_sym_usize] = ACTIONS(2657), + [anon_sym_f32] = ACTIONS(2657), + [anon_sym_f64] = ACTIONS(2657), + [anon_sym_bool] = ACTIONS(2657), + [anon_sym_str] = ACTIONS(2657), + [anon_sym_char] = ACTIONS(2657), + [anon_sym_DASH] = ACTIONS(2655), + [anon_sym_BANG] = ACTIONS(2655), + [anon_sym_AMP] = ACTIONS(2655), + [anon_sym_PIPE] = ACTIONS(2655), + [anon_sym_LT] = ACTIONS(2655), + [anon_sym_DOT_DOT] = ACTIONS(2655), + [anon_sym_COLON_COLON] = ACTIONS(2655), + [anon_sym_POUND] = ACTIONS(2655), + [anon_sym_SQUOTE] = ACTIONS(2657), + [anon_sym_async] = ACTIONS(2657), + [anon_sym_break] = ACTIONS(2657), + [anon_sym_const] = ACTIONS(2657), + [anon_sym_continue] = ACTIONS(2657), + [anon_sym_default] = ACTIONS(2657), + [anon_sym_enum] = ACTIONS(2657), + [anon_sym_fn] = ACTIONS(2657), + [anon_sym_for] = ACTIONS(2657), + [anon_sym_if] = ACTIONS(2657), + [anon_sym_impl] = ACTIONS(2657), + [anon_sym_let] = ACTIONS(2657), + [anon_sym_loop] = ACTIONS(2657), + [anon_sym_match] = ACTIONS(2657), + [anon_sym_mod] = ACTIONS(2657), + [anon_sym_pub] = ACTIONS(2657), + [anon_sym_return] = ACTIONS(2657), + [anon_sym_static] = ACTIONS(2657), + [anon_sym_struct] = ACTIONS(2657), + [anon_sym_trait] = ACTIONS(2657), + [anon_sym_type] = ACTIONS(2657), + [anon_sym_union] = ACTIONS(2657), + [anon_sym_unsafe] = ACTIONS(2657), + [anon_sym_use] = ACTIONS(2657), + [anon_sym_while] = ACTIONS(2657), + [anon_sym_extern] = ACTIONS(2657), + [anon_sym_yield] = ACTIONS(2657), + [anon_sym_move] = ACTIONS(2657), + [anon_sym_try] = ACTIONS(2657), + [sym_integer_literal] = ACTIONS(2655), + [aux_sym_string_literal_token1] = ACTIONS(2655), + [sym_char_literal] = ACTIONS(2655), + [anon_sym_true] = ACTIONS(2657), + [anon_sym_false] = ACTIONS(2657), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2657), + [sym_super] = ACTIONS(2657), + [sym_crate] = ACTIONS(2657), + [sym_metavariable] = ACTIONS(2655), + [sym__raw_string_literal_start] = ACTIONS(2655), + [sym_float_literal] = ACTIONS(2655), + }, + [686] = { + [sym_line_comment] = STATE(686), + [sym_block_comment] = STATE(686), + [ts_builtin_sym_end] = ACTIONS(2659), + [sym_identifier] = ACTIONS(2661), + [anon_sym_SEMI] = ACTIONS(2659), + [anon_sym_macro_rules_BANG] = ACTIONS(2659), + [anon_sym_LPAREN] = ACTIONS(2659), + [anon_sym_LBRACK] = ACTIONS(2659), + [anon_sym_LBRACE] = ACTIONS(2659), + [anon_sym_RBRACE] = ACTIONS(2659), + [anon_sym_STAR] = ACTIONS(2659), + [anon_sym_u8] = ACTIONS(2661), + [anon_sym_i8] = ACTIONS(2661), + [anon_sym_u16] = ACTIONS(2661), + [anon_sym_i16] = ACTIONS(2661), + [anon_sym_u32] = ACTIONS(2661), + [anon_sym_i32] = ACTIONS(2661), + [anon_sym_u64] = ACTIONS(2661), + [anon_sym_i64] = ACTIONS(2661), + [anon_sym_u128] = ACTIONS(2661), + [anon_sym_i128] = ACTIONS(2661), + [anon_sym_isize] = ACTIONS(2661), + [anon_sym_usize] = ACTIONS(2661), + [anon_sym_f32] = ACTIONS(2661), + [anon_sym_f64] = ACTIONS(2661), + [anon_sym_bool] = ACTIONS(2661), + [anon_sym_str] = ACTIONS(2661), + [anon_sym_char] = ACTIONS(2661), + [anon_sym_DASH] = ACTIONS(2659), + [anon_sym_BANG] = ACTIONS(2659), + [anon_sym_AMP] = ACTIONS(2659), + [anon_sym_PIPE] = ACTIONS(2659), + [anon_sym_LT] = ACTIONS(2659), + [anon_sym_DOT_DOT] = ACTIONS(2659), + [anon_sym_COLON_COLON] = ACTIONS(2659), + [anon_sym_POUND] = ACTIONS(2659), + [anon_sym_SQUOTE] = ACTIONS(2661), + [anon_sym_async] = ACTIONS(2661), + [anon_sym_break] = ACTIONS(2661), + [anon_sym_const] = ACTIONS(2661), + [anon_sym_continue] = ACTIONS(2661), + [anon_sym_default] = ACTIONS(2661), + [anon_sym_enum] = ACTIONS(2661), + [anon_sym_fn] = ACTIONS(2661), + [anon_sym_for] = ACTIONS(2661), + [anon_sym_if] = ACTIONS(2661), + [anon_sym_impl] = ACTIONS(2661), + [anon_sym_let] = ACTIONS(2661), + [anon_sym_loop] = ACTIONS(2661), + [anon_sym_match] = ACTIONS(2661), + [anon_sym_mod] = ACTIONS(2661), + [anon_sym_pub] = ACTIONS(2661), + [anon_sym_return] = ACTIONS(2661), + [anon_sym_static] = ACTIONS(2661), + [anon_sym_struct] = ACTIONS(2661), + [anon_sym_trait] = ACTIONS(2661), + [anon_sym_type] = ACTIONS(2661), + [anon_sym_union] = ACTIONS(2661), + [anon_sym_unsafe] = ACTIONS(2661), + [anon_sym_use] = ACTIONS(2661), + [anon_sym_while] = ACTIONS(2661), + [anon_sym_extern] = ACTIONS(2661), + [anon_sym_yield] = ACTIONS(2661), + [anon_sym_move] = ACTIONS(2661), + [anon_sym_try] = ACTIONS(2661), + [sym_integer_literal] = ACTIONS(2659), + [aux_sym_string_literal_token1] = ACTIONS(2659), + [sym_char_literal] = ACTIONS(2659), + [anon_sym_true] = ACTIONS(2661), + [anon_sym_false] = ACTIONS(2661), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2661), + [sym_super] = ACTIONS(2661), + [sym_crate] = ACTIONS(2661), + [sym_metavariable] = ACTIONS(2659), + [sym__raw_string_literal_start] = ACTIONS(2659), + [sym_float_literal] = ACTIONS(2659), + }, + [687] = { + [sym_line_comment] = STATE(687), + [sym_block_comment] = STATE(687), + [ts_builtin_sym_end] = ACTIONS(2663), + [sym_identifier] = ACTIONS(2665), + [anon_sym_SEMI] = ACTIONS(2663), + [anon_sym_macro_rules_BANG] = ACTIONS(2663), + [anon_sym_LPAREN] = ACTIONS(2663), + [anon_sym_LBRACK] = ACTIONS(2663), + [anon_sym_LBRACE] = ACTIONS(2663), + [anon_sym_RBRACE] = ACTIONS(2663), + [anon_sym_STAR] = ACTIONS(2663), + [anon_sym_u8] = ACTIONS(2665), + [anon_sym_i8] = ACTIONS(2665), + [anon_sym_u16] = ACTIONS(2665), + [anon_sym_i16] = ACTIONS(2665), + [anon_sym_u32] = ACTIONS(2665), + [anon_sym_i32] = ACTIONS(2665), + [anon_sym_u64] = ACTIONS(2665), + [anon_sym_i64] = ACTIONS(2665), + [anon_sym_u128] = ACTIONS(2665), + [anon_sym_i128] = ACTIONS(2665), + [anon_sym_isize] = ACTIONS(2665), + [anon_sym_usize] = ACTIONS(2665), + [anon_sym_f32] = ACTIONS(2665), + [anon_sym_f64] = ACTIONS(2665), + [anon_sym_bool] = ACTIONS(2665), + [anon_sym_str] = ACTIONS(2665), + [anon_sym_char] = ACTIONS(2665), + [anon_sym_DASH] = ACTIONS(2663), + [anon_sym_BANG] = ACTIONS(2663), + [anon_sym_AMP] = ACTIONS(2663), + [anon_sym_PIPE] = ACTIONS(2663), + [anon_sym_LT] = ACTIONS(2663), + [anon_sym_DOT_DOT] = ACTIONS(2663), + [anon_sym_COLON_COLON] = ACTIONS(2663), + [anon_sym_POUND] = ACTIONS(2663), + [anon_sym_SQUOTE] = ACTIONS(2665), + [anon_sym_async] = ACTIONS(2665), + [anon_sym_break] = ACTIONS(2665), + [anon_sym_const] = ACTIONS(2665), + [anon_sym_continue] = ACTIONS(2665), + [anon_sym_default] = ACTIONS(2665), + [anon_sym_enum] = ACTIONS(2665), + [anon_sym_fn] = ACTIONS(2665), + [anon_sym_for] = ACTIONS(2665), + [anon_sym_if] = ACTIONS(2665), + [anon_sym_impl] = ACTIONS(2665), + [anon_sym_let] = ACTIONS(2665), + [anon_sym_loop] = ACTIONS(2665), + [anon_sym_match] = ACTIONS(2665), + [anon_sym_mod] = ACTIONS(2665), + [anon_sym_pub] = ACTIONS(2665), + [anon_sym_return] = ACTIONS(2665), + [anon_sym_static] = ACTIONS(2665), + [anon_sym_struct] = ACTIONS(2665), + [anon_sym_trait] = ACTIONS(2665), + [anon_sym_type] = ACTIONS(2665), + [anon_sym_union] = ACTIONS(2665), + [anon_sym_unsafe] = ACTIONS(2665), + [anon_sym_use] = ACTIONS(2665), + [anon_sym_while] = ACTIONS(2665), + [anon_sym_extern] = ACTIONS(2665), + [anon_sym_yield] = ACTIONS(2665), + [anon_sym_move] = ACTIONS(2665), + [anon_sym_try] = ACTIONS(2665), + [sym_integer_literal] = ACTIONS(2663), + [aux_sym_string_literal_token1] = ACTIONS(2663), + [sym_char_literal] = ACTIONS(2663), + [anon_sym_true] = ACTIONS(2665), + [anon_sym_false] = ACTIONS(2665), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2665), + [sym_super] = ACTIONS(2665), + [sym_crate] = ACTIONS(2665), + [sym_metavariable] = ACTIONS(2663), + [sym__raw_string_literal_start] = ACTIONS(2663), + [sym_float_literal] = ACTIONS(2663), + }, + [688] = { + [sym_line_comment] = STATE(688), + [sym_block_comment] = STATE(688), + [ts_builtin_sym_end] = ACTIONS(1206), + [sym_identifier] = ACTIONS(1208), + [anon_sym_SEMI] = ACTIONS(1206), + [anon_sym_macro_rules_BANG] = ACTIONS(1206), + [anon_sym_LPAREN] = ACTIONS(1206), + [anon_sym_LBRACK] = ACTIONS(1206), + [anon_sym_LBRACE] = ACTIONS(1206), + [anon_sym_RBRACE] = ACTIONS(1206), + [anon_sym_STAR] = ACTIONS(1206), + [anon_sym_u8] = ACTIONS(1208), + [anon_sym_i8] = ACTIONS(1208), + [anon_sym_u16] = ACTIONS(1208), + [anon_sym_i16] = ACTIONS(1208), + [anon_sym_u32] = ACTIONS(1208), + [anon_sym_i32] = ACTIONS(1208), + [anon_sym_u64] = ACTIONS(1208), + [anon_sym_i64] = ACTIONS(1208), + [anon_sym_u128] = ACTIONS(1208), + [anon_sym_i128] = ACTIONS(1208), + [anon_sym_isize] = ACTIONS(1208), + [anon_sym_usize] = ACTIONS(1208), + [anon_sym_f32] = ACTIONS(1208), + [anon_sym_f64] = ACTIONS(1208), + [anon_sym_bool] = ACTIONS(1208), + [anon_sym_str] = ACTIONS(1208), + [anon_sym_char] = ACTIONS(1208), + [anon_sym_DASH] = ACTIONS(1206), + [anon_sym_BANG] = ACTIONS(1206), + [anon_sym_AMP] = ACTIONS(1206), + [anon_sym_PIPE] = ACTIONS(1206), + [anon_sym_LT] = ACTIONS(1206), + [anon_sym_DOT_DOT] = ACTIONS(1206), + [anon_sym_COLON_COLON] = ACTIONS(1206), + [anon_sym_POUND] = ACTIONS(1206), + [anon_sym_SQUOTE] = ACTIONS(1208), + [anon_sym_async] = ACTIONS(1208), + [anon_sym_break] = ACTIONS(1208), + [anon_sym_const] = ACTIONS(1208), + [anon_sym_continue] = ACTIONS(1208), + [anon_sym_default] = ACTIONS(1208), + [anon_sym_enum] = ACTIONS(1208), + [anon_sym_fn] = ACTIONS(1208), + [anon_sym_for] = ACTIONS(1208), + [anon_sym_if] = ACTIONS(1208), + [anon_sym_impl] = ACTIONS(1208), + [anon_sym_let] = ACTIONS(1208), + [anon_sym_loop] = ACTIONS(1208), + [anon_sym_match] = ACTIONS(1208), + [anon_sym_mod] = ACTIONS(1208), + [anon_sym_pub] = ACTIONS(1208), + [anon_sym_return] = ACTIONS(1208), + [anon_sym_static] = ACTIONS(1208), + [anon_sym_struct] = ACTIONS(1208), + [anon_sym_trait] = ACTIONS(1208), + [anon_sym_type] = ACTIONS(1208), + [anon_sym_union] = ACTIONS(1208), + [anon_sym_unsafe] = ACTIONS(1208), + [anon_sym_use] = ACTIONS(1208), + [anon_sym_while] = ACTIONS(1208), + [anon_sym_extern] = ACTIONS(1208), + [anon_sym_yield] = ACTIONS(1208), + [anon_sym_move] = ACTIONS(1208), + [anon_sym_try] = ACTIONS(1208), + [sym_integer_literal] = ACTIONS(1206), + [aux_sym_string_literal_token1] = ACTIONS(1206), + [sym_char_literal] = ACTIONS(1206), + [anon_sym_true] = ACTIONS(1208), + [anon_sym_false] = ACTIONS(1208), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2374), - [sym_super] = ACTIONS(2374), - [sym_crate] = ACTIONS(2376), - [sym_metavariable] = ACTIONS(2378), + [sym_self] = ACTIONS(1208), + [sym_super] = ACTIONS(1208), + [sym_crate] = ACTIONS(1208), + [sym_metavariable] = ACTIONS(1206), + [sym__raw_string_literal_start] = ACTIONS(1206), + [sym_float_literal] = ACTIONS(1206), + }, + [689] = { + [sym_line_comment] = STATE(689), + [sym_block_comment] = STATE(689), + [ts_builtin_sym_end] = ACTIONS(2667), + [sym_identifier] = ACTIONS(2669), + [anon_sym_SEMI] = ACTIONS(2667), + [anon_sym_macro_rules_BANG] = ACTIONS(2667), + [anon_sym_LPAREN] = ACTIONS(2667), + [anon_sym_LBRACK] = ACTIONS(2667), + [anon_sym_LBRACE] = ACTIONS(2667), + [anon_sym_RBRACE] = ACTIONS(2667), + [anon_sym_STAR] = ACTIONS(2667), + [anon_sym_u8] = ACTIONS(2669), + [anon_sym_i8] = ACTIONS(2669), + [anon_sym_u16] = ACTIONS(2669), + [anon_sym_i16] = ACTIONS(2669), + [anon_sym_u32] = ACTIONS(2669), + [anon_sym_i32] = ACTIONS(2669), + [anon_sym_u64] = ACTIONS(2669), + [anon_sym_i64] = ACTIONS(2669), + [anon_sym_u128] = ACTIONS(2669), + [anon_sym_i128] = ACTIONS(2669), + [anon_sym_isize] = ACTIONS(2669), + [anon_sym_usize] = ACTIONS(2669), + [anon_sym_f32] = ACTIONS(2669), + [anon_sym_f64] = ACTIONS(2669), + [anon_sym_bool] = ACTIONS(2669), + [anon_sym_str] = ACTIONS(2669), + [anon_sym_char] = ACTIONS(2669), + [anon_sym_DASH] = ACTIONS(2667), + [anon_sym_BANG] = ACTIONS(2667), + [anon_sym_AMP] = ACTIONS(2667), + [anon_sym_PIPE] = ACTIONS(2667), + [anon_sym_LT] = ACTIONS(2667), + [anon_sym_DOT_DOT] = ACTIONS(2667), + [anon_sym_COLON_COLON] = ACTIONS(2667), + [anon_sym_POUND] = ACTIONS(2667), + [anon_sym_SQUOTE] = ACTIONS(2669), + [anon_sym_async] = ACTIONS(2669), + [anon_sym_break] = ACTIONS(2669), + [anon_sym_const] = ACTIONS(2669), + [anon_sym_continue] = ACTIONS(2669), + [anon_sym_default] = ACTIONS(2669), + [anon_sym_enum] = ACTIONS(2669), + [anon_sym_fn] = ACTIONS(2669), + [anon_sym_for] = ACTIONS(2669), + [anon_sym_if] = ACTIONS(2669), + [anon_sym_impl] = ACTIONS(2669), + [anon_sym_let] = ACTIONS(2669), + [anon_sym_loop] = ACTIONS(2669), + [anon_sym_match] = ACTIONS(2669), + [anon_sym_mod] = ACTIONS(2669), + [anon_sym_pub] = ACTIONS(2669), + [anon_sym_return] = ACTIONS(2669), + [anon_sym_static] = ACTIONS(2669), + [anon_sym_struct] = ACTIONS(2669), + [anon_sym_trait] = ACTIONS(2669), + [anon_sym_type] = ACTIONS(2669), + [anon_sym_union] = ACTIONS(2669), + [anon_sym_unsafe] = ACTIONS(2669), + [anon_sym_use] = ACTIONS(2669), + [anon_sym_while] = ACTIONS(2669), + [anon_sym_extern] = ACTIONS(2669), + [anon_sym_yield] = ACTIONS(2669), + [anon_sym_move] = ACTIONS(2669), + [anon_sym_try] = ACTIONS(2669), + [sym_integer_literal] = ACTIONS(2667), + [aux_sym_string_literal_token1] = ACTIONS(2667), + [sym_char_literal] = ACTIONS(2667), + [anon_sym_true] = ACTIONS(2669), + [anon_sym_false] = ACTIONS(2669), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2669), + [sym_super] = ACTIONS(2669), + [sym_crate] = ACTIONS(2669), + [sym_metavariable] = ACTIONS(2667), + [sym__raw_string_literal_start] = ACTIONS(2667), + [sym_float_literal] = ACTIONS(2667), + }, + [690] = { + [sym_line_comment] = STATE(690), + [sym_block_comment] = STATE(690), + [ts_builtin_sym_end] = ACTIONS(2671), + [sym_identifier] = ACTIONS(2673), + [anon_sym_SEMI] = ACTIONS(2671), + [anon_sym_macro_rules_BANG] = ACTIONS(2671), + [anon_sym_LPAREN] = ACTIONS(2671), + [anon_sym_LBRACK] = ACTIONS(2671), + [anon_sym_LBRACE] = ACTIONS(2671), + [anon_sym_RBRACE] = ACTIONS(2671), + [anon_sym_STAR] = ACTIONS(2671), + [anon_sym_u8] = ACTIONS(2673), + [anon_sym_i8] = ACTIONS(2673), + [anon_sym_u16] = ACTIONS(2673), + [anon_sym_i16] = ACTIONS(2673), + [anon_sym_u32] = ACTIONS(2673), + [anon_sym_i32] = ACTIONS(2673), + [anon_sym_u64] = ACTIONS(2673), + [anon_sym_i64] = ACTIONS(2673), + [anon_sym_u128] = ACTIONS(2673), + [anon_sym_i128] = ACTIONS(2673), + [anon_sym_isize] = ACTIONS(2673), + [anon_sym_usize] = ACTIONS(2673), + [anon_sym_f32] = ACTIONS(2673), + [anon_sym_f64] = ACTIONS(2673), + [anon_sym_bool] = ACTIONS(2673), + [anon_sym_str] = ACTIONS(2673), + [anon_sym_char] = ACTIONS(2673), + [anon_sym_DASH] = ACTIONS(2671), + [anon_sym_BANG] = ACTIONS(2671), + [anon_sym_AMP] = ACTIONS(2671), + [anon_sym_PIPE] = ACTIONS(2671), + [anon_sym_LT] = ACTIONS(2671), + [anon_sym_DOT_DOT] = ACTIONS(2671), + [anon_sym_COLON_COLON] = ACTIONS(2671), + [anon_sym_POUND] = ACTIONS(2671), + [anon_sym_SQUOTE] = ACTIONS(2673), + [anon_sym_async] = ACTIONS(2673), + [anon_sym_break] = ACTIONS(2673), + [anon_sym_const] = ACTIONS(2673), + [anon_sym_continue] = ACTIONS(2673), + [anon_sym_default] = ACTIONS(2673), + [anon_sym_enum] = ACTIONS(2673), + [anon_sym_fn] = ACTIONS(2673), + [anon_sym_for] = ACTIONS(2673), + [anon_sym_if] = ACTIONS(2673), + [anon_sym_impl] = ACTIONS(2673), + [anon_sym_let] = ACTIONS(2673), + [anon_sym_loop] = ACTIONS(2673), + [anon_sym_match] = ACTIONS(2673), + [anon_sym_mod] = ACTIONS(2673), + [anon_sym_pub] = ACTIONS(2673), + [anon_sym_return] = ACTIONS(2673), + [anon_sym_static] = ACTIONS(2673), + [anon_sym_struct] = ACTIONS(2673), + [anon_sym_trait] = ACTIONS(2673), + [anon_sym_type] = ACTIONS(2673), + [anon_sym_union] = ACTIONS(2673), + [anon_sym_unsafe] = ACTIONS(2673), + [anon_sym_use] = ACTIONS(2673), + [anon_sym_while] = ACTIONS(2673), + [anon_sym_extern] = ACTIONS(2673), + [anon_sym_yield] = ACTIONS(2673), + [anon_sym_move] = ACTIONS(2673), + [anon_sym_try] = ACTIONS(2673), + [sym_integer_literal] = ACTIONS(2671), + [aux_sym_string_literal_token1] = ACTIONS(2671), + [sym_char_literal] = ACTIONS(2671), + [anon_sym_true] = ACTIONS(2673), + [anon_sym_false] = ACTIONS(2673), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2673), + [sym_super] = ACTIONS(2673), + [sym_crate] = ACTIONS(2673), + [sym_metavariable] = ACTIONS(2671), + [sym__raw_string_literal_start] = ACTIONS(2671), + [sym_float_literal] = ACTIONS(2671), + }, + [691] = { + [sym_line_comment] = STATE(691), + [sym_block_comment] = STATE(691), + [ts_builtin_sym_end] = ACTIONS(2675), + [sym_identifier] = ACTIONS(2677), + [anon_sym_SEMI] = ACTIONS(2675), + [anon_sym_macro_rules_BANG] = ACTIONS(2675), + [anon_sym_LPAREN] = ACTIONS(2675), + [anon_sym_LBRACK] = ACTIONS(2675), + [anon_sym_LBRACE] = ACTIONS(2675), + [anon_sym_RBRACE] = ACTIONS(2675), + [anon_sym_STAR] = ACTIONS(2675), + [anon_sym_u8] = ACTIONS(2677), + [anon_sym_i8] = ACTIONS(2677), + [anon_sym_u16] = ACTIONS(2677), + [anon_sym_i16] = ACTIONS(2677), + [anon_sym_u32] = ACTIONS(2677), + [anon_sym_i32] = ACTIONS(2677), + [anon_sym_u64] = ACTIONS(2677), + [anon_sym_i64] = ACTIONS(2677), + [anon_sym_u128] = ACTIONS(2677), + [anon_sym_i128] = ACTIONS(2677), + [anon_sym_isize] = ACTIONS(2677), + [anon_sym_usize] = ACTIONS(2677), + [anon_sym_f32] = ACTIONS(2677), + [anon_sym_f64] = ACTIONS(2677), + [anon_sym_bool] = ACTIONS(2677), + [anon_sym_str] = ACTIONS(2677), + [anon_sym_char] = ACTIONS(2677), + [anon_sym_DASH] = ACTIONS(2675), + [anon_sym_BANG] = ACTIONS(2675), + [anon_sym_AMP] = ACTIONS(2675), + [anon_sym_PIPE] = ACTIONS(2675), + [anon_sym_LT] = ACTIONS(2675), + [anon_sym_DOT_DOT] = ACTIONS(2675), + [anon_sym_COLON_COLON] = ACTIONS(2675), + [anon_sym_POUND] = ACTIONS(2675), + [anon_sym_SQUOTE] = ACTIONS(2677), + [anon_sym_async] = ACTIONS(2677), + [anon_sym_break] = ACTIONS(2677), + [anon_sym_const] = ACTIONS(2677), + [anon_sym_continue] = ACTIONS(2677), + [anon_sym_default] = ACTIONS(2677), + [anon_sym_enum] = ACTIONS(2677), + [anon_sym_fn] = ACTIONS(2677), + [anon_sym_for] = ACTIONS(2677), + [anon_sym_if] = ACTIONS(2677), + [anon_sym_impl] = ACTIONS(2677), + [anon_sym_let] = ACTIONS(2677), + [anon_sym_loop] = ACTIONS(2677), + [anon_sym_match] = ACTIONS(2677), + [anon_sym_mod] = ACTIONS(2677), + [anon_sym_pub] = ACTIONS(2677), + [anon_sym_return] = ACTIONS(2677), + [anon_sym_static] = ACTIONS(2677), + [anon_sym_struct] = ACTIONS(2677), + [anon_sym_trait] = ACTIONS(2677), + [anon_sym_type] = ACTIONS(2677), + [anon_sym_union] = ACTIONS(2677), + [anon_sym_unsafe] = ACTIONS(2677), + [anon_sym_use] = ACTIONS(2677), + [anon_sym_while] = ACTIONS(2677), + [anon_sym_extern] = ACTIONS(2677), + [anon_sym_yield] = ACTIONS(2677), + [anon_sym_move] = ACTIONS(2677), + [anon_sym_try] = ACTIONS(2677), + [sym_integer_literal] = ACTIONS(2675), + [aux_sym_string_literal_token1] = ACTIONS(2675), + [sym_char_literal] = ACTIONS(2675), + [anon_sym_true] = ACTIONS(2677), + [anon_sym_false] = ACTIONS(2677), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2677), + [sym_super] = ACTIONS(2677), + [sym_crate] = ACTIONS(2677), + [sym_metavariable] = ACTIONS(2675), + [sym__raw_string_literal_start] = ACTIONS(2675), + [sym_float_literal] = ACTIONS(2675), + }, + [692] = { + [sym_line_comment] = STATE(692), + [sym_block_comment] = STATE(692), + [ts_builtin_sym_end] = ACTIONS(2679), + [sym_identifier] = ACTIONS(2681), + [anon_sym_SEMI] = ACTIONS(2679), + [anon_sym_macro_rules_BANG] = ACTIONS(2679), + [anon_sym_LPAREN] = ACTIONS(2679), + [anon_sym_LBRACK] = ACTIONS(2679), + [anon_sym_LBRACE] = ACTIONS(2679), + [anon_sym_RBRACE] = ACTIONS(2679), + [anon_sym_STAR] = ACTIONS(2679), + [anon_sym_u8] = ACTIONS(2681), + [anon_sym_i8] = ACTIONS(2681), + [anon_sym_u16] = ACTIONS(2681), + [anon_sym_i16] = ACTIONS(2681), + [anon_sym_u32] = ACTIONS(2681), + [anon_sym_i32] = ACTIONS(2681), + [anon_sym_u64] = ACTIONS(2681), + [anon_sym_i64] = ACTIONS(2681), + [anon_sym_u128] = ACTIONS(2681), + [anon_sym_i128] = ACTIONS(2681), + [anon_sym_isize] = ACTIONS(2681), + [anon_sym_usize] = ACTIONS(2681), + [anon_sym_f32] = ACTIONS(2681), + [anon_sym_f64] = ACTIONS(2681), + [anon_sym_bool] = ACTIONS(2681), + [anon_sym_str] = ACTIONS(2681), + [anon_sym_char] = ACTIONS(2681), + [anon_sym_DASH] = ACTIONS(2679), + [anon_sym_BANG] = ACTIONS(2679), + [anon_sym_AMP] = ACTIONS(2679), + [anon_sym_PIPE] = ACTIONS(2679), + [anon_sym_LT] = ACTIONS(2679), + [anon_sym_DOT_DOT] = ACTIONS(2679), + [anon_sym_COLON_COLON] = ACTIONS(2679), + [anon_sym_POUND] = ACTIONS(2679), + [anon_sym_SQUOTE] = ACTIONS(2681), + [anon_sym_async] = ACTIONS(2681), + [anon_sym_break] = ACTIONS(2681), + [anon_sym_const] = ACTIONS(2681), + [anon_sym_continue] = ACTIONS(2681), + [anon_sym_default] = ACTIONS(2681), + [anon_sym_enum] = ACTIONS(2681), + [anon_sym_fn] = ACTIONS(2681), + [anon_sym_for] = ACTIONS(2681), + [anon_sym_if] = ACTIONS(2681), + [anon_sym_impl] = ACTIONS(2681), + [anon_sym_let] = ACTIONS(2681), + [anon_sym_loop] = ACTIONS(2681), + [anon_sym_match] = ACTIONS(2681), + [anon_sym_mod] = ACTIONS(2681), + [anon_sym_pub] = ACTIONS(2681), + [anon_sym_return] = ACTIONS(2681), + [anon_sym_static] = ACTIONS(2681), + [anon_sym_struct] = ACTIONS(2681), + [anon_sym_trait] = ACTIONS(2681), + [anon_sym_type] = ACTIONS(2681), + [anon_sym_union] = ACTIONS(2681), + [anon_sym_unsafe] = ACTIONS(2681), + [anon_sym_use] = ACTIONS(2681), + [anon_sym_while] = ACTIONS(2681), + [anon_sym_extern] = ACTIONS(2681), + [anon_sym_yield] = ACTIONS(2681), + [anon_sym_move] = ACTIONS(2681), + [anon_sym_try] = ACTIONS(2681), + [sym_integer_literal] = ACTIONS(2679), + [aux_sym_string_literal_token1] = ACTIONS(2679), + [sym_char_literal] = ACTIONS(2679), + [anon_sym_true] = ACTIONS(2681), + [anon_sym_false] = ACTIONS(2681), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2681), + [sym_super] = ACTIONS(2681), + [sym_crate] = ACTIONS(2681), + [sym_metavariable] = ACTIONS(2679), + [sym__raw_string_literal_start] = ACTIONS(2679), + [sym_float_literal] = ACTIONS(2679), + }, + [693] = { + [sym_line_comment] = STATE(693), + [sym_block_comment] = STATE(693), + [ts_builtin_sym_end] = ACTIONS(2683), + [sym_identifier] = ACTIONS(2685), + [anon_sym_SEMI] = ACTIONS(2683), + [anon_sym_macro_rules_BANG] = ACTIONS(2683), + [anon_sym_LPAREN] = ACTIONS(2683), + [anon_sym_LBRACK] = ACTIONS(2683), + [anon_sym_LBRACE] = ACTIONS(2683), + [anon_sym_RBRACE] = ACTIONS(2683), + [anon_sym_STAR] = ACTIONS(2683), + [anon_sym_u8] = ACTIONS(2685), + [anon_sym_i8] = ACTIONS(2685), + [anon_sym_u16] = ACTIONS(2685), + [anon_sym_i16] = ACTIONS(2685), + [anon_sym_u32] = ACTIONS(2685), + [anon_sym_i32] = ACTIONS(2685), + [anon_sym_u64] = ACTIONS(2685), + [anon_sym_i64] = ACTIONS(2685), + [anon_sym_u128] = ACTIONS(2685), + [anon_sym_i128] = ACTIONS(2685), + [anon_sym_isize] = ACTIONS(2685), + [anon_sym_usize] = ACTIONS(2685), + [anon_sym_f32] = ACTIONS(2685), + [anon_sym_f64] = ACTIONS(2685), + [anon_sym_bool] = ACTIONS(2685), + [anon_sym_str] = ACTIONS(2685), + [anon_sym_char] = ACTIONS(2685), + [anon_sym_DASH] = ACTIONS(2683), + [anon_sym_BANG] = ACTIONS(2683), + [anon_sym_AMP] = ACTIONS(2683), + [anon_sym_PIPE] = ACTIONS(2683), + [anon_sym_LT] = ACTIONS(2683), + [anon_sym_DOT_DOT] = ACTIONS(2683), + [anon_sym_COLON_COLON] = ACTIONS(2683), + [anon_sym_POUND] = ACTIONS(2683), + [anon_sym_SQUOTE] = ACTIONS(2685), + [anon_sym_async] = ACTIONS(2685), + [anon_sym_break] = ACTIONS(2685), + [anon_sym_const] = ACTIONS(2685), + [anon_sym_continue] = ACTIONS(2685), + [anon_sym_default] = ACTIONS(2685), + [anon_sym_enum] = ACTIONS(2685), + [anon_sym_fn] = ACTIONS(2685), + [anon_sym_for] = ACTIONS(2685), + [anon_sym_if] = ACTIONS(2685), + [anon_sym_impl] = ACTIONS(2685), + [anon_sym_let] = ACTIONS(2685), + [anon_sym_loop] = ACTIONS(2685), + [anon_sym_match] = ACTIONS(2685), + [anon_sym_mod] = ACTIONS(2685), + [anon_sym_pub] = ACTIONS(2685), + [anon_sym_return] = ACTIONS(2685), + [anon_sym_static] = ACTIONS(2685), + [anon_sym_struct] = ACTIONS(2685), + [anon_sym_trait] = ACTIONS(2685), + [anon_sym_type] = ACTIONS(2685), + [anon_sym_union] = ACTIONS(2685), + [anon_sym_unsafe] = ACTIONS(2685), + [anon_sym_use] = ACTIONS(2685), + [anon_sym_while] = ACTIONS(2685), + [anon_sym_extern] = ACTIONS(2685), + [anon_sym_yield] = ACTIONS(2685), + [anon_sym_move] = ACTIONS(2685), + [anon_sym_try] = ACTIONS(2685), + [sym_integer_literal] = ACTIONS(2683), + [aux_sym_string_literal_token1] = ACTIONS(2683), + [sym_char_literal] = ACTIONS(2683), + [anon_sym_true] = ACTIONS(2685), + [anon_sym_false] = ACTIONS(2685), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2685), + [sym_super] = ACTIONS(2685), + [sym_crate] = ACTIONS(2685), + [sym_metavariable] = ACTIONS(2683), + [sym__raw_string_literal_start] = ACTIONS(2683), + [sym_float_literal] = ACTIONS(2683), + }, + [694] = { + [sym_line_comment] = STATE(694), + [sym_block_comment] = STATE(694), + [ts_builtin_sym_end] = ACTIONS(2687), + [sym_identifier] = ACTIONS(2689), + [anon_sym_SEMI] = ACTIONS(2687), + [anon_sym_macro_rules_BANG] = ACTIONS(2687), + [anon_sym_LPAREN] = ACTIONS(2687), + [anon_sym_LBRACK] = ACTIONS(2687), + [anon_sym_LBRACE] = ACTIONS(2687), + [anon_sym_RBRACE] = ACTIONS(2687), + [anon_sym_STAR] = ACTIONS(2687), + [anon_sym_u8] = ACTIONS(2689), + [anon_sym_i8] = ACTIONS(2689), + [anon_sym_u16] = ACTIONS(2689), + [anon_sym_i16] = ACTIONS(2689), + [anon_sym_u32] = ACTIONS(2689), + [anon_sym_i32] = ACTIONS(2689), + [anon_sym_u64] = ACTIONS(2689), + [anon_sym_i64] = ACTIONS(2689), + [anon_sym_u128] = ACTIONS(2689), + [anon_sym_i128] = ACTIONS(2689), + [anon_sym_isize] = ACTIONS(2689), + [anon_sym_usize] = ACTIONS(2689), + [anon_sym_f32] = ACTIONS(2689), + [anon_sym_f64] = ACTIONS(2689), + [anon_sym_bool] = ACTIONS(2689), + [anon_sym_str] = ACTIONS(2689), + [anon_sym_char] = ACTIONS(2689), + [anon_sym_DASH] = ACTIONS(2687), + [anon_sym_BANG] = ACTIONS(2687), + [anon_sym_AMP] = ACTIONS(2687), + [anon_sym_PIPE] = ACTIONS(2687), + [anon_sym_LT] = ACTIONS(2687), + [anon_sym_DOT_DOT] = ACTIONS(2687), + [anon_sym_COLON_COLON] = ACTIONS(2687), + [anon_sym_POUND] = ACTIONS(2687), + [anon_sym_SQUOTE] = ACTIONS(2689), + [anon_sym_async] = ACTIONS(2689), + [anon_sym_break] = ACTIONS(2689), + [anon_sym_const] = ACTIONS(2689), + [anon_sym_continue] = ACTIONS(2689), + [anon_sym_default] = ACTIONS(2689), + [anon_sym_enum] = ACTIONS(2689), + [anon_sym_fn] = ACTIONS(2689), + [anon_sym_for] = ACTIONS(2689), + [anon_sym_if] = ACTIONS(2689), + [anon_sym_impl] = ACTIONS(2689), + [anon_sym_let] = ACTIONS(2689), + [anon_sym_loop] = ACTIONS(2689), + [anon_sym_match] = ACTIONS(2689), + [anon_sym_mod] = ACTIONS(2689), + [anon_sym_pub] = ACTIONS(2689), + [anon_sym_return] = ACTIONS(2689), + [anon_sym_static] = ACTIONS(2689), + [anon_sym_struct] = ACTIONS(2689), + [anon_sym_trait] = ACTIONS(2689), + [anon_sym_type] = ACTIONS(2689), + [anon_sym_union] = ACTIONS(2689), + [anon_sym_unsafe] = ACTIONS(2689), + [anon_sym_use] = ACTIONS(2689), + [anon_sym_while] = ACTIONS(2689), + [anon_sym_extern] = ACTIONS(2689), + [anon_sym_yield] = ACTIONS(2689), + [anon_sym_move] = ACTIONS(2689), + [anon_sym_try] = ACTIONS(2689), + [sym_integer_literal] = ACTIONS(2687), + [aux_sym_string_literal_token1] = ACTIONS(2687), + [sym_char_literal] = ACTIONS(2687), + [anon_sym_true] = ACTIONS(2689), + [anon_sym_false] = ACTIONS(2689), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2689), + [sym_super] = ACTIONS(2689), + [sym_crate] = ACTIONS(2689), + [sym_metavariable] = ACTIONS(2687), + [sym__raw_string_literal_start] = ACTIONS(2687), + [sym_float_literal] = ACTIONS(2687), + }, + [695] = { + [sym_line_comment] = STATE(695), + [sym_block_comment] = STATE(695), + [ts_builtin_sym_end] = ACTIONS(2691), + [sym_identifier] = ACTIONS(2693), + [anon_sym_SEMI] = ACTIONS(2691), + [anon_sym_macro_rules_BANG] = ACTIONS(2691), + [anon_sym_LPAREN] = ACTIONS(2691), + [anon_sym_LBRACK] = ACTIONS(2691), + [anon_sym_LBRACE] = ACTIONS(2691), + [anon_sym_RBRACE] = ACTIONS(2691), + [anon_sym_STAR] = ACTIONS(2691), + [anon_sym_u8] = ACTIONS(2693), + [anon_sym_i8] = ACTIONS(2693), + [anon_sym_u16] = ACTIONS(2693), + [anon_sym_i16] = ACTIONS(2693), + [anon_sym_u32] = ACTIONS(2693), + [anon_sym_i32] = ACTIONS(2693), + [anon_sym_u64] = ACTIONS(2693), + [anon_sym_i64] = ACTIONS(2693), + [anon_sym_u128] = ACTIONS(2693), + [anon_sym_i128] = ACTIONS(2693), + [anon_sym_isize] = ACTIONS(2693), + [anon_sym_usize] = ACTIONS(2693), + [anon_sym_f32] = ACTIONS(2693), + [anon_sym_f64] = ACTIONS(2693), + [anon_sym_bool] = ACTIONS(2693), + [anon_sym_str] = ACTIONS(2693), + [anon_sym_char] = ACTIONS(2693), + [anon_sym_DASH] = ACTIONS(2691), + [anon_sym_BANG] = ACTIONS(2691), + [anon_sym_AMP] = ACTIONS(2691), + [anon_sym_PIPE] = ACTIONS(2691), + [anon_sym_LT] = ACTIONS(2691), + [anon_sym_DOT_DOT] = ACTIONS(2691), + [anon_sym_COLON_COLON] = ACTIONS(2691), + [anon_sym_POUND] = ACTIONS(2691), + [anon_sym_SQUOTE] = ACTIONS(2693), + [anon_sym_async] = ACTIONS(2693), + [anon_sym_break] = ACTIONS(2693), + [anon_sym_const] = ACTIONS(2693), + [anon_sym_continue] = ACTIONS(2693), + [anon_sym_default] = ACTIONS(2693), + [anon_sym_enum] = ACTIONS(2693), + [anon_sym_fn] = ACTIONS(2693), + [anon_sym_for] = ACTIONS(2693), + [anon_sym_if] = ACTIONS(2693), + [anon_sym_impl] = ACTIONS(2693), + [anon_sym_let] = ACTIONS(2693), + [anon_sym_loop] = ACTIONS(2693), + [anon_sym_match] = ACTIONS(2693), + [anon_sym_mod] = ACTIONS(2693), + [anon_sym_pub] = ACTIONS(2693), + [anon_sym_return] = ACTIONS(2693), + [anon_sym_static] = ACTIONS(2693), + [anon_sym_struct] = ACTIONS(2693), + [anon_sym_trait] = ACTIONS(2693), + [anon_sym_type] = ACTIONS(2693), + [anon_sym_union] = ACTIONS(2693), + [anon_sym_unsafe] = ACTIONS(2693), + [anon_sym_use] = ACTIONS(2693), + [anon_sym_while] = ACTIONS(2693), + [anon_sym_extern] = ACTIONS(2693), + [anon_sym_yield] = ACTIONS(2693), + [anon_sym_move] = ACTIONS(2693), + [anon_sym_try] = ACTIONS(2693), + [sym_integer_literal] = ACTIONS(2691), + [aux_sym_string_literal_token1] = ACTIONS(2691), + [sym_char_literal] = ACTIONS(2691), + [anon_sym_true] = ACTIONS(2693), + [anon_sym_false] = ACTIONS(2693), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2693), + [sym_super] = ACTIONS(2693), + [sym_crate] = ACTIONS(2693), + [sym_metavariable] = ACTIONS(2691), + [sym__raw_string_literal_start] = ACTIONS(2691), + [sym_float_literal] = ACTIONS(2691), + }, + [696] = { + [sym_line_comment] = STATE(696), + [sym_block_comment] = STATE(696), + [ts_builtin_sym_end] = ACTIONS(2695), + [sym_identifier] = ACTIONS(2697), + [anon_sym_SEMI] = ACTIONS(2695), + [anon_sym_macro_rules_BANG] = ACTIONS(2695), + [anon_sym_LPAREN] = ACTIONS(2695), + [anon_sym_LBRACK] = ACTIONS(2695), + [anon_sym_LBRACE] = ACTIONS(2695), + [anon_sym_RBRACE] = ACTIONS(2695), + [anon_sym_STAR] = ACTIONS(2695), + [anon_sym_u8] = ACTIONS(2697), + [anon_sym_i8] = ACTIONS(2697), + [anon_sym_u16] = ACTIONS(2697), + [anon_sym_i16] = ACTIONS(2697), + [anon_sym_u32] = ACTIONS(2697), + [anon_sym_i32] = ACTIONS(2697), + [anon_sym_u64] = ACTIONS(2697), + [anon_sym_i64] = ACTIONS(2697), + [anon_sym_u128] = ACTIONS(2697), + [anon_sym_i128] = ACTIONS(2697), + [anon_sym_isize] = ACTIONS(2697), + [anon_sym_usize] = ACTIONS(2697), + [anon_sym_f32] = ACTIONS(2697), + [anon_sym_f64] = ACTIONS(2697), + [anon_sym_bool] = ACTIONS(2697), + [anon_sym_str] = ACTIONS(2697), + [anon_sym_char] = ACTIONS(2697), + [anon_sym_DASH] = ACTIONS(2695), + [anon_sym_BANG] = ACTIONS(2695), + [anon_sym_AMP] = ACTIONS(2695), + [anon_sym_PIPE] = ACTIONS(2695), + [anon_sym_LT] = ACTIONS(2695), + [anon_sym_DOT_DOT] = ACTIONS(2695), + [anon_sym_COLON_COLON] = ACTIONS(2695), + [anon_sym_POUND] = ACTIONS(2695), + [anon_sym_SQUOTE] = ACTIONS(2697), + [anon_sym_async] = ACTIONS(2697), + [anon_sym_break] = ACTIONS(2697), + [anon_sym_const] = ACTIONS(2697), + [anon_sym_continue] = ACTIONS(2697), + [anon_sym_default] = ACTIONS(2697), + [anon_sym_enum] = ACTIONS(2697), + [anon_sym_fn] = ACTIONS(2697), + [anon_sym_for] = ACTIONS(2697), + [anon_sym_if] = ACTIONS(2697), + [anon_sym_impl] = ACTIONS(2697), + [anon_sym_let] = ACTIONS(2697), + [anon_sym_loop] = ACTIONS(2697), + [anon_sym_match] = ACTIONS(2697), + [anon_sym_mod] = ACTIONS(2697), + [anon_sym_pub] = ACTIONS(2697), + [anon_sym_return] = ACTIONS(2697), + [anon_sym_static] = ACTIONS(2697), + [anon_sym_struct] = ACTIONS(2697), + [anon_sym_trait] = ACTIONS(2697), + [anon_sym_type] = ACTIONS(2697), + [anon_sym_union] = ACTIONS(2697), + [anon_sym_unsafe] = ACTIONS(2697), + [anon_sym_use] = ACTIONS(2697), + [anon_sym_while] = ACTIONS(2697), + [anon_sym_extern] = ACTIONS(2697), + [anon_sym_yield] = ACTIONS(2697), + [anon_sym_move] = ACTIONS(2697), + [anon_sym_try] = ACTIONS(2697), + [sym_integer_literal] = ACTIONS(2695), + [aux_sym_string_literal_token1] = ACTIONS(2695), + [sym_char_literal] = ACTIONS(2695), + [anon_sym_true] = ACTIONS(2697), + [anon_sym_false] = ACTIONS(2697), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2697), + [sym_super] = ACTIONS(2697), + [sym_crate] = ACTIONS(2697), + [sym_metavariable] = ACTIONS(2695), + [sym__raw_string_literal_start] = ACTIONS(2695), + [sym_float_literal] = ACTIONS(2695), + }, + [697] = { + [sym_line_comment] = STATE(697), + [sym_block_comment] = STATE(697), + [ts_builtin_sym_end] = ACTIONS(2699), + [sym_identifier] = ACTIONS(2701), + [anon_sym_SEMI] = ACTIONS(2699), + [anon_sym_macro_rules_BANG] = ACTIONS(2699), + [anon_sym_LPAREN] = ACTIONS(2699), + [anon_sym_LBRACK] = ACTIONS(2699), + [anon_sym_LBRACE] = ACTIONS(2699), + [anon_sym_RBRACE] = ACTIONS(2699), + [anon_sym_STAR] = ACTIONS(2699), + [anon_sym_u8] = ACTIONS(2701), + [anon_sym_i8] = ACTIONS(2701), + [anon_sym_u16] = ACTIONS(2701), + [anon_sym_i16] = ACTIONS(2701), + [anon_sym_u32] = ACTIONS(2701), + [anon_sym_i32] = ACTIONS(2701), + [anon_sym_u64] = ACTIONS(2701), + [anon_sym_i64] = ACTIONS(2701), + [anon_sym_u128] = ACTIONS(2701), + [anon_sym_i128] = ACTIONS(2701), + [anon_sym_isize] = ACTIONS(2701), + [anon_sym_usize] = ACTIONS(2701), + [anon_sym_f32] = ACTIONS(2701), + [anon_sym_f64] = ACTIONS(2701), + [anon_sym_bool] = ACTIONS(2701), + [anon_sym_str] = ACTIONS(2701), + [anon_sym_char] = ACTIONS(2701), + [anon_sym_DASH] = ACTIONS(2699), + [anon_sym_BANG] = ACTIONS(2699), + [anon_sym_AMP] = ACTIONS(2699), + [anon_sym_PIPE] = ACTIONS(2699), + [anon_sym_LT] = ACTIONS(2699), + [anon_sym_DOT_DOT] = ACTIONS(2699), + [anon_sym_COLON_COLON] = ACTIONS(2699), + [anon_sym_POUND] = ACTIONS(2699), + [anon_sym_SQUOTE] = ACTIONS(2701), + [anon_sym_async] = ACTIONS(2701), + [anon_sym_break] = ACTIONS(2701), + [anon_sym_const] = ACTIONS(2701), + [anon_sym_continue] = ACTIONS(2701), + [anon_sym_default] = ACTIONS(2701), + [anon_sym_enum] = ACTIONS(2701), + [anon_sym_fn] = ACTIONS(2701), + [anon_sym_for] = ACTIONS(2701), + [anon_sym_if] = ACTIONS(2701), + [anon_sym_impl] = ACTIONS(2701), + [anon_sym_let] = ACTIONS(2701), + [anon_sym_loop] = ACTIONS(2701), + [anon_sym_match] = ACTIONS(2701), + [anon_sym_mod] = ACTIONS(2701), + [anon_sym_pub] = ACTIONS(2701), + [anon_sym_return] = ACTIONS(2701), + [anon_sym_static] = ACTIONS(2701), + [anon_sym_struct] = ACTIONS(2701), + [anon_sym_trait] = ACTIONS(2701), + [anon_sym_type] = ACTIONS(2701), + [anon_sym_union] = ACTIONS(2701), + [anon_sym_unsafe] = ACTIONS(2701), + [anon_sym_use] = ACTIONS(2701), + [anon_sym_while] = ACTIONS(2701), + [anon_sym_extern] = ACTIONS(2701), + [anon_sym_yield] = ACTIONS(2701), + [anon_sym_move] = ACTIONS(2701), + [anon_sym_try] = ACTIONS(2701), + [sym_integer_literal] = ACTIONS(2699), + [aux_sym_string_literal_token1] = ACTIONS(2699), + [sym_char_literal] = ACTIONS(2699), + [anon_sym_true] = ACTIONS(2701), + [anon_sym_false] = ACTIONS(2701), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2701), + [sym_super] = ACTIONS(2701), + [sym_crate] = ACTIONS(2701), + [sym_metavariable] = ACTIONS(2699), + [sym__raw_string_literal_start] = ACTIONS(2699), + [sym_float_literal] = ACTIONS(2699), + }, + [698] = { + [sym_line_comment] = STATE(698), + [sym_block_comment] = STATE(698), + [ts_builtin_sym_end] = ACTIONS(2703), + [sym_identifier] = ACTIONS(2705), + [anon_sym_SEMI] = ACTIONS(2703), + [anon_sym_macro_rules_BANG] = ACTIONS(2703), + [anon_sym_LPAREN] = ACTIONS(2703), + [anon_sym_LBRACK] = ACTIONS(2703), + [anon_sym_LBRACE] = ACTIONS(2703), + [anon_sym_RBRACE] = ACTIONS(2703), + [anon_sym_STAR] = ACTIONS(2703), + [anon_sym_u8] = ACTIONS(2705), + [anon_sym_i8] = ACTIONS(2705), + [anon_sym_u16] = ACTIONS(2705), + [anon_sym_i16] = ACTIONS(2705), + [anon_sym_u32] = ACTIONS(2705), + [anon_sym_i32] = ACTIONS(2705), + [anon_sym_u64] = ACTIONS(2705), + [anon_sym_i64] = ACTIONS(2705), + [anon_sym_u128] = ACTIONS(2705), + [anon_sym_i128] = ACTIONS(2705), + [anon_sym_isize] = ACTIONS(2705), + [anon_sym_usize] = ACTIONS(2705), + [anon_sym_f32] = ACTIONS(2705), + [anon_sym_f64] = ACTIONS(2705), + [anon_sym_bool] = ACTIONS(2705), + [anon_sym_str] = ACTIONS(2705), + [anon_sym_char] = ACTIONS(2705), + [anon_sym_DASH] = ACTIONS(2703), + [anon_sym_BANG] = ACTIONS(2703), + [anon_sym_AMP] = ACTIONS(2703), + [anon_sym_PIPE] = ACTIONS(2703), + [anon_sym_LT] = ACTIONS(2703), + [anon_sym_DOT_DOT] = ACTIONS(2703), + [anon_sym_COLON_COLON] = ACTIONS(2703), + [anon_sym_POUND] = ACTIONS(2703), + [anon_sym_SQUOTE] = ACTIONS(2705), + [anon_sym_async] = ACTIONS(2705), + [anon_sym_break] = ACTIONS(2705), + [anon_sym_const] = ACTIONS(2705), + [anon_sym_continue] = ACTIONS(2705), + [anon_sym_default] = ACTIONS(2705), + [anon_sym_enum] = ACTIONS(2705), + [anon_sym_fn] = ACTIONS(2705), + [anon_sym_for] = ACTIONS(2705), + [anon_sym_if] = ACTIONS(2705), + [anon_sym_impl] = ACTIONS(2705), + [anon_sym_let] = ACTIONS(2705), + [anon_sym_loop] = ACTIONS(2705), + [anon_sym_match] = ACTIONS(2705), + [anon_sym_mod] = ACTIONS(2705), + [anon_sym_pub] = ACTIONS(2705), + [anon_sym_return] = ACTIONS(2705), + [anon_sym_static] = ACTIONS(2705), + [anon_sym_struct] = ACTIONS(2705), + [anon_sym_trait] = ACTIONS(2705), + [anon_sym_type] = ACTIONS(2705), + [anon_sym_union] = ACTIONS(2705), + [anon_sym_unsafe] = ACTIONS(2705), + [anon_sym_use] = ACTIONS(2705), + [anon_sym_while] = ACTIONS(2705), + [anon_sym_extern] = ACTIONS(2705), + [anon_sym_yield] = ACTIONS(2705), + [anon_sym_move] = ACTIONS(2705), + [anon_sym_try] = ACTIONS(2705), + [sym_integer_literal] = ACTIONS(2703), + [aux_sym_string_literal_token1] = ACTIONS(2703), + [sym_char_literal] = ACTIONS(2703), + [anon_sym_true] = ACTIONS(2705), + [anon_sym_false] = ACTIONS(2705), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2705), + [sym_super] = ACTIONS(2705), + [sym_crate] = ACTIONS(2705), + [sym_metavariable] = ACTIONS(2703), + [sym__raw_string_literal_start] = ACTIONS(2703), + [sym_float_literal] = ACTIONS(2703), }, [699] = { [sym_line_comment] = STATE(699), [sym_block_comment] = STATE(699), - [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_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(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [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), + [ts_builtin_sym_end] = ACTIONS(2707), + [sym_identifier] = ACTIONS(2709), + [anon_sym_SEMI] = ACTIONS(2707), + [anon_sym_macro_rules_BANG] = ACTIONS(2707), + [anon_sym_LPAREN] = ACTIONS(2707), + [anon_sym_LBRACK] = ACTIONS(2707), + [anon_sym_LBRACE] = ACTIONS(2707), + [anon_sym_RBRACE] = ACTIONS(2707), + [anon_sym_STAR] = ACTIONS(2707), + [anon_sym_u8] = ACTIONS(2709), + [anon_sym_i8] = ACTIONS(2709), + [anon_sym_u16] = ACTIONS(2709), + [anon_sym_i16] = ACTIONS(2709), + [anon_sym_u32] = ACTIONS(2709), + [anon_sym_i32] = ACTIONS(2709), + [anon_sym_u64] = ACTIONS(2709), + [anon_sym_i64] = ACTIONS(2709), + [anon_sym_u128] = ACTIONS(2709), + [anon_sym_i128] = ACTIONS(2709), + [anon_sym_isize] = ACTIONS(2709), + [anon_sym_usize] = ACTIONS(2709), + [anon_sym_f32] = ACTIONS(2709), + [anon_sym_f64] = ACTIONS(2709), + [anon_sym_bool] = ACTIONS(2709), + [anon_sym_str] = ACTIONS(2709), + [anon_sym_char] = ACTIONS(2709), + [anon_sym_DASH] = ACTIONS(2707), + [anon_sym_BANG] = ACTIONS(2707), + [anon_sym_AMP] = ACTIONS(2707), + [anon_sym_PIPE] = ACTIONS(2707), + [anon_sym_LT] = ACTIONS(2707), + [anon_sym_DOT_DOT] = ACTIONS(2707), + [anon_sym_COLON_COLON] = ACTIONS(2707), + [anon_sym_POUND] = ACTIONS(2707), + [anon_sym_SQUOTE] = ACTIONS(2709), + [anon_sym_async] = ACTIONS(2709), + [anon_sym_break] = ACTIONS(2709), + [anon_sym_const] = ACTIONS(2709), + [anon_sym_continue] = ACTIONS(2709), + [anon_sym_default] = ACTIONS(2709), + [anon_sym_enum] = ACTIONS(2709), + [anon_sym_fn] = ACTIONS(2709), + [anon_sym_for] = ACTIONS(2709), + [anon_sym_if] = ACTIONS(2709), + [anon_sym_impl] = ACTIONS(2709), + [anon_sym_let] = ACTIONS(2709), + [anon_sym_loop] = ACTIONS(2709), + [anon_sym_match] = ACTIONS(2709), + [anon_sym_mod] = ACTIONS(2709), + [anon_sym_pub] = ACTIONS(2709), + [anon_sym_return] = ACTIONS(2709), + [anon_sym_static] = ACTIONS(2709), + [anon_sym_struct] = ACTIONS(2709), + [anon_sym_trait] = ACTIONS(2709), + [anon_sym_type] = ACTIONS(2709), + [anon_sym_union] = ACTIONS(2709), + [anon_sym_unsafe] = ACTIONS(2709), + [anon_sym_use] = ACTIONS(2709), + [anon_sym_while] = ACTIONS(2709), + [anon_sym_extern] = ACTIONS(2709), + [anon_sym_yield] = ACTIONS(2709), + [anon_sym_move] = ACTIONS(2709), + [anon_sym_try] = ACTIONS(2709), + [sym_integer_literal] = ACTIONS(2707), + [aux_sym_string_literal_token1] = ACTIONS(2707), + [sym_char_literal] = ACTIONS(2707), + [anon_sym_true] = ACTIONS(2709), + [anon_sym_false] = ACTIONS(2709), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2709), + [sym_super] = ACTIONS(2709), + [sym_crate] = ACTIONS(2709), + [sym_metavariable] = ACTIONS(2707), + [sym__raw_string_literal_start] = ACTIONS(2707), + [sym_float_literal] = ACTIONS(2707), }, [700] = { [sym_line_comment] = STATE(700), [sym_block_comment] = STATE(700), - [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_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(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [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), + [ts_builtin_sym_end] = ACTIONS(2711), + [sym_identifier] = ACTIONS(2713), + [anon_sym_SEMI] = ACTIONS(2711), + [anon_sym_macro_rules_BANG] = ACTIONS(2711), + [anon_sym_LPAREN] = ACTIONS(2711), + [anon_sym_LBRACK] = ACTIONS(2711), + [anon_sym_LBRACE] = ACTIONS(2711), + [anon_sym_RBRACE] = ACTIONS(2711), + [anon_sym_STAR] = ACTIONS(2711), + [anon_sym_u8] = ACTIONS(2713), + [anon_sym_i8] = ACTIONS(2713), + [anon_sym_u16] = ACTIONS(2713), + [anon_sym_i16] = ACTIONS(2713), + [anon_sym_u32] = ACTIONS(2713), + [anon_sym_i32] = ACTIONS(2713), + [anon_sym_u64] = ACTIONS(2713), + [anon_sym_i64] = ACTIONS(2713), + [anon_sym_u128] = ACTIONS(2713), + [anon_sym_i128] = ACTIONS(2713), + [anon_sym_isize] = ACTIONS(2713), + [anon_sym_usize] = ACTIONS(2713), + [anon_sym_f32] = ACTIONS(2713), + [anon_sym_f64] = ACTIONS(2713), + [anon_sym_bool] = ACTIONS(2713), + [anon_sym_str] = ACTIONS(2713), + [anon_sym_char] = ACTIONS(2713), + [anon_sym_DASH] = ACTIONS(2711), + [anon_sym_BANG] = ACTIONS(2711), + [anon_sym_AMP] = ACTIONS(2711), + [anon_sym_PIPE] = ACTIONS(2711), + [anon_sym_LT] = ACTIONS(2711), + [anon_sym_DOT_DOT] = ACTIONS(2711), + [anon_sym_COLON_COLON] = ACTIONS(2711), + [anon_sym_POUND] = ACTIONS(2711), + [anon_sym_SQUOTE] = ACTIONS(2713), + [anon_sym_async] = ACTIONS(2713), + [anon_sym_break] = ACTIONS(2713), + [anon_sym_const] = ACTIONS(2713), + [anon_sym_continue] = ACTIONS(2713), + [anon_sym_default] = ACTIONS(2713), + [anon_sym_enum] = ACTIONS(2713), + [anon_sym_fn] = ACTIONS(2713), + [anon_sym_for] = ACTIONS(2713), + [anon_sym_if] = ACTIONS(2713), + [anon_sym_impl] = ACTIONS(2713), + [anon_sym_let] = ACTIONS(2713), + [anon_sym_loop] = ACTIONS(2713), + [anon_sym_match] = ACTIONS(2713), + [anon_sym_mod] = ACTIONS(2713), + [anon_sym_pub] = ACTIONS(2713), + [anon_sym_return] = ACTIONS(2713), + [anon_sym_static] = ACTIONS(2713), + [anon_sym_struct] = ACTIONS(2713), + [anon_sym_trait] = ACTIONS(2713), + [anon_sym_type] = ACTIONS(2713), + [anon_sym_union] = ACTIONS(2713), + [anon_sym_unsafe] = ACTIONS(2713), + [anon_sym_use] = ACTIONS(2713), + [anon_sym_while] = ACTIONS(2713), + [anon_sym_extern] = ACTIONS(2713), + [anon_sym_yield] = ACTIONS(2713), + [anon_sym_move] = ACTIONS(2713), + [anon_sym_try] = ACTIONS(2713), + [sym_integer_literal] = ACTIONS(2711), + [aux_sym_string_literal_token1] = ACTIONS(2711), + [sym_char_literal] = ACTIONS(2711), + [anon_sym_true] = ACTIONS(2713), + [anon_sym_false] = ACTIONS(2713), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2713), + [sym_super] = ACTIONS(2713), + [sym_crate] = ACTIONS(2713), + [sym_metavariable] = ACTIONS(2711), + [sym__raw_string_literal_start] = ACTIONS(2711), + [sym_float_literal] = ACTIONS(2711), }, [701] = { [sym_line_comment] = STATE(701), [sym_block_comment] = STATE(701), - [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_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(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [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), + [ts_builtin_sym_end] = ACTIONS(2715), + [sym_identifier] = ACTIONS(2717), + [anon_sym_SEMI] = ACTIONS(2715), + [anon_sym_macro_rules_BANG] = ACTIONS(2715), + [anon_sym_LPAREN] = ACTIONS(2715), + [anon_sym_LBRACK] = ACTIONS(2715), + [anon_sym_LBRACE] = ACTIONS(2715), + [anon_sym_RBRACE] = ACTIONS(2715), + [anon_sym_STAR] = ACTIONS(2715), + [anon_sym_u8] = ACTIONS(2717), + [anon_sym_i8] = ACTIONS(2717), + [anon_sym_u16] = ACTIONS(2717), + [anon_sym_i16] = ACTIONS(2717), + [anon_sym_u32] = ACTIONS(2717), + [anon_sym_i32] = ACTIONS(2717), + [anon_sym_u64] = ACTIONS(2717), + [anon_sym_i64] = ACTIONS(2717), + [anon_sym_u128] = ACTIONS(2717), + [anon_sym_i128] = ACTIONS(2717), + [anon_sym_isize] = ACTIONS(2717), + [anon_sym_usize] = ACTIONS(2717), + [anon_sym_f32] = ACTIONS(2717), + [anon_sym_f64] = ACTIONS(2717), + [anon_sym_bool] = ACTIONS(2717), + [anon_sym_str] = ACTIONS(2717), + [anon_sym_char] = ACTIONS(2717), + [anon_sym_DASH] = ACTIONS(2715), + [anon_sym_BANG] = ACTIONS(2715), + [anon_sym_AMP] = ACTIONS(2715), + [anon_sym_PIPE] = ACTIONS(2715), + [anon_sym_LT] = ACTIONS(2715), + [anon_sym_DOT_DOT] = ACTIONS(2715), + [anon_sym_COLON_COLON] = ACTIONS(2715), + [anon_sym_POUND] = ACTIONS(2715), + [anon_sym_SQUOTE] = ACTIONS(2717), + [anon_sym_async] = ACTIONS(2717), + [anon_sym_break] = ACTIONS(2717), + [anon_sym_const] = ACTIONS(2717), + [anon_sym_continue] = ACTIONS(2717), + [anon_sym_default] = ACTIONS(2717), + [anon_sym_enum] = ACTIONS(2717), + [anon_sym_fn] = ACTIONS(2717), + [anon_sym_for] = ACTIONS(2717), + [anon_sym_if] = ACTIONS(2717), + [anon_sym_impl] = ACTIONS(2717), + [anon_sym_let] = ACTIONS(2717), + [anon_sym_loop] = ACTIONS(2717), + [anon_sym_match] = ACTIONS(2717), + [anon_sym_mod] = ACTIONS(2717), + [anon_sym_pub] = ACTIONS(2717), + [anon_sym_return] = ACTIONS(2717), + [anon_sym_static] = ACTIONS(2717), + [anon_sym_struct] = ACTIONS(2717), + [anon_sym_trait] = ACTIONS(2717), + [anon_sym_type] = ACTIONS(2717), + [anon_sym_union] = ACTIONS(2717), + [anon_sym_unsafe] = ACTIONS(2717), + [anon_sym_use] = ACTIONS(2717), + [anon_sym_while] = ACTIONS(2717), + [anon_sym_extern] = ACTIONS(2717), + [anon_sym_yield] = ACTIONS(2717), + [anon_sym_move] = ACTIONS(2717), + [anon_sym_try] = ACTIONS(2717), + [sym_integer_literal] = ACTIONS(2715), + [aux_sym_string_literal_token1] = ACTIONS(2715), + [sym_char_literal] = ACTIONS(2715), + [anon_sym_true] = ACTIONS(2717), + [anon_sym_false] = ACTIONS(2717), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2717), + [sym_super] = ACTIONS(2717), + [sym_crate] = ACTIONS(2717), + [sym_metavariable] = ACTIONS(2715), + [sym__raw_string_literal_start] = ACTIONS(2715), + [sym_float_literal] = ACTIONS(2715), }, [702] = { [sym_line_comment] = STATE(702), [sym_block_comment] = STATE(702), - [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_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(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [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), + [ts_builtin_sym_end] = ACTIONS(2719), + [sym_identifier] = ACTIONS(2721), + [anon_sym_SEMI] = ACTIONS(2719), + [anon_sym_macro_rules_BANG] = ACTIONS(2719), + [anon_sym_LPAREN] = ACTIONS(2719), + [anon_sym_LBRACK] = ACTIONS(2719), + [anon_sym_LBRACE] = ACTIONS(2719), + [anon_sym_RBRACE] = ACTIONS(2719), + [anon_sym_STAR] = ACTIONS(2719), + [anon_sym_u8] = ACTIONS(2721), + [anon_sym_i8] = ACTIONS(2721), + [anon_sym_u16] = ACTIONS(2721), + [anon_sym_i16] = ACTIONS(2721), + [anon_sym_u32] = ACTIONS(2721), + [anon_sym_i32] = ACTIONS(2721), + [anon_sym_u64] = ACTIONS(2721), + [anon_sym_i64] = ACTIONS(2721), + [anon_sym_u128] = ACTIONS(2721), + [anon_sym_i128] = ACTIONS(2721), + [anon_sym_isize] = ACTIONS(2721), + [anon_sym_usize] = ACTIONS(2721), + [anon_sym_f32] = ACTIONS(2721), + [anon_sym_f64] = ACTIONS(2721), + [anon_sym_bool] = ACTIONS(2721), + [anon_sym_str] = ACTIONS(2721), + [anon_sym_char] = ACTIONS(2721), + [anon_sym_DASH] = ACTIONS(2719), + [anon_sym_BANG] = ACTIONS(2719), + [anon_sym_AMP] = ACTIONS(2719), + [anon_sym_PIPE] = ACTIONS(2719), + [anon_sym_LT] = ACTIONS(2719), + [anon_sym_DOT_DOT] = ACTIONS(2719), + [anon_sym_COLON_COLON] = ACTIONS(2719), + [anon_sym_POUND] = ACTIONS(2719), + [anon_sym_SQUOTE] = ACTIONS(2721), + [anon_sym_async] = ACTIONS(2721), + [anon_sym_break] = ACTIONS(2721), + [anon_sym_const] = ACTIONS(2721), + [anon_sym_continue] = ACTIONS(2721), + [anon_sym_default] = ACTIONS(2721), + [anon_sym_enum] = ACTIONS(2721), + [anon_sym_fn] = ACTIONS(2721), + [anon_sym_for] = ACTIONS(2721), + [anon_sym_if] = ACTIONS(2721), + [anon_sym_impl] = ACTIONS(2721), + [anon_sym_let] = ACTIONS(2721), + [anon_sym_loop] = ACTIONS(2721), + [anon_sym_match] = ACTIONS(2721), + [anon_sym_mod] = ACTIONS(2721), + [anon_sym_pub] = ACTIONS(2721), + [anon_sym_return] = ACTIONS(2721), + [anon_sym_static] = ACTIONS(2721), + [anon_sym_struct] = ACTIONS(2721), + [anon_sym_trait] = ACTIONS(2721), + [anon_sym_type] = ACTIONS(2721), + [anon_sym_union] = ACTIONS(2721), + [anon_sym_unsafe] = ACTIONS(2721), + [anon_sym_use] = ACTIONS(2721), + [anon_sym_while] = ACTIONS(2721), + [anon_sym_extern] = ACTIONS(2721), + [anon_sym_yield] = ACTIONS(2721), + [anon_sym_move] = ACTIONS(2721), + [anon_sym_try] = ACTIONS(2721), + [sym_integer_literal] = ACTIONS(2719), + [aux_sym_string_literal_token1] = ACTIONS(2719), + [sym_char_literal] = ACTIONS(2719), + [anon_sym_true] = ACTIONS(2721), + [anon_sym_false] = ACTIONS(2721), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2721), + [sym_super] = ACTIONS(2721), + [sym_crate] = ACTIONS(2721), + [sym_metavariable] = ACTIONS(2719), + [sym__raw_string_literal_start] = ACTIONS(2719), + [sym_float_literal] = ACTIONS(2719), }, [703] = { [sym_line_comment] = STATE(703), [sym_block_comment] = STATE(703), - [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_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(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [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), + [ts_builtin_sym_end] = ACTIONS(2723), + [sym_identifier] = ACTIONS(2725), + [anon_sym_SEMI] = ACTIONS(2723), + [anon_sym_macro_rules_BANG] = ACTIONS(2723), + [anon_sym_LPAREN] = ACTIONS(2723), + [anon_sym_LBRACK] = ACTIONS(2723), + [anon_sym_LBRACE] = ACTIONS(2723), + [anon_sym_RBRACE] = ACTIONS(2723), + [anon_sym_STAR] = ACTIONS(2723), + [anon_sym_u8] = ACTIONS(2725), + [anon_sym_i8] = ACTIONS(2725), + [anon_sym_u16] = ACTIONS(2725), + [anon_sym_i16] = ACTIONS(2725), + [anon_sym_u32] = ACTIONS(2725), + [anon_sym_i32] = ACTIONS(2725), + [anon_sym_u64] = ACTIONS(2725), + [anon_sym_i64] = ACTIONS(2725), + [anon_sym_u128] = ACTIONS(2725), + [anon_sym_i128] = ACTIONS(2725), + [anon_sym_isize] = ACTIONS(2725), + [anon_sym_usize] = ACTIONS(2725), + [anon_sym_f32] = ACTIONS(2725), + [anon_sym_f64] = ACTIONS(2725), + [anon_sym_bool] = ACTIONS(2725), + [anon_sym_str] = ACTIONS(2725), + [anon_sym_char] = ACTIONS(2725), + [anon_sym_DASH] = ACTIONS(2723), + [anon_sym_BANG] = ACTIONS(2723), + [anon_sym_AMP] = ACTIONS(2723), + [anon_sym_PIPE] = ACTIONS(2723), + [anon_sym_LT] = ACTIONS(2723), + [anon_sym_DOT_DOT] = ACTIONS(2723), + [anon_sym_COLON_COLON] = ACTIONS(2723), + [anon_sym_POUND] = ACTIONS(2723), + [anon_sym_SQUOTE] = ACTIONS(2725), + [anon_sym_async] = ACTIONS(2725), + [anon_sym_break] = ACTIONS(2725), + [anon_sym_const] = ACTIONS(2725), + [anon_sym_continue] = ACTIONS(2725), + [anon_sym_default] = ACTIONS(2725), + [anon_sym_enum] = ACTIONS(2725), + [anon_sym_fn] = ACTIONS(2725), + [anon_sym_for] = ACTIONS(2725), + [anon_sym_if] = ACTIONS(2725), + [anon_sym_impl] = ACTIONS(2725), + [anon_sym_let] = ACTIONS(2725), + [anon_sym_loop] = ACTIONS(2725), + [anon_sym_match] = ACTIONS(2725), + [anon_sym_mod] = ACTIONS(2725), + [anon_sym_pub] = ACTIONS(2725), + [anon_sym_return] = ACTIONS(2725), + [anon_sym_static] = ACTIONS(2725), + [anon_sym_struct] = ACTIONS(2725), + [anon_sym_trait] = ACTIONS(2725), + [anon_sym_type] = ACTIONS(2725), + [anon_sym_union] = ACTIONS(2725), + [anon_sym_unsafe] = ACTIONS(2725), + [anon_sym_use] = ACTIONS(2725), + [anon_sym_while] = ACTIONS(2725), + [anon_sym_extern] = ACTIONS(2725), + [anon_sym_yield] = ACTIONS(2725), + [anon_sym_move] = ACTIONS(2725), + [anon_sym_try] = ACTIONS(2725), + [sym_integer_literal] = ACTIONS(2723), + [aux_sym_string_literal_token1] = ACTIONS(2723), + [sym_char_literal] = ACTIONS(2723), + [anon_sym_true] = ACTIONS(2725), + [anon_sym_false] = ACTIONS(2725), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2725), + [sym_super] = ACTIONS(2725), + [sym_crate] = ACTIONS(2725), + [sym_metavariable] = ACTIONS(2723), + [sym__raw_string_literal_start] = ACTIONS(2723), + [sym_float_literal] = ACTIONS(2723), }, [704] = { [sym_line_comment] = STATE(704), [sym_block_comment] = STATE(704), - [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_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(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [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), + [ts_builtin_sym_end] = ACTIONS(2727), + [sym_identifier] = ACTIONS(2729), + [anon_sym_SEMI] = ACTIONS(2727), + [anon_sym_macro_rules_BANG] = ACTIONS(2727), + [anon_sym_LPAREN] = ACTIONS(2727), + [anon_sym_LBRACK] = ACTIONS(2727), + [anon_sym_LBRACE] = ACTIONS(2727), + [anon_sym_RBRACE] = ACTIONS(2727), + [anon_sym_STAR] = ACTIONS(2727), + [anon_sym_u8] = ACTIONS(2729), + [anon_sym_i8] = ACTIONS(2729), + [anon_sym_u16] = ACTIONS(2729), + [anon_sym_i16] = ACTIONS(2729), + [anon_sym_u32] = ACTIONS(2729), + [anon_sym_i32] = ACTIONS(2729), + [anon_sym_u64] = ACTIONS(2729), + [anon_sym_i64] = ACTIONS(2729), + [anon_sym_u128] = ACTIONS(2729), + [anon_sym_i128] = ACTIONS(2729), + [anon_sym_isize] = ACTIONS(2729), + [anon_sym_usize] = ACTIONS(2729), + [anon_sym_f32] = ACTIONS(2729), + [anon_sym_f64] = ACTIONS(2729), + [anon_sym_bool] = ACTIONS(2729), + [anon_sym_str] = ACTIONS(2729), + [anon_sym_char] = ACTIONS(2729), + [anon_sym_DASH] = ACTIONS(2727), + [anon_sym_BANG] = ACTIONS(2727), + [anon_sym_AMP] = ACTIONS(2727), + [anon_sym_PIPE] = ACTIONS(2727), + [anon_sym_LT] = ACTIONS(2727), + [anon_sym_DOT_DOT] = ACTIONS(2727), + [anon_sym_COLON_COLON] = ACTIONS(2727), + [anon_sym_POUND] = ACTIONS(2727), + [anon_sym_SQUOTE] = ACTIONS(2729), + [anon_sym_async] = ACTIONS(2729), + [anon_sym_break] = ACTIONS(2729), + [anon_sym_const] = ACTIONS(2729), + [anon_sym_continue] = ACTIONS(2729), + [anon_sym_default] = ACTIONS(2729), + [anon_sym_enum] = ACTIONS(2729), + [anon_sym_fn] = ACTIONS(2729), + [anon_sym_for] = ACTIONS(2729), + [anon_sym_if] = ACTIONS(2729), + [anon_sym_impl] = ACTIONS(2729), + [anon_sym_let] = ACTIONS(2729), + [anon_sym_loop] = ACTIONS(2729), + [anon_sym_match] = ACTIONS(2729), + [anon_sym_mod] = ACTIONS(2729), + [anon_sym_pub] = ACTIONS(2729), + [anon_sym_return] = ACTIONS(2729), + [anon_sym_static] = ACTIONS(2729), + [anon_sym_struct] = ACTIONS(2729), + [anon_sym_trait] = ACTIONS(2729), + [anon_sym_type] = ACTIONS(2729), + [anon_sym_union] = ACTIONS(2729), + [anon_sym_unsafe] = ACTIONS(2729), + [anon_sym_use] = ACTIONS(2729), + [anon_sym_while] = ACTIONS(2729), + [anon_sym_extern] = ACTIONS(2729), + [anon_sym_yield] = ACTIONS(2729), + [anon_sym_move] = ACTIONS(2729), + [anon_sym_try] = ACTIONS(2729), + [sym_integer_literal] = ACTIONS(2727), + [aux_sym_string_literal_token1] = ACTIONS(2727), + [sym_char_literal] = ACTIONS(2727), + [anon_sym_true] = ACTIONS(2729), + [anon_sym_false] = ACTIONS(2729), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2729), + [sym_super] = ACTIONS(2729), + [sym_crate] = ACTIONS(2729), + [sym_metavariable] = ACTIONS(2727), + [sym__raw_string_literal_start] = ACTIONS(2727), + [sym_float_literal] = ACTIONS(2727), }, [705] = { [sym_line_comment] = STATE(705), [sym_block_comment] = STATE(705), - [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_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(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [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), + [ts_builtin_sym_end] = ACTIONS(2731), + [sym_identifier] = ACTIONS(2733), + [anon_sym_SEMI] = ACTIONS(2731), + [anon_sym_macro_rules_BANG] = ACTIONS(2731), + [anon_sym_LPAREN] = ACTIONS(2731), + [anon_sym_LBRACK] = ACTIONS(2731), + [anon_sym_LBRACE] = ACTIONS(2731), + [anon_sym_RBRACE] = ACTIONS(2731), + [anon_sym_STAR] = ACTIONS(2731), + [anon_sym_u8] = ACTIONS(2733), + [anon_sym_i8] = ACTIONS(2733), + [anon_sym_u16] = ACTIONS(2733), + [anon_sym_i16] = ACTIONS(2733), + [anon_sym_u32] = ACTIONS(2733), + [anon_sym_i32] = ACTIONS(2733), + [anon_sym_u64] = ACTIONS(2733), + [anon_sym_i64] = ACTIONS(2733), + [anon_sym_u128] = ACTIONS(2733), + [anon_sym_i128] = ACTIONS(2733), + [anon_sym_isize] = ACTIONS(2733), + [anon_sym_usize] = ACTIONS(2733), + [anon_sym_f32] = ACTIONS(2733), + [anon_sym_f64] = ACTIONS(2733), + [anon_sym_bool] = ACTIONS(2733), + [anon_sym_str] = ACTIONS(2733), + [anon_sym_char] = ACTIONS(2733), + [anon_sym_DASH] = ACTIONS(2731), + [anon_sym_BANG] = ACTIONS(2731), + [anon_sym_AMP] = ACTIONS(2731), + [anon_sym_PIPE] = ACTIONS(2731), + [anon_sym_LT] = ACTIONS(2731), + [anon_sym_DOT_DOT] = ACTIONS(2731), + [anon_sym_COLON_COLON] = ACTIONS(2731), + [anon_sym_POUND] = ACTIONS(2731), + [anon_sym_SQUOTE] = ACTIONS(2733), + [anon_sym_async] = ACTIONS(2733), + [anon_sym_break] = ACTIONS(2733), + [anon_sym_const] = ACTIONS(2733), + [anon_sym_continue] = ACTIONS(2733), + [anon_sym_default] = ACTIONS(2733), + [anon_sym_enum] = ACTIONS(2733), + [anon_sym_fn] = ACTIONS(2733), + [anon_sym_for] = ACTIONS(2733), + [anon_sym_if] = ACTIONS(2733), + [anon_sym_impl] = ACTIONS(2733), + [anon_sym_let] = ACTIONS(2733), + [anon_sym_loop] = ACTIONS(2733), + [anon_sym_match] = ACTIONS(2733), + [anon_sym_mod] = ACTIONS(2733), + [anon_sym_pub] = ACTIONS(2733), + [anon_sym_return] = ACTIONS(2733), + [anon_sym_static] = ACTIONS(2733), + [anon_sym_struct] = ACTIONS(2733), + [anon_sym_trait] = ACTIONS(2733), + [anon_sym_type] = ACTIONS(2733), + [anon_sym_union] = ACTIONS(2733), + [anon_sym_unsafe] = ACTIONS(2733), + [anon_sym_use] = ACTIONS(2733), + [anon_sym_while] = ACTIONS(2733), + [anon_sym_extern] = ACTIONS(2733), + [anon_sym_yield] = ACTIONS(2733), + [anon_sym_move] = ACTIONS(2733), + [anon_sym_try] = ACTIONS(2733), + [sym_integer_literal] = ACTIONS(2731), + [aux_sym_string_literal_token1] = ACTIONS(2731), + [sym_char_literal] = ACTIONS(2731), + [anon_sym_true] = ACTIONS(2733), + [anon_sym_false] = ACTIONS(2733), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2733), + [sym_super] = ACTIONS(2733), + [sym_crate] = ACTIONS(2733), + [sym_metavariable] = ACTIONS(2731), + [sym__raw_string_literal_start] = ACTIONS(2731), + [sym_float_literal] = ACTIONS(2731), }, [706] = { + [sym_empty_statement] = STATE(1389), + [sym_macro_definition] = STATE(1389), + [sym_attribute_item] = STATE(1389), + [sym_inner_attribute_item] = STATE(1389), + [sym_mod_item] = STATE(1389), + [sym_foreign_mod_item] = STATE(1389), + [sym_struct_item] = STATE(1389), + [sym_union_item] = STATE(1389), + [sym_enum_item] = STATE(1389), + [sym_extern_crate_declaration] = STATE(1389), + [sym_const_item] = STATE(1389), + [sym_static_item] = STATE(1389), + [sym_type_item] = STATE(1389), + [sym_function_item] = STATE(1389), + [sym_function_signature_item] = STATE(1389), + [sym_function_modifiers] = STATE(3601), + [sym_impl_item] = STATE(1389), + [sym_trait_item] = STATE(1389), + [sym_associated_type] = STATE(1389), + [sym_let_declaration] = STATE(1389), + [sym_use_declaration] = STATE(1389), + [sym_extern_modifier] = STATE(2140), + [sym_visibility_modifier] = STATE(1933), + [sym_bracketed_type] = STATE(3312), + [sym_generic_type_with_turbofish] = STATE(3351), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(3243), [sym_line_comment] = STATE(706), [sym_block_comment] = STATE(706), - [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_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(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [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), + [aux_sym_declaration_list_repeat1] = STATE(528), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(1920), + [anon_sym_SEMI] = ACTIONS(1922), + [anon_sym_macro_rules_BANG] = ACTIONS(1924), + [anon_sym_RBRACE] = ACTIONS(2735), + [anon_sym_u8] = ACTIONS(1928), + [anon_sym_i8] = ACTIONS(1928), + [anon_sym_u16] = ACTIONS(1928), + [anon_sym_i16] = ACTIONS(1928), + [anon_sym_u32] = ACTIONS(1928), + [anon_sym_i32] = ACTIONS(1928), + [anon_sym_u64] = ACTIONS(1928), + [anon_sym_i64] = ACTIONS(1928), + [anon_sym_u128] = ACTIONS(1928), + [anon_sym_i128] = ACTIONS(1928), + [anon_sym_isize] = ACTIONS(1928), + [anon_sym_usize] = ACTIONS(1928), + [anon_sym_f32] = ACTIONS(1928), + [anon_sym_f64] = ACTIONS(1928), + [anon_sym_bool] = ACTIONS(1928), + [anon_sym_str] = ACTIONS(1928), + [anon_sym_char] = ACTIONS(1928), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1930), + [anon_sym_POUND] = ACTIONS(1932), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1934), + [anon_sym_default] = ACTIONS(1936), + [anon_sym_enum] = ACTIONS(1938), + [anon_sym_fn] = ACTIONS(1940), + [anon_sym_impl] = ACTIONS(1942), + [anon_sym_let] = ACTIONS(1944), + [anon_sym_mod] = ACTIONS(1946), + [anon_sym_pub] = ACTIONS(67), + [anon_sym_static] = ACTIONS(1948), + [anon_sym_struct] = ACTIONS(1950), + [anon_sym_trait] = ACTIONS(1952), + [anon_sym_type] = ACTIONS(1954), + [anon_sym_union] = ACTIONS(1956), + [anon_sym_unsafe] = ACTIONS(1958), + [anon_sym_use] = ACTIONS(1960), + [anon_sym_extern] = ACTIONS(1962), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1964), + [sym_super] = ACTIONS(1964), + [sym_crate] = ACTIONS(1966), + [sym_metavariable] = ACTIONS(1968), }, [707] = { [sym_line_comment] = STATE(707), [sym_block_comment] = STATE(707), - [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_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(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [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), + [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_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(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [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), }, [708] = { [sym_line_comment] = STATE(708), [sym_block_comment] = STATE(708), - [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_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(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [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), + [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_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(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [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), }, [709] = { [sym_line_comment] = STATE(709), [sym_block_comment] = STATE(709), - [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_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(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [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), + [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_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(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [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), }, [710] = { [sym_line_comment] = STATE(710), [sym_block_comment] = STATE(710), - [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_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(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [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), + [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_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(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [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), }, [711] = { [sym_line_comment] = STATE(711), [sym_block_comment] = STATE(711), - [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_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(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [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), + [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_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(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [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), }, [712] = { [sym_line_comment] = STATE(712), [sym_block_comment] = STATE(712), - [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_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(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [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), + [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_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(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [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), }, [713] = { [sym_line_comment] = STATE(713), [sym_block_comment] = STATE(713), - [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_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(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [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), + [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_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(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [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), }, [714] = { [sym_line_comment] = STATE(714), [sym_block_comment] = STATE(714), - [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_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(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [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), + [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_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(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [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), }, [715] = { [sym_line_comment] = STATE(715), [sym_block_comment] = STATE(715), - [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_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(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [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), + [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_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(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [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), }, [716] = { [sym_line_comment] = STATE(716), [sym_block_comment] = STATE(716), - [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_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(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [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), + [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_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(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [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), }, [717] = { [sym_line_comment] = STATE(717), [sym_block_comment] = STATE(717), - [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_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(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [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), + [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_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(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [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), }, [718] = { [sym_line_comment] = STATE(718), [sym_block_comment] = STATE(718), - [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_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(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [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), + [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_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(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [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), }, [719] = { [sym_line_comment] = STATE(719), [sym_block_comment] = STATE(719), - [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_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(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [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), + [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_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(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [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), }, [720] = { [sym_line_comment] = STATE(720), [sym_block_comment] = STATE(720), - [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_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(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [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), + [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_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(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [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), }, [721] = { - [sym_attribute_item] = STATE(1479), - [sym_inner_attribute_item] = STATE(1479), - [sym_bracketed_type] = STATE(3523), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3262), - [sym_macro_invocation] = STATE(2877), - [sym_scoped_identifier] = STATE(2130), - [sym_scoped_type_identifier] = STATE(2908), - [sym_match_arm] = STATE(1471), - [sym_match_pattern] = STATE(3605), - [sym_const_block] = STATE(2877), - [sym__pattern] = STATE(2919), - [sym_tuple_pattern] = STATE(2877), - [sym_slice_pattern] = STATE(2877), - [sym_tuple_struct_pattern] = STATE(2877), - [sym_struct_pattern] = STATE(2877), - [sym_remaining_field_pattern] = STATE(2877), - [sym_mut_pattern] = STATE(2877), - [sym_range_pattern] = STATE(2877), - [sym_ref_pattern] = STATE(2877), - [sym_captured_pattern] = STATE(2877), - [sym_reference_pattern] = STATE(2877), - [sym_or_pattern] = STATE(2877), - [sym__literal_pattern] = STATE(2387), - [sym_negative_literal] = STATE(2299), - [sym_string_literal] = STATE(2299), - [sym_raw_string_literal] = STATE(2299), - [sym_boolean_literal] = STATE(2299), [sym_line_comment] = STATE(721), [sym_block_comment] = STATE(721), - [aux_sym_match_block_repeat1] = STATE(721), - [aux_sym_match_arm_repeat1] = STATE(758), - [sym_identifier] = ACTIONS(2725), - [anon_sym_LPAREN] = ACTIONS(2728), - [anon_sym_LBRACK] = ACTIONS(2731), - [anon_sym_u8] = ACTIONS(2734), - [anon_sym_i8] = ACTIONS(2734), - [anon_sym_u16] = ACTIONS(2734), - [anon_sym_i16] = ACTIONS(2734), - [anon_sym_u32] = ACTIONS(2734), - [anon_sym_i32] = ACTIONS(2734), - [anon_sym_u64] = ACTIONS(2734), - [anon_sym_i64] = ACTIONS(2734), - [anon_sym_u128] = ACTIONS(2734), - [anon_sym_i128] = ACTIONS(2734), - [anon_sym_isize] = ACTIONS(2734), - [anon_sym_usize] = ACTIONS(2734), - [anon_sym_f32] = ACTIONS(2734), - [anon_sym_f64] = ACTIONS(2734), - [anon_sym_bool] = ACTIONS(2734), - [anon_sym_str] = ACTIONS(2734), - [anon_sym_char] = ACTIONS(2734), - [anon_sym_DASH] = ACTIONS(2737), - [anon_sym_AMP] = ACTIONS(2740), - [anon_sym_PIPE] = ACTIONS(2743), - [anon_sym_LT] = ACTIONS(2746), - [anon_sym__] = ACTIONS(2749), - [anon_sym_DOT_DOT] = ACTIONS(2752), - [anon_sym_COLON_COLON] = ACTIONS(2755), - [anon_sym_POUND] = ACTIONS(2758), - [anon_sym_const] = ACTIONS(2761), - [anon_sym_default] = ACTIONS(2764), - [anon_sym_union] = ACTIONS(2764), - [anon_sym_ref] = ACTIONS(2767), - [sym_mutable_specifier] = ACTIONS(2770), - [sym_integer_literal] = ACTIONS(2773), - [aux_sym_string_literal_token1] = ACTIONS(2776), - [sym_char_literal] = ACTIONS(2773), - [anon_sym_true] = ACTIONS(2779), - [anon_sym_false] = ACTIONS(2779), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2782), - [sym_super] = ACTIONS(2782), - [sym_crate] = ACTIONS(2782), - [sym_metavariable] = ACTIONS(2785), - [sym__raw_string_literal_start] = ACTIONS(2788), - [sym_float_literal] = ACTIONS(2773), + [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_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(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [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), }, [722] = { [sym_line_comment] = STATE(722), [sym_block_comment] = STATE(722), - [ts_builtin_sym_end] = ACTIONS(2791), - [sym_identifier] = ACTIONS(2793), - [anon_sym_SEMI] = ACTIONS(2791), - [anon_sym_macro_rules_BANG] = ACTIONS(2791), - [anon_sym_LPAREN] = ACTIONS(2791), - [anon_sym_LBRACK] = ACTIONS(2791), - [anon_sym_LBRACE] = ACTIONS(2791), - [anon_sym_RBRACE] = ACTIONS(2791), - [anon_sym_STAR] = ACTIONS(2791), - [anon_sym_u8] = ACTIONS(2793), - [anon_sym_i8] = ACTIONS(2793), - [anon_sym_u16] = ACTIONS(2793), - [anon_sym_i16] = ACTIONS(2793), - [anon_sym_u32] = ACTIONS(2793), - [anon_sym_i32] = ACTIONS(2793), - [anon_sym_u64] = ACTIONS(2793), - [anon_sym_i64] = ACTIONS(2793), - [anon_sym_u128] = ACTIONS(2793), - [anon_sym_i128] = ACTIONS(2793), - [anon_sym_isize] = ACTIONS(2793), - [anon_sym_usize] = ACTIONS(2793), - [anon_sym_f32] = ACTIONS(2793), - [anon_sym_f64] = ACTIONS(2793), - [anon_sym_bool] = ACTIONS(2793), - [anon_sym_str] = ACTIONS(2793), - [anon_sym_char] = ACTIONS(2793), - [anon_sym_DASH] = ACTIONS(2791), - [anon_sym_BANG] = ACTIONS(2791), - [anon_sym_AMP] = ACTIONS(2791), - [anon_sym_PIPE] = ACTIONS(2791), - [anon_sym_LT] = ACTIONS(2791), - [anon_sym_DOT_DOT] = ACTIONS(2791), - [anon_sym_COLON_COLON] = ACTIONS(2791), - [anon_sym_POUND] = ACTIONS(2791), - [anon_sym_SQUOTE] = ACTIONS(2793), - [anon_sym_async] = ACTIONS(2793), - [anon_sym_break] = ACTIONS(2793), - [anon_sym_const] = ACTIONS(2793), - [anon_sym_continue] = ACTIONS(2793), - [anon_sym_default] = ACTIONS(2793), - [anon_sym_enum] = ACTIONS(2793), - [anon_sym_fn] = ACTIONS(2793), - [anon_sym_for] = ACTIONS(2793), - [anon_sym_if] = ACTIONS(2793), - [anon_sym_impl] = ACTIONS(2793), - [anon_sym_let] = ACTIONS(2793), - [anon_sym_loop] = ACTIONS(2793), - [anon_sym_match] = ACTIONS(2793), - [anon_sym_mod] = ACTIONS(2793), - [anon_sym_pub] = ACTIONS(2793), - [anon_sym_return] = ACTIONS(2793), - [anon_sym_static] = ACTIONS(2793), - [anon_sym_struct] = ACTIONS(2793), - [anon_sym_trait] = ACTIONS(2793), - [anon_sym_type] = ACTIONS(2793), - [anon_sym_union] = ACTIONS(2793), - [anon_sym_unsafe] = ACTIONS(2793), - [anon_sym_use] = ACTIONS(2793), - [anon_sym_while] = ACTIONS(2793), - [anon_sym_extern] = ACTIONS(2793), - [anon_sym_yield] = ACTIONS(2793), - [anon_sym_move] = ACTIONS(2793), - [anon_sym_try] = ACTIONS(2793), - [sym_integer_literal] = ACTIONS(2791), - [aux_sym_string_literal_token1] = ACTIONS(2791), - [sym_char_literal] = ACTIONS(2791), - [anon_sym_true] = ACTIONS(2793), - [anon_sym_false] = ACTIONS(2793), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2793), - [sym_super] = ACTIONS(2793), - [sym_crate] = ACTIONS(2793), - [sym_metavariable] = ACTIONS(2791), - [sym__raw_string_literal_start] = ACTIONS(2791), - [sym_float_literal] = ACTIONS(2791), + [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_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(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [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), }, [723] = { + [sym_empty_statement] = STATE(1389), + [sym_macro_definition] = STATE(1389), + [sym_attribute_item] = STATE(1389), + [sym_inner_attribute_item] = STATE(1389), + [sym_mod_item] = STATE(1389), + [sym_foreign_mod_item] = STATE(1389), + [sym_struct_item] = STATE(1389), + [sym_union_item] = STATE(1389), + [sym_enum_item] = STATE(1389), + [sym_extern_crate_declaration] = STATE(1389), + [sym_const_item] = STATE(1389), + [sym_static_item] = STATE(1389), + [sym_type_item] = STATE(1389), + [sym_function_item] = STATE(1389), + [sym_function_signature_item] = STATE(1389), + [sym_function_modifiers] = STATE(3601), + [sym_impl_item] = STATE(1389), + [sym_trait_item] = STATE(1389), + [sym_associated_type] = STATE(1389), + [sym_let_declaration] = STATE(1389), + [sym_use_declaration] = STATE(1389), + [sym_extern_modifier] = STATE(2140), + [sym_visibility_modifier] = STATE(1933), + [sym_bracketed_type] = STATE(3312), + [sym_generic_type_with_turbofish] = STATE(3351), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(3243), [sym_line_comment] = STATE(723), [sym_block_comment] = STATE(723), - [ts_builtin_sym_end] = ACTIONS(2795), - [sym_identifier] = ACTIONS(2797), - [anon_sym_SEMI] = ACTIONS(2795), - [anon_sym_macro_rules_BANG] = ACTIONS(2795), - [anon_sym_LPAREN] = ACTIONS(2795), - [anon_sym_LBRACK] = ACTIONS(2795), - [anon_sym_LBRACE] = ACTIONS(2795), - [anon_sym_RBRACE] = ACTIONS(2795), - [anon_sym_STAR] = ACTIONS(2795), - [anon_sym_u8] = ACTIONS(2797), - [anon_sym_i8] = ACTIONS(2797), - [anon_sym_u16] = ACTIONS(2797), - [anon_sym_i16] = ACTIONS(2797), - [anon_sym_u32] = ACTIONS(2797), - [anon_sym_i32] = ACTIONS(2797), - [anon_sym_u64] = ACTIONS(2797), - [anon_sym_i64] = ACTIONS(2797), - [anon_sym_u128] = ACTIONS(2797), - [anon_sym_i128] = ACTIONS(2797), - [anon_sym_isize] = ACTIONS(2797), - [anon_sym_usize] = ACTIONS(2797), - [anon_sym_f32] = ACTIONS(2797), - [anon_sym_f64] = ACTIONS(2797), - [anon_sym_bool] = ACTIONS(2797), - [anon_sym_str] = ACTIONS(2797), - [anon_sym_char] = ACTIONS(2797), - [anon_sym_DASH] = ACTIONS(2795), - [anon_sym_BANG] = ACTIONS(2795), - [anon_sym_AMP] = ACTIONS(2795), - [anon_sym_PIPE] = ACTIONS(2795), - [anon_sym_LT] = ACTIONS(2795), - [anon_sym_DOT_DOT] = ACTIONS(2795), - [anon_sym_COLON_COLON] = ACTIONS(2795), - [anon_sym_POUND] = ACTIONS(2795), - [anon_sym_SQUOTE] = ACTIONS(2797), - [anon_sym_async] = ACTIONS(2797), - [anon_sym_break] = ACTIONS(2797), - [anon_sym_const] = ACTIONS(2797), - [anon_sym_continue] = ACTIONS(2797), - [anon_sym_default] = ACTIONS(2797), - [anon_sym_enum] = ACTIONS(2797), - [anon_sym_fn] = ACTIONS(2797), - [anon_sym_for] = ACTIONS(2797), - [anon_sym_if] = ACTIONS(2797), - [anon_sym_impl] = ACTIONS(2797), - [anon_sym_let] = ACTIONS(2797), - [anon_sym_loop] = ACTIONS(2797), - [anon_sym_match] = ACTIONS(2797), - [anon_sym_mod] = ACTIONS(2797), - [anon_sym_pub] = ACTIONS(2797), - [anon_sym_return] = ACTIONS(2797), - [anon_sym_static] = ACTIONS(2797), - [anon_sym_struct] = ACTIONS(2797), - [anon_sym_trait] = ACTIONS(2797), - [anon_sym_type] = ACTIONS(2797), - [anon_sym_union] = ACTIONS(2797), - [anon_sym_unsafe] = ACTIONS(2797), - [anon_sym_use] = ACTIONS(2797), - [anon_sym_while] = ACTIONS(2797), - [anon_sym_extern] = ACTIONS(2797), - [anon_sym_yield] = ACTIONS(2797), - [anon_sym_move] = ACTIONS(2797), - [anon_sym_try] = ACTIONS(2797), - [sym_integer_literal] = ACTIONS(2795), - [aux_sym_string_literal_token1] = ACTIONS(2795), - [sym_char_literal] = ACTIONS(2795), - [anon_sym_true] = ACTIONS(2797), - [anon_sym_false] = ACTIONS(2797), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2797), - [sym_super] = ACTIONS(2797), - [sym_crate] = ACTIONS(2797), - [sym_metavariable] = ACTIONS(2795), - [sym__raw_string_literal_start] = ACTIONS(2795), - [sym_float_literal] = ACTIONS(2795), + [aux_sym_declaration_list_repeat1] = STATE(628), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(1920), + [anon_sym_SEMI] = ACTIONS(1922), + [anon_sym_macro_rules_BANG] = ACTIONS(1924), + [anon_sym_RBRACE] = ACTIONS(2801), + [anon_sym_u8] = ACTIONS(1928), + [anon_sym_i8] = ACTIONS(1928), + [anon_sym_u16] = ACTIONS(1928), + [anon_sym_i16] = ACTIONS(1928), + [anon_sym_u32] = ACTIONS(1928), + [anon_sym_i32] = ACTIONS(1928), + [anon_sym_u64] = ACTIONS(1928), + [anon_sym_i64] = ACTIONS(1928), + [anon_sym_u128] = ACTIONS(1928), + [anon_sym_i128] = ACTIONS(1928), + [anon_sym_isize] = ACTIONS(1928), + [anon_sym_usize] = ACTIONS(1928), + [anon_sym_f32] = ACTIONS(1928), + [anon_sym_f64] = ACTIONS(1928), + [anon_sym_bool] = ACTIONS(1928), + [anon_sym_str] = ACTIONS(1928), + [anon_sym_char] = ACTIONS(1928), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1930), + [anon_sym_POUND] = ACTIONS(1932), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1934), + [anon_sym_default] = ACTIONS(1936), + [anon_sym_enum] = ACTIONS(1938), + [anon_sym_fn] = ACTIONS(1940), + [anon_sym_impl] = ACTIONS(1942), + [anon_sym_let] = ACTIONS(1944), + [anon_sym_mod] = ACTIONS(1946), + [anon_sym_pub] = ACTIONS(67), + [anon_sym_static] = ACTIONS(1948), + [anon_sym_struct] = ACTIONS(1950), + [anon_sym_trait] = ACTIONS(1952), + [anon_sym_type] = ACTIONS(1954), + [anon_sym_union] = ACTIONS(1956), + [anon_sym_unsafe] = ACTIONS(1958), + [anon_sym_use] = ACTIONS(1960), + [anon_sym_extern] = ACTIONS(1962), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1964), + [sym_super] = ACTIONS(1964), + [sym_crate] = ACTIONS(1966), + [sym_metavariable] = ACTIONS(1968), }, [724] = { [sym_line_comment] = STATE(724), [sym_block_comment] = STATE(724), - [ts_builtin_sym_end] = ACTIONS(2799), - [sym_identifier] = ACTIONS(2801), - [anon_sym_SEMI] = ACTIONS(2799), - [anon_sym_macro_rules_BANG] = ACTIONS(2799), - [anon_sym_LPAREN] = ACTIONS(2799), - [anon_sym_LBRACK] = ACTIONS(2799), - [anon_sym_LBRACE] = ACTIONS(2799), - [anon_sym_RBRACE] = ACTIONS(2799), - [anon_sym_STAR] = ACTIONS(2799), - [anon_sym_u8] = ACTIONS(2801), - [anon_sym_i8] = ACTIONS(2801), - [anon_sym_u16] = ACTIONS(2801), - [anon_sym_i16] = ACTIONS(2801), - [anon_sym_u32] = ACTIONS(2801), - [anon_sym_i32] = ACTIONS(2801), - [anon_sym_u64] = ACTIONS(2801), - [anon_sym_i64] = ACTIONS(2801), - [anon_sym_u128] = ACTIONS(2801), - [anon_sym_i128] = ACTIONS(2801), - [anon_sym_isize] = ACTIONS(2801), - [anon_sym_usize] = ACTIONS(2801), - [anon_sym_f32] = ACTIONS(2801), - [anon_sym_f64] = ACTIONS(2801), - [anon_sym_bool] = ACTIONS(2801), - [anon_sym_str] = ACTIONS(2801), - [anon_sym_char] = ACTIONS(2801), - [anon_sym_DASH] = ACTIONS(2799), - [anon_sym_BANG] = ACTIONS(2799), - [anon_sym_AMP] = ACTIONS(2799), - [anon_sym_PIPE] = ACTIONS(2799), - [anon_sym_LT] = ACTIONS(2799), - [anon_sym_DOT_DOT] = ACTIONS(2799), - [anon_sym_COLON_COLON] = ACTIONS(2799), - [anon_sym_POUND] = ACTIONS(2799), - [anon_sym_SQUOTE] = ACTIONS(2801), - [anon_sym_async] = ACTIONS(2801), - [anon_sym_break] = ACTIONS(2801), - [anon_sym_const] = ACTIONS(2801), - [anon_sym_continue] = ACTIONS(2801), - [anon_sym_default] = ACTIONS(2801), - [anon_sym_enum] = ACTIONS(2801), - [anon_sym_fn] = ACTIONS(2801), - [anon_sym_for] = ACTIONS(2801), - [anon_sym_if] = ACTIONS(2801), - [anon_sym_impl] = ACTIONS(2801), - [anon_sym_let] = ACTIONS(2801), - [anon_sym_loop] = ACTIONS(2801), - [anon_sym_match] = ACTIONS(2801), - [anon_sym_mod] = ACTIONS(2801), - [anon_sym_pub] = ACTIONS(2801), - [anon_sym_return] = ACTIONS(2801), - [anon_sym_static] = ACTIONS(2801), - [anon_sym_struct] = ACTIONS(2801), - [anon_sym_trait] = ACTIONS(2801), - [anon_sym_type] = ACTIONS(2801), - [anon_sym_union] = ACTIONS(2801), - [anon_sym_unsafe] = ACTIONS(2801), - [anon_sym_use] = ACTIONS(2801), - [anon_sym_while] = ACTIONS(2801), - [anon_sym_extern] = ACTIONS(2801), - [anon_sym_yield] = ACTIONS(2801), - [anon_sym_move] = ACTIONS(2801), - [anon_sym_try] = ACTIONS(2801), - [sym_integer_literal] = ACTIONS(2799), - [aux_sym_string_literal_token1] = ACTIONS(2799), - [sym_char_literal] = ACTIONS(2799), - [anon_sym_true] = ACTIONS(2801), - [anon_sym_false] = ACTIONS(2801), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2801), - [sym_super] = ACTIONS(2801), - [sym_crate] = ACTIONS(2801), - [sym_metavariable] = ACTIONS(2799), - [sym__raw_string_literal_start] = ACTIONS(2799), - [sym_float_literal] = ACTIONS(2799), - }, - [725] = { - [sym_line_comment] = STATE(725), - [sym_block_comment] = STATE(725), [ts_builtin_sym_end] = ACTIONS(2803), [sym_identifier] = ACTIONS(2805), [anon_sym_SEMI] = ACTIONS(2803), @@ -88285,9 +88213,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2803), [sym_float_literal] = ACTIONS(2803), }, - [726] = { - [sym_line_comment] = STATE(726), - [sym_block_comment] = STATE(726), + [725] = { + [sym_line_comment] = STATE(725), + [sym_block_comment] = STATE(725), [ts_builtin_sym_end] = ACTIONS(2807), [sym_identifier] = ACTIONS(2809), [anon_sym_SEMI] = ACTIONS(2807), @@ -88365,9 +88293,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2807), [sym_float_literal] = ACTIONS(2807), }, - [727] = { - [sym_line_comment] = STATE(727), - [sym_block_comment] = STATE(727), + [726] = { + [sym_line_comment] = STATE(726), + [sym_block_comment] = STATE(726), [ts_builtin_sym_end] = ACTIONS(2811), [sym_identifier] = ACTIONS(2813), [anon_sym_SEMI] = ACTIONS(2811), @@ -88445,9 +88373,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2811), [sym_float_literal] = ACTIONS(2811), }, - [728] = { - [sym_line_comment] = STATE(728), - [sym_block_comment] = STATE(728), + [727] = { + [sym_line_comment] = STATE(727), + [sym_block_comment] = STATE(727), [ts_builtin_sym_end] = ACTIONS(2815), [sym_identifier] = ACTIONS(2817), [anon_sym_SEMI] = ACTIONS(2815), @@ -88525,9 +88453,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2815), [sym_float_literal] = ACTIONS(2815), }, - [729] = { - [sym_line_comment] = STATE(729), - [sym_block_comment] = STATE(729), + [728] = { + [sym_line_comment] = STATE(728), + [sym_block_comment] = STATE(728), [ts_builtin_sym_end] = ACTIONS(2819), [sym_identifier] = ACTIONS(2821), [anon_sym_SEMI] = ACTIONS(2819), @@ -88605,9 +88533,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2819), [sym_float_literal] = ACTIONS(2819), }, - [730] = { - [sym_line_comment] = STATE(730), - [sym_block_comment] = STATE(730), + [729] = { + [sym_line_comment] = STATE(729), + [sym_block_comment] = STATE(729), [ts_builtin_sym_end] = ACTIONS(2823), [sym_identifier] = ACTIONS(2825), [anon_sym_SEMI] = ACTIONS(2823), @@ -88685,9 +88613,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2823), [sym_float_literal] = ACTIONS(2823), }, - [731] = { - [sym_line_comment] = STATE(731), - [sym_block_comment] = STATE(731), + [730] = { + [sym_line_comment] = STATE(730), + [sym_block_comment] = STATE(730), [ts_builtin_sym_end] = ACTIONS(2827), [sym_identifier] = ACTIONS(2829), [anon_sym_SEMI] = ACTIONS(2827), @@ -88765,9 +88693,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2827), [sym_float_literal] = ACTIONS(2827), }, - [732] = { - [sym_line_comment] = STATE(732), - [sym_block_comment] = STATE(732), + [731] = { + [sym_line_comment] = STATE(731), + [sym_block_comment] = STATE(731), [ts_builtin_sym_end] = ACTIONS(2831), [sym_identifier] = ACTIONS(2833), [anon_sym_SEMI] = ACTIONS(2831), @@ -88845,9 +88773,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2831), [sym_float_literal] = ACTIONS(2831), }, - [733] = { - [sym_line_comment] = STATE(733), - [sym_block_comment] = STATE(733), + [732] = { + [sym_line_comment] = STATE(732), + [sym_block_comment] = STATE(732), [ts_builtin_sym_end] = ACTIONS(2835), [sym_identifier] = ACTIONS(2837), [anon_sym_SEMI] = ACTIONS(2835), @@ -88925,9 +88853,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2835), [sym_float_literal] = ACTIONS(2835), }, - [734] = { - [sym_line_comment] = STATE(734), - [sym_block_comment] = STATE(734), + [733] = { + [sym_line_comment] = STATE(733), + [sym_block_comment] = STATE(733), [ts_builtin_sym_end] = ACTIONS(2839), [sym_identifier] = ACTIONS(2841), [anon_sym_SEMI] = ACTIONS(2839), @@ -89005,9 +88933,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2839), [sym_float_literal] = ACTIONS(2839), }, - [735] = { - [sym_line_comment] = STATE(735), - [sym_block_comment] = STATE(735), + [734] = { + [sym_line_comment] = STATE(734), + [sym_block_comment] = STATE(734), [ts_builtin_sym_end] = ACTIONS(2843), [sym_identifier] = ACTIONS(2845), [anon_sym_SEMI] = ACTIONS(2843), @@ -89085,9 +89013,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2843), [sym_float_literal] = ACTIONS(2843), }, - [736] = { - [sym_line_comment] = STATE(736), - [sym_block_comment] = STATE(736), + [735] = { + [sym_line_comment] = STATE(735), + [sym_block_comment] = STATE(735), [ts_builtin_sym_end] = ACTIONS(2847), [sym_identifier] = ACTIONS(2849), [anon_sym_SEMI] = ACTIONS(2847), @@ -89165,9 +89093,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2847), [sym_float_literal] = ACTIONS(2847), }, - [737] = { - [sym_line_comment] = STATE(737), - [sym_block_comment] = STATE(737), + [736] = { + [sym_line_comment] = STATE(736), + [sym_block_comment] = STATE(736), [ts_builtin_sym_end] = ACTIONS(2851), [sym_identifier] = ACTIONS(2853), [anon_sym_SEMI] = ACTIONS(2851), @@ -89245,9 +89173,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2851), [sym_float_literal] = ACTIONS(2851), }, - [738] = { - [sym_line_comment] = STATE(738), - [sym_block_comment] = STATE(738), + [737] = { + [sym_line_comment] = STATE(737), + [sym_block_comment] = STATE(737), [ts_builtin_sym_end] = ACTIONS(2855), [sym_identifier] = ACTIONS(2857), [anon_sym_SEMI] = ACTIONS(2855), @@ -89325,9 +89253,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2855), [sym_float_literal] = ACTIONS(2855), }, - [739] = { - [sym_line_comment] = STATE(739), - [sym_block_comment] = STATE(739), + [738] = { + [sym_line_comment] = STATE(738), + [sym_block_comment] = STATE(738), [ts_builtin_sym_end] = ACTIONS(2859), [sym_identifier] = ACTIONS(2861), [anon_sym_SEMI] = ACTIONS(2859), @@ -89405,9 +89333,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2859), [sym_float_literal] = ACTIONS(2859), }, - [740] = { - [sym_line_comment] = STATE(740), - [sym_block_comment] = STATE(740), + [739] = { + [sym_line_comment] = STATE(739), + [sym_block_comment] = STATE(739), [ts_builtin_sym_end] = ACTIONS(2863), [sym_identifier] = ACTIONS(2865), [anon_sym_SEMI] = ACTIONS(2863), @@ -89485,9 +89413,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2863), [sym_float_literal] = ACTIONS(2863), }, - [741] = { - [sym_line_comment] = STATE(741), - [sym_block_comment] = STATE(741), + [740] = { + [sym_line_comment] = STATE(740), + [sym_block_comment] = STATE(740), [ts_builtin_sym_end] = ACTIONS(2867), [sym_identifier] = ACTIONS(2869), [anon_sym_SEMI] = ACTIONS(2867), @@ -89565,9 +89493,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2867), [sym_float_literal] = ACTIONS(2867), }, - [742] = { - [sym_line_comment] = STATE(742), - [sym_block_comment] = STATE(742), + [741] = { + [sym_line_comment] = STATE(741), + [sym_block_comment] = STATE(741), [ts_builtin_sym_end] = ACTIONS(2871), [sym_identifier] = ACTIONS(2873), [anon_sym_SEMI] = ACTIONS(2871), @@ -89645,9 +89573,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2871), [sym_float_literal] = ACTIONS(2871), }, - [743] = { - [sym_line_comment] = STATE(743), - [sym_block_comment] = STATE(743), + [742] = { + [sym_line_comment] = STATE(742), + [sym_block_comment] = STATE(742), [ts_builtin_sym_end] = ACTIONS(2875), [sym_identifier] = ACTIONS(2877), [anon_sym_SEMI] = ACTIONS(2875), @@ -89725,9 +89653,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2875), [sym_float_literal] = ACTIONS(2875), }, - [744] = { - [sym_line_comment] = STATE(744), - [sym_block_comment] = STATE(744), + [743] = { + [sym_line_comment] = STATE(743), + [sym_block_comment] = STATE(743), [ts_builtin_sym_end] = ACTIONS(2879), [sym_identifier] = ACTIONS(2881), [anon_sym_SEMI] = ACTIONS(2879), @@ -89805,9 +89733,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2879), [sym_float_literal] = ACTIONS(2879), }, - [745] = { - [sym_line_comment] = STATE(745), - [sym_block_comment] = STATE(745), + [744] = { + [sym_line_comment] = STATE(744), + [sym_block_comment] = STATE(744), [ts_builtin_sym_end] = ACTIONS(2883), [sym_identifier] = ACTIONS(2885), [anon_sym_SEMI] = ACTIONS(2883), @@ -89885,9 +89813,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2883), [sym_float_literal] = ACTIONS(2883), }, - [746] = { - [sym_line_comment] = STATE(746), - [sym_block_comment] = STATE(746), + [745] = { + [sym_line_comment] = STATE(745), + [sym_block_comment] = STATE(745), [ts_builtin_sym_end] = ACTIONS(2887), [sym_identifier] = ACTIONS(2889), [anon_sym_SEMI] = ACTIONS(2887), @@ -89965,9 +89893,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2887), [sym_float_literal] = ACTIONS(2887), }, - [747] = { - [sym_line_comment] = STATE(747), - [sym_block_comment] = STATE(747), + [746] = { + [sym_line_comment] = STATE(746), + [sym_block_comment] = STATE(746), [ts_builtin_sym_end] = ACTIONS(2891), [sym_identifier] = ACTIONS(2893), [anon_sym_SEMI] = ACTIONS(2891), @@ -90045,9 +89973,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2891), [sym_float_literal] = ACTIONS(2891), }, - [748] = { - [sym_line_comment] = STATE(748), - [sym_block_comment] = STATE(748), + [747] = { + [sym_line_comment] = STATE(747), + [sym_block_comment] = STATE(747), [ts_builtin_sym_end] = ACTIONS(2895), [sym_identifier] = ACTIONS(2897), [anon_sym_SEMI] = ACTIONS(2895), @@ -90125,9 +90053,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2895), [sym_float_literal] = ACTIONS(2895), }, - [749] = { - [sym_line_comment] = STATE(749), - [sym_block_comment] = STATE(749), + [748] = { + [sym_line_comment] = STATE(748), + [sym_block_comment] = STATE(748), [ts_builtin_sym_end] = ACTIONS(2899), [sym_identifier] = ACTIONS(2901), [anon_sym_SEMI] = ACTIONS(2899), @@ -90205,6 +90133,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2899), [sym_float_literal] = ACTIONS(2899), }, + [749] = { + [sym_line_comment] = STATE(749), + [sym_block_comment] = STATE(749), + [ts_builtin_sym_end] = ACTIONS(1236), + [sym_identifier] = ACTIONS(1238), + [anon_sym_SEMI] = ACTIONS(1236), + [anon_sym_macro_rules_BANG] = ACTIONS(1236), + [anon_sym_LPAREN] = ACTIONS(1236), + [anon_sym_LBRACK] = ACTIONS(1236), + [anon_sym_LBRACE] = ACTIONS(1236), + [anon_sym_RBRACE] = ACTIONS(1236), + [anon_sym_STAR] = ACTIONS(1236), + [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(1236), + [anon_sym_BANG] = ACTIONS(1236), + [anon_sym_AMP] = ACTIONS(1236), + [anon_sym_PIPE] = ACTIONS(1236), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_DOT_DOT] = ACTIONS(1236), + [anon_sym_COLON_COLON] = ACTIONS(1236), + [anon_sym_POUND] = ACTIONS(1236), + [anon_sym_SQUOTE] = ACTIONS(1238), + [anon_sym_async] = ACTIONS(1238), + [anon_sym_break] = ACTIONS(1238), + [anon_sym_const] = ACTIONS(1238), + [anon_sym_continue] = ACTIONS(1238), + [anon_sym_default] = ACTIONS(1238), + [anon_sym_enum] = ACTIONS(1238), + [anon_sym_fn] = ACTIONS(1238), + [anon_sym_for] = ACTIONS(1238), + [anon_sym_if] = ACTIONS(1238), + [anon_sym_impl] = ACTIONS(1238), + [anon_sym_let] = ACTIONS(1238), + [anon_sym_loop] = ACTIONS(1238), + [anon_sym_match] = ACTIONS(1238), + [anon_sym_mod] = ACTIONS(1238), + [anon_sym_pub] = ACTIONS(1238), + [anon_sym_return] = ACTIONS(1238), + [anon_sym_static] = ACTIONS(1238), + [anon_sym_struct] = ACTIONS(1238), + [anon_sym_trait] = ACTIONS(1238), + [anon_sym_type] = ACTIONS(1238), + [anon_sym_union] = ACTIONS(1238), + [anon_sym_unsafe] = ACTIONS(1238), + [anon_sym_use] = ACTIONS(1238), + [anon_sym_while] = ACTIONS(1238), + [anon_sym_extern] = ACTIONS(1238), + [anon_sym_yield] = ACTIONS(1238), + [anon_sym_move] = ACTIONS(1238), + [anon_sym_try] = ACTIONS(1238), + [sym_integer_literal] = ACTIONS(1236), + [aux_sym_string_literal_token1] = ACTIONS(1236), + [sym_char_literal] = ACTIONS(1236), + [anon_sym_true] = ACTIONS(1238), + [anon_sym_false] = ACTIONS(1238), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1238), + [sym_super] = ACTIONS(1238), + [sym_crate] = ACTIONS(1238), + [sym_metavariable] = ACTIONS(1236), + [sym__raw_string_literal_start] = ACTIONS(1236), + [sym_float_literal] = ACTIONS(1236), + }, [750] = { [sym_line_comment] = STATE(750), [sym_block_comment] = STATE(750), @@ -90526,16 +90534,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2915), }, [754] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), + [sym_bracketed_type] = STATE(3484), + [sym_generic_type] = STATE(3487), + [sym_generic_type_with_turbofish] = STATE(3219), [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), + [sym_scoped_identifier] = STATE(1954), + [sym_scoped_type_identifier] = STATE(2845), [sym_const_block] = STATE(2079), - [sym_closure_expression] = STATE(2828), - [sym_closure_parameters] = STATE(230), - [sym__pattern] = STATE(2500), + [sym_closure_expression] = STATE(2780), + [sym_closure_parameters] = STATE(216), + [sym__pattern] = STATE(2681), [sym_tuple_pattern] = STATE(2079), [sym_slice_pattern] = STATE(2079), [sym_tuple_struct_pattern] = STATE(2079), @@ -90547,11 +90555,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_captured_pattern] = STATE(2079), [sym_reference_pattern] = STATE(2079), [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym__literal_pattern] = STATE(2006), + [sym_negative_literal] = STATE(2009), + [sym_string_literal] = STATE(2009), + [sym_raw_string_literal] = STATE(2009), + [sym_boolean_literal] = STATE(2009), [sym_line_comment] = STATE(754), [sym_block_comment] = STATE(754), [sym_identifier] = ACTIONS(2919), @@ -90575,7 +90583,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2927), [anon_sym_str] = ACTIONS(2927), [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), + [anon_sym_DASH] = ACTIONS(1274), [anon_sym_AMP] = ACTIONS(2929), [anon_sym_PIPE] = ACTIONS(1478), [anon_sym_LT] = ACTIONS(29), @@ -90587,34 +90595,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(2937), [anon_sym_static] = ACTIONS(1486), [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), + [anon_sym_ref] = ACTIONS(1312), [sym_mutable_specifier] = ACTIONS(1488), [anon_sym_move] = ACTIONS(1490), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), + [sym_integer_literal] = ACTIONS(1318), + [aux_sym_string_literal_token1] = ACTIONS(1320), + [sym_char_literal] = ACTIONS(1318), + [anon_sym_true] = ACTIONS(1322), + [anon_sym_false] = ACTIONS(1322), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(2939), [sym_super] = ACTIONS(2939), [sym_crate] = ACTIONS(2939), [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym__raw_string_literal_start] = ACTIONS(1330), + [sym_float_literal] = ACTIONS(1318), }, [755] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), + [sym_bracketed_type] = STATE(3484), + [sym_generic_type] = STATE(3487), + [sym_generic_type_with_turbofish] = STATE(3219), [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), + [sym_scoped_identifier] = STATE(1954), + [sym_scoped_type_identifier] = STATE(2845), [sym_const_block] = STATE(2079), - [sym_closure_expression] = STATE(2855), - [sym_closure_parameters] = STATE(230), - [sym__pattern] = STATE(2640), + [sym_closure_expression] = STATE(2778), + [sym_closure_parameters] = STATE(216), + [sym__pattern] = STATE(2684), [sym_tuple_pattern] = STATE(2079), [sym_slice_pattern] = STATE(2079), [sym_tuple_struct_pattern] = STATE(2079), @@ -90626,11 +90634,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_captured_pattern] = STATE(2079), [sym_reference_pattern] = STATE(2079), [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym__literal_pattern] = STATE(2006), + [sym_negative_literal] = STATE(2009), + [sym_string_literal] = STATE(2009), + [sym_raw_string_literal] = STATE(2009), + [sym_boolean_literal] = STATE(2009), [sym_line_comment] = STATE(755), [sym_block_comment] = STATE(755), [sym_identifier] = ACTIONS(2919), @@ -90654,7 +90662,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2927), [anon_sym_str] = ACTIONS(2927), [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), + [anon_sym_DASH] = ACTIONS(1274), [anon_sym_AMP] = ACTIONS(2929), [anon_sym_PIPE] = ACTIONS(1478), [anon_sym_LT] = ACTIONS(29), @@ -90666,34 +90674,190 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(2937), [anon_sym_static] = ACTIONS(1486), [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), + [anon_sym_ref] = ACTIONS(1312), [sym_mutable_specifier] = ACTIONS(1488), [anon_sym_move] = ACTIONS(1490), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), + [sym_integer_literal] = ACTIONS(1318), + [aux_sym_string_literal_token1] = ACTIONS(1320), + [sym_char_literal] = ACTIONS(1318), + [anon_sym_true] = ACTIONS(1322), + [anon_sym_false] = ACTIONS(1322), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(2939), [sym_super] = ACTIONS(2939), [sym_crate] = ACTIONS(2939), [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym__raw_string_literal_start] = ACTIONS(1330), + [sym_float_literal] = ACTIONS(1318), }, [756] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), + [sym_attribute_item] = STATE(1474), + [sym_inner_attribute_item] = STATE(1474), + [sym_bracketed_type] = STATE(3531), + [sym_generic_type] = STATE(3487), + [sym_generic_type_with_turbofish] = STATE(3136), + [sym_macro_invocation] = STATE(2939), + [sym_scoped_identifier] = STATE(2152), + [sym_scoped_type_identifier] = STATE(2744), + [sym_match_pattern] = STATE(3399), + [sym_const_block] = STATE(2939), + [sym__pattern] = STATE(3025), + [sym_tuple_pattern] = STATE(2939), + [sym_slice_pattern] = STATE(2939), + [sym_tuple_struct_pattern] = STATE(2939), + [sym_struct_pattern] = STATE(2939), + [sym_remaining_field_pattern] = STATE(2939), + [sym_mut_pattern] = STATE(2939), + [sym_range_pattern] = STATE(2939), + [sym_ref_pattern] = STATE(2939), + [sym_captured_pattern] = STATE(2939), + [sym_reference_pattern] = STATE(2939), + [sym_or_pattern] = STATE(2939), + [sym__literal_pattern] = STATE(2366), + [sym_negative_literal] = STATE(2355), + [sym_string_literal] = STATE(2355), + [sym_raw_string_literal] = STATE(2355), + [sym_boolean_literal] = STATE(2355), + [sym_line_comment] = STATE(756), + [sym_block_comment] = STATE(756), + [aux_sym_match_arm_repeat1] = STATE(1032), + [sym_identifier] = ACTIONS(1604), + [anon_sym_LPAREN] = ACTIONS(1606), + [anon_sym_LBRACK] = ACTIONS(1608), + [anon_sym_u8] = ACTIONS(1612), + [anon_sym_i8] = ACTIONS(1612), + [anon_sym_u16] = ACTIONS(1612), + [anon_sym_i16] = ACTIONS(1612), + [anon_sym_u32] = ACTIONS(1612), + [anon_sym_i32] = ACTIONS(1612), + [anon_sym_u64] = ACTIONS(1612), + [anon_sym_i64] = ACTIONS(1612), + [anon_sym_u128] = ACTIONS(1612), + [anon_sym_i128] = ACTIONS(1612), + [anon_sym_isize] = ACTIONS(1612), + [anon_sym_usize] = ACTIONS(1612), + [anon_sym_f32] = ACTIONS(1612), + [anon_sym_f64] = ACTIONS(1612), + [anon_sym_bool] = ACTIONS(1612), + [anon_sym_str] = ACTIONS(1612), + [anon_sym_char] = ACTIONS(1612), + [anon_sym_DASH] = ACTIONS(1614), + [anon_sym_AMP] = ACTIONS(1616), + [anon_sym_PIPE] = ACTIONS(1618), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1620), + [anon_sym_DOT_DOT] = ACTIONS(1622), + [anon_sym_COLON_COLON] = ACTIONS(1624), + [anon_sym_POUND] = ACTIONS(1626), + [anon_sym_const] = ACTIONS(1628), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_union] = ACTIONS(1630), + [anon_sym_ref] = ACTIONS(1632), + [sym_mutable_specifier] = ACTIONS(1634), + [sym_integer_literal] = ACTIONS(1636), + [aux_sym_string_literal_token1] = ACTIONS(1638), + [sym_char_literal] = ACTIONS(1636), + [anon_sym_true] = ACTIONS(1640), + [anon_sym_false] = ACTIONS(1640), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + [sym__raw_string_literal_start] = ACTIONS(1646), + [sym_float_literal] = ACTIONS(1636), + }, + [757] = { + [sym_attribute_item] = STATE(1474), + [sym_inner_attribute_item] = STATE(1474), + [sym_bracketed_type] = STATE(3531), + [sym_generic_type] = STATE(3487), + [sym_generic_type_with_turbofish] = STATE(3136), + [sym_macro_invocation] = STATE(2939), + [sym_scoped_identifier] = STATE(2152), + [sym_scoped_type_identifier] = STATE(2744), + [sym_match_pattern] = STATE(3561), + [sym_const_block] = STATE(2939), + [sym__pattern] = STATE(3025), + [sym_tuple_pattern] = STATE(2939), + [sym_slice_pattern] = STATE(2939), + [sym_tuple_struct_pattern] = STATE(2939), + [sym_struct_pattern] = STATE(2939), + [sym_remaining_field_pattern] = STATE(2939), + [sym_mut_pattern] = STATE(2939), + [sym_range_pattern] = STATE(2939), + [sym_ref_pattern] = STATE(2939), + [sym_captured_pattern] = STATE(2939), + [sym_reference_pattern] = STATE(2939), + [sym_or_pattern] = STATE(2939), + [sym__literal_pattern] = STATE(2366), + [sym_negative_literal] = STATE(2355), + [sym_string_literal] = STATE(2355), + [sym_raw_string_literal] = STATE(2355), + [sym_boolean_literal] = STATE(2355), + [sym_line_comment] = STATE(757), + [sym_block_comment] = STATE(757), + [aux_sym_match_arm_repeat1] = STATE(1032), + [sym_identifier] = ACTIONS(1604), + [anon_sym_LPAREN] = ACTIONS(1606), + [anon_sym_LBRACK] = ACTIONS(1608), + [anon_sym_u8] = ACTIONS(1612), + [anon_sym_i8] = ACTIONS(1612), + [anon_sym_u16] = ACTIONS(1612), + [anon_sym_i16] = ACTIONS(1612), + [anon_sym_u32] = ACTIONS(1612), + [anon_sym_i32] = ACTIONS(1612), + [anon_sym_u64] = ACTIONS(1612), + [anon_sym_i64] = ACTIONS(1612), + [anon_sym_u128] = ACTIONS(1612), + [anon_sym_i128] = ACTIONS(1612), + [anon_sym_isize] = ACTIONS(1612), + [anon_sym_usize] = ACTIONS(1612), + [anon_sym_f32] = ACTIONS(1612), + [anon_sym_f64] = ACTIONS(1612), + [anon_sym_bool] = ACTIONS(1612), + [anon_sym_str] = ACTIONS(1612), + [anon_sym_char] = ACTIONS(1612), + [anon_sym_DASH] = ACTIONS(1614), + [anon_sym_AMP] = ACTIONS(1616), + [anon_sym_PIPE] = ACTIONS(1618), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1620), + [anon_sym_DOT_DOT] = ACTIONS(1622), + [anon_sym_COLON_COLON] = ACTIONS(1624), + [anon_sym_POUND] = ACTIONS(1626), + [anon_sym_const] = ACTIONS(1628), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_union] = ACTIONS(1630), + [anon_sym_ref] = ACTIONS(1632), + [sym_mutable_specifier] = ACTIONS(1634), + [sym_integer_literal] = ACTIONS(1636), + [aux_sym_string_literal_token1] = ACTIONS(1638), + [sym_char_literal] = ACTIONS(1636), + [anon_sym_true] = ACTIONS(1640), + [anon_sym_false] = ACTIONS(1640), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + [sym__raw_string_literal_start] = ACTIONS(1646), + [sym_float_literal] = ACTIONS(1636), + }, + [758] = { + [sym_bracketed_type] = STATE(3484), + [sym_generic_type] = STATE(3487), + [sym_generic_type_with_turbofish] = STATE(3219), [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), + [sym_scoped_identifier] = STATE(1954), + [sym_scoped_type_identifier] = STATE(2845), [sym_const_block] = STATE(2079), - [sym_closure_expression] = STATE(3065), - [sym_closure_parameters] = STATE(230), - [sym__pattern] = STATE(2928), + [sym_closure_expression] = STATE(3155), + [sym_closure_parameters] = STATE(216), + [sym__pattern] = STATE(2911), [sym_tuple_pattern] = STATE(2079), [sym_slice_pattern] = STATE(2079), [sym_tuple_struct_pattern] = STATE(2079), @@ -90705,13 +90869,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_captured_pattern] = STATE(2079), [sym_reference_pattern] = STATE(2079), [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), - [sym_line_comment] = STATE(756), - [sym_block_comment] = STATE(756), + [sym__literal_pattern] = STATE(2006), + [sym_negative_literal] = STATE(2009), + [sym_string_literal] = STATE(2009), + [sym_raw_string_literal] = STATE(2009), + [sym_boolean_literal] = STATE(2009), + [sym_line_comment] = STATE(758), + [sym_block_comment] = STATE(758), [sym_identifier] = ACTIONS(2919), [anon_sym_LPAREN] = ACTIONS(2921), [anon_sym_RPAREN] = ACTIONS(2945), @@ -90733,7 +90897,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2927), [anon_sym_str] = ACTIONS(2927), [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), + [anon_sym_DASH] = ACTIONS(1274), [anon_sym_AMP] = ACTIONS(2929), [anon_sym_PIPE] = ACTIONS(1478), [anon_sym_LT] = ACTIONS(29), @@ -90744,34 +90908,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(2937), [anon_sym_static] = ACTIONS(1486), [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), + [anon_sym_ref] = ACTIONS(1312), [sym_mutable_specifier] = ACTIONS(1488), [anon_sym_move] = ACTIONS(1490), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), + [sym_integer_literal] = ACTIONS(1318), + [aux_sym_string_literal_token1] = ACTIONS(1320), + [sym_char_literal] = ACTIONS(1318), + [anon_sym_true] = ACTIONS(1322), + [anon_sym_false] = ACTIONS(1322), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(2939), [sym_super] = ACTIONS(2939), [sym_crate] = ACTIONS(2939), [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym__raw_string_literal_start] = ACTIONS(1330), + [sym_float_literal] = ACTIONS(1318), }, - [757] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), + [759] = { + [sym_bracketed_type] = STATE(3484), + [sym_generic_type] = STATE(3487), + [sym_generic_type_with_turbofish] = STATE(3219), [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), + [sym_scoped_identifier] = STATE(1954), + [sym_scoped_type_identifier] = STATE(2845), [sym_const_block] = STATE(2079), - [sym_closure_expression] = STATE(3065), - [sym_closure_parameters] = STATE(230), - [sym__pattern] = STATE(2928), + [sym_closure_expression] = STATE(3155), + [sym_closure_parameters] = STATE(216), + [sym__pattern] = STATE(2911), [sym_tuple_pattern] = STATE(2079), [sym_slice_pattern] = STATE(2079), [sym_tuple_struct_pattern] = STATE(2079), @@ -90783,13 +90947,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_captured_pattern] = STATE(2079), [sym_reference_pattern] = STATE(2079), [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), - [sym_line_comment] = STATE(757), - [sym_block_comment] = STATE(757), + [sym__literal_pattern] = STATE(2006), + [sym_negative_literal] = STATE(2009), + [sym_string_literal] = STATE(2009), + [sym_raw_string_literal] = STATE(2009), + [sym_boolean_literal] = STATE(2009), + [sym_line_comment] = STATE(759), + [sym_block_comment] = STATE(759), [sym_identifier] = ACTIONS(2919), [anon_sym_LPAREN] = ACTIONS(2921), [anon_sym_RPAREN] = ACTIONS(2947), @@ -90811,7 +90975,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2927), [anon_sym_str] = ACTIONS(2927), [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), + [anon_sym_DASH] = ACTIONS(1274), [anon_sym_AMP] = ACTIONS(2929), [anon_sym_PIPE] = ACTIONS(1478), [anon_sym_LT] = ACTIONS(29), @@ -90822,190 +90986,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(2937), [anon_sym_static] = ACTIONS(1486), [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), + [anon_sym_ref] = ACTIONS(1312), [sym_mutable_specifier] = ACTIONS(1488), [anon_sym_move] = ACTIONS(1490), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), + [sym_integer_literal] = ACTIONS(1318), + [aux_sym_string_literal_token1] = ACTIONS(1320), + [sym_char_literal] = ACTIONS(1318), + [anon_sym_true] = ACTIONS(1322), + [anon_sym_false] = ACTIONS(1322), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(2939), [sym_super] = ACTIONS(2939), [sym_crate] = ACTIONS(2939), [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), - }, - [758] = { - [sym_attribute_item] = STATE(1479), - [sym_inner_attribute_item] = STATE(1479), - [sym_bracketed_type] = STATE(3523), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3262), - [sym_macro_invocation] = STATE(2877), - [sym_scoped_identifier] = STATE(2130), - [sym_scoped_type_identifier] = STATE(2908), - [sym_match_pattern] = STATE(3423), - [sym_const_block] = STATE(2877), - [sym__pattern] = STATE(2919), - [sym_tuple_pattern] = STATE(2877), - [sym_slice_pattern] = STATE(2877), - [sym_tuple_struct_pattern] = STATE(2877), - [sym_struct_pattern] = STATE(2877), - [sym_remaining_field_pattern] = STATE(2877), - [sym_mut_pattern] = STATE(2877), - [sym_range_pattern] = STATE(2877), - [sym_ref_pattern] = STATE(2877), - [sym_captured_pattern] = STATE(2877), - [sym_reference_pattern] = STATE(2877), - [sym_or_pattern] = STATE(2877), - [sym__literal_pattern] = STATE(2387), - [sym_negative_literal] = STATE(2299), - [sym_string_literal] = STATE(2299), - [sym_raw_string_literal] = STATE(2299), - [sym_boolean_literal] = STATE(2299), - [sym_line_comment] = STATE(758), - [sym_block_comment] = STATE(758), - [aux_sym_match_arm_repeat1] = STATE(1041), - [sym_identifier] = ACTIONS(1604), - [anon_sym_LPAREN] = ACTIONS(1606), - [anon_sym_LBRACK] = ACTIONS(1608), - [anon_sym_u8] = ACTIONS(1612), - [anon_sym_i8] = ACTIONS(1612), - [anon_sym_u16] = ACTIONS(1612), - [anon_sym_i16] = ACTIONS(1612), - [anon_sym_u32] = ACTIONS(1612), - [anon_sym_i32] = ACTIONS(1612), - [anon_sym_u64] = ACTIONS(1612), - [anon_sym_i64] = ACTIONS(1612), - [anon_sym_u128] = ACTIONS(1612), - [anon_sym_i128] = ACTIONS(1612), - [anon_sym_isize] = ACTIONS(1612), - [anon_sym_usize] = ACTIONS(1612), - [anon_sym_f32] = ACTIONS(1612), - [anon_sym_f64] = ACTIONS(1612), - [anon_sym_bool] = ACTIONS(1612), - [anon_sym_str] = ACTIONS(1612), - [anon_sym_char] = ACTIONS(1612), - [anon_sym_DASH] = ACTIONS(1614), - [anon_sym_AMP] = ACTIONS(1616), - [anon_sym_PIPE] = ACTIONS(1618), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1620), - [anon_sym_DOT_DOT] = ACTIONS(1622), - [anon_sym_COLON_COLON] = ACTIONS(1624), - [anon_sym_POUND] = ACTIONS(1626), - [anon_sym_const] = ACTIONS(1628), - [anon_sym_default] = ACTIONS(1630), - [anon_sym_union] = ACTIONS(1630), - [anon_sym_ref] = ACTIONS(1632), - [sym_mutable_specifier] = ACTIONS(1634), - [sym_integer_literal] = ACTIONS(1636), - [aux_sym_string_literal_token1] = ACTIONS(1638), - [sym_char_literal] = ACTIONS(1636), - [anon_sym_true] = ACTIONS(1640), - [anon_sym_false] = ACTIONS(1640), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1642), - [sym_super] = ACTIONS(1642), - [sym_crate] = ACTIONS(1642), - [sym_metavariable] = ACTIONS(1644), - [sym__raw_string_literal_start] = ACTIONS(1646), - [sym_float_literal] = ACTIONS(1636), - }, - [759] = { - [sym_attribute_item] = STATE(1479), - [sym_inner_attribute_item] = STATE(1479), - [sym_bracketed_type] = STATE(3523), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3262), - [sym_macro_invocation] = STATE(2877), - [sym_scoped_identifier] = STATE(2130), - [sym_scoped_type_identifier] = STATE(2908), - [sym_match_pattern] = STATE(3410), - [sym_const_block] = STATE(2877), - [sym__pattern] = STATE(2919), - [sym_tuple_pattern] = STATE(2877), - [sym_slice_pattern] = STATE(2877), - [sym_tuple_struct_pattern] = STATE(2877), - [sym_struct_pattern] = STATE(2877), - [sym_remaining_field_pattern] = STATE(2877), - [sym_mut_pattern] = STATE(2877), - [sym_range_pattern] = STATE(2877), - [sym_ref_pattern] = STATE(2877), - [sym_captured_pattern] = STATE(2877), - [sym_reference_pattern] = STATE(2877), - [sym_or_pattern] = STATE(2877), - [sym__literal_pattern] = STATE(2387), - [sym_negative_literal] = STATE(2299), - [sym_string_literal] = STATE(2299), - [sym_raw_string_literal] = STATE(2299), - [sym_boolean_literal] = STATE(2299), - [sym_line_comment] = STATE(759), - [sym_block_comment] = STATE(759), - [aux_sym_match_arm_repeat1] = STATE(1041), - [sym_identifier] = ACTIONS(1604), - [anon_sym_LPAREN] = ACTIONS(1606), - [anon_sym_LBRACK] = ACTIONS(1608), - [anon_sym_u8] = ACTIONS(1612), - [anon_sym_i8] = ACTIONS(1612), - [anon_sym_u16] = ACTIONS(1612), - [anon_sym_i16] = ACTIONS(1612), - [anon_sym_u32] = ACTIONS(1612), - [anon_sym_i32] = ACTIONS(1612), - [anon_sym_u64] = ACTIONS(1612), - [anon_sym_i64] = ACTIONS(1612), - [anon_sym_u128] = ACTIONS(1612), - [anon_sym_i128] = ACTIONS(1612), - [anon_sym_isize] = ACTIONS(1612), - [anon_sym_usize] = ACTIONS(1612), - [anon_sym_f32] = ACTIONS(1612), - [anon_sym_f64] = ACTIONS(1612), - [anon_sym_bool] = ACTIONS(1612), - [anon_sym_str] = ACTIONS(1612), - [anon_sym_char] = ACTIONS(1612), - [anon_sym_DASH] = ACTIONS(1614), - [anon_sym_AMP] = ACTIONS(1616), - [anon_sym_PIPE] = ACTIONS(1618), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1620), - [anon_sym_DOT_DOT] = ACTIONS(1622), - [anon_sym_COLON_COLON] = ACTIONS(1624), - [anon_sym_POUND] = ACTIONS(1626), - [anon_sym_const] = ACTIONS(1628), - [anon_sym_default] = ACTIONS(1630), - [anon_sym_union] = ACTIONS(1630), - [anon_sym_ref] = ACTIONS(1632), - [sym_mutable_specifier] = ACTIONS(1634), - [sym_integer_literal] = ACTIONS(1636), - [aux_sym_string_literal_token1] = ACTIONS(1638), - [sym_char_literal] = ACTIONS(1636), - [anon_sym_true] = ACTIONS(1640), - [anon_sym_false] = ACTIONS(1640), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1642), - [sym_super] = ACTIONS(1642), - [sym_crate] = ACTIONS(1642), - [sym_metavariable] = ACTIONS(1644), - [sym__raw_string_literal_start] = ACTIONS(1646), - [sym_float_literal] = ACTIONS(1636), + [sym__raw_string_literal_start] = ACTIONS(1330), + [sym_float_literal] = ACTIONS(1318), }, [760] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), + [sym_bracketed_type] = STATE(3484), + [sym_generic_type] = STATE(3487), + [sym_generic_type_with_turbofish] = STATE(3219), [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), + [sym_scoped_identifier] = STATE(1954), + [sym_scoped_type_identifier] = STATE(2845), [sym_const_block] = STATE(2079), - [sym_closure_expression] = STATE(3065), - [sym_closure_parameters] = STATE(230), - [sym__pattern] = STATE(2928), + [sym_closure_expression] = STATE(3155), + [sym_closure_parameters] = STATE(216), + [sym__pattern] = STATE(2911), [sym_tuple_pattern] = STATE(2079), [sym_slice_pattern] = STATE(2079), [sym_tuple_struct_pattern] = STATE(2079), @@ -91017,11 +91025,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_captured_pattern] = STATE(2079), [sym_reference_pattern] = STATE(2079), [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym__literal_pattern] = STATE(2006), + [sym_negative_literal] = STATE(2009), + [sym_string_literal] = STATE(2009), + [sym_raw_string_literal] = STATE(2009), + [sym_boolean_literal] = STATE(2009), [sym_line_comment] = STATE(760), [sym_block_comment] = STATE(760), [sym_identifier] = ACTIONS(2919), @@ -91045,7 +91053,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2927), [anon_sym_str] = ACTIONS(2927), [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), + [anon_sym_DASH] = ACTIONS(1274), [anon_sym_AMP] = ACTIONS(2929), [anon_sym_PIPE] = ACTIONS(1478), [anon_sym_LT] = ACTIONS(29), @@ -91056,34 +91064,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(2937), [anon_sym_static] = ACTIONS(1486), [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), + [anon_sym_ref] = ACTIONS(1312), [sym_mutable_specifier] = ACTIONS(1488), [anon_sym_move] = ACTIONS(1490), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), + [sym_integer_literal] = ACTIONS(1318), + [aux_sym_string_literal_token1] = ACTIONS(1320), + [sym_char_literal] = ACTIONS(1318), + [anon_sym_true] = ACTIONS(1322), + [anon_sym_false] = ACTIONS(1322), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(2939), [sym_super] = ACTIONS(2939), [sym_crate] = ACTIONS(2939), [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym__raw_string_literal_start] = ACTIONS(1330), + [sym_float_literal] = ACTIONS(1318), }, [761] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), + [sym_bracketed_type] = STATE(3484), + [sym_generic_type] = STATE(3487), + [sym_generic_type_with_turbofish] = STATE(3219), [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), + [sym_scoped_identifier] = STATE(1954), + [sym_scoped_type_identifier] = STATE(2845), [sym_const_block] = STATE(2079), - [sym_closure_expression] = STATE(3065), - [sym_closure_parameters] = STATE(230), - [sym__pattern] = STATE(2928), + [sym_closure_expression] = STATE(3155), + [sym_closure_parameters] = STATE(216), + [sym__pattern] = STATE(2911), [sym_tuple_pattern] = STATE(2079), [sym_slice_pattern] = STATE(2079), [sym_tuple_struct_pattern] = STATE(2079), @@ -91095,11 +91103,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_captured_pattern] = STATE(2079), [sym_reference_pattern] = STATE(2079), [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym__literal_pattern] = STATE(2006), + [sym_negative_literal] = STATE(2009), + [sym_string_literal] = STATE(2009), + [sym_raw_string_literal] = STATE(2009), + [sym_boolean_literal] = STATE(2009), [sym_line_comment] = STATE(761), [sym_block_comment] = STATE(761), [sym_identifier] = ACTIONS(2919), @@ -91123,7 +91131,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2927), [anon_sym_str] = ACTIONS(2927), [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), + [anon_sym_DASH] = ACTIONS(1274), [anon_sym_AMP] = ACTIONS(2929), [anon_sym_PIPE] = ACTIONS(1478), [anon_sym_LT] = ACTIONS(29), @@ -91134,34 +91142,188 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(2937), [anon_sym_static] = ACTIONS(1486), [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), + [anon_sym_ref] = ACTIONS(1312), [sym_mutable_specifier] = ACTIONS(1488), [anon_sym_move] = ACTIONS(1490), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), + [sym_integer_literal] = ACTIONS(1318), + [aux_sym_string_literal_token1] = ACTIONS(1320), + [sym_char_literal] = ACTIONS(1318), + [anon_sym_true] = ACTIONS(1322), + [anon_sym_false] = ACTIONS(1322), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(2939), [sym_super] = ACTIONS(2939), [sym_crate] = ACTIONS(2939), [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym__raw_string_literal_start] = ACTIONS(1330), + [sym_float_literal] = ACTIONS(1318), }, [762] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), + [sym_attribute_item] = STATE(1477), + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym_visibility_modifier] = STATE(965), + [sym__type] = STATE(2502), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), + [sym_line_comment] = STATE(762), + [sym_block_comment] = STATE(762), + [aux_sym_enum_variant_list_repeat1] = STATE(778), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2953), + [anon_sym_LPAREN] = ACTIONS(1560), + [anon_sym_RPAREN] = ACTIONS(2955), + [anon_sym_LBRACK] = ACTIONS(1562), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), + [anon_sym_u8] = ACTIONS(1566), + [anon_sym_i8] = ACTIONS(1566), + [anon_sym_u16] = ACTIONS(1566), + [anon_sym_i16] = ACTIONS(1566), + [anon_sym_u32] = ACTIONS(1566), + [anon_sym_i32] = ACTIONS(1566), + [anon_sym_u64] = ACTIONS(1566), + [anon_sym_i64] = ACTIONS(1566), + [anon_sym_u128] = ACTIONS(1566), + [anon_sym_i128] = ACTIONS(1566), + [anon_sym_isize] = ACTIONS(1566), + [anon_sym_usize] = ACTIONS(1566), + [anon_sym_f32] = ACTIONS(1566), + [anon_sym_f64] = ACTIONS(1566), + [anon_sym_bool] = ACTIONS(1566), + [anon_sym_str] = ACTIONS(1566), + [anon_sym_char] = ACTIONS(1566), + [anon_sym_BANG] = ACTIONS(1276), + [anon_sym_AMP] = ACTIONS(1568), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COMMA] = ACTIONS(2957), + [anon_sym_COLON_COLON] = ACTIONS(1572), + [anon_sym_POUND] = ACTIONS(2959), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), + [anon_sym_default] = ACTIONS(1576), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), + [anon_sym_pub] = ACTIONS(2963), + [anon_sym_union] = ACTIONS(1578), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1582), + [sym_super] = ACTIONS(1582), + [sym_crate] = ACTIONS(2965), + [sym_metavariable] = ACTIONS(1584), + }, + [763] = { + [sym_attribute_item] = STATE(1477), + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_const_parameter] = STATE(2733), + [sym_constrained_type_parameter] = STATE(2728), + [sym_optional_type_parameter] = STATE(2733), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2842), + [sym_bracketed_type] = STATE(3333), + [sym_qualified_type] = STATE(3464), + [sym_lifetime] = STATE(2373), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), + [sym_line_comment] = STATE(763), + [sym_block_comment] = STATE(763), + [aux_sym_enum_variant_list_repeat1] = STATE(2052), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2967), + [anon_sym_LPAREN] = ACTIONS(1560), + [anon_sym_LBRACK] = ACTIONS(1562), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), + [anon_sym_u8] = ACTIONS(1566), + [anon_sym_i8] = ACTIONS(1566), + [anon_sym_u16] = ACTIONS(1566), + [anon_sym_i16] = ACTIONS(1566), + [anon_sym_u32] = ACTIONS(1566), + [anon_sym_i32] = ACTIONS(1566), + [anon_sym_u64] = ACTIONS(1566), + [anon_sym_i64] = ACTIONS(1566), + [anon_sym_u128] = ACTIONS(1566), + [anon_sym_i128] = ACTIONS(1566), + [anon_sym_isize] = ACTIONS(1566), + [anon_sym_usize] = ACTIONS(1566), + [anon_sym_f32] = ACTIONS(1566), + [anon_sym_f64] = ACTIONS(1566), + [anon_sym_bool] = ACTIONS(1566), + [anon_sym_str] = ACTIONS(1566), + [anon_sym_char] = ACTIONS(1566), + [anon_sym_BANG] = ACTIONS(1276), + [anon_sym_AMP] = ACTIONS(1568), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1572), + [anon_sym_POUND] = ACTIONS(2959), + [anon_sym_SQUOTE] = ACTIONS(2969), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(2971), + [anon_sym_default] = ACTIONS(1576), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1578), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1582), + [sym_super] = ACTIONS(1582), + [sym_crate] = ACTIONS(1582), + [sym_metavariable] = ACTIONS(2973), + }, + [764] = { + [sym_bracketed_type] = STATE(3484), + [sym_generic_type] = STATE(3487), + [sym_generic_type_with_turbofish] = STATE(3219), [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), + [sym_scoped_identifier] = STATE(1954), + [sym_scoped_type_identifier] = STATE(2845), [sym_const_block] = STATE(2079), - [sym_closure_expression] = STATE(3065), - [sym_closure_parameters] = STATE(230), - [sym__pattern] = STATE(2928), + [sym_closure_expression] = STATE(3155), + [sym_closure_parameters] = STATE(216), + [sym__pattern] = STATE(2911), [sym_tuple_pattern] = STATE(2079), [sym_slice_pattern] = STATE(2079), [sym_tuple_struct_pattern] = STATE(2079), @@ -91173,13 +91335,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_captured_pattern] = STATE(2079), [sym_reference_pattern] = STATE(2079), [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), - [sym_line_comment] = STATE(762), - [sym_block_comment] = STATE(762), + [sym__literal_pattern] = STATE(2006), + [sym_negative_literal] = STATE(2009), + [sym_string_literal] = STATE(2009), + [sym_raw_string_literal] = STATE(2009), + [sym_boolean_literal] = STATE(2009), + [sym_line_comment] = STATE(764), + [sym_block_comment] = STATE(764), [sym_identifier] = ACTIONS(2919), [anon_sym_LPAREN] = ACTIONS(2921), [anon_sym_LBRACK] = ACTIONS(2925), @@ -91200,7 +91362,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2927), [anon_sym_str] = ACTIONS(2927), [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), + [anon_sym_DASH] = ACTIONS(1274), [anon_sym_AMP] = ACTIONS(2929), [anon_sym_PIPE] = ACTIONS(1478), [anon_sym_LT] = ACTIONS(29), @@ -91211,135 +91373,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(2937), [anon_sym_static] = ACTIONS(1486), [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), + [anon_sym_ref] = ACTIONS(1312), [sym_mutable_specifier] = ACTIONS(1488), [anon_sym_move] = ACTIONS(1490), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), + [sym_integer_literal] = ACTIONS(1318), + [aux_sym_string_literal_token1] = ACTIONS(1320), + [sym_char_literal] = ACTIONS(1318), + [anon_sym_true] = ACTIONS(1322), + [anon_sym_false] = ACTIONS(1322), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(2939), [sym_super] = ACTIONS(2939), [sym_crate] = ACTIONS(2939), [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym__raw_string_literal_start] = ACTIONS(1330), + [sym_float_literal] = ACTIONS(1318), }, - [763] = { - [sym_attribute_item] = STATE(1476), - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_const_parameter] = STATE(2959), - [sym_constrained_type_parameter] = STATE(2693), - [sym_optional_type_parameter] = STATE(2959), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2819), - [sym_bracketed_type] = STATE(3332), - [sym_qualified_type] = STATE(3515), - [sym_lifetime] = STATE(2373), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), - [sym_line_comment] = STATE(763), - [sym_block_comment] = STATE(763), - [aux_sym_enum_variant_list_repeat1] = STATE(2055), - [aux_sym_function_modifiers_repeat1] = STATE(2206), + [765] = { + [sym_attribute_item] = STATE(1477), + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym_visibility_modifier] = STATE(975), + [sym__type] = STATE(2817), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), + [sym_line_comment] = STATE(765), + [sym_block_comment] = STATE(765), + [aux_sym_enum_variant_list_repeat1] = STATE(771), + [aux_sym_function_modifiers_repeat1] = STATE(2220), [sym_identifier] = ACTIONS(2953), [anon_sym_LPAREN] = ACTIONS(1560), + [anon_sym_RPAREN] = ACTIONS(2975), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_POUND] = ACTIONS(2955), - [anon_sym_SQUOTE] = ACTIONS(2957), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(2959), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(2961), - }, - [764] = { - [sym_attribute_item] = STATE(1476), - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym_visibility_modifier] = STATE(885), - [sym__type] = STATE(2579), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), - [sym_line_comment] = STATE(764), - [sym_block_comment] = STATE(764), - [aux_sym_enum_variant_list_repeat1] = STATE(772), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_RPAREN] = ACTIONS(2965), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -91357,66 +91442,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), - [anon_sym_COMMA] = ACTIONS(2967), [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_POUND] = ACTIONS(2955), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_POUND] = ACTIONS(2959), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_pub] = ACTIONS(2971), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), + [anon_sym_pub] = ACTIONS(2963), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(2973), + [sym_crate] = ACTIONS(2965), [sym_metavariable] = ACTIONS(1584), }, - [765] = { - [sym_attribute_item] = STATE(1476), - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym_visibility_modifier] = STATE(878), - [sym__type] = STATE(2913), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), - [sym_line_comment] = STATE(765), - [sym_block_comment] = STATE(765), - [aux_sym_enum_variant_list_repeat1] = STATE(774), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), + [766] = { + [sym_attribute_item] = STATE(1477), + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym_visibility_modifier] = STATE(975), + [sym__type] = STATE(2817), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), + [sym_line_comment] = STATE(766), + [sym_block_comment] = STATE(766), + [aux_sym_enum_variant_list_repeat1] = STATE(771), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2953), [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_RPAREN] = ACTIONS(2975), + [anon_sym_RPAREN] = ACTIONS(2977), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -91434,65 +91518,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_POUND] = ACTIONS(2955), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_POUND] = ACTIONS(2959), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_pub] = ACTIONS(2971), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), + [anon_sym_pub] = ACTIONS(2963), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(2973), + [sym_crate] = ACTIONS(2965), [sym_metavariable] = ACTIONS(1584), }, - [766] = { - [sym_attribute_item] = STATE(1476), - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym_visibility_modifier] = STATE(878), - [sym__type] = STATE(2913), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), - [sym_line_comment] = STATE(766), - [sym_block_comment] = STATE(766), - [aux_sym_enum_variant_list_repeat1] = STATE(774), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), + [767] = { + [sym_attribute_item] = STATE(1477), + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym_visibility_modifier] = STATE(975), + [sym__type] = STATE(2817), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), + [sym_line_comment] = STATE(767), + [sym_block_comment] = STATE(767), + [aux_sym_enum_variant_list_repeat1] = STATE(771), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2953), [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_RPAREN] = ACTIONS(2977), + [anon_sym_RPAREN] = ACTIONS(2979), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -91510,65 +91594,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_POUND] = ACTIONS(2955), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_POUND] = ACTIONS(2959), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_pub] = ACTIONS(2971), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), + [anon_sym_pub] = ACTIONS(2963), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(2973), + [sym_crate] = ACTIONS(2965), [sym_metavariable] = ACTIONS(1584), }, - [767] = { - [sym_attribute_item] = STATE(1476), - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym_visibility_modifier] = STATE(878), - [sym__type] = STATE(2913), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), - [sym_line_comment] = STATE(767), - [sym_block_comment] = STATE(767), - [aux_sym_enum_variant_list_repeat1] = STATE(774), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), + [768] = { + [sym_attribute_item] = STATE(1477), + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym_visibility_modifier] = STATE(975), + [sym__type] = STATE(2817), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), + [sym_line_comment] = STATE(768), + [sym_block_comment] = STATE(768), + [aux_sym_enum_variant_list_repeat1] = STATE(771), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2953), [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_RPAREN] = ACTIONS(2979), + [anon_sym_RPAREN] = ACTIONS(2981), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -91586,65 +91670,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_POUND] = ACTIONS(2955), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_POUND] = ACTIONS(2959), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_pub] = ACTIONS(2971), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), + [anon_sym_pub] = ACTIONS(2963), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(2973), + [sym_crate] = ACTIONS(2965), [sym_metavariable] = ACTIONS(1584), }, - [768] = { - [sym_attribute_item] = STATE(1476), - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym_visibility_modifier] = STATE(878), - [sym__type] = STATE(2913), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), - [sym_line_comment] = STATE(768), - [sym_block_comment] = STATE(768), - [aux_sym_enum_variant_list_repeat1] = STATE(774), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), + [769] = { + [sym_attribute_item] = STATE(1477), + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym_visibility_modifier] = STATE(975), + [sym__type] = STATE(2817), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), + [sym_line_comment] = STATE(769), + [sym_block_comment] = STATE(769), + [aux_sym_enum_variant_list_repeat1] = STATE(771), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2953), [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_RPAREN] = ACTIONS(2981), + [anon_sym_RPAREN] = ACTIONS(2983), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -91662,65 +91746,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_POUND] = ACTIONS(2955), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_POUND] = ACTIONS(2959), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_pub] = ACTIONS(2971), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), + [anon_sym_pub] = ACTIONS(2963), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(2973), + [sym_crate] = ACTIONS(2965), [sym_metavariable] = ACTIONS(1584), }, - [769] = { - [sym_attribute_item] = STATE(1476), - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym_visibility_modifier] = STATE(878), - [sym__type] = STATE(2913), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), - [sym_line_comment] = STATE(769), - [sym_block_comment] = STATE(769), - [aux_sym_enum_variant_list_repeat1] = STATE(774), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), + [770] = { + [sym_attribute_item] = STATE(1477), + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym_visibility_modifier] = STATE(975), + [sym__type] = STATE(2817), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), + [sym_line_comment] = STATE(770), + [sym_block_comment] = STATE(770), + [aux_sym_enum_variant_list_repeat1] = STATE(771), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2953), [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_RPAREN] = ACTIONS(2983), + [anon_sym_RPAREN] = ACTIONS(2985), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -91738,65 +91822,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_POUND] = ACTIONS(2955), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_POUND] = ACTIONS(2959), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_pub] = ACTIONS(2971), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), + [anon_sym_pub] = ACTIONS(2963), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(2973), + [sym_crate] = ACTIONS(2965), [sym_metavariable] = ACTIONS(1584), }, - [770] = { - [sym_attribute_item] = STATE(1476), - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym_visibility_modifier] = STATE(878), - [sym__type] = STATE(2913), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), - [sym_line_comment] = STATE(770), - [sym_block_comment] = STATE(770), - [aux_sym_enum_variant_list_repeat1] = STATE(774), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), + [771] = { + [sym_attribute_item] = STATE(1477), + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym_visibility_modifier] = STATE(943), + [sym__type] = STATE(2864), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), + [sym_line_comment] = STATE(771), + [sym_block_comment] = STATE(771), + [aux_sym_enum_variant_list_repeat1] = STATE(1078), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2953), [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_RPAREN] = ACTIONS(2985), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -91814,39 +91897,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_POUND] = ACTIONS(2955), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_POUND] = ACTIONS(2959), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_pub] = ACTIONS(2971), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), + [anon_sym_pub] = ACTIONS(2963), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(2973), + [sym_crate] = ACTIONS(2965), [sym_metavariable] = ACTIONS(1584), }, - [771] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), + [772] = { + [sym_bracketed_type] = STATE(3484), + [sym_generic_type] = STATE(3487), + [sym_generic_type_with_turbofish] = STATE(3219), [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), + [sym_scoped_identifier] = STATE(1954), + [sym_scoped_type_identifier] = STATE(2845), [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2674), + [sym__pattern] = STATE(2675), [sym_tuple_pattern] = STATE(2079), [sym_slice_pattern] = STATE(2079), [sym_tuple_struct_pattern] = STATE(2079), @@ -91858,13 +91941,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_captured_pattern] = STATE(2079), [sym_reference_pattern] = STATE(2079), [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), - [sym_line_comment] = STATE(771), - [sym_block_comment] = STATE(771), + [sym__literal_pattern] = STATE(2006), + [sym_negative_literal] = STATE(2009), + [sym_string_literal] = STATE(2009), + [sym_raw_string_literal] = STATE(2009), + [sym_boolean_literal] = STATE(2009), + [sym_line_comment] = STATE(772), + [sym_block_comment] = STATE(772), [sym_identifier] = ACTIONS(2919), [anon_sym_LPAREN] = ACTIONS(2921), [anon_sym_RPAREN] = ACTIONS(2987), @@ -91886,9 +91969,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2927), [anon_sym_str] = ACTIONS(2927), [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), + [anon_sym_DASH] = ACTIONS(1274), [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), + [anon_sym_PIPE] = ACTIONS(1280), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1480), [anon_sym_DOT_DOT] = ACTIONS(1482), @@ -91897,56 +91980,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(2935), [anon_sym_default] = ACTIONS(2937), [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), + [anon_sym_ref] = ACTIONS(1312), [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), + [sym_integer_literal] = ACTIONS(1318), + [aux_sym_string_literal_token1] = ACTIONS(1320), + [sym_char_literal] = ACTIONS(1318), + [anon_sym_true] = ACTIONS(1322), + [anon_sym_false] = ACTIONS(1322), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(2939), [sym_super] = ACTIONS(2939), [sym_crate] = ACTIONS(2939), [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym__raw_string_literal_start] = ACTIONS(1330), + [sym_float_literal] = ACTIONS(1318), }, - [772] = { - [sym_attribute_item] = STATE(1476), - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym_visibility_modifier] = STATE(942), - [sym__type] = STATE(2698), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), - [sym_line_comment] = STATE(772), - [sym_block_comment] = STATE(772), - [aux_sym_enum_variant_list_repeat1] = STATE(1065), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), + [773] = { + [sym_attribute_item] = STATE(1477), + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym_visibility_modifier] = STATE(975), + [sym__type] = STATE(2817), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), + [sym_line_comment] = STATE(773), + [sym_block_comment] = STATE(773), + [aux_sym_enum_variant_list_repeat1] = STATE(771), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2953), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -91964,39 +92047,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_POUND] = ACTIONS(2955), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_POUND] = ACTIONS(2959), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_pub] = ACTIONS(2971), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), + [anon_sym_pub] = ACTIONS(2963), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(2973), + [sym_crate] = ACTIONS(2965), [sym_metavariable] = ACTIONS(1584), }, - [773] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), + [774] = { + [sym_bracketed_type] = STATE(3484), + [sym_generic_type] = STATE(3487), + [sym_generic_type_with_turbofish] = STATE(3219), [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), + [sym_scoped_identifier] = STATE(1954), + [sym_scoped_type_identifier] = STATE(2845), [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2524), + [sym__pattern] = STATE(2559), [sym_tuple_pattern] = STATE(2079), [sym_slice_pattern] = STATE(2079), [sym_tuple_struct_pattern] = STATE(2079), @@ -92008,13 +92091,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_captured_pattern] = STATE(2079), [sym_reference_pattern] = STATE(2079), [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), - [sym_line_comment] = STATE(773), - [sym_block_comment] = STATE(773), + [sym__literal_pattern] = STATE(2006), + [sym_negative_literal] = STATE(2009), + [sym_string_literal] = STATE(2009), + [sym_raw_string_literal] = STATE(2009), + [sym_boolean_literal] = STATE(2009), + [sym_line_comment] = STATE(774), + [sym_block_comment] = STATE(774), [sym_identifier] = ACTIONS(2919), [anon_sym_LPAREN] = ACTIONS(2921), [anon_sym_RPAREN] = ACTIONS(2991), @@ -92036,9 +92119,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2927), [anon_sym_str] = ACTIONS(2927), [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), + [anon_sym_DASH] = ACTIONS(1274), [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), + [anon_sym_PIPE] = ACTIONS(1280), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1480), [anon_sym_DOT_DOT] = ACTIONS(1482), @@ -92047,106 +92130,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(2935), [anon_sym_default] = ACTIONS(2937), [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), + [anon_sym_ref] = ACTIONS(1312), [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), + [sym_integer_literal] = ACTIONS(1318), + [aux_sym_string_literal_token1] = ACTIONS(1320), + [sym_char_literal] = ACTIONS(1318), + [anon_sym_true] = ACTIONS(1322), + [anon_sym_false] = ACTIONS(1322), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(2939), [sym_super] = ACTIONS(2939), [sym_crate] = ACTIONS(2939), [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), - }, - [774] = { - [sym_attribute_item] = STATE(1476), - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym_visibility_modifier] = STATE(910), - [sym__type] = STATE(2874), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), - [sym_line_comment] = STATE(774), - [sym_block_comment] = STATE(774), - [aux_sym_enum_variant_list_repeat1] = STATE(1065), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_POUND] = ACTIONS(2955), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_pub] = ACTIONS(2971), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(2973), - [sym_metavariable] = ACTIONS(1584), + [sym__raw_string_literal_start] = ACTIONS(1330), + [sym_float_literal] = ACTIONS(1318), }, [775] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), + [sym_bracketed_type] = STATE(3484), + [sym_generic_type] = STATE(3487), + [sym_generic_type_with_turbofish] = STATE(3219), [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), + [sym_scoped_identifier] = STATE(1954), + [sym_scoped_type_identifier] = STATE(2845), [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2525), + [sym__pattern] = STATE(2680), [sym_tuple_pattern] = STATE(2079), [sym_slice_pattern] = STATE(2079), [sym_tuple_struct_pattern] = STATE(2079), @@ -92158,11 +92166,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_captured_pattern] = STATE(2079), [sym_reference_pattern] = STATE(2079), [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym__literal_pattern] = STATE(2006), + [sym_negative_literal] = STATE(2009), + [sym_string_literal] = STATE(2009), + [sym_raw_string_literal] = STATE(2009), + [sym_boolean_literal] = STATE(2009), [sym_line_comment] = STATE(775), [sym_block_comment] = STATE(775), [sym_identifier] = ACTIONS(2919), @@ -92186,9 +92194,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2927), [anon_sym_str] = ACTIONS(2927), [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), + [anon_sym_DASH] = ACTIONS(1274), [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), + [anon_sym_PIPE] = ACTIONS(1280), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1480), [anon_sym_DOT_DOT] = ACTIONS(1482), @@ -92197,31 +92205,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(2935), [anon_sym_default] = ACTIONS(2937), [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), + [anon_sym_ref] = ACTIONS(1312), [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), + [sym_integer_literal] = ACTIONS(1318), + [aux_sym_string_literal_token1] = ACTIONS(1320), + [sym_char_literal] = ACTIONS(1318), + [anon_sym_true] = ACTIONS(1322), + [anon_sym_false] = ACTIONS(1322), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(2939), [sym_super] = ACTIONS(2939), [sym_crate] = ACTIONS(2939), [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym__raw_string_literal_start] = ACTIONS(1330), + [sym_float_literal] = ACTIONS(1318), }, [776] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), + [sym_bracketed_type] = STATE(3484), + [sym_generic_type] = STATE(3487), + [sym_generic_type_with_turbofish] = STATE(3219), [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), + [sym_scoped_identifier] = STATE(1954), + [sym_scoped_type_identifier] = STATE(2845), [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2501), + [sym__pattern] = STATE(2688), [sym_tuple_pattern] = STATE(2079), [sym_slice_pattern] = STATE(2079), [sym_tuple_struct_pattern] = STATE(2079), @@ -92233,17 +92241,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_captured_pattern] = STATE(2079), [sym_reference_pattern] = STATE(2079), [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym__literal_pattern] = STATE(2006), + [sym_negative_literal] = STATE(2009), + [sym_string_literal] = STATE(2009), + [sym_raw_string_literal] = STATE(2009), + [sym_boolean_literal] = STATE(2009), [sym_line_comment] = STATE(776), [sym_block_comment] = STATE(776), [sym_identifier] = ACTIONS(2919), [anon_sym_LPAREN] = ACTIONS(2921), [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_RBRACK] = ACTIONS(2999), + [anon_sym_RBRACK] = ACTIONS(1508), [anon_sym_u8] = ACTIONS(2927), [anon_sym_i8] = ACTIONS(2927), [anon_sym_u16] = ACTIONS(2927), @@ -92261,117 +92269,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2927), [anon_sym_str] = ACTIONS(2927), [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), + [anon_sym_DASH] = ACTIONS(1274), [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), + [anon_sym_PIPE] = ACTIONS(1280), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1480), [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COMMA] = ACTIONS(3001), + [anon_sym_COMMA] = ACTIONS(1514), [anon_sym_COLON_COLON] = ACTIONS(2933), [anon_sym_const] = ACTIONS(2935), [anon_sym_default] = ACTIONS(2937), [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), + [anon_sym_ref] = ACTIONS(1312), [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), + [sym_integer_literal] = ACTIONS(1318), + [aux_sym_string_literal_token1] = ACTIONS(1320), + [sym_char_literal] = ACTIONS(1318), + [anon_sym_true] = ACTIONS(1322), + [anon_sym_false] = ACTIONS(1322), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(2939), [sym_super] = ACTIONS(2939), [sym_crate] = ACTIONS(2939), [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym__raw_string_literal_start] = ACTIONS(1330), + [sym_float_literal] = ACTIONS(1318), }, [777] = { - [sym_attribute_item] = STATE(1476), - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym_visibility_modifier] = STATE(878), - [sym__type] = STATE(2913), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), - [sym_line_comment] = STATE(777), - [sym_block_comment] = STATE(777), - [aux_sym_enum_variant_list_repeat1] = STATE(774), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_POUND] = ACTIONS(2955), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_pub] = ACTIONS(2971), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(2973), - [sym_metavariable] = ACTIONS(1584), - }, - [778] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), + [sym_bracketed_type] = STATE(3484), + [sym_generic_type] = STATE(3487), + [sym_generic_type_with_turbofish] = STATE(3219), [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), + [sym_scoped_identifier] = STATE(1954), + [sym_scoped_type_identifier] = STATE(2845), [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2672), + [sym__pattern] = STATE(2683), [sym_tuple_pattern] = STATE(2079), [sym_slice_pattern] = STATE(2079), [sym_tuple_struct_pattern] = STATE(2079), @@ -92383,17 +92316,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_captured_pattern] = STATE(2079), [sym_reference_pattern] = STATE(2079), [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), - [sym_line_comment] = STATE(778), - [sym_block_comment] = STATE(778), + [sym__literal_pattern] = STATE(2006), + [sym_negative_literal] = STATE(2009), + [sym_string_literal] = STATE(2009), + [sym_raw_string_literal] = STATE(2009), + [sym_boolean_literal] = STATE(2009), + [sym_line_comment] = STATE(777), + [sym_block_comment] = STATE(777), [sym_identifier] = ACTIONS(2919), [anon_sym_LPAREN] = ACTIONS(2921), [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_RBRACK] = ACTIONS(1508), + [anon_sym_RBRACK] = ACTIONS(2999), [anon_sym_u8] = ACTIONS(2927), [anon_sym_i8] = ACTIONS(2927), [anon_sym_u16] = ACTIONS(2927), @@ -92411,42 +92344,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2927), [anon_sym_str] = ACTIONS(2927), [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), + [anon_sym_DASH] = ACTIONS(1274), [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), + [anon_sym_PIPE] = ACTIONS(1280), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1480), [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COMMA] = ACTIONS(1514), + [anon_sym_COMMA] = ACTIONS(3001), [anon_sym_COLON_COLON] = ACTIONS(2933), [anon_sym_const] = ACTIONS(2935), [anon_sym_default] = ACTIONS(2937), [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), + [anon_sym_ref] = ACTIONS(1312), [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), + [sym_integer_literal] = ACTIONS(1318), + [aux_sym_string_literal_token1] = ACTIONS(1320), + [sym_char_literal] = ACTIONS(1318), + [anon_sym_true] = ACTIONS(1322), + [anon_sym_false] = ACTIONS(1322), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(2939), [sym_super] = ACTIONS(2939), [sym_crate] = ACTIONS(2939), [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym__raw_string_literal_start] = ACTIONS(1330), + [sym_float_literal] = ACTIONS(1318), + }, + [778] = { + [sym_attribute_item] = STATE(1477), + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym_visibility_modifier] = STATE(897), + [sym__type] = STATE(2649), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), + [sym_line_comment] = STATE(778), + [sym_block_comment] = STATE(778), + [aux_sym_enum_variant_list_repeat1] = STATE(1078), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2953), + [anon_sym_LPAREN] = ACTIONS(1560), + [anon_sym_LBRACK] = ACTIONS(1562), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), + [anon_sym_u8] = ACTIONS(1566), + [anon_sym_i8] = ACTIONS(1566), + [anon_sym_u16] = ACTIONS(1566), + [anon_sym_i16] = ACTIONS(1566), + [anon_sym_u32] = ACTIONS(1566), + [anon_sym_i32] = ACTIONS(1566), + [anon_sym_u64] = ACTIONS(1566), + [anon_sym_i64] = ACTIONS(1566), + [anon_sym_u128] = ACTIONS(1566), + [anon_sym_i128] = ACTIONS(1566), + [anon_sym_isize] = ACTIONS(1566), + [anon_sym_usize] = ACTIONS(1566), + [anon_sym_f32] = ACTIONS(1566), + [anon_sym_f64] = ACTIONS(1566), + [anon_sym_bool] = ACTIONS(1566), + [anon_sym_str] = ACTIONS(1566), + [anon_sym_char] = ACTIONS(1566), + [anon_sym_BANG] = ACTIONS(1276), + [anon_sym_AMP] = ACTIONS(1568), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1572), + [anon_sym_POUND] = ACTIONS(2959), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), + [anon_sym_default] = ACTIONS(1576), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), + [anon_sym_pub] = ACTIONS(2963), + [anon_sym_union] = ACTIONS(1578), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1582), + [sym_super] = ACTIONS(1582), + [sym_crate] = ACTIONS(2965), + [sym_metavariable] = ACTIONS(1584), }, [779] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), + [sym_bracketed_type] = STATE(3484), + [sym_generic_type] = STATE(3487), + [sym_generic_type_with_turbofish] = STATE(3219), [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), + [sym_scoped_identifier] = STATE(1954), + [sym_scoped_type_identifier] = STATE(2845), [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2639), + [sym__pattern] = STATE(2613), [sym_tuple_pattern] = STATE(2079), [sym_slice_pattern] = STATE(2079), [sym_tuple_struct_pattern] = STATE(2079), @@ -92458,11 +92466,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_captured_pattern] = STATE(2079), [sym_reference_pattern] = STATE(2079), [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym__literal_pattern] = STATE(2006), + [sym_negative_literal] = STATE(2009), + [sym_string_literal] = STATE(2009), + [sym_raw_string_literal] = STATE(2009), + [sym_boolean_literal] = STATE(2009), [sym_line_comment] = STATE(779), [sym_block_comment] = STATE(779), [sym_identifier] = ACTIONS(2919), @@ -92486,9 +92494,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2927), [anon_sym_str] = ACTIONS(2927), [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), + [anon_sym_DASH] = ACTIONS(1274), [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), + [anon_sym_PIPE] = ACTIONS(1280), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1480), [anon_sym_DOT_DOT] = ACTIONS(1482), @@ -92497,32 +92505,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(2935), [anon_sym_default] = ACTIONS(2937), [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), + [anon_sym_ref] = ACTIONS(1312), [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), + [sym_integer_literal] = ACTIONS(1318), + [aux_sym_string_literal_token1] = ACTIONS(1320), + [sym_char_literal] = ACTIONS(1318), + [anon_sym_true] = ACTIONS(1322), + [anon_sym_false] = ACTIONS(1322), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(2939), [sym_super] = ACTIONS(2939), [sym_crate] = ACTIONS(2939), [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym__raw_string_literal_start] = ACTIONS(1330), + [sym_float_literal] = ACTIONS(1318), }, [780] = { - [sym_parameter] = STATE(3201), - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), + [sym_bracketed_type] = STATE(3484), + [sym_generic_type] = STATE(3487), + [sym_generic_type_with_turbofish] = STATE(3219), [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), + [sym_scoped_identifier] = STATE(1954), + [sym_scoped_type_identifier] = STATE(2845), [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2915), + [sym__pattern] = STATE(2560), [sym_tuple_pattern] = STATE(2079), [sym_slice_pattern] = STATE(2079), [sym_tuple_struct_pattern] = STATE(2079), @@ -92534,16 +92541,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_captured_pattern] = STATE(2079), [sym_reference_pattern] = STATE(2079), [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym__literal_pattern] = STATE(2006), + [sym_negative_literal] = STATE(2009), + [sym_string_literal] = STATE(2009), + [sym_raw_string_literal] = STATE(2009), + [sym_boolean_literal] = STATE(2009), [sym_line_comment] = STATE(780), [sym_block_comment] = STATE(780), [sym_identifier] = ACTIONS(2919), [anon_sym_LPAREN] = ACTIONS(2921), [anon_sym_LBRACK] = ACTIONS(2925), + [anon_sym_RBRACK] = ACTIONS(3007), [anon_sym_u8] = ACTIONS(2927), [anon_sym_i8] = ACTIONS(2927), [anon_sym_u16] = ACTIONS(2927), @@ -92561,9 +92569,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2927), [anon_sym_str] = ACTIONS(2927), [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), + [anon_sym_DASH] = ACTIONS(1274), [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), + [anon_sym_PIPE] = ACTIONS(1280), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1480), [anon_sym_DOT_DOT] = ACTIONS(1482), @@ -92571,31 +92579,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(2935), [anon_sym_default] = ACTIONS(2937), [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(3007), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), + [anon_sym_ref] = ACTIONS(1312), + [sym_mutable_specifier] = ACTIONS(1488), + [sym_integer_literal] = ACTIONS(1318), + [aux_sym_string_literal_token1] = ACTIONS(1320), + [sym_char_literal] = ACTIONS(1318), + [anon_sym_true] = ACTIONS(1322), + [anon_sym_false] = ACTIONS(1322), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3009), + [sym_self] = ACTIONS(2939), [sym_super] = ACTIONS(2939), [sym_crate] = ACTIONS(2939), [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym__raw_string_literal_start] = ACTIONS(1330), + [sym_float_literal] = ACTIONS(1318), }, [781] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), + [sym_bracketed_type] = STATE(3484), + [sym_generic_type] = STATE(3487), + [sym_generic_type_with_turbofish] = STATE(3219), [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), + [sym_scoped_identifier] = STATE(1954), + [sym_scoped_type_identifier] = STATE(2845), [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2549), + [sym__pattern] = STATE(2560), [sym_tuple_pattern] = STATE(2079), [sym_slice_pattern] = STATE(2079), [sym_tuple_struct_pattern] = STATE(2079), @@ -92607,15 +92615,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_captured_pattern] = STATE(2079), [sym_reference_pattern] = STATE(2079), [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym__literal_pattern] = STATE(2006), + [sym_negative_literal] = STATE(2009), + [sym_string_literal] = STATE(2009), + [sym_raw_string_literal] = STATE(2009), + [sym_boolean_literal] = STATE(2009), [sym_line_comment] = STATE(781), [sym_block_comment] = STATE(781), [sym_identifier] = ACTIONS(2919), [anon_sym_LPAREN] = ACTIONS(2921), + [anon_sym_RPAREN] = ACTIONS(3009), [anon_sym_LBRACK] = ACTIONS(2925), [anon_sym_u8] = ACTIONS(2927), [anon_sym_i8] = ACTIONS(2927), @@ -92634,42 +92643,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2927), [anon_sym_str] = ACTIONS(2927), [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), + [anon_sym_DASH] = ACTIONS(1274), [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), + [anon_sym_PIPE] = ACTIONS(1280), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1272), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3011), + [anon_sym_DOT_DOT] = ACTIONS(1482), [anon_sym_COLON_COLON] = ACTIONS(2933), [anon_sym_const] = ACTIONS(2935), [anon_sym_default] = ACTIONS(2937), [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), + [anon_sym_ref] = ACTIONS(1312), [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), + [sym_integer_literal] = ACTIONS(1318), + [aux_sym_string_literal_token1] = ACTIONS(1320), + [sym_char_literal] = ACTIONS(1318), + [anon_sym_true] = ACTIONS(1322), + [anon_sym_false] = ACTIONS(1322), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3013), + [sym_self] = ACTIONS(2939), [sym_super] = ACTIONS(2939), [sym_crate] = ACTIONS(2939), [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym__raw_string_literal_start] = ACTIONS(1330), + [sym_float_literal] = ACTIONS(1318), }, [782] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), + [sym_bracketed_type] = STATE(3484), + [sym_generic_type] = STATE(3487), + [sym_generic_type_with_turbofish] = STATE(3219), [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), + [sym_scoped_identifier] = STATE(1954), + [sym_scoped_type_identifier] = STATE(2845), [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2679), + [sym__pattern] = STATE(2560), [sym_tuple_pattern] = STATE(2079), [sym_slice_pattern] = STATE(2079), [sym_tuple_struct_pattern] = STATE(2079), @@ -92681,17 +92689,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_captured_pattern] = STATE(2079), [sym_reference_pattern] = STATE(2079), [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym__literal_pattern] = STATE(2006), + [sym_negative_literal] = STATE(2009), + [sym_string_literal] = STATE(2009), + [sym_raw_string_literal] = STATE(2009), + [sym_boolean_literal] = STATE(2009), [sym_line_comment] = STATE(782), [sym_block_comment] = STATE(782), [sym_identifier] = ACTIONS(2919), [anon_sym_LPAREN] = ACTIONS(2921), + [anon_sym_RPAREN] = ACTIONS(3011), [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_RBRACK] = ACTIONS(3015), [anon_sym_u8] = ACTIONS(2927), [anon_sym_i8] = ACTIONS(2927), [anon_sym_u16] = ACTIONS(2927), @@ -92709,9 +92717,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2927), [anon_sym_str] = ACTIONS(2927), [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), + [anon_sym_DASH] = ACTIONS(1274), [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), + [anon_sym_PIPE] = ACTIONS(1280), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1480), [anon_sym_DOT_DOT] = ACTIONS(1482), @@ -92719,32 +92727,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(2935), [anon_sym_default] = ACTIONS(2937), [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), + [anon_sym_ref] = ACTIONS(1312), [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), + [sym_integer_literal] = ACTIONS(1318), + [aux_sym_string_literal_token1] = ACTIONS(1320), + [sym_char_literal] = ACTIONS(1318), + [anon_sym_true] = ACTIONS(1322), + [anon_sym_false] = ACTIONS(1322), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(2939), [sym_super] = ACTIONS(2939), [sym_crate] = ACTIONS(2939), [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym__raw_string_literal_start] = ACTIONS(1330), + [sym_float_literal] = ACTIONS(1318), }, [783] = { - [sym_parameter] = STATE(3027), - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), + [sym_bracketed_type] = STATE(3484), + [sym_generic_type] = STATE(3487), + [sym_generic_type_with_turbofish] = STATE(3219), [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), + [sym_scoped_identifier] = STATE(1954), + [sym_scoped_type_identifier] = STATE(2845), [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2532), + [sym__pattern] = STATE(2560), [sym_tuple_pattern] = STATE(2079), [sym_slice_pattern] = STATE(2079), [sym_tuple_struct_pattern] = STATE(2079), @@ -92756,15 +92763,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_captured_pattern] = STATE(2079), [sym_reference_pattern] = STATE(2079), [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym__literal_pattern] = STATE(2006), + [sym_negative_literal] = STATE(2009), + [sym_string_literal] = STATE(2009), + [sym_raw_string_literal] = STATE(2009), + [sym_boolean_literal] = STATE(2009), [sym_line_comment] = STATE(783), [sym_block_comment] = STATE(783), [sym_identifier] = ACTIONS(2919), [anon_sym_LPAREN] = ACTIONS(2921), + [anon_sym_RPAREN] = ACTIONS(3013), [anon_sym_LBRACK] = ACTIONS(2925), [anon_sym_u8] = ACTIONS(2927), [anon_sym_i8] = ACTIONS(2927), @@ -92783,9 +92791,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2927), [anon_sym_str] = ACTIONS(2927), [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), + [anon_sym_DASH] = ACTIONS(1274), [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(3017), + [anon_sym_PIPE] = ACTIONS(1280), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1480), [anon_sym_DOT_DOT] = ACTIONS(1482), @@ -92793,31 +92801,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(2935), [anon_sym_default] = ACTIONS(2937), [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(3007), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), + [anon_sym_ref] = ACTIONS(1312), + [sym_mutable_specifier] = ACTIONS(1488), + [sym_integer_literal] = ACTIONS(1318), + [aux_sym_string_literal_token1] = ACTIONS(1320), + [sym_char_literal] = ACTIONS(1318), + [anon_sym_true] = ACTIONS(1322), + [anon_sym_false] = ACTIONS(1322), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3009), + [sym_self] = ACTIONS(2939), [sym_super] = ACTIONS(2939), [sym_crate] = ACTIONS(2939), [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym__raw_string_literal_start] = ACTIONS(1330), + [sym_float_literal] = ACTIONS(1318), }, [784] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), + [sym_parameter] = STATE(3160), + [sym_bracketed_type] = STATE(3484), + [sym_generic_type] = STATE(3487), + [sym_generic_type_with_turbofish] = STATE(3219), [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), + [sym_scoped_identifier] = STATE(1954), + [sym_scoped_type_identifier] = STATE(2845), [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2679), + [sym__pattern] = STATE(2878), [sym_tuple_pattern] = STATE(2079), [sym_slice_pattern] = STATE(2079), [sym_tuple_struct_pattern] = STATE(2079), @@ -92829,16 +92838,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_captured_pattern] = STATE(2079), [sym_reference_pattern] = STATE(2079), [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym__literal_pattern] = STATE(2006), + [sym_negative_literal] = STATE(2009), + [sym_string_literal] = STATE(2009), + [sym_raw_string_literal] = STATE(2009), + [sym_boolean_literal] = STATE(2009), [sym_line_comment] = STATE(784), [sym_block_comment] = STATE(784), [sym_identifier] = ACTIONS(2919), [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_RPAREN] = ACTIONS(3019), [anon_sym_LBRACK] = ACTIONS(2925), [anon_sym_u8] = ACTIONS(2927), [anon_sym_i8] = ACTIONS(2927), @@ -92857,9 +92865,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2927), [anon_sym_str] = ACTIONS(2927), [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), + [anon_sym_DASH] = ACTIONS(1274), [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), + [anon_sym_PIPE] = ACTIONS(1280), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1480), [anon_sym_DOT_DOT] = ACTIONS(1482), @@ -92867,31 +92875,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(2935), [anon_sym_default] = ACTIONS(2937), [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), + [anon_sym_ref] = ACTIONS(1312), + [sym_mutable_specifier] = ACTIONS(3015), + [sym_integer_literal] = ACTIONS(1318), + [aux_sym_string_literal_token1] = ACTIONS(1320), + [sym_char_literal] = ACTIONS(1318), + [anon_sym_true] = ACTIONS(1322), + [anon_sym_false] = ACTIONS(1322), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), + [sym_self] = ACTIONS(3017), [sym_super] = ACTIONS(2939), [sym_crate] = ACTIONS(2939), [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym__raw_string_literal_start] = ACTIONS(1330), + [sym_float_literal] = ACTIONS(1318), }, [785] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), + [sym_parameter] = STATE(2846), + [sym_bracketed_type] = STATE(3484), + [sym_generic_type] = STATE(3487), + [sym_generic_type_with_turbofish] = STATE(3219), [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), + [sym_scoped_identifier] = STATE(1954), + [sym_scoped_type_identifier] = STATE(2845), [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2679), + [sym__pattern] = STATE(2606), [sym_tuple_pattern] = STATE(2079), [sym_slice_pattern] = STATE(2079), [sym_tuple_struct_pattern] = STATE(2079), @@ -92903,17 +92912,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_captured_pattern] = STATE(2079), [sym_reference_pattern] = STATE(2079), [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym__literal_pattern] = STATE(2006), + [sym_negative_literal] = STATE(2009), + [sym_string_literal] = STATE(2009), + [sym_raw_string_literal] = STATE(2009), + [sym_boolean_literal] = STATE(2009), [sym_line_comment] = STATE(785), [sym_block_comment] = STATE(785), [sym_identifier] = ACTIONS(2919), [anon_sym_LPAREN] = ACTIONS(2921), [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_RBRACK] = ACTIONS(3021), [anon_sym_u8] = ACTIONS(2927), [anon_sym_i8] = ACTIONS(2927), [anon_sym_u16] = ACTIONS(2927), @@ -92931,9 +92939,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2927), [anon_sym_str] = ACTIONS(2927), [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), + [anon_sym_DASH] = ACTIONS(1274), [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), + [anon_sym_PIPE] = ACTIONS(3019), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1480), [anon_sym_DOT_DOT] = ACTIONS(1482), @@ -92941,31 +92949,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(2935), [anon_sym_default] = ACTIONS(2937), [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), + [anon_sym_ref] = ACTIONS(1312), + [sym_mutable_specifier] = ACTIONS(3015), + [sym_integer_literal] = ACTIONS(1318), + [aux_sym_string_literal_token1] = ACTIONS(1320), + [sym_char_literal] = ACTIONS(1318), + [anon_sym_true] = ACTIONS(1322), + [anon_sym_false] = ACTIONS(1322), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), + [sym_self] = ACTIONS(3017), [sym_super] = ACTIONS(2939), [sym_crate] = ACTIONS(2939), [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym__raw_string_literal_start] = ACTIONS(1330), + [sym_float_literal] = ACTIONS(1318), }, [786] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), + [sym_bracketed_type] = STATE(3484), + [sym_generic_type] = STATE(3487), + [sym_generic_type_with_turbofish] = STATE(3219), [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), + [sym_scoped_identifier] = STATE(1954), + [sym_scoped_type_identifier] = STATE(2845), [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2679), + [sym__pattern] = STATE(2560), [sym_tuple_pattern] = STATE(2079), [sym_slice_pattern] = STATE(2079), [sym_tuple_struct_pattern] = STATE(2079), @@ -92977,17 +92985,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_captured_pattern] = STATE(2079), [sym_reference_pattern] = STATE(2079), [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym__literal_pattern] = STATE(2006), + [sym_negative_literal] = STATE(2009), + [sym_string_literal] = STATE(2009), + [sym_raw_string_literal] = STATE(2009), + [sym_boolean_literal] = STATE(2009), [sym_line_comment] = STATE(786), [sym_block_comment] = STATE(786), [sym_identifier] = ACTIONS(2919), [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_RPAREN] = ACTIONS(3023), [anon_sym_LBRACK] = ACTIONS(2925), + [anon_sym_RBRACK] = ACTIONS(3021), [anon_sym_u8] = ACTIONS(2927), [anon_sym_i8] = ACTIONS(2927), [anon_sym_u16] = ACTIONS(2927), @@ -93005,9 +93013,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2927), [anon_sym_str] = ACTIONS(2927), [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), + [anon_sym_DASH] = ACTIONS(1274), [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), + [anon_sym_PIPE] = ACTIONS(1280), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1480), [anon_sym_DOT_DOT] = ACTIONS(1482), @@ -93015,31 +93023,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(2935), [anon_sym_default] = ACTIONS(2937), [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), + [anon_sym_ref] = ACTIONS(1312), [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), + [sym_integer_literal] = ACTIONS(1318), + [aux_sym_string_literal_token1] = ACTIONS(1320), + [sym_char_literal] = ACTIONS(1318), + [anon_sym_true] = ACTIONS(1322), + [anon_sym_false] = ACTIONS(1322), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(2939), [sym_super] = ACTIONS(2939), [sym_crate] = ACTIONS(2939), [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym__raw_string_literal_start] = ACTIONS(1330), + [sym_float_literal] = ACTIONS(1318), }, [787] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), + [sym_bracketed_type] = STATE(3484), + [sym_generic_type] = STATE(3487), + [sym_generic_type_with_turbofish] = STATE(3219), [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), + [sym_scoped_identifier] = STATE(1954), + [sym_scoped_type_identifier] = STATE(2845), [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2679), + [sym__pattern] = STATE(2560), [sym_tuple_pattern] = STATE(2079), [sym_slice_pattern] = STATE(2079), [sym_tuple_struct_pattern] = STATE(2079), @@ -93051,17 +93059,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_captured_pattern] = STATE(2079), [sym_reference_pattern] = STATE(2079), [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym__literal_pattern] = STATE(2006), + [sym_negative_literal] = STATE(2009), + [sym_string_literal] = STATE(2009), + [sym_raw_string_literal] = STATE(2009), + [sym_boolean_literal] = STATE(2009), [sym_line_comment] = STATE(787), [sym_block_comment] = STATE(787), [sym_identifier] = ACTIONS(2919), [anon_sym_LPAREN] = ACTIONS(2921), [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_RBRACK] = ACTIONS(3025), + [anon_sym_RBRACK] = ACTIONS(3023), [anon_sym_u8] = ACTIONS(2927), [anon_sym_i8] = ACTIONS(2927), [anon_sym_u16] = ACTIONS(2927), @@ -93079,9 +93087,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2927), [anon_sym_str] = ACTIONS(2927), [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), + [anon_sym_DASH] = ACTIONS(1274), [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), + [anon_sym_PIPE] = ACTIONS(1280), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1480), [anon_sym_DOT_DOT] = ACTIONS(1482), @@ -93089,31 +93097,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(2935), [anon_sym_default] = ACTIONS(2937), [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), + [anon_sym_ref] = ACTIONS(1312), [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), + [sym_integer_literal] = ACTIONS(1318), + [aux_sym_string_literal_token1] = ACTIONS(1320), + [sym_char_literal] = ACTIONS(1318), + [anon_sym_true] = ACTIONS(1322), + [anon_sym_false] = ACTIONS(1322), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(2939), [sym_super] = ACTIONS(2939), [sym_crate] = ACTIONS(2939), [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym__raw_string_literal_start] = ACTIONS(1330), + [sym_float_literal] = ACTIONS(1318), }, [788] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), + [sym_bracketed_type] = STATE(3484), + [sym_generic_type] = STATE(3487), + [sym_generic_type_with_turbofish] = STATE(3219), [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), + [sym_scoped_identifier] = STATE(1954), + [sym_scoped_type_identifier] = STATE(2845), [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2679), + [sym__pattern] = STATE(2570), [sym_tuple_pattern] = STATE(2079), [sym_slice_pattern] = STATE(2079), [sym_tuple_struct_pattern] = STATE(2079), @@ -93125,16 +93133,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_captured_pattern] = STATE(2079), [sym_reference_pattern] = STATE(2079), [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym__literal_pattern] = STATE(2006), + [sym_negative_literal] = STATE(2009), + [sym_string_literal] = STATE(2009), + [sym_raw_string_literal] = STATE(2009), + [sym_boolean_literal] = STATE(2009), [sym_line_comment] = STATE(788), [sym_block_comment] = STATE(788), [sym_identifier] = ACTIONS(2919), [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_RPAREN] = ACTIONS(3027), [anon_sym_LBRACK] = ACTIONS(2925), [anon_sym_u8] = ACTIONS(2927), [anon_sym_i8] = ACTIONS(2927), @@ -93153,41 +93160,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2927), [anon_sym_str] = ACTIONS(2927), [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), + [anon_sym_DASH] = ACTIONS(1274), [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), + [anon_sym_PIPE] = ACTIONS(1280), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), + [anon_sym_DOT_DOT] = ACTIONS(1284), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3025), [anon_sym_COLON_COLON] = ACTIONS(2933), [anon_sym_const] = ACTIONS(2935), [anon_sym_default] = ACTIONS(2937), [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), + [anon_sym_ref] = ACTIONS(1312), [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), + [sym_integer_literal] = ACTIONS(1318), + [aux_sym_string_literal_token1] = ACTIONS(1320), + [sym_char_literal] = ACTIONS(1318), + [anon_sym_true] = ACTIONS(1322), + [anon_sym_false] = ACTIONS(1322), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), + [sym_self] = ACTIONS(3027), [sym_super] = ACTIONS(2939), [sym_crate] = ACTIONS(2939), [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym__raw_string_literal_start] = ACTIONS(1330), + [sym_float_literal] = ACTIONS(1318), }, [789] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), + [sym_bracketed_type] = STATE(3484), + [sym_generic_type] = STATE(3487), + [sym_generic_type_with_turbofish] = STATE(3219), [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), + [sym_scoped_identifier] = STATE(1954), + [sym_scoped_type_identifier] = STATE(2845), [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2679), + [sym__pattern] = STATE(2560), [sym_tuple_pattern] = STATE(2079), [sym_slice_pattern] = STATE(2079), [sym_tuple_struct_pattern] = STATE(2079), @@ -93199,11 +93207,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_captured_pattern] = STATE(2079), [sym_reference_pattern] = STATE(2079), [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym__literal_pattern] = STATE(2006), + [sym_negative_literal] = STATE(2009), + [sym_string_literal] = STATE(2009), + [sym_raw_string_literal] = STATE(2009), + [sym_boolean_literal] = STATE(2009), [sym_line_comment] = STATE(789), [sym_block_comment] = STATE(789), [sym_identifier] = ACTIONS(2919), @@ -93227,9 +93235,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2927), [anon_sym_str] = ACTIONS(2927), [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), + [anon_sym_DASH] = ACTIONS(1274), [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), + [anon_sym_PIPE] = ACTIONS(1280), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1480), [anon_sym_DOT_DOT] = ACTIONS(1482), @@ -93237,31 +93245,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(2935), [anon_sym_default] = ACTIONS(2937), [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), + [anon_sym_ref] = ACTIONS(1312), [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), + [sym_integer_literal] = ACTIONS(1318), + [aux_sym_string_literal_token1] = ACTIONS(1320), + [sym_char_literal] = ACTIONS(1318), + [anon_sym_true] = ACTIONS(1322), + [anon_sym_false] = ACTIONS(1322), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(2939), [sym_super] = ACTIONS(2939), [sym_crate] = ACTIONS(2939), [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym__raw_string_literal_start] = ACTIONS(1330), + [sym_float_literal] = ACTIONS(1318), }, [790] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), + [sym_bracketed_type] = STATE(3484), + [sym_generic_type] = STATE(3487), + [sym_generic_type_with_turbofish] = STATE(3219), [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), + [sym_scoped_identifier] = STATE(1954), + [sym_scoped_type_identifier] = STATE(2845), [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2679), + [sym__pattern] = STATE(2560), [sym_tuple_pattern] = STATE(2079), [sym_slice_pattern] = STATE(2079), [sym_tuple_struct_pattern] = STATE(2079), @@ -93273,11 +93281,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_captured_pattern] = STATE(2079), [sym_reference_pattern] = STATE(2079), [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym__literal_pattern] = STATE(2006), + [sym_negative_literal] = STATE(2009), + [sym_string_literal] = STATE(2009), + [sym_raw_string_literal] = STATE(2009), + [sym_boolean_literal] = STATE(2009), [sym_line_comment] = STATE(790), [sym_block_comment] = STATE(790), [sym_identifier] = ACTIONS(2919), @@ -93301,9 +93309,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2927), [anon_sym_str] = ACTIONS(2927), [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), + [anon_sym_DASH] = ACTIONS(1274), [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), + [anon_sym_PIPE] = ACTIONS(1280), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1480), [anon_sym_DOT_DOT] = ACTIONS(1482), @@ -93311,31 +93319,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(2935), [anon_sym_default] = ACTIONS(2937), [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), + [anon_sym_ref] = ACTIONS(1312), [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), + [sym_integer_literal] = ACTIONS(1318), + [aux_sym_string_literal_token1] = ACTIONS(1320), + [sym_char_literal] = ACTIONS(1318), + [anon_sym_true] = ACTIONS(1322), + [anon_sym_false] = ACTIONS(1322), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(2939), [sym_super] = ACTIONS(2939), [sym_crate] = ACTIONS(2939), [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym__raw_string_literal_start] = ACTIONS(1330), + [sym_float_literal] = ACTIONS(1318), }, [791] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), + [sym_bracketed_type] = STATE(3484), + [sym_generic_type] = STATE(3487), + [sym_generic_type_with_turbofish] = STATE(3219), [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), + [sym_scoped_identifier] = STATE(1954), + [sym_scoped_type_identifier] = STATE(2845), [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2679), + [sym__pattern] = STATE(2560), [sym_tuple_pattern] = STATE(2079), [sym_slice_pattern] = STATE(2079), [sym_tuple_struct_pattern] = STATE(2079), @@ -93347,11 +93355,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_captured_pattern] = STATE(2079), [sym_reference_pattern] = STATE(2079), [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym__literal_pattern] = STATE(2006), + [sym_negative_literal] = STATE(2009), + [sym_string_literal] = STATE(2009), + [sym_raw_string_literal] = STATE(2009), + [sym_boolean_literal] = STATE(2009), [sym_line_comment] = STATE(791), [sym_block_comment] = STATE(791), [sym_identifier] = ACTIONS(2919), @@ -93375,9 +93383,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2927), [anon_sym_str] = ACTIONS(2927), [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), + [anon_sym_DASH] = ACTIONS(1274), [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), + [anon_sym_PIPE] = ACTIONS(1280), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1480), [anon_sym_DOT_DOT] = ACTIONS(1482), @@ -93385,31 +93393,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(2935), [anon_sym_default] = ACTIONS(2937), [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), + [anon_sym_ref] = ACTIONS(1312), [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), + [sym_integer_literal] = ACTIONS(1318), + [aux_sym_string_literal_token1] = ACTIONS(1320), + [sym_char_literal] = ACTIONS(1318), + [anon_sym_true] = ACTIONS(1322), + [anon_sym_false] = ACTIONS(1322), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(2939), [sym_super] = ACTIONS(2939), [sym_crate] = ACTIONS(2939), [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym__raw_string_literal_start] = ACTIONS(1330), + [sym_float_literal] = ACTIONS(1318), }, [792] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), + [sym_bracketed_type] = STATE(3484), + [sym_generic_type] = STATE(3487), + [sym_generic_type_with_turbofish] = STATE(3219), [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), + [sym_scoped_identifier] = STATE(1954), + [sym_scoped_type_identifier] = STATE(2845), [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2679), + [sym__pattern] = STATE(2560), [sym_tuple_pattern] = STATE(2079), [sym_slice_pattern] = STATE(2079), [sym_tuple_struct_pattern] = STATE(2079), @@ -93421,11 +93429,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_captured_pattern] = STATE(2079), [sym_reference_pattern] = STATE(2079), [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym__literal_pattern] = STATE(2006), + [sym_negative_literal] = STATE(2009), + [sym_string_literal] = STATE(2009), + [sym_raw_string_literal] = STATE(2009), + [sym_boolean_literal] = STATE(2009), [sym_line_comment] = STATE(792), [sym_block_comment] = STATE(792), [sym_identifier] = ACTIONS(2919), @@ -93449,9 +93457,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2927), [anon_sym_str] = ACTIONS(2927), [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), + [anon_sym_DASH] = ACTIONS(1274), [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), + [anon_sym_PIPE] = ACTIONS(1280), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1480), [anon_sym_DOT_DOT] = ACTIONS(1482), @@ -93459,31 +93467,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(2935), [anon_sym_default] = ACTIONS(2937), [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), + [anon_sym_ref] = ACTIONS(1312), [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), + [sym_integer_literal] = ACTIONS(1318), + [aux_sym_string_literal_token1] = ACTIONS(1320), + [sym_char_literal] = ACTIONS(1318), + [anon_sym_true] = ACTIONS(1322), + [anon_sym_false] = ACTIONS(1322), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(2939), [sym_super] = ACTIONS(2939), [sym_crate] = ACTIONS(2939), [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym__raw_string_literal_start] = ACTIONS(1330), + [sym_float_literal] = ACTIONS(1318), }, [793] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), + [sym_parameter] = STATE(2846), + [sym_bracketed_type] = STATE(3484), + [sym_generic_type] = STATE(3487), + [sym_generic_type_with_turbofish] = STATE(3219), [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), + [sym_scoped_identifier] = STATE(1954), + [sym_scoped_type_identifier] = STATE(2845), [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2679), + [sym__pattern] = STATE(2408), [sym_tuple_pattern] = STATE(2079), [sym_slice_pattern] = STATE(2079), [sym_tuple_struct_pattern] = STATE(2079), @@ -93495,16 +93504,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_captured_pattern] = STATE(2079), [sym_reference_pattern] = STATE(2079), [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym__literal_pattern] = STATE(2006), + [sym_negative_literal] = STATE(2009), + [sym_string_literal] = STATE(2009), + [sym_raw_string_literal] = STATE(2009), + [sym_boolean_literal] = STATE(2009), [sym_line_comment] = STATE(793), [sym_block_comment] = STATE(793), [sym_identifier] = ACTIONS(2919), [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_RPAREN] = ACTIONS(3037), [anon_sym_LBRACK] = ACTIONS(2925), [anon_sym_u8] = ACTIONS(2927), [anon_sym_i8] = ACTIONS(2927), @@ -93523,9 +93531,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2927), [anon_sym_str] = ACTIONS(2927), [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), + [anon_sym_DASH] = ACTIONS(1274), [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), + [anon_sym_PIPE] = ACTIONS(3019), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1480), [anon_sym_DOT_DOT] = ACTIONS(1482), @@ -93533,31 +93541,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(2935), [anon_sym_default] = ACTIONS(2937), [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), + [anon_sym_ref] = ACTIONS(1312), + [sym_mutable_specifier] = ACTIONS(3015), + [sym_integer_literal] = ACTIONS(1318), + [aux_sym_string_literal_token1] = ACTIONS(1320), + [sym_char_literal] = ACTIONS(1318), + [anon_sym_true] = ACTIONS(1322), + [anon_sym_false] = ACTIONS(1322), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), + [sym_self] = ACTIONS(3017), [sym_super] = ACTIONS(2939), [sym_crate] = ACTIONS(2939), [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym__raw_string_literal_start] = ACTIONS(1330), + [sym_float_literal] = ACTIONS(1318), }, [794] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), + [sym_bracketed_type] = STATE(3484), + [sym_generic_type] = STATE(3487), + [sym_generic_type_with_turbofish] = STATE(3219), [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), + [sym_scoped_identifier] = STATE(1954), + [sym_scoped_type_identifier] = STATE(2845), [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2679), + [sym__pattern] = STATE(2560), [sym_tuple_pattern] = STATE(2079), [sym_slice_pattern] = STATE(2079), [sym_tuple_struct_pattern] = STATE(2079), @@ -93569,309 +93577,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_captured_pattern] = STATE(2079), [sym_reference_pattern] = STATE(2079), [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym__literal_pattern] = STATE(2006), + [sym_negative_literal] = STATE(2009), + [sym_string_literal] = STATE(2009), + [sym_raw_string_literal] = STATE(2009), + [sym_boolean_literal] = STATE(2009), [sym_line_comment] = STATE(794), [sym_block_comment] = STATE(794), [sym_identifier] = ACTIONS(2919), [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_RPAREN] = ACTIONS(3039), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), - }, - [795] = { - [sym_parameter] = STATE(3027), - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2429), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), - [sym_line_comment] = STATE(795), - [sym_block_comment] = STATE(795), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(3017), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(3007), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3009), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), - }, - [796] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(3301), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), - [sym_line_comment] = STATE(796), - [sym_block_comment] = STATE(796), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), - }, - [797] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2679), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), - [sym_line_comment] = STATE(797), - [sym_block_comment] = STATE(797), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), - }, - [798] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(3188), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), - [sym_line_comment] = STATE(798), - [sym_block_comment] = STATE(798), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), + [anon_sym_RPAREN] = ACTIONS(3037), [anon_sym_LBRACK] = ACTIONS(2925), [anon_sym_u8] = ACTIONS(2927), [anon_sym_i8] = ACTIONS(2927), @@ -93890,9 +93605,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2927), [anon_sym_str] = ACTIONS(2927), [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), + [anon_sym_DASH] = ACTIONS(1274), [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), + [anon_sym_PIPE] = ACTIONS(1280), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1480), [anon_sym_DOT_DOT] = ACTIONS(1482), @@ -93900,31 +93615,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(2935), [anon_sym_default] = ACTIONS(2937), [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), + [anon_sym_ref] = ACTIONS(1312), [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), + [sym_integer_literal] = ACTIONS(1318), + [aux_sym_string_literal_token1] = ACTIONS(1320), + [sym_char_literal] = ACTIONS(1318), + [anon_sym_true] = ACTIONS(1322), + [anon_sym_false] = ACTIONS(1322), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(2939), [sym_super] = ACTIONS(2939), [sym_crate] = ACTIONS(2939), [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym__raw_string_literal_start] = ACTIONS(1330), + [sym_float_literal] = ACTIONS(1318), }, - [799] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), + [795] = { + [sym_bracketed_type] = STATE(3484), + [sym_generic_type] = STATE(3487), + [sym_generic_type_with_turbofish] = STATE(3219), [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), + [sym_scoped_identifier] = STATE(1954), + [sym_scoped_type_identifier] = STATE(2845), [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(3212), + [sym__pattern] = STATE(2560), [sym_tuple_pattern] = STATE(2079), [sym_slice_pattern] = STATE(2079), [sym_tuple_struct_pattern] = STATE(2079), @@ -93936,15 +93651,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_captured_pattern] = STATE(2079), [sym_reference_pattern] = STATE(2079), [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), - [sym_line_comment] = STATE(799), - [sym_block_comment] = STATE(799), + [sym__literal_pattern] = STATE(2006), + [sym_negative_literal] = STATE(2009), + [sym_string_literal] = STATE(2009), + [sym_raw_string_literal] = STATE(2009), + [sym_boolean_literal] = STATE(2009), + [sym_line_comment] = STATE(795), + [sym_block_comment] = STATE(795), [sym_identifier] = ACTIONS(2919), [anon_sym_LPAREN] = ACTIONS(2921), + [anon_sym_RPAREN] = ACTIONS(3039), [anon_sym_LBRACK] = ACTIONS(2925), [anon_sym_u8] = ACTIONS(2927), [anon_sym_i8] = ACTIONS(2927), @@ -93963,9 +93679,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2927), [anon_sym_str] = ACTIONS(2927), [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), + [anon_sym_DASH] = ACTIONS(1274), [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), + [anon_sym_PIPE] = ACTIONS(1280), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1480), [anon_sym_DOT_DOT] = ACTIONS(1482), @@ -93973,31 +93689,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(2935), [anon_sym_default] = ACTIONS(2937), [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), + [anon_sym_ref] = ACTIONS(1312), [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), + [sym_integer_literal] = ACTIONS(1318), + [aux_sym_string_literal_token1] = ACTIONS(1320), + [sym_char_literal] = ACTIONS(1318), + [anon_sym_true] = ACTIONS(1322), + [anon_sym_false] = ACTIONS(1322), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(2939), [sym_super] = ACTIONS(2939), [sym_crate] = ACTIONS(2939), [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym__raw_string_literal_start] = ACTIONS(1330), + [sym_float_literal] = ACTIONS(1318), }, - [800] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), + [796] = { + [sym_bracketed_type] = STATE(3484), + [sym_generic_type] = STATE(3487), + [sym_generic_type_with_turbofish] = STATE(3219), [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), + [sym_scoped_identifier] = STATE(1954), + [sym_scoped_type_identifier] = STATE(2845), [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2485), + [sym__pattern] = STATE(2905), [sym_tuple_pattern] = STATE(2079), [sym_slice_pattern] = STATE(2079), [sym_tuple_struct_pattern] = STATE(2079), @@ -94009,13 +93725,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_captured_pattern] = STATE(2079), [sym_reference_pattern] = STATE(2079), [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), - [sym_line_comment] = STATE(800), - [sym_block_comment] = STATE(800), + [sym__literal_pattern] = STATE(2006), + [sym_negative_literal] = STATE(2009), + [sym_string_literal] = STATE(2009), + [sym_raw_string_literal] = STATE(2009), + [sym_boolean_literal] = STATE(2009), + [sym_line_comment] = STATE(796), + [sym_block_comment] = STATE(796), [sym_identifier] = ACTIONS(2919), [anon_sym_LPAREN] = ACTIONS(2921), [anon_sym_LBRACK] = ACTIONS(2925), @@ -94036,9 +93752,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2927), [anon_sym_str] = ACTIONS(2927), [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), + [anon_sym_DASH] = ACTIONS(1274), [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), + [anon_sym_PIPE] = ACTIONS(1280), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1480), [anon_sym_DOT_DOT] = ACTIONS(1482), @@ -94046,31 +93762,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(2935), [anon_sym_default] = ACTIONS(2937), [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), + [anon_sym_ref] = ACTIONS(1312), [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), + [sym_integer_literal] = ACTIONS(1318), + [aux_sym_string_literal_token1] = ACTIONS(1320), + [sym_char_literal] = ACTIONS(1318), + [anon_sym_true] = ACTIONS(1322), + [anon_sym_false] = ACTIONS(1322), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(2939), [sym_super] = ACTIONS(2939), [sym_crate] = ACTIONS(2939), [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym__raw_string_literal_start] = ACTIONS(1330), + [sym_float_literal] = ACTIONS(1318), }, - [801] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), + [797] = { + [sym_bracketed_type] = STATE(3484), + [sym_generic_type] = STATE(3487), + [sym_generic_type_with_turbofish] = STATE(3219), [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), + [sym_scoped_identifier] = STATE(1954), + [sym_scoped_type_identifier] = STATE(2845), [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2103), + [sym__pattern] = STATE(2397), [sym_tuple_pattern] = STATE(2079), [sym_slice_pattern] = STATE(2079), [sym_tuple_struct_pattern] = STATE(2079), @@ -94082,13 +93798,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_captured_pattern] = STATE(2079), [sym_reference_pattern] = STATE(2079), [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), - [sym_line_comment] = STATE(801), - [sym_block_comment] = STATE(801), + [sym__literal_pattern] = STATE(2006), + [sym_negative_literal] = STATE(2009), + [sym_string_literal] = STATE(2009), + [sym_raw_string_literal] = STATE(2009), + [sym_boolean_literal] = STATE(2009), + [sym_line_comment] = STATE(797), + [sym_block_comment] = STATE(797), [sym_identifier] = ACTIONS(2919), [anon_sym_LPAREN] = ACTIONS(2921), [anon_sym_LBRACK] = ACTIONS(2925), @@ -94109,9 +93825,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2927), [anon_sym_str] = ACTIONS(2927), [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), + [anon_sym_DASH] = ACTIONS(1274), [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), + [anon_sym_PIPE] = ACTIONS(1280), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1480), [anon_sym_DOT_DOT] = ACTIONS(1482), @@ -94119,104 +93835,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(2935), [anon_sym_default] = ACTIONS(2937), [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), + [anon_sym_ref] = ACTIONS(1312), [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), + [sym_integer_literal] = ACTIONS(1318), + [aux_sym_string_literal_token1] = ACTIONS(1320), + [sym_char_literal] = ACTIONS(1318), + [anon_sym_true] = ACTIONS(1322), + [anon_sym_false] = ACTIONS(1322), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(2939), [sym_super] = ACTIONS(2939), [sym_crate] = ACTIONS(2939), [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), - }, - [802] = { - [sym_bracketed_type] = STATE(3523), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3262), - [sym_macro_invocation] = STATE(2877), - [sym_scoped_identifier] = STATE(2130), - [sym_scoped_type_identifier] = STATE(2908), - [sym_const_block] = STATE(2877), - [sym__pattern] = STATE(2978), - [sym_tuple_pattern] = STATE(2877), - [sym_slice_pattern] = STATE(2877), - [sym_tuple_struct_pattern] = STATE(2877), - [sym_struct_pattern] = STATE(2877), - [sym_remaining_field_pattern] = STATE(2877), - [sym_mut_pattern] = STATE(2877), - [sym_range_pattern] = STATE(2877), - [sym_ref_pattern] = STATE(2877), - [sym_captured_pattern] = STATE(2877), - [sym_reference_pattern] = STATE(2877), - [sym_or_pattern] = STATE(2877), - [sym__literal_pattern] = STATE(2387), - [sym_negative_literal] = STATE(2299), - [sym_string_literal] = STATE(2299), - [sym_raw_string_literal] = STATE(2299), - [sym_boolean_literal] = STATE(2299), - [sym_line_comment] = STATE(802), - [sym_block_comment] = STATE(802), - [sym_identifier] = ACTIONS(1604), - [anon_sym_LPAREN] = ACTIONS(1606), - [anon_sym_LBRACK] = ACTIONS(1608), - [anon_sym_u8] = ACTIONS(1612), - [anon_sym_i8] = ACTIONS(1612), - [anon_sym_u16] = ACTIONS(1612), - [anon_sym_i16] = ACTIONS(1612), - [anon_sym_u32] = ACTIONS(1612), - [anon_sym_i32] = ACTIONS(1612), - [anon_sym_u64] = ACTIONS(1612), - [anon_sym_i64] = ACTIONS(1612), - [anon_sym_u128] = ACTIONS(1612), - [anon_sym_i128] = ACTIONS(1612), - [anon_sym_isize] = ACTIONS(1612), - [anon_sym_usize] = ACTIONS(1612), - [anon_sym_f32] = ACTIONS(1612), - [anon_sym_f64] = ACTIONS(1612), - [anon_sym_bool] = ACTIONS(1612), - [anon_sym_str] = ACTIONS(1612), - [anon_sym_char] = ACTIONS(1612), - [anon_sym_DASH] = ACTIONS(1614), - [anon_sym_AMP] = ACTIONS(1616), - [anon_sym_PIPE] = ACTIONS(1618), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1620), - [anon_sym_DOT_DOT] = ACTIONS(1622), - [anon_sym_COLON_COLON] = ACTIONS(1624), - [anon_sym_const] = ACTIONS(1628), - [anon_sym_default] = ACTIONS(1630), - [anon_sym_union] = ACTIONS(1630), - [anon_sym_ref] = ACTIONS(1632), - [sym_mutable_specifier] = ACTIONS(1634), - [sym_integer_literal] = ACTIONS(1636), - [aux_sym_string_literal_token1] = ACTIONS(1638), - [sym_char_literal] = ACTIONS(1636), - [anon_sym_true] = ACTIONS(1640), - [anon_sym_false] = ACTIONS(1640), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1642), - [sym_super] = ACTIONS(1642), - [sym_crate] = ACTIONS(1642), - [sym_metavariable] = ACTIONS(1644), - [sym__raw_string_literal_start] = ACTIONS(1646), - [sym_float_literal] = ACTIONS(1636), + [sym__raw_string_literal_start] = ACTIONS(1330), + [sym_float_literal] = ACTIONS(1318), }, - [803] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), + [798] = { + [sym_bracketed_type] = STATE(3484), + [sym_generic_type] = STATE(3487), + [sym_generic_type_with_turbofish] = STATE(3219), [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), + [sym_scoped_identifier] = STATE(1954), + [sym_scoped_type_identifier] = STATE(2845), [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(3014), + [sym__pattern] = STATE(2086), [sym_tuple_pattern] = STATE(2079), [sym_slice_pattern] = STATE(2079), [sym_tuple_struct_pattern] = STATE(2079), @@ -94228,13 +93871,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_captured_pattern] = STATE(2079), [sym_reference_pattern] = STATE(2079), [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), - [sym_line_comment] = STATE(803), - [sym_block_comment] = STATE(803), + [sym__literal_pattern] = STATE(2006), + [sym_negative_literal] = STATE(2009), + [sym_string_literal] = STATE(2009), + [sym_raw_string_literal] = STATE(2009), + [sym_boolean_literal] = STATE(2009), + [sym_line_comment] = STATE(798), + [sym_block_comment] = STATE(798), [sym_identifier] = ACTIONS(2919), [anon_sym_LPAREN] = ACTIONS(2921), [anon_sym_LBRACK] = ACTIONS(2925), @@ -94255,9 +93898,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2927), [anon_sym_str] = ACTIONS(2927), [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), + [anon_sym_DASH] = ACTIONS(1274), [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), + [anon_sym_PIPE] = ACTIONS(1280), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1480), [anon_sym_DOT_DOT] = ACTIONS(1482), @@ -94265,31 +93908,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(2935), [anon_sym_default] = ACTIONS(2937), [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), + [anon_sym_ref] = ACTIONS(1312), [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), + [sym_integer_literal] = ACTIONS(1318), + [aux_sym_string_literal_token1] = ACTIONS(1320), + [sym_char_literal] = ACTIONS(1318), + [anon_sym_true] = ACTIONS(1322), + [anon_sym_false] = ACTIONS(1322), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(2939), [sym_super] = ACTIONS(2939), [sym_crate] = ACTIONS(2939), [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym__raw_string_literal_start] = ACTIONS(1330), + [sym_float_literal] = ACTIONS(1318), }, - [804] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), + [799] = { + [sym_bracketed_type] = STATE(3484), + [sym_generic_type] = STATE(3487), + [sym_generic_type_with_turbofish] = STATE(3219), [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), + [sym_scoped_identifier] = STATE(1954), + [sym_scoped_type_identifier] = STATE(2845), [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(3267), + [sym__pattern] = STATE(3049), [sym_tuple_pattern] = STATE(2079), [sym_slice_pattern] = STATE(2079), [sym_tuple_struct_pattern] = STATE(2079), @@ -94301,13 +93944,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_captured_pattern] = STATE(2079), [sym_reference_pattern] = STATE(2079), [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), - [sym_line_comment] = STATE(804), - [sym_block_comment] = STATE(804), + [sym__literal_pattern] = STATE(2006), + [sym_negative_literal] = STATE(2009), + [sym_string_literal] = STATE(2009), + [sym_raw_string_literal] = STATE(2009), + [sym_boolean_literal] = STATE(2009), + [sym_line_comment] = STATE(799), + [sym_block_comment] = STATE(799), [sym_identifier] = ACTIONS(2919), [anon_sym_LPAREN] = ACTIONS(2921), [anon_sym_LBRACK] = ACTIONS(2925), @@ -94328,9 +93971,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2927), [anon_sym_str] = ACTIONS(2927), [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), + [anon_sym_DASH] = ACTIONS(1274), [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), + [anon_sym_PIPE] = ACTIONS(1280), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1480), [anon_sym_DOT_DOT] = ACTIONS(1482), @@ -94338,104 +93981,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(2935), [anon_sym_default] = ACTIONS(2937), [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), + [anon_sym_ref] = ACTIONS(1312), [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), + [sym_integer_literal] = ACTIONS(1318), + [aux_sym_string_literal_token1] = ACTIONS(1320), + [sym_char_literal] = ACTIONS(1318), + [anon_sym_true] = ACTIONS(1322), + [anon_sym_false] = ACTIONS(1322), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(2939), [sym_super] = ACTIONS(2939), [sym_crate] = ACTIONS(2939), [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), - }, - [805] = { - [sym_bracketed_type] = STATE(3523), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3262), - [sym_macro_invocation] = STATE(2877), - [sym_scoped_identifier] = STATE(2130), - [sym_scoped_type_identifier] = STATE(2908), - [sym_const_block] = STATE(2877), - [sym__pattern] = STATE(2998), - [sym_tuple_pattern] = STATE(2877), - [sym_slice_pattern] = STATE(2877), - [sym_tuple_struct_pattern] = STATE(2877), - [sym_struct_pattern] = STATE(2877), - [sym_remaining_field_pattern] = STATE(2877), - [sym_mut_pattern] = STATE(2877), - [sym_range_pattern] = STATE(2877), - [sym_ref_pattern] = STATE(2877), - [sym_captured_pattern] = STATE(2877), - [sym_reference_pattern] = STATE(2877), - [sym_or_pattern] = STATE(2877), - [sym__literal_pattern] = STATE(2387), - [sym_negative_literal] = STATE(2299), - [sym_string_literal] = STATE(2299), - [sym_raw_string_literal] = STATE(2299), - [sym_boolean_literal] = STATE(2299), - [sym_line_comment] = STATE(805), - [sym_block_comment] = STATE(805), - [sym_identifier] = ACTIONS(1604), - [anon_sym_LPAREN] = ACTIONS(1606), - [anon_sym_LBRACK] = ACTIONS(1608), - [anon_sym_u8] = ACTIONS(1612), - [anon_sym_i8] = ACTIONS(1612), - [anon_sym_u16] = ACTIONS(1612), - [anon_sym_i16] = ACTIONS(1612), - [anon_sym_u32] = ACTIONS(1612), - [anon_sym_i32] = ACTIONS(1612), - [anon_sym_u64] = ACTIONS(1612), - [anon_sym_i64] = ACTIONS(1612), - [anon_sym_u128] = ACTIONS(1612), - [anon_sym_i128] = ACTIONS(1612), - [anon_sym_isize] = ACTIONS(1612), - [anon_sym_usize] = ACTIONS(1612), - [anon_sym_f32] = ACTIONS(1612), - [anon_sym_f64] = ACTIONS(1612), - [anon_sym_bool] = ACTIONS(1612), - [anon_sym_str] = ACTIONS(1612), - [anon_sym_char] = ACTIONS(1612), - [anon_sym_DASH] = ACTIONS(1614), - [anon_sym_AMP] = ACTIONS(1616), - [anon_sym_PIPE] = ACTIONS(1618), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1620), - [anon_sym_DOT_DOT] = ACTIONS(1622), - [anon_sym_COLON_COLON] = ACTIONS(1624), - [anon_sym_const] = ACTIONS(1628), - [anon_sym_default] = ACTIONS(1630), - [anon_sym_union] = ACTIONS(1630), - [anon_sym_ref] = ACTIONS(1632), - [sym_mutable_specifier] = ACTIONS(1634), - [sym_integer_literal] = ACTIONS(1636), - [aux_sym_string_literal_token1] = ACTIONS(1638), - [sym_char_literal] = ACTIONS(1636), - [anon_sym_true] = ACTIONS(1640), - [anon_sym_false] = ACTIONS(1640), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1642), - [sym_super] = ACTIONS(1642), - [sym_crate] = ACTIONS(1642), - [sym_metavariable] = ACTIONS(1644), - [sym__raw_string_literal_start] = ACTIONS(1646), - [sym_float_literal] = ACTIONS(1636), + [sym__raw_string_literal_start] = ACTIONS(1330), + [sym_float_literal] = ACTIONS(1318), }, - [806] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), + [800] = { + [sym_bracketed_type] = STATE(3484), + [sym_generic_type] = STATE(3487), + [sym_generic_type_with_turbofish] = STATE(3219), [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), + [sym_scoped_identifier] = STATE(1954), + [sym_scoped_type_identifier] = STATE(2845), [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2965), + [sym__pattern] = STATE(3087), [sym_tuple_pattern] = STATE(2079), [sym_slice_pattern] = STATE(2079), [sym_tuple_struct_pattern] = STATE(2079), @@ -94447,13 +94017,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_captured_pattern] = STATE(2079), [sym_reference_pattern] = STATE(2079), [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), - [sym_line_comment] = STATE(806), - [sym_block_comment] = STATE(806), + [sym__literal_pattern] = STATE(2006), + [sym_negative_literal] = STATE(2009), + [sym_string_literal] = STATE(2009), + [sym_raw_string_literal] = STATE(2009), + [sym_boolean_literal] = STATE(2009), + [sym_line_comment] = STATE(800), + [sym_block_comment] = STATE(800), [sym_identifier] = ACTIONS(2919), [anon_sym_LPAREN] = ACTIONS(2921), [anon_sym_LBRACK] = ACTIONS(2925), @@ -94474,9 +94044,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2927), [anon_sym_str] = ACTIONS(2927), [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), + [anon_sym_DASH] = ACTIONS(1274), [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), + [anon_sym_PIPE] = ACTIONS(1280), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1480), [anon_sym_DOT_DOT] = ACTIONS(1482), @@ -94484,31 +94054,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(2935), [anon_sym_default] = ACTIONS(2937), [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), + [anon_sym_ref] = ACTIONS(1312), [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), + [sym_integer_literal] = ACTIONS(1318), + [aux_sym_string_literal_token1] = ACTIONS(1320), + [sym_char_literal] = ACTIONS(1318), + [anon_sym_true] = ACTIONS(1322), + [anon_sym_false] = ACTIONS(1322), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(2939), [sym_super] = ACTIONS(2939), [sym_crate] = ACTIONS(2939), [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym__raw_string_literal_start] = ACTIONS(1330), + [sym_float_literal] = ACTIONS(1318), }, - [807] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), + [801] = { + [sym_bracketed_type] = STATE(3484), + [sym_generic_type] = STATE(3487), + [sym_generic_type_with_turbofish] = STATE(3219), [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), + [sym_scoped_identifier] = STATE(1954), + [sym_scoped_type_identifier] = STATE(2845), [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2434), + [sym__pattern] = STATE(3050), [sym_tuple_pattern] = STATE(2079), [sym_slice_pattern] = STATE(2079), [sym_tuple_struct_pattern] = STATE(2079), @@ -94520,13 +94090,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_captured_pattern] = STATE(2079), [sym_reference_pattern] = STATE(2079), [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), - [sym_line_comment] = STATE(807), - [sym_block_comment] = STATE(807), + [sym__literal_pattern] = STATE(2006), + [sym_negative_literal] = STATE(2009), + [sym_string_literal] = STATE(2009), + [sym_raw_string_literal] = STATE(2009), + [sym_boolean_literal] = STATE(2009), + [sym_line_comment] = STATE(801), + [sym_block_comment] = STATE(801), [sym_identifier] = ACTIONS(2919), [anon_sym_LPAREN] = ACTIONS(2921), [anon_sym_LBRACK] = ACTIONS(2925), @@ -94547,9 +94117,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2927), [anon_sym_str] = ACTIONS(2927), [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), + [anon_sym_DASH] = ACTIONS(1274), [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), + [anon_sym_PIPE] = ACTIONS(1280), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1480), [anon_sym_DOT_DOT] = ACTIONS(1482), @@ -94557,31 +94127,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(2935), [anon_sym_default] = ACTIONS(2937), [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(3041), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), + [anon_sym_ref] = ACTIONS(1312), + [sym_mutable_specifier] = ACTIONS(1488), + [sym_integer_literal] = ACTIONS(1318), + [aux_sym_string_literal_token1] = ACTIONS(1320), + [sym_char_literal] = ACTIONS(1318), + [anon_sym_true] = ACTIONS(1322), + [anon_sym_false] = ACTIONS(1322), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(2939), [sym_super] = ACTIONS(2939), [sym_crate] = ACTIONS(2939), [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym__raw_string_literal_start] = ACTIONS(1330), + [sym_float_literal] = ACTIONS(1318), }, - [808] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), + [802] = { + [sym_bracketed_type] = STATE(3484), + [sym_generic_type] = STATE(3487), + [sym_generic_type_with_turbofish] = STATE(3219), [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), + [sym_scoped_identifier] = STATE(1954), + [sym_scoped_type_identifier] = STATE(2845), [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2807), + [sym__pattern] = STATE(2089), [sym_tuple_pattern] = STATE(2079), [sym_slice_pattern] = STATE(2079), [sym_tuple_struct_pattern] = STATE(2079), @@ -94593,13 +94163,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_captured_pattern] = STATE(2079), [sym_reference_pattern] = STATE(2079), [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), - [sym_line_comment] = STATE(808), - [sym_block_comment] = STATE(808), + [sym__literal_pattern] = STATE(2006), + [sym_negative_literal] = STATE(2009), + [sym_string_literal] = STATE(2009), + [sym_raw_string_literal] = STATE(2009), + [sym_boolean_literal] = STATE(2009), + [sym_line_comment] = STATE(802), + [sym_block_comment] = STATE(802), [sym_identifier] = ACTIONS(2919), [anon_sym_LPAREN] = ACTIONS(2921), [anon_sym_LBRACK] = ACTIONS(2925), @@ -94620,9 +94190,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2927), [anon_sym_str] = ACTIONS(2927), [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), + [anon_sym_DASH] = ACTIONS(1274), [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), + [anon_sym_PIPE] = ACTIONS(1280), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1480), [anon_sym_DOT_DOT] = ACTIONS(1482), @@ -94630,49 +94200,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(2935), [anon_sym_default] = ACTIONS(2937), [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), + [anon_sym_ref] = ACTIONS(1312), [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), + [sym_integer_literal] = ACTIONS(1318), + [aux_sym_string_literal_token1] = ACTIONS(1320), + [sym_char_literal] = ACTIONS(1318), + [anon_sym_true] = ACTIONS(1322), + [anon_sym_false] = ACTIONS(1322), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(2939), [sym_super] = ACTIONS(2939), [sym_crate] = ACTIONS(2939), [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym__raw_string_literal_start] = ACTIONS(1330), + [sym_float_literal] = ACTIONS(1318), }, - [809] = { - [sym_bracketed_type] = STATE(3523), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3262), - [sym_macro_invocation] = STATE(2877), - [sym_scoped_identifier] = STATE(2130), - [sym_scoped_type_identifier] = STATE(2908), - [sym_const_block] = STATE(2877), - [sym__pattern] = STATE(2761), - [sym_tuple_pattern] = STATE(2877), - [sym_slice_pattern] = STATE(2877), - [sym_tuple_struct_pattern] = STATE(2877), - [sym_struct_pattern] = STATE(2877), - [sym_remaining_field_pattern] = STATE(2877), - [sym_mut_pattern] = STATE(2877), - [sym_range_pattern] = STATE(2877), - [sym_ref_pattern] = STATE(2877), - [sym_captured_pattern] = STATE(2877), - [sym_reference_pattern] = STATE(2877), - [sym_or_pattern] = STATE(2877), - [sym__literal_pattern] = STATE(2387), - [sym_negative_literal] = STATE(2299), - [sym_string_literal] = STATE(2299), - [sym_raw_string_literal] = STATE(2299), - [sym_boolean_literal] = STATE(2299), - [sym_line_comment] = STATE(809), - [sym_block_comment] = STATE(809), + [803] = { + [sym_bracketed_type] = STATE(3531), + [sym_generic_type] = STATE(3487), + [sym_generic_type_with_turbofish] = STATE(3136), + [sym_macro_invocation] = STATE(2939), + [sym_scoped_identifier] = STATE(2152), + [sym_scoped_type_identifier] = STATE(2744), + [sym_const_block] = STATE(2939), + [sym__pattern] = STATE(2954), + [sym_tuple_pattern] = STATE(2939), + [sym_slice_pattern] = STATE(2939), + [sym_tuple_struct_pattern] = STATE(2939), + [sym_struct_pattern] = STATE(2939), + [sym_remaining_field_pattern] = STATE(2939), + [sym_mut_pattern] = STATE(2939), + [sym_range_pattern] = STATE(2939), + [sym_ref_pattern] = STATE(2939), + [sym_captured_pattern] = STATE(2939), + [sym_reference_pattern] = STATE(2939), + [sym_or_pattern] = STATE(2939), + [sym__literal_pattern] = STATE(2366), + [sym_negative_literal] = STATE(2355), + [sym_string_literal] = STATE(2355), + [sym_raw_string_literal] = STATE(2355), + [sym_boolean_literal] = STATE(2355), + [sym_line_comment] = STATE(803), + [sym_block_comment] = STATE(803), [sym_identifier] = ACTIONS(1604), [anon_sym_LPAREN] = ACTIONS(1606), [anon_sym_LBRACK] = ACTIONS(1608), @@ -94719,15 +94289,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1646), [sym_float_literal] = ACTIONS(1636), }, - [810] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), + [804] = { + [sym_bracketed_type] = STATE(3484), + [sym_generic_type] = STATE(3487), + [sym_generic_type_with_turbofish] = STATE(3219), [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), + [sym_scoped_identifier] = STATE(1954), + [sym_scoped_type_identifier] = STATE(2845), [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2112), + [sym__pattern] = STATE(3270), [sym_tuple_pattern] = STATE(2079), [sym_slice_pattern] = STATE(2079), [sym_tuple_struct_pattern] = STATE(2079), @@ -94739,13 +94309,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_captured_pattern] = STATE(2079), [sym_reference_pattern] = STATE(2079), [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), - [sym_line_comment] = STATE(810), - [sym_block_comment] = STATE(810), + [sym__literal_pattern] = STATE(2006), + [sym_negative_literal] = STATE(2009), + [sym_string_literal] = STATE(2009), + [sym_raw_string_literal] = STATE(2009), + [sym_boolean_literal] = STATE(2009), + [sym_line_comment] = STATE(804), + [sym_block_comment] = STATE(804), [sym_identifier] = ACTIONS(2919), [anon_sym_LPAREN] = ACTIONS(2921), [anon_sym_LBRACK] = ACTIONS(2925), @@ -94766,9 +94336,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2927), [anon_sym_str] = ACTIONS(2927), [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), + [anon_sym_DASH] = ACTIONS(1274), [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), + [anon_sym_PIPE] = ACTIONS(1280), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1480), [anon_sym_DOT_DOT] = ACTIONS(1482), @@ -94776,31 +94346,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(2935), [anon_sym_default] = ACTIONS(2937), [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), + [anon_sym_ref] = ACTIONS(1312), [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), + [sym_integer_literal] = ACTIONS(1318), + [aux_sym_string_literal_token1] = ACTIONS(1320), + [sym_char_literal] = ACTIONS(1318), + [anon_sym_true] = ACTIONS(1322), + [anon_sym_false] = ACTIONS(1322), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(2939), [sym_super] = ACTIONS(2939), [sym_crate] = ACTIONS(2939), [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym__raw_string_literal_start] = ACTIONS(1330), + [sym_float_literal] = ACTIONS(1318), }, - [811] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), + [805] = { + [sym_bracketed_type] = STATE(3484), + [sym_generic_type] = STATE(3487), + [sym_generic_type_with_turbofish] = STATE(3219), [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), + [sym_scoped_identifier] = STATE(1954), + [sym_scoped_type_identifier] = STATE(2845), [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2516), + [sym__pattern] = STATE(2097), [sym_tuple_pattern] = STATE(2079), [sym_slice_pattern] = STATE(2079), [sym_tuple_struct_pattern] = STATE(2079), @@ -94812,13 +94382,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_captured_pattern] = STATE(2079), [sym_reference_pattern] = STATE(2079), [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), - [sym_line_comment] = STATE(811), - [sym_block_comment] = STATE(811), + [sym__literal_pattern] = STATE(2006), + [sym_negative_literal] = STATE(2009), + [sym_string_literal] = STATE(2009), + [sym_raw_string_literal] = STATE(2009), + [sym_boolean_literal] = STATE(2009), + [sym_line_comment] = STATE(805), + [sym_block_comment] = STATE(805), [sym_identifier] = ACTIONS(2919), [anon_sym_LPAREN] = ACTIONS(2921), [anon_sym_LBRACK] = ACTIONS(2925), @@ -94839,9 +94409,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2927), [anon_sym_str] = ACTIONS(2927), [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), + [anon_sym_DASH] = ACTIONS(1274), [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), + [anon_sym_PIPE] = ACTIONS(1280), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1480), [anon_sym_DOT_DOT] = ACTIONS(1482), @@ -94849,31 +94419,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(2935), [anon_sym_default] = ACTIONS(2937), [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), + [anon_sym_ref] = ACTIONS(1312), [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), + [sym_integer_literal] = ACTIONS(1318), + [aux_sym_string_literal_token1] = ACTIONS(1320), + [sym_char_literal] = ACTIONS(1318), + [anon_sym_true] = ACTIONS(1322), + [anon_sym_false] = ACTIONS(1322), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3043), + [sym_self] = ACTIONS(2939), [sym_super] = ACTIONS(2939), [sym_crate] = ACTIONS(2939), [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym__raw_string_literal_start] = ACTIONS(1330), + [sym_float_literal] = ACTIONS(1318), }, - [812] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), + [806] = { + [sym_bracketed_type] = STATE(3484), + [sym_generic_type] = STATE(3487), + [sym_generic_type_with_turbofish] = STATE(3219), [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), + [sym_scoped_identifier] = STATE(1954), + [sym_scoped_type_identifier] = STATE(2845), [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2101), + [sym__pattern] = STATE(3287), [sym_tuple_pattern] = STATE(2079), [sym_slice_pattern] = STATE(2079), [sym_tuple_struct_pattern] = STATE(2079), @@ -94885,13 +94455,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_captured_pattern] = STATE(2079), [sym_reference_pattern] = STATE(2079), [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), - [sym_line_comment] = STATE(812), - [sym_block_comment] = STATE(812), + [sym__literal_pattern] = STATE(2006), + [sym_negative_literal] = STATE(2009), + [sym_string_literal] = STATE(2009), + [sym_raw_string_literal] = STATE(2009), + [sym_boolean_literal] = STATE(2009), + [sym_line_comment] = STATE(806), + [sym_block_comment] = STATE(806), + [sym_identifier] = ACTIONS(2919), + [anon_sym_LPAREN] = ACTIONS(2921), + [anon_sym_LBRACK] = ACTIONS(2925), + [anon_sym_u8] = ACTIONS(2927), + [anon_sym_i8] = ACTIONS(2927), + [anon_sym_u16] = ACTIONS(2927), + [anon_sym_i16] = ACTIONS(2927), + [anon_sym_u32] = ACTIONS(2927), + [anon_sym_i32] = ACTIONS(2927), + [anon_sym_u64] = ACTIONS(2927), + [anon_sym_i64] = ACTIONS(2927), + [anon_sym_u128] = ACTIONS(2927), + [anon_sym_i128] = ACTIONS(2927), + [anon_sym_isize] = ACTIONS(2927), + [anon_sym_usize] = ACTIONS(2927), + [anon_sym_f32] = ACTIONS(2927), + [anon_sym_f64] = ACTIONS(2927), + [anon_sym_bool] = ACTIONS(2927), + [anon_sym_str] = ACTIONS(2927), + [anon_sym_char] = ACTIONS(2927), + [anon_sym_DASH] = ACTIONS(1274), + [anon_sym_AMP] = ACTIONS(2929), + [anon_sym_PIPE] = ACTIONS(1280), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1480), + [anon_sym_DOT_DOT] = ACTIONS(1482), + [anon_sym_COLON_COLON] = ACTIONS(2933), + [anon_sym_const] = ACTIONS(2935), + [anon_sym_default] = ACTIONS(2937), + [anon_sym_union] = ACTIONS(2937), + [anon_sym_ref] = ACTIONS(1312), + [sym_mutable_specifier] = ACTIONS(1488), + [sym_integer_literal] = ACTIONS(1318), + [aux_sym_string_literal_token1] = ACTIONS(1320), + [sym_char_literal] = ACTIONS(1318), + [anon_sym_true] = ACTIONS(1322), + [anon_sym_false] = ACTIONS(1322), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2939), + [sym_super] = ACTIONS(2939), + [sym_crate] = ACTIONS(2939), + [sym_metavariable] = ACTIONS(2941), + [sym__raw_string_literal_start] = ACTIONS(1330), + [sym_float_literal] = ACTIONS(1318), + }, + [807] = { + [sym_bracketed_type] = STATE(3484), + [sym_generic_type] = STATE(3487), + [sym_generic_type_with_turbofish] = STATE(3219), + [sym_macro_invocation] = STATE(2079), + [sym_scoped_identifier] = STATE(1954), + [sym_scoped_type_identifier] = STATE(2845), + [sym_const_block] = STATE(2079), + [sym__pattern] = STATE(2749), + [sym_tuple_pattern] = STATE(2079), + [sym_slice_pattern] = STATE(2079), + [sym_tuple_struct_pattern] = STATE(2079), + [sym_struct_pattern] = STATE(2079), + [sym_remaining_field_pattern] = STATE(2079), + [sym_mut_pattern] = STATE(2079), + [sym_range_pattern] = STATE(2079), + [sym_ref_pattern] = STATE(2079), + [sym_captured_pattern] = STATE(2079), + [sym_reference_pattern] = STATE(2079), + [sym_or_pattern] = STATE(2079), + [sym__literal_pattern] = STATE(2006), + [sym_negative_literal] = STATE(2009), + [sym_string_literal] = STATE(2009), + [sym_raw_string_literal] = STATE(2009), + [sym_boolean_literal] = STATE(2009), + [sym_line_comment] = STATE(807), + [sym_block_comment] = STATE(807), [sym_identifier] = ACTIONS(2919), [anon_sym_LPAREN] = ACTIONS(2921), [anon_sym_LBRACK] = ACTIONS(2925), @@ -94912,9 +94555,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2927), [anon_sym_str] = ACTIONS(2927), [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), + [anon_sym_DASH] = ACTIONS(1274), [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), + [anon_sym_PIPE] = ACTIONS(1280), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1480), [anon_sym_DOT_DOT] = ACTIONS(1482), @@ -94922,31 +94565,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(2935), [anon_sym_default] = ACTIONS(2937), [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), + [anon_sym_ref] = ACTIONS(1312), [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), + [sym_integer_literal] = ACTIONS(1318), + [aux_sym_string_literal_token1] = ACTIONS(1320), + [sym_char_literal] = ACTIONS(1318), + [anon_sym_true] = ACTIONS(1322), + [anon_sym_false] = ACTIONS(1322), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(2939), [sym_super] = ACTIONS(2939), [sym_crate] = ACTIONS(2939), [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym__raw_string_literal_start] = ACTIONS(1330), + [sym_float_literal] = ACTIONS(1318), }, - [813] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), + [808] = { + [sym_bracketed_type] = STATE(3484), + [sym_generic_type] = STATE(3487), + [sym_generic_type_with_turbofish] = STATE(3219), [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), + [sym_scoped_identifier] = STATE(1954), + [sym_scoped_type_identifier] = STATE(2845), [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2081), + [sym__pattern] = STATE(2102), [sym_tuple_pattern] = STATE(2079), [sym_slice_pattern] = STATE(2079), [sym_tuple_struct_pattern] = STATE(2079), @@ -94958,13 +94601,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_captured_pattern] = STATE(2079), [sym_reference_pattern] = STATE(2079), [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), - [sym_line_comment] = STATE(813), - [sym_block_comment] = STATE(813), + [sym__literal_pattern] = STATE(2006), + [sym_negative_literal] = STATE(2009), + [sym_string_literal] = STATE(2009), + [sym_raw_string_literal] = STATE(2009), + [sym_boolean_literal] = STATE(2009), + [sym_line_comment] = STATE(808), + [sym_block_comment] = STATE(808), [sym_identifier] = ACTIONS(2919), [anon_sym_LPAREN] = ACTIONS(2921), [anon_sym_LBRACK] = ACTIONS(2925), @@ -94985,9 +94628,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2927), [anon_sym_str] = ACTIONS(2927), [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), + [anon_sym_DASH] = ACTIONS(1274), [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), + [anon_sym_PIPE] = ACTIONS(1280), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1480), [anon_sym_DOT_DOT] = ACTIONS(1482), @@ -94995,31 +94638,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(2935), [anon_sym_default] = ACTIONS(2937), [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), + [anon_sym_ref] = ACTIONS(1312), [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), + [sym_integer_literal] = ACTIONS(1318), + [aux_sym_string_literal_token1] = ACTIONS(1320), + [sym_char_literal] = ACTIONS(1318), + [anon_sym_true] = ACTIONS(1322), + [anon_sym_false] = ACTIONS(1322), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(2939), [sym_super] = ACTIONS(2939), [sym_crate] = ACTIONS(2939), [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym__raw_string_literal_start] = ACTIONS(1330), + [sym_float_literal] = ACTIONS(1318), }, - [814] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), + [809] = { + [sym_bracketed_type] = STATE(3484), + [sym_generic_type] = STATE(3487), + [sym_generic_type_with_turbofish] = STATE(3219), [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), + [sym_scoped_identifier] = STATE(1954), + [sym_scoped_type_identifier] = STATE(2845), [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2093), + [sym__pattern] = STATE(3051), [sym_tuple_pattern] = STATE(2079), [sym_slice_pattern] = STATE(2079), [sym_tuple_struct_pattern] = STATE(2079), @@ -95031,13 +94674,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_captured_pattern] = STATE(2079), [sym_reference_pattern] = STATE(2079), [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), - [sym_line_comment] = STATE(814), - [sym_block_comment] = STATE(814), + [sym__literal_pattern] = STATE(2006), + [sym_negative_literal] = STATE(2009), + [sym_string_literal] = STATE(2009), + [sym_raw_string_literal] = STATE(2009), + [sym_boolean_literal] = STATE(2009), + [sym_line_comment] = STATE(809), + [sym_block_comment] = STATE(809), [sym_identifier] = ACTIONS(2919), [anon_sym_LPAREN] = ACTIONS(2921), [anon_sym_LBRACK] = ACTIONS(2925), @@ -95058,9 +94701,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2927), [anon_sym_str] = ACTIONS(2927), [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), + [anon_sym_DASH] = ACTIONS(1274), [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), + [anon_sym_PIPE] = ACTIONS(1280), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1480), [anon_sym_DOT_DOT] = ACTIONS(1482), @@ -95068,31 +94711,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(2935), [anon_sym_default] = ACTIONS(2937), [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(3045), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), + [anon_sym_ref] = ACTIONS(1312), + [sym_mutable_specifier] = ACTIONS(1488), + [sym_integer_literal] = ACTIONS(1318), + [aux_sym_string_literal_token1] = ACTIONS(1320), + [sym_char_literal] = ACTIONS(1318), + [anon_sym_true] = ACTIONS(1322), + [anon_sym_false] = ACTIONS(1322), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(2939), [sym_super] = ACTIONS(2939), [sym_crate] = ACTIONS(2939), [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym__raw_string_literal_start] = ACTIONS(1330), + [sym_float_literal] = ACTIONS(1318), }, - [815] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), + [810] = { + [sym_bracketed_type] = STATE(3531), + [sym_generic_type] = STATE(3487), + [sym_generic_type_with_turbofish] = STATE(3136), + [sym_macro_invocation] = STATE(2939), + [sym_scoped_identifier] = STATE(2152), + [sym_scoped_type_identifier] = STATE(2744), + [sym_const_block] = STATE(2939), + [sym__pattern] = STATE(2952), + [sym_tuple_pattern] = STATE(2939), + [sym_slice_pattern] = STATE(2939), + [sym_tuple_struct_pattern] = STATE(2939), + [sym_struct_pattern] = STATE(2939), + [sym_remaining_field_pattern] = STATE(2939), + [sym_mut_pattern] = STATE(2939), + [sym_range_pattern] = STATE(2939), + [sym_ref_pattern] = STATE(2939), + [sym_captured_pattern] = STATE(2939), + [sym_reference_pattern] = STATE(2939), + [sym_or_pattern] = STATE(2939), + [sym__literal_pattern] = STATE(2366), + [sym_negative_literal] = STATE(2355), + [sym_string_literal] = STATE(2355), + [sym_raw_string_literal] = STATE(2355), + [sym_boolean_literal] = STATE(2355), + [sym_line_comment] = STATE(810), + [sym_block_comment] = STATE(810), + [sym_identifier] = ACTIONS(1604), + [anon_sym_LPAREN] = ACTIONS(1606), + [anon_sym_LBRACK] = ACTIONS(1608), + [anon_sym_u8] = ACTIONS(1612), + [anon_sym_i8] = ACTIONS(1612), + [anon_sym_u16] = ACTIONS(1612), + [anon_sym_i16] = ACTIONS(1612), + [anon_sym_u32] = ACTIONS(1612), + [anon_sym_i32] = ACTIONS(1612), + [anon_sym_u64] = ACTIONS(1612), + [anon_sym_i64] = ACTIONS(1612), + [anon_sym_u128] = ACTIONS(1612), + [anon_sym_i128] = ACTIONS(1612), + [anon_sym_isize] = ACTIONS(1612), + [anon_sym_usize] = ACTIONS(1612), + [anon_sym_f32] = ACTIONS(1612), + [anon_sym_f64] = ACTIONS(1612), + [anon_sym_bool] = ACTIONS(1612), + [anon_sym_str] = ACTIONS(1612), + [anon_sym_char] = ACTIONS(1612), + [anon_sym_DASH] = ACTIONS(1614), + [anon_sym_AMP] = ACTIONS(1616), + [anon_sym_PIPE] = ACTIONS(1618), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1620), + [anon_sym_DOT_DOT] = ACTIONS(1622), + [anon_sym_COLON_COLON] = ACTIONS(1624), + [anon_sym_const] = ACTIONS(1628), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_union] = ACTIONS(1630), + [anon_sym_ref] = ACTIONS(1632), + [sym_mutable_specifier] = ACTIONS(1634), + [sym_integer_literal] = ACTIONS(1636), + [aux_sym_string_literal_token1] = ACTIONS(1638), + [sym_char_literal] = ACTIONS(1636), + [anon_sym_true] = ACTIONS(1640), + [anon_sym_false] = ACTIONS(1640), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + [sym__raw_string_literal_start] = ACTIONS(1646), + [sym_float_literal] = ACTIONS(1636), + }, + [811] = { + [sym_bracketed_type] = STATE(3484), + [sym_generic_type] = STATE(3487), + [sym_generic_type_with_turbofish] = STATE(3219), [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), + [sym_scoped_identifier] = STATE(1954), + [sym_scoped_type_identifier] = STATE(2845), [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2122), + [sym__pattern] = STATE(2433), [sym_tuple_pattern] = STATE(2079), [sym_slice_pattern] = STATE(2079), [sym_tuple_struct_pattern] = STATE(2079), @@ -95104,13 +94820,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_captured_pattern] = STATE(2079), [sym_reference_pattern] = STATE(2079), [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), - [sym_line_comment] = STATE(815), - [sym_block_comment] = STATE(815), + [sym__literal_pattern] = STATE(2006), + [sym_negative_literal] = STATE(2009), + [sym_string_literal] = STATE(2009), + [sym_raw_string_literal] = STATE(2009), + [sym_boolean_literal] = STATE(2009), + [sym_line_comment] = STATE(811), + [sym_block_comment] = STATE(811), [sym_identifier] = ACTIONS(2919), [anon_sym_LPAREN] = ACTIONS(2921), [anon_sym_LBRACK] = ACTIONS(2925), @@ -95131,9 +94847,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2927), [anon_sym_str] = ACTIONS(2927), [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), + [anon_sym_DASH] = ACTIONS(1274), [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), + [anon_sym_PIPE] = ACTIONS(1280), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1480), [anon_sym_DOT_DOT] = ACTIONS(1482), @@ -95141,31 +94857,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(2935), [anon_sym_default] = ACTIONS(2937), [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), + [anon_sym_ref] = ACTIONS(1312), [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), + [sym_integer_literal] = ACTIONS(1318), + [aux_sym_string_literal_token1] = ACTIONS(1320), + [sym_char_literal] = ACTIONS(1318), + [anon_sym_true] = ACTIONS(1322), + [anon_sym_false] = ACTIONS(1322), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(2939), [sym_super] = ACTIONS(2939), [sym_crate] = ACTIONS(2939), [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym__raw_string_literal_start] = ACTIONS(1330), + [sym_float_literal] = ACTIONS(1318), }, - [816] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), + [812] = { + [sym_bracketed_type] = STATE(3531), + [sym_generic_type] = STATE(3487), + [sym_generic_type_with_turbofish] = STATE(3136), + [sym_macro_invocation] = STATE(2939), + [sym_scoped_identifier] = STATE(2152), + [sym_scoped_type_identifier] = STATE(2744), + [sym_const_block] = STATE(2939), + [sym__pattern] = STATE(2950), + [sym_tuple_pattern] = STATE(2939), + [sym_slice_pattern] = STATE(2939), + [sym_tuple_struct_pattern] = STATE(2939), + [sym_struct_pattern] = STATE(2939), + [sym_remaining_field_pattern] = STATE(2939), + [sym_mut_pattern] = STATE(2939), + [sym_range_pattern] = STATE(2939), + [sym_ref_pattern] = STATE(2939), + [sym_captured_pattern] = STATE(2939), + [sym_reference_pattern] = STATE(2939), + [sym_or_pattern] = STATE(2939), + [sym__literal_pattern] = STATE(2366), + [sym_negative_literal] = STATE(2355), + [sym_string_literal] = STATE(2355), + [sym_raw_string_literal] = STATE(2355), + [sym_boolean_literal] = STATE(2355), + [sym_line_comment] = STATE(812), + [sym_block_comment] = STATE(812), + [sym_identifier] = ACTIONS(1604), + [anon_sym_LPAREN] = ACTIONS(1606), + [anon_sym_LBRACK] = ACTIONS(1608), + [anon_sym_u8] = ACTIONS(1612), + [anon_sym_i8] = ACTIONS(1612), + [anon_sym_u16] = ACTIONS(1612), + [anon_sym_i16] = ACTIONS(1612), + [anon_sym_u32] = ACTIONS(1612), + [anon_sym_i32] = ACTIONS(1612), + [anon_sym_u64] = ACTIONS(1612), + [anon_sym_i64] = ACTIONS(1612), + [anon_sym_u128] = ACTIONS(1612), + [anon_sym_i128] = ACTIONS(1612), + [anon_sym_isize] = ACTIONS(1612), + [anon_sym_usize] = ACTIONS(1612), + [anon_sym_f32] = ACTIONS(1612), + [anon_sym_f64] = ACTIONS(1612), + [anon_sym_bool] = ACTIONS(1612), + [anon_sym_str] = ACTIONS(1612), + [anon_sym_char] = ACTIONS(1612), + [anon_sym_DASH] = ACTIONS(1614), + [anon_sym_AMP] = ACTIONS(1616), + [anon_sym_PIPE] = ACTIONS(1618), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1620), + [anon_sym_DOT_DOT] = ACTIONS(1622), + [anon_sym_COLON_COLON] = ACTIONS(1624), + [anon_sym_const] = ACTIONS(1628), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_union] = ACTIONS(1630), + [anon_sym_ref] = ACTIONS(1632), + [sym_mutable_specifier] = ACTIONS(1634), + [sym_integer_literal] = ACTIONS(1636), + [aux_sym_string_literal_token1] = ACTIONS(1638), + [sym_char_literal] = ACTIONS(1636), + [anon_sym_true] = ACTIONS(1640), + [anon_sym_false] = ACTIONS(1640), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + [sym__raw_string_literal_start] = ACTIONS(1646), + [sym_float_literal] = ACTIONS(1636), + }, + [813] = { + [sym_bracketed_type] = STATE(3484), + [sym_generic_type] = STATE(3487), + [sym_generic_type_with_turbofish] = STATE(3219), [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), + [sym_scoped_identifier] = STATE(1954), + [sym_scoped_type_identifier] = STATE(2845), [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2086), + [sym__pattern] = STATE(3105), [sym_tuple_pattern] = STATE(2079), [sym_slice_pattern] = STATE(2079), [sym_tuple_struct_pattern] = STATE(2079), @@ -95177,13 +94966,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_captured_pattern] = STATE(2079), [sym_reference_pattern] = STATE(2079), [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), - [sym_line_comment] = STATE(816), - [sym_block_comment] = STATE(816), + [sym__literal_pattern] = STATE(2006), + [sym_negative_literal] = STATE(2009), + [sym_string_literal] = STATE(2009), + [sym_raw_string_literal] = STATE(2009), + [sym_boolean_literal] = STATE(2009), + [sym_line_comment] = STATE(813), + [sym_block_comment] = STATE(813), [sym_identifier] = ACTIONS(2919), [anon_sym_LPAREN] = ACTIONS(2921), [anon_sym_LBRACK] = ACTIONS(2925), @@ -95204,9 +94993,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2927), [anon_sym_str] = ACTIONS(2927), [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), + [anon_sym_DASH] = ACTIONS(1274), [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), + [anon_sym_PIPE] = ACTIONS(1280), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1480), [anon_sym_DOT_DOT] = ACTIONS(1482), @@ -95214,31 +95003,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(2935), [anon_sym_default] = ACTIONS(2937), [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), + [anon_sym_ref] = ACTIONS(1312), [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), + [sym_integer_literal] = ACTIONS(1318), + [aux_sym_string_literal_token1] = ACTIONS(1320), + [sym_char_literal] = ACTIONS(1318), + [anon_sym_true] = ACTIONS(1322), + [anon_sym_false] = ACTIONS(1322), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(2939), [sym_super] = ACTIONS(2939), [sym_crate] = ACTIONS(2939), [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym__raw_string_literal_start] = ACTIONS(1330), + [sym_float_literal] = ACTIONS(1318), }, - [817] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), + [814] = { + [sym_bracketed_type] = STATE(3484), + [sym_generic_type] = STATE(3487), + [sym_generic_type_with_turbofish] = STATE(3219), [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), + [sym_scoped_identifier] = STATE(1954), + [sym_scoped_type_identifier] = STATE(2845), [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2466), + [sym__pattern] = STATE(2459), [sym_tuple_pattern] = STATE(2079), [sym_slice_pattern] = STATE(2079), [sym_tuple_struct_pattern] = STATE(2079), @@ -95250,13 +95039,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_captured_pattern] = STATE(2079), [sym_reference_pattern] = STATE(2079), [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), - [sym_line_comment] = STATE(817), - [sym_block_comment] = STATE(817), + [sym__literal_pattern] = STATE(2006), + [sym_negative_literal] = STATE(2009), + [sym_string_literal] = STATE(2009), + [sym_raw_string_literal] = STATE(2009), + [sym_boolean_literal] = STATE(2009), + [sym_line_comment] = STATE(814), + [sym_block_comment] = STATE(814), [sym_identifier] = ACTIONS(2919), [anon_sym_LPAREN] = ACTIONS(2921), [anon_sym_LBRACK] = ACTIONS(2925), @@ -95277,9 +95066,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2927), [anon_sym_str] = ACTIONS(2927), [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), + [anon_sym_DASH] = ACTIONS(1274), [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), + [anon_sym_PIPE] = ACTIONS(1280), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1480), [anon_sym_DOT_DOT] = ACTIONS(1482), @@ -95287,31 +95076,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(2935), [anon_sym_default] = ACTIONS(2937), [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(3047), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), + [anon_sym_ref] = ACTIONS(1312), + [sym_mutable_specifier] = ACTIONS(3041), + [sym_integer_literal] = ACTIONS(1318), + [aux_sym_string_literal_token1] = ACTIONS(1320), + [sym_char_literal] = ACTIONS(1318), + [anon_sym_true] = ACTIONS(1322), + [anon_sym_false] = ACTIONS(1322), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(2939), [sym_super] = ACTIONS(2939), [sym_crate] = ACTIONS(2939), [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym__raw_string_literal_start] = ACTIONS(1330), + [sym_float_literal] = ACTIONS(1318), }, - [818] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), + [815] = { + [sym_bracketed_type] = STATE(3484), + [sym_generic_type] = STATE(3487), + [sym_generic_type_with_turbofish] = STATE(3219), [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), + [sym_scoped_identifier] = STATE(1954), + [sym_scoped_type_identifier] = STATE(2845), [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(3272), + [sym__pattern] = STATE(3053), [sym_tuple_pattern] = STATE(2079), [sym_slice_pattern] = STATE(2079), [sym_tuple_struct_pattern] = STATE(2079), @@ -95323,13 +95112,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_captured_pattern] = STATE(2079), [sym_reference_pattern] = STATE(2079), [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), - [sym_line_comment] = STATE(818), - [sym_block_comment] = STATE(818), + [sym__literal_pattern] = STATE(2006), + [sym_negative_literal] = STATE(2009), + [sym_string_literal] = STATE(2009), + [sym_raw_string_literal] = STATE(2009), + [sym_boolean_literal] = STATE(2009), + [sym_line_comment] = STATE(815), + [sym_block_comment] = STATE(815), [sym_identifier] = ACTIONS(2919), [anon_sym_LPAREN] = ACTIONS(2921), [anon_sym_LBRACK] = ACTIONS(2925), @@ -95350,9 +95139,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2927), [anon_sym_str] = ACTIONS(2927), [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), + [anon_sym_DASH] = ACTIONS(1274), [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), + [anon_sym_PIPE] = ACTIONS(1280), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1480), [anon_sym_DOT_DOT] = ACTIONS(1482), @@ -95360,31 +95149,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(2935), [anon_sym_default] = ACTIONS(2937), [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), + [anon_sym_ref] = ACTIONS(1312), [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), + [sym_integer_literal] = ACTIONS(1318), + [aux_sym_string_literal_token1] = ACTIONS(1320), + [sym_char_literal] = ACTIONS(1318), + [anon_sym_true] = ACTIONS(1322), + [anon_sym_false] = ACTIONS(1322), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(2939), [sym_super] = ACTIONS(2939), [sym_crate] = ACTIONS(2939), [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym__raw_string_literal_start] = ACTIONS(1330), + [sym_float_literal] = ACTIONS(1318), }, - [819] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), + [816] = { + [sym_bracketed_type] = STATE(3484), + [sym_generic_type] = STATE(3487), + [sym_generic_type_with_turbofish] = STATE(3219), [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), + [sym_scoped_identifier] = STATE(1954), + [sym_scoped_type_identifier] = STATE(2845), [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2393), + [sym__pattern] = STATE(2457), [sym_tuple_pattern] = STATE(2079), [sym_slice_pattern] = STATE(2079), [sym_tuple_struct_pattern] = STATE(2079), @@ -95396,13 +95185,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_captured_pattern] = STATE(2079), [sym_reference_pattern] = STATE(2079), [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), - [sym_line_comment] = STATE(819), - [sym_block_comment] = STATE(819), + [sym__literal_pattern] = STATE(2006), + [sym_negative_literal] = STATE(2009), + [sym_string_literal] = STATE(2009), + [sym_raw_string_literal] = STATE(2009), + [sym_boolean_literal] = STATE(2009), + [sym_line_comment] = STATE(816), + [sym_block_comment] = STATE(816), [sym_identifier] = ACTIONS(2919), [anon_sym_LPAREN] = ACTIONS(2921), [anon_sym_LBRACK] = ACTIONS(2925), @@ -95423,9 +95212,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2927), [anon_sym_str] = ACTIONS(2927), [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), + [anon_sym_DASH] = ACTIONS(1274), [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), + [anon_sym_PIPE] = ACTIONS(1280), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1480), [anon_sym_DOT_DOT] = ACTIONS(1482), @@ -95433,49 +95222,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(2935), [anon_sym_default] = ACTIONS(2937), [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), + [anon_sym_ref] = ACTIONS(1312), + [sym_mutable_specifier] = ACTIONS(3043), + [sym_integer_literal] = ACTIONS(1318), + [aux_sym_string_literal_token1] = ACTIONS(1320), + [sym_char_literal] = ACTIONS(1318), + [anon_sym_true] = ACTIONS(1322), + [anon_sym_false] = ACTIONS(1322), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(2939), [sym_super] = ACTIONS(2939), [sym_crate] = ACTIONS(2939), [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym__raw_string_literal_start] = ACTIONS(1330), + [sym_float_literal] = ACTIONS(1318), }, - [820] = { - [sym_bracketed_type] = STATE(3523), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3262), - [sym_macro_invocation] = STATE(2877), - [sym_scoped_identifier] = STATE(2130), - [sym_scoped_type_identifier] = STATE(2908), - [sym_const_block] = STATE(2877), - [sym__pattern] = STATE(2912), - [sym_tuple_pattern] = STATE(2877), - [sym_slice_pattern] = STATE(2877), - [sym_tuple_struct_pattern] = STATE(2877), - [sym_struct_pattern] = STATE(2877), - [sym_remaining_field_pattern] = STATE(2877), - [sym_mut_pattern] = STATE(2877), - [sym_range_pattern] = STATE(2877), - [sym_ref_pattern] = STATE(2877), - [sym_captured_pattern] = STATE(2877), - [sym_reference_pattern] = STATE(2877), - [sym_or_pattern] = STATE(2877), - [sym__literal_pattern] = STATE(2387), - [sym_negative_literal] = STATE(2299), - [sym_string_literal] = STATE(2299), - [sym_raw_string_literal] = STATE(2299), - [sym_boolean_literal] = STATE(2299), - [sym_line_comment] = STATE(820), - [sym_block_comment] = STATE(820), + [817] = { + [sym_bracketed_type] = STATE(3531), + [sym_generic_type] = STATE(3487), + [sym_generic_type_with_turbofish] = STATE(3136), + [sym_macro_invocation] = STATE(2939), + [sym_scoped_identifier] = STATE(2152), + [sym_scoped_type_identifier] = STATE(2744), + [sym_const_block] = STATE(2939), + [sym__pattern] = STATE(2972), + [sym_tuple_pattern] = STATE(2939), + [sym_slice_pattern] = STATE(2939), + [sym_tuple_struct_pattern] = STATE(2939), + [sym_struct_pattern] = STATE(2939), + [sym_remaining_field_pattern] = STATE(2939), + [sym_mut_pattern] = STATE(2939), + [sym_range_pattern] = STATE(2939), + [sym_ref_pattern] = STATE(2939), + [sym_captured_pattern] = STATE(2939), + [sym_reference_pattern] = STATE(2939), + [sym_or_pattern] = STATE(2939), + [sym__literal_pattern] = STATE(2366), + [sym_negative_literal] = STATE(2355), + [sym_string_literal] = STATE(2355), + [sym_raw_string_literal] = STATE(2355), + [sym_boolean_literal] = STATE(2355), + [sym_line_comment] = STATE(817), + [sym_block_comment] = STATE(817), [sym_identifier] = ACTIONS(1604), [anon_sym_LPAREN] = ACTIONS(1606), [anon_sym_LBRACK] = ACTIONS(1608), @@ -95507,7 +95296,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(1630), [anon_sym_union] = ACTIONS(1630), [anon_sym_ref] = ACTIONS(1632), - [sym_mutable_specifier] = ACTIONS(3049), + [sym_mutable_specifier] = ACTIONS(1634), [sym_integer_literal] = ACTIONS(1636), [aux_sym_string_literal_token1] = ACTIONS(1638), [sym_char_literal] = ACTIONS(1636), @@ -95522,33 +95311,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1646), [sym_float_literal] = ACTIONS(1636), }, - [821] = { - [sym_bracketed_type] = STATE(3523), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3262), - [sym_macro_invocation] = STATE(2877), - [sym_scoped_identifier] = STATE(2130), - [sym_scoped_type_identifier] = STATE(2908), - [sym_const_block] = STATE(2877), - [sym__pattern] = STATE(2949), - [sym_tuple_pattern] = STATE(2877), - [sym_slice_pattern] = STATE(2877), - [sym_tuple_struct_pattern] = STATE(2877), - [sym_struct_pattern] = STATE(2877), - [sym_remaining_field_pattern] = STATE(2877), - [sym_mut_pattern] = STATE(2877), - [sym_range_pattern] = STATE(2877), - [sym_ref_pattern] = STATE(2877), - [sym_captured_pattern] = STATE(2877), - [sym_reference_pattern] = STATE(2877), - [sym_or_pattern] = STATE(2877), - [sym__literal_pattern] = STATE(2387), - [sym_negative_literal] = STATE(2299), - [sym_string_literal] = STATE(2299), - [sym_raw_string_literal] = STATE(2299), - [sym_boolean_literal] = STATE(2299), - [sym_line_comment] = STATE(821), - [sym_block_comment] = STATE(821), + [818] = { + [sym_bracketed_type] = STATE(3531), + [sym_generic_type] = STATE(3487), + [sym_generic_type_with_turbofish] = STATE(3136), + [sym_macro_invocation] = STATE(2939), + [sym_scoped_identifier] = STATE(2152), + [sym_scoped_type_identifier] = STATE(2744), + [sym_const_block] = STATE(2939), + [sym__pattern] = STATE(2961), + [sym_tuple_pattern] = STATE(2939), + [sym_slice_pattern] = STATE(2939), + [sym_tuple_struct_pattern] = STATE(2939), + [sym_struct_pattern] = STATE(2939), + [sym_remaining_field_pattern] = STATE(2939), + [sym_mut_pattern] = STATE(2939), + [sym_range_pattern] = STATE(2939), + [sym_ref_pattern] = STATE(2939), + [sym_captured_pattern] = STATE(2939), + [sym_reference_pattern] = STATE(2939), + [sym_or_pattern] = STATE(2939), + [sym__literal_pattern] = STATE(2366), + [sym_negative_literal] = STATE(2355), + [sym_string_literal] = STATE(2355), + [sym_raw_string_literal] = STATE(2355), + [sym_boolean_literal] = STATE(2355), + [sym_line_comment] = STATE(818), + [sym_block_comment] = STATE(818), [sym_identifier] = ACTIONS(1604), [anon_sym_LPAREN] = ACTIONS(1606), [anon_sym_LBRACK] = ACTIONS(1608), @@ -95595,15 +95384,234 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1646), [sym_float_literal] = ACTIONS(1636), }, + [819] = { + [sym_bracketed_type] = STATE(3531), + [sym_generic_type] = STATE(3487), + [sym_generic_type_with_turbofish] = STATE(3136), + [sym_macro_invocation] = STATE(2939), + [sym_scoped_identifier] = STATE(2152), + [sym_scoped_type_identifier] = STATE(2744), + [sym_const_block] = STATE(2939), + [sym__pattern] = STATE(2949), + [sym_tuple_pattern] = STATE(2939), + [sym_slice_pattern] = STATE(2939), + [sym_tuple_struct_pattern] = STATE(2939), + [sym_struct_pattern] = STATE(2939), + [sym_remaining_field_pattern] = STATE(2939), + [sym_mut_pattern] = STATE(2939), + [sym_range_pattern] = STATE(2939), + [sym_ref_pattern] = STATE(2939), + [sym_captured_pattern] = STATE(2939), + [sym_reference_pattern] = STATE(2939), + [sym_or_pattern] = STATE(2939), + [sym__literal_pattern] = STATE(2366), + [sym_negative_literal] = STATE(2355), + [sym_string_literal] = STATE(2355), + [sym_raw_string_literal] = STATE(2355), + [sym_boolean_literal] = STATE(2355), + [sym_line_comment] = STATE(819), + [sym_block_comment] = STATE(819), + [sym_identifier] = ACTIONS(1604), + [anon_sym_LPAREN] = ACTIONS(1606), + [anon_sym_LBRACK] = ACTIONS(1608), + [anon_sym_u8] = ACTIONS(1612), + [anon_sym_i8] = ACTIONS(1612), + [anon_sym_u16] = ACTIONS(1612), + [anon_sym_i16] = ACTIONS(1612), + [anon_sym_u32] = ACTIONS(1612), + [anon_sym_i32] = ACTIONS(1612), + [anon_sym_u64] = ACTIONS(1612), + [anon_sym_i64] = ACTIONS(1612), + [anon_sym_u128] = ACTIONS(1612), + [anon_sym_i128] = ACTIONS(1612), + [anon_sym_isize] = ACTIONS(1612), + [anon_sym_usize] = ACTIONS(1612), + [anon_sym_f32] = ACTIONS(1612), + [anon_sym_f64] = ACTIONS(1612), + [anon_sym_bool] = ACTIONS(1612), + [anon_sym_str] = ACTIONS(1612), + [anon_sym_char] = ACTIONS(1612), + [anon_sym_DASH] = ACTIONS(1614), + [anon_sym_AMP] = ACTIONS(1616), + [anon_sym_PIPE] = ACTIONS(1618), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1620), + [anon_sym_DOT_DOT] = ACTIONS(1622), + [anon_sym_COLON_COLON] = ACTIONS(1624), + [anon_sym_const] = ACTIONS(1628), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_union] = ACTIONS(1630), + [anon_sym_ref] = ACTIONS(1632), + [sym_mutable_specifier] = ACTIONS(3045), + [sym_integer_literal] = ACTIONS(1636), + [aux_sym_string_literal_token1] = ACTIONS(1638), + [sym_char_literal] = ACTIONS(1636), + [anon_sym_true] = ACTIONS(1640), + [anon_sym_false] = ACTIONS(1640), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + [sym__raw_string_literal_start] = ACTIONS(1646), + [sym_float_literal] = ACTIONS(1636), + }, + [820] = { + [sym_bracketed_type] = STATE(3484), + [sym_generic_type] = STATE(3487), + [sym_generic_type_with_turbofish] = STATE(3219), + [sym_macro_invocation] = STATE(2079), + [sym_scoped_identifier] = STATE(1954), + [sym_scoped_type_identifier] = STATE(2845), + [sym_const_block] = STATE(2079), + [sym__pattern] = STATE(2085), + [sym_tuple_pattern] = STATE(2079), + [sym_slice_pattern] = STATE(2079), + [sym_tuple_struct_pattern] = STATE(2079), + [sym_struct_pattern] = STATE(2079), + [sym_remaining_field_pattern] = STATE(2079), + [sym_mut_pattern] = STATE(2079), + [sym_range_pattern] = STATE(2079), + [sym_ref_pattern] = STATE(2079), + [sym_captured_pattern] = STATE(2079), + [sym_reference_pattern] = STATE(2079), + [sym_or_pattern] = STATE(2079), + [sym__literal_pattern] = STATE(2006), + [sym_negative_literal] = STATE(2009), + [sym_string_literal] = STATE(2009), + [sym_raw_string_literal] = STATE(2009), + [sym_boolean_literal] = STATE(2009), + [sym_line_comment] = STATE(820), + [sym_block_comment] = STATE(820), + [sym_identifier] = ACTIONS(2919), + [anon_sym_LPAREN] = ACTIONS(2921), + [anon_sym_LBRACK] = ACTIONS(2925), + [anon_sym_u8] = ACTIONS(2927), + [anon_sym_i8] = ACTIONS(2927), + [anon_sym_u16] = ACTIONS(2927), + [anon_sym_i16] = ACTIONS(2927), + [anon_sym_u32] = ACTIONS(2927), + [anon_sym_i32] = ACTIONS(2927), + [anon_sym_u64] = ACTIONS(2927), + [anon_sym_i64] = ACTIONS(2927), + [anon_sym_u128] = ACTIONS(2927), + [anon_sym_i128] = ACTIONS(2927), + [anon_sym_isize] = ACTIONS(2927), + [anon_sym_usize] = ACTIONS(2927), + [anon_sym_f32] = ACTIONS(2927), + [anon_sym_f64] = ACTIONS(2927), + [anon_sym_bool] = ACTIONS(2927), + [anon_sym_str] = ACTIONS(2927), + [anon_sym_char] = ACTIONS(2927), + [anon_sym_DASH] = ACTIONS(1274), + [anon_sym_AMP] = ACTIONS(2929), + [anon_sym_PIPE] = ACTIONS(1280), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1480), + [anon_sym_DOT_DOT] = ACTIONS(1482), + [anon_sym_COLON_COLON] = ACTIONS(2933), + [anon_sym_const] = ACTIONS(2935), + [anon_sym_default] = ACTIONS(2937), + [anon_sym_union] = ACTIONS(2937), + [anon_sym_ref] = ACTIONS(1312), + [sym_mutable_specifier] = ACTIONS(3047), + [sym_integer_literal] = ACTIONS(1318), + [aux_sym_string_literal_token1] = ACTIONS(1320), + [sym_char_literal] = ACTIONS(1318), + [anon_sym_true] = ACTIONS(1322), + [anon_sym_false] = ACTIONS(1322), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2939), + [sym_super] = ACTIONS(2939), + [sym_crate] = ACTIONS(2939), + [sym_metavariable] = ACTIONS(2941), + [sym__raw_string_literal_start] = ACTIONS(1330), + [sym_float_literal] = ACTIONS(1318), + }, + [821] = { + [sym_bracketed_type] = STATE(3484), + [sym_generic_type] = STATE(3487), + [sym_generic_type_with_turbofish] = STATE(3219), + [sym_macro_invocation] = STATE(2079), + [sym_scoped_identifier] = STATE(1954), + [sym_scoped_type_identifier] = STATE(2845), + [sym_const_block] = STATE(2079), + [sym__pattern] = STATE(2094), + [sym_tuple_pattern] = STATE(2079), + [sym_slice_pattern] = STATE(2079), + [sym_tuple_struct_pattern] = STATE(2079), + [sym_struct_pattern] = STATE(2079), + [sym_remaining_field_pattern] = STATE(2079), + [sym_mut_pattern] = STATE(2079), + [sym_range_pattern] = STATE(2079), + [sym_ref_pattern] = STATE(2079), + [sym_captured_pattern] = STATE(2079), + [sym_reference_pattern] = STATE(2079), + [sym_or_pattern] = STATE(2079), + [sym__literal_pattern] = STATE(2006), + [sym_negative_literal] = STATE(2009), + [sym_string_literal] = STATE(2009), + [sym_raw_string_literal] = STATE(2009), + [sym_boolean_literal] = STATE(2009), + [sym_line_comment] = STATE(821), + [sym_block_comment] = STATE(821), + [sym_identifier] = ACTIONS(2919), + [anon_sym_LPAREN] = ACTIONS(2921), + [anon_sym_LBRACK] = ACTIONS(2925), + [anon_sym_u8] = ACTIONS(2927), + [anon_sym_i8] = ACTIONS(2927), + [anon_sym_u16] = ACTIONS(2927), + [anon_sym_i16] = ACTIONS(2927), + [anon_sym_u32] = ACTIONS(2927), + [anon_sym_i32] = ACTIONS(2927), + [anon_sym_u64] = ACTIONS(2927), + [anon_sym_i64] = ACTIONS(2927), + [anon_sym_u128] = ACTIONS(2927), + [anon_sym_i128] = ACTIONS(2927), + [anon_sym_isize] = ACTIONS(2927), + [anon_sym_usize] = ACTIONS(2927), + [anon_sym_f32] = ACTIONS(2927), + [anon_sym_f64] = ACTIONS(2927), + [anon_sym_bool] = ACTIONS(2927), + [anon_sym_str] = ACTIONS(2927), + [anon_sym_char] = ACTIONS(2927), + [anon_sym_DASH] = ACTIONS(1274), + [anon_sym_AMP] = ACTIONS(2929), + [anon_sym_PIPE] = ACTIONS(1280), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1480), + [anon_sym_DOT_DOT] = ACTIONS(1482), + [anon_sym_COLON_COLON] = ACTIONS(2933), + [anon_sym_const] = ACTIONS(2935), + [anon_sym_default] = ACTIONS(2937), + [anon_sym_union] = ACTIONS(2937), + [anon_sym_ref] = ACTIONS(1312), + [sym_mutable_specifier] = ACTIONS(1488), + [sym_integer_literal] = ACTIONS(1318), + [aux_sym_string_literal_token1] = ACTIONS(1320), + [sym_char_literal] = ACTIONS(1318), + [anon_sym_true] = ACTIONS(1322), + [anon_sym_false] = ACTIONS(1322), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2939), + [sym_super] = ACTIONS(2939), + [sym_crate] = ACTIONS(2939), + [sym_metavariable] = ACTIONS(2941), + [sym__raw_string_literal_start] = ACTIONS(1330), + [sym_float_literal] = ACTIONS(1318), + }, [822] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), + [sym_bracketed_type] = STATE(3484), + [sym_generic_type] = STATE(3487), + [sym_generic_type_with_turbofish] = STATE(3219), [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), + [sym_scoped_identifier] = STATE(1954), + [sym_scoped_type_identifier] = STATE(2845), [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(3302), + [sym__pattern] = STATE(3161), [sym_tuple_pattern] = STATE(2079), [sym_slice_pattern] = STATE(2079), [sym_tuple_struct_pattern] = STATE(2079), @@ -95615,11 +95623,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_captured_pattern] = STATE(2079), [sym_reference_pattern] = STATE(2079), [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym__literal_pattern] = STATE(2006), + [sym_negative_literal] = STATE(2009), + [sym_string_literal] = STATE(2009), + [sym_raw_string_literal] = STATE(2009), + [sym_boolean_literal] = STATE(2009), [sym_line_comment] = STATE(822), [sym_block_comment] = STATE(822), [sym_identifier] = ACTIONS(2919), @@ -95642,9 +95650,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2927), [anon_sym_str] = ACTIONS(2927), [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), + [anon_sym_DASH] = ACTIONS(1274), [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), + [anon_sym_PIPE] = ACTIONS(1280), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1480), [anon_sym_DOT_DOT] = ACTIONS(1482), @@ -95652,177 +95660,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(2935), [anon_sym_default] = ACTIONS(2937), [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), + [anon_sym_ref] = ACTIONS(1312), [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), + [sym_integer_literal] = ACTIONS(1318), + [aux_sym_string_literal_token1] = ACTIONS(1320), + [sym_char_literal] = ACTIONS(1318), + [anon_sym_true] = ACTIONS(1322), + [anon_sym_false] = ACTIONS(1322), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(2939), [sym_super] = ACTIONS(2939), [sym_crate] = ACTIONS(2939), [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym__raw_string_literal_start] = ACTIONS(1330), + [sym_float_literal] = ACTIONS(1318), }, [823] = { - [sym_bracketed_type] = STATE(3523), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3262), - [sym_macro_invocation] = STATE(2877), - [sym_scoped_identifier] = STATE(2130), - [sym_scoped_type_identifier] = STATE(2908), - [sym_const_block] = STATE(2877), - [sym__pattern] = STATE(2926), - [sym_tuple_pattern] = STATE(2877), - [sym_slice_pattern] = STATE(2877), - [sym_tuple_struct_pattern] = STATE(2877), - [sym_struct_pattern] = STATE(2877), - [sym_remaining_field_pattern] = STATE(2877), - [sym_mut_pattern] = STATE(2877), - [sym_range_pattern] = STATE(2877), - [sym_ref_pattern] = STATE(2877), - [sym_captured_pattern] = STATE(2877), - [sym_reference_pattern] = STATE(2877), - [sym_or_pattern] = STATE(2877), - [sym__literal_pattern] = STATE(2387), - [sym_negative_literal] = STATE(2299), - [sym_string_literal] = STATE(2299), - [sym_raw_string_literal] = STATE(2299), - [sym_boolean_literal] = STATE(2299), + [sym_bracketed_type] = STATE(3484), + [sym_generic_type] = STATE(3487), + [sym_generic_type_with_turbofish] = STATE(3219), + [sym_macro_invocation] = STATE(2079), + [sym_scoped_identifier] = STATE(1954), + [sym_scoped_type_identifier] = STATE(2845), + [sym_const_block] = STATE(2079), + [sym__pattern] = STATE(2560), + [sym_tuple_pattern] = STATE(2079), + [sym_slice_pattern] = STATE(2079), + [sym_tuple_struct_pattern] = STATE(2079), + [sym_struct_pattern] = STATE(2079), + [sym_remaining_field_pattern] = STATE(2079), + [sym_mut_pattern] = STATE(2079), + [sym_range_pattern] = STATE(2079), + [sym_ref_pattern] = STATE(2079), + [sym_captured_pattern] = STATE(2079), + [sym_reference_pattern] = STATE(2079), + [sym_or_pattern] = STATE(2079), + [sym__literal_pattern] = STATE(2006), + [sym_negative_literal] = STATE(2009), + [sym_string_literal] = STATE(2009), + [sym_raw_string_literal] = STATE(2009), + [sym_boolean_literal] = STATE(2009), [sym_line_comment] = STATE(823), [sym_block_comment] = STATE(823), - [sym_identifier] = ACTIONS(1604), - [anon_sym_LPAREN] = ACTIONS(1606), - [anon_sym_LBRACK] = ACTIONS(1608), - [anon_sym_u8] = ACTIONS(1612), - [anon_sym_i8] = ACTIONS(1612), - [anon_sym_u16] = ACTIONS(1612), - [anon_sym_i16] = ACTIONS(1612), - [anon_sym_u32] = ACTIONS(1612), - [anon_sym_i32] = ACTIONS(1612), - [anon_sym_u64] = ACTIONS(1612), - [anon_sym_i64] = ACTIONS(1612), - [anon_sym_u128] = ACTIONS(1612), - [anon_sym_i128] = ACTIONS(1612), - [anon_sym_isize] = ACTIONS(1612), - [anon_sym_usize] = ACTIONS(1612), - [anon_sym_f32] = ACTIONS(1612), - [anon_sym_f64] = ACTIONS(1612), - [anon_sym_bool] = ACTIONS(1612), - [anon_sym_str] = ACTIONS(1612), - [anon_sym_char] = ACTIONS(1612), - [anon_sym_DASH] = ACTIONS(1614), - [anon_sym_AMP] = ACTIONS(1616), - [anon_sym_PIPE] = ACTIONS(1618), + [sym_identifier] = ACTIONS(2919), + [anon_sym_LPAREN] = ACTIONS(2921), + [anon_sym_LBRACK] = ACTIONS(2925), + [anon_sym_u8] = ACTIONS(2927), + [anon_sym_i8] = ACTIONS(2927), + [anon_sym_u16] = ACTIONS(2927), + [anon_sym_i16] = ACTIONS(2927), + [anon_sym_u32] = ACTIONS(2927), + [anon_sym_i32] = ACTIONS(2927), + [anon_sym_u64] = ACTIONS(2927), + [anon_sym_i64] = ACTIONS(2927), + [anon_sym_u128] = ACTIONS(2927), + [anon_sym_i128] = ACTIONS(2927), + [anon_sym_isize] = ACTIONS(2927), + [anon_sym_usize] = ACTIONS(2927), + [anon_sym_f32] = ACTIONS(2927), + [anon_sym_f64] = ACTIONS(2927), + [anon_sym_bool] = ACTIONS(2927), + [anon_sym_str] = ACTIONS(2927), + [anon_sym_char] = ACTIONS(2927), + [anon_sym_DASH] = ACTIONS(1274), + [anon_sym_AMP] = ACTIONS(2929), + [anon_sym_PIPE] = ACTIONS(1280), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1620), - [anon_sym_DOT_DOT] = ACTIONS(1622), - [anon_sym_COLON_COLON] = ACTIONS(1624), - [anon_sym_const] = ACTIONS(1628), - [anon_sym_default] = ACTIONS(1630), - [anon_sym_union] = ACTIONS(1630), - [anon_sym_ref] = ACTIONS(1632), - [sym_mutable_specifier] = ACTIONS(1634), - [sym_integer_literal] = ACTIONS(1636), - [aux_sym_string_literal_token1] = ACTIONS(1638), - [sym_char_literal] = ACTIONS(1636), - [anon_sym_true] = ACTIONS(1640), - [anon_sym_false] = ACTIONS(1640), + [anon_sym__] = ACTIONS(1480), + [anon_sym_DOT_DOT] = ACTIONS(1482), + [anon_sym_COLON_COLON] = ACTIONS(2933), + [anon_sym_const] = ACTIONS(2935), + [anon_sym_default] = ACTIONS(2937), + [anon_sym_union] = ACTIONS(2937), + [anon_sym_ref] = ACTIONS(1312), + [sym_mutable_specifier] = ACTIONS(1488), + [sym_integer_literal] = ACTIONS(1318), + [aux_sym_string_literal_token1] = ACTIONS(1320), + [sym_char_literal] = ACTIONS(1318), + [anon_sym_true] = ACTIONS(1322), + [anon_sym_false] = ACTIONS(1322), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1642), - [sym_super] = ACTIONS(1642), - [sym_crate] = ACTIONS(1642), - [sym_metavariable] = ACTIONS(1644), - [sym__raw_string_literal_start] = ACTIONS(1646), - [sym_float_literal] = ACTIONS(1636), + [sym_self] = ACTIONS(2939), + [sym_super] = ACTIONS(2939), + [sym_crate] = ACTIONS(2939), + [sym_metavariable] = ACTIONS(2941), + [sym__raw_string_literal_start] = ACTIONS(1330), + [sym_float_literal] = ACTIONS(1318), }, [824] = { - [sym_bracketed_type] = STATE(3523), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3262), - [sym_macro_invocation] = STATE(2877), - [sym_scoped_identifier] = STATE(2130), - [sym_scoped_type_identifier] = STATE(2908), - [sym_const_block] = STATE(2877), - [sym__pattern] = STATE(2878), - [sym_tuple_pattern] = STATE(2877), - [sym_slice_pattern] = STATE(2877), - [sym_tuple_struct_pattern] = STATE(2877), - [sym_struct_pattern] = STATE(2877), - [sym_remaining_field_pattern] = STATE(2877), - [sym_mut_pattern] = STATE(2877), - [sym_range_pattern] = STATE(2877), - [sym_ref_pattern] = STATE(2877), - [sym_captured_pattern] = STATE(2877), - [sym_reference_pattern] = STATE(2877), - [sym_or_pattern] = STATE(2877), - [sym__literal_pattern] = STATE(2387), - [sym_negative_literal] = STATE(2299), - [sym_string_literal] = STATE(2299), - [sym_raw_string_literal] = STATE(2299), - [sym_boolean_literal] = STATE(2299), - [sym_line_comment] = STATE(824), - [sym_block_comment] = STATE(824), - [sym_identifier] = ACTIONS(1604), - [anon_sym_LPAREN] = ACTIONS(1606), - [anon_sym_LBRACK] = ACTIONS(1608), - [anon_sym_u8] = ACTIONS(1612), - [anon_sym_i8] = ACTIONS(1612), - [anon_sym_u16] = ACTIONS(1612), - [anon_sym_i16] = ACTIONS(1612), - [anon_sym_u32] = ACTIONS(1612), - [anon_sym_i32] = ACTIONS(1612), - [anon_sym_u64] = ACTIONS(1612), - [anon_sym_i64] = ACTIONS(1612), - [anon_sym_u128] = ACTIONS(1612), - [anon_sym_i128] = ACTIONS(1612), - [anon_sym_isize] = ACTIONS(1612), - [anon_sym_usize] = ACTIONS(1612), - [anon_sym_f32] = ACTIONS(1612), - [anon_sym_f64] = ACTIONS(1612), - [anon_sym_bool] = ACTIONS(1612), - [anon_sym_str] = ACTIONS(1612), - [anon_sym_char] = ACTIONS(1612), - [anon_sym_DASH] = ACTIONS(1614), - [anon_sym_AMP] = ACTIONS(1616), - [anon_sym_PIPE] = ACTIONS(1618), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1620), - [anon_sym_DOT_DOT] = ACTIONS(1622), - [anon_sym_COLON_COLON] = ACTIONS(1624), - [anon_sym_const] = ACTIONS(1628), - [anon_sym_default] = ACTIONS(1630), - [anon_sym_union] = ACTIONS(1630), - [anon_sym_ref] = ACTIONS(1632), - [sym_mutable_specifier] = ACTIONS(1634), - [sym_integer_literal] = ACTIONS(1636), - [aux_sym_string_literal_token1] = ACTIONS(1638), - [sym_char_literal] = ACTIONS(1636), - [anon_sym_true] = ACTIONS(1640), - [anon_sym_false] = ACTIONS(1640), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1642), - [sym_super] = ACTIONS(1642), - [sym_crate] = ACTIONS(1642), - [sym_metavariable] = ACTIONS(1644), - [sym__raw_string_literal_start] = ACTIONS(1646), - [sym_float_literal] = ACTIONS(1636), - }, - [825] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), + [sym_bracketed_type] = STATE(3484), + [sym_generic_type] = STATE(3487), + [sym_generic_type_with_turbofish] = STATE(3219), [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), + [sym_scoped_identifier] = STATE(1954), + [sym_scoped_type_identifier] = STATE(2845), [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(3283), + [sym__pattern] = STATE(2849), [sym_tuple_pattern] = STATE(2079), [sym_slice_pattern] = STATE(2079), [sym_tuple_struct_pattern] = STATE(2079), @@ -95834,13 +95769,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_captured_pattern] = STATE(2079), [sym_reference_pattern] = STATE(2079), [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), - [sym_line_comment] = STATE(825), - [sym_block_comment] = STATE(825), + [sym__literal_pattern] = STATE(2006), + [sym_negative_literal] = STATE(2009), + [sym_string_literal] = STATE(2009), + [sym_raw_string_literal] = STATE(2009), + [sym_boolean_literal] = STATE(2009), + [sym_line_comment] = STATE(824), + [sym_block_comment] = STATE(824), [sym_identifier] = ACTIONS(2919), [anon_sym_LPAREN] = ACTIONS(2921), [anon_sym_LBRACK] = ACTIONS(2925), @@ -95861,9 +95796,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2927), [anon_sym_str] = ACTIONS(2927), [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), + [anon_sym_DASH] = ACTIONS(1274), [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), + [anon_sym_PIPE] = ACTIONS(1280), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1480), [anon_sym_DOT_DOT] = ACTIONS(1482), @@ -95871,31 +95806,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(2935), [anon_sym_default] = ACTIONS(2937), [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), + [anon_sym_ref] = ACTIONS(1312), [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), + [sym_integer_literal] = ACTIONS(1318), + [aux_sym_string_literal_token1] = ACTIONS(1320), + [sym_char_literal] = ACTIONS(1318), + [anon_sym_true] = ACTIONS(1322), + [anon_sym_false] = ACTIONS(1322), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(2939), [sym_super] = ACTIONS(2939), [sym_crate] = ACTIONS(2939), [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym__raw_string_literal_start] = ACTIONS(1330), + [sym_float_literal] = ACTIONS(1318), }, - [826] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), + [825] = { + [sym_bracketed_type] = STATE(3484), + [sym_generic_type] = STATE(3487), + [sym_generic_type_with_turbofish] = STATE(3219), [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), + [sym_scoped_identifier] = STATE(1954), + [sym_scoped_type_identifier] = STATE(2845), [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(3296), + [sym__pattern] = STATE(2087), [sym_tuple_pattern] = STATE(2079), [sym_slice_pattern] = STATE(2079), [sym_tuple_struct_pattern] = STATE(2079), @@ -95907,13 +95842,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_captured_pattern] = STATE(2079), [sym_reference_pattern] = STATE(2079), [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), - [sym_line_comment] = STATE(826), - [sym_block_comment] = STATE(826), + [sym__literal_pattern] = STATE(2006), + [sym_negative_literal] = STATE(2009), + [sym_string_literal] = STATE(2009), + [sym_raw_string_literal] = STATE(2009), + [sym_boolean_literal] = STATE(2009), + [sym_line_comment] = STATE(825), + [sym_block_comment] = STATE(825), [sym_identifier] = ACTIONS(2919), [anon_sym_LPAREN] = ACTIONS(2921), [anon_sym_LBRACK] = ACTIONS(2925), @@ -95934,9 +95869,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2927), [anon_sym_str] = ACTIONS(2927), [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), + [anon_sym_DASH] = ACTIONS(1274), [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), + [anon_sym_PIPE] = ACTIONS(1280), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1480), [anon_sym_DOT_DOT] = ACTIONS(1482), @@ -95944,31 +95879,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(2935), [anon_sym_default] = ACTIONS(2937), [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), + [anon_sym_ref] = ACTIONS(1312), [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), + [sym_integer_literal] = ACTIONS(1318), + [aux_sym_string_literal_token1] = ACTIONS(1320), + [sym_char_literal] = ACTIONS(1318), + [anon_sym_true] = ACTIONS(1322), + [anon_sym_false] = ACTIONS(1322), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(2939), [sym_super] = ACTIONS(2939), [sym_crate] = ACTIONS(2939), [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym__raw_string_literal_start] = ACTIONS(1330), + [sym_float_literal] = ACTIONS(1318), }, - [827] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), + [826] = { + [sym_bracketed_type] = STATE(3484), + [sym_generic_type] = STATE(3487), + [sym_generic_type_with_turbofish] = STATE(3219), [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), + [sym_scoped_identifier] = STATE(1954), + [sym_scoped_type_identifier] = STATE(2845), [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(3299), + [sym__pattern] = STATE(2689), [sym_tuple_pattern] = STATE(2079), [sym_slice_pattern] = STATE(2079), [sym_tuple_struct_pattern] = STATE(2079), @@ -95980,13 +95915,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_captured_pattern] = STATE(2079), [sym_reference_pattern] = STATE(2079), [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), - [sym_line_comment] = STATE(827), - [sym_block_comment] = STATE(827), + [sym__literal_pattern] = STATE(2006), + [sym_negative_literal] = STATE(2009), + [sym_string_literal] = STATE(2009), + [sym_raw_string_literal] = STATE(2009), + [sym_boolean_literal] = STATE(2009), + [sym_line_comment] = STATE(826), + [sym_block_comment] = STATE(826), [sym_identifier] = ACTIONS(2919), [anon_sym_LPAREN] = ACTIONS(2921), [anon_sym_LBRACK] = ACTIONS(2925), @@ -96007,9 +95942,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2927), [anon_sym_str] = ACTIONS(2927), [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), + [anon_sym_DASH] = ACTIONS(1274), [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), + [anon_sym_PIPE] = ACTIONS(1280), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1480), [anon_sym_DOT_DOT] = ACTIONS(1482), @@ -96017,31 +95952,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(2935), [anon_sym_default] = ACTIONS(2937), [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), + [anon_sym_ref] = ACTIONS(1312), [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), + [sym_integer_literal] = ACTIONS(1318), + [aux_sym_string_literal_token1] = ACTIONS(1320), + [sym_char_literal] = ACTIONS(1318), + [anon_sym_true] = ACTIONS(1322), + [anon_sym_false] = ACTIONS(1322), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), + [sym_self] = ACTIONS(3049), [sym_super] = ACTIONS(2939), [sym_crate] = ACTIONS(2939), [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym__raw_string_literal_start] = ACTIONS(1330), + [sym_float_literal] = ACTIONS(1318), + }, + [827] = { + [sym_bracketed_type] = STATE(3531), + [sym_generic_type] = STATE(3487), + [sym_generic_type_with_turbofish] = STATE(3136), + [sym_macro_invocation] = STATE(2939), + [sym_scoped_identifier] = STATE(2152), + [sym_scoped_type_identifier] = STATE(2744), + [sym_const_block] = STATE(2939), + [sym__pattern] = STATE(2964), + [sym_tuple_pattern] = STATE(2939), + [sym_slice_pattern] = STATE(2939), + [sym_tuple_struct_pattern] = STATE(2939), + [sym_struct_pattern] = STATE(2939), + [sym_remaining_field_pattern] = STATE(2939), + [sym_mut_pattern] = STATE(2939), + [sym_range_pattern] = STATE(2939), + [sym_ref_pattern] = STATE(2939), + [sym_captured_pattern] = STATE(2939), + [sym_reference_pattern] = STATE(2939), + [sym_or_pattern] = STATE(2939), + [sym__literal_pattern] = STATE(2366), + [sym_negative_literal] = STATE(2355), + [sym_string_literal] = STATE(2355), + [sym_raw_string_literal] = STATE(2355), + [sym_boolean_literal] = STATE(2355), + [sym_line_comment] = STATE(827), + [sym_block_comment] = STATE(827), + [sym_identifier] = ACTIONS(1604), + [anon_sym_LPAREN] = ACTIONS(1606), + [anon_sym_LBRACK] = ACTIONS(1608), + [anon_sym_u8] = ACTIONS(1612), + [anon_sym_i8] = ACTIONS(1612), + [anon_sym_u16] = ACTIONS(1612), + [anon_sym_i16] = ACTIONS(1612), + [anon_sym_u32] = ACTIONS(1612), + [anon_sym_i32] = ACTIONS(1612), + [anon_sym_u64] = ACTIONS(1612), + [anon_sym_i64] = ACTIONS(1612), + [anon_sym_u128] = ACTIONS(1612), + [anon_sym_i128] = ACTIONS(1612), + [anon_sym_isize] = ACTIONS(1612), + [anon_sym_usize] = ACTIONS(1612), + [anon_sym_f32] = ACTIONS(1612), + [anon_sym_f64] = ACTIONS(1612), + [anon_sym_bool] = ACTIONS(1612), + [anon_sym_str] = ACTIONS(1612), + [anon_sym_char] = ACTIONS(1612), + [anon_sym_DASH] = ACTIONS(1614), + [anon_sym_AMP] = ACTIONS(1616), + [anon_sym_PIPE] = ACTIONS(1618), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1620), + [anon_sym_DOT_DOT] = ACTIONS(1622), + [anon_sym_COLON_COLON] = ACTIONS(1624), + [anon_sym_const] = ACTIONS(1628), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_union] = ACTIONS(1630), + [anon_sym_ref] = ACTIONS(1632), + [sym_mutable_specifier] = ACTIONS(1634), + [sym_integer_literal] = ACTIONS(1636), + [aux_sym_string_literal_token1] = ACTIONS(1638), + [sym_char_literal] = ACTIONS(1636), + [anon_sym_true] = ACTIONS(1640), + [anon_sym_false] = ACTIONS(1640), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + [sym__raw_string_literal_start] = ACTIONS(1646), + [sym_float_literal] = ACTIONS(1636), }, [828] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), + [sym_bracketed_type] = STATE(3484), + [sym_generic_type] = STATE(3487), + [sym_generic_type_with_turbofish] = STATE(3219), [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), + [sym_scoped_identifier] = STATE(1954), + [sym_scoped_type_identifier] = STATE(2845), [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(3300), + [sym__pattern] = STATE(3062), [sym_tuple_pattern] = STATE(2079), [sym_slice_pattern] = STATE(2079), [sym_tuple_struct_pattern] = STATE(2079), @@ -96053,11 +96061,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_captured_pattern] = STATE(2079), [sym_reference_pattern] = STATE(2079), [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym__literal_pattern] = STATE(2006), + [sym_negative_literal] = STATE(2009), + [sym_string_literal] = STATE(2009), + [sym_raw_string_literal] = STATE(2009), + [sym_boolean_literal] = STATE(2009), [sym_line_comment] = STATE(828), [sym_block_comment] = STATE(828), [sym_identifier] = ACTIONS(2919), @@ -96080,9 +96088,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2927), [anon_sym_str] = ACTIONS(2927), [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), + [anon_sym_DASH] = ACTIONS(1274), [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), + [anon_sym_PIPE] = ACTIONS(1280), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1480), [anon_sym_DOT_DOT] = ACTIONS(1482), @@ -96090,54 +96098,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(2935), [anon_sym_default] = ACTIONS(2937), [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), + [anon_sym_ref] = ACTIONS(1312), [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), + [sym_integer_literal] = ACTIONS(1318), + [aux_sym_string_literal_token1] = ACTIONS(1320), + [sym_char_literal] = ACTIONS(1318), + [anon_sym_true] = ACTIONS(1322), + [anon_sym_false] = ACTIONS(1322), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(2939), [sym_super] = ACTIONS(2939), [sym_crate] = ACTIONS(2939), [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym__raw_string_literal_start] = ACTIONS(1330), + [sym_float_literal] = ACTIONS(1318), }, [829] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1976), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3480), + [sym_removed_trait_bound] = STATE(1674), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(1639), + [sym_bracketed_type] = STATE(3537), + [sym_lifetime] = STATE(3572), + [sym_array_type] = STATE(1674), + [sym_for_lifetimes] = STATE(1623), + [sym_function_type] = STATE(1674), + [sym_tuple_type] = STATE(1674), + [sym_unit_type] = STATE(1674), + [sym_generic_type] = STATE(1591), + [sym_generic_type_with_turbofish] = STATE(3529), + [sym_bounded_type] = STATE(1674), + [sym_reference_type] = STATE(1674), + [sym_pointer_type] = STATE(1674), + [sym_never_type] = STATE(1674), + [sym_abstract_type] = STATE(1674), + [sym_dynamic_type] = STATE(1674), + [sym_macro_invocation] = STATE(1674), + [sym_scoped_identifier] = STATE(3130), + [sym_scoped_type_identifier] = STATE(1516), [sym_line_comment] = STATE(829), [sym_block_comment] = STATE(829), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(3051), + [anon_sym_LPAREN] = ACTIONS(3053), + [anon_sym_LBRACK] = ACTIONS(3055), + [anon_sym_PLUS] = ACTIONS(3057), + [anon_sym_STAR] = ACTIONS(3059), + [anon_sym_QMARK] = ACTIONS(3061), + [anon_sym_u8] = ACTIONS(3063), + [anon_sym_i8] = ACTIONS(3063), + [anon_sym_u16] = ACTIONS(3063), + [anon_sym_i16] = ACTIONS(3063), + [anon_sym_u32] = ACTIONS(3063), + [anon_sym_i32] = ACTIONS(3063), + [anon_sym_u64] = ACTIONS(3063), + [anon_sym_i64] = ACTIONS(3063), + [anon_sym_u128] = ACTIONS(3063), + [anon_sym_i128] = ACTIONS(3063), + [anon_sym_isize] = ACTIONS(3063), + [anon_sym_usize] = ACTIONS(3063), + [anon_sym_f32] = ACTIONS(3063), + [anon_sym_f64] = ACTIONS(3063), + [anon_sym_bool] = ACTIONS(3063), + [anon_sym_str] = ACTIONS(3063), + [anon_sym_char] = ACTIONS(3063), + [anon_sym_BANG] = ACTIONS(3065), + [anon_sym_AMP] = ACTIONS(3067), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3069), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), + [anon_sym_default] = ACTIONS(3071), + [anon_sym_fn] = ACTIONS(3073), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(3075), + [anon_sym_union] = ACTIONS(3077), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(3079), + [sym_mutable_specifier] = ACTIONS(3081), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(3083), + [sym_super] = ACTIONS(3083), + [sym_crate] = ACTIONS(3083), + [sym_metavariable] = ACTIONS(3085), + }, + [830] = { + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(1995), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), + [sym_line_comment] = STATE(830), + [sym_block_comment] = STATE(830), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2953), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_PLUS] = ACTIONS(3051), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_PLUS] = ACTIONS(3087), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -96155,61 +96235,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(3053), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), + [sym_mutable_specifier] = ACTIONS(3089), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3055), + [sym_self] = ACTIONS(3091), [sym_super] = ACTIONS(1582), [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [830] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(3061), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), - [sym_line_comment] = STATE(830), - [sym_block_comment] = STATE(830), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), + [831] = { + [sym_function_modifiers] = STATE(3339), + [sym_removed_trait_bound] = STATE(1351), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(1397), + [sym_bracketed_type] = STATE(3522), + [sym_lifetime] = STATE(3444), + [sym_array_type] = STATE(1351), + [sym_for_lifetimes] = STATE(1614), + [sym_function_type] = STATE(1351), + [sym_tuple_type] = STATE(1351), + [sym_unit_type] = STATE(1351), + [sym_generic_type] = STATE(1059), + [sym_generic_type_with_turbofish] = STATE(3512), + [sym_bounded_type] = STATE(1351), + [sym_reference_type] = STATE(1351), + [sym_pointer_type] = STATE(1351), + [sym_never_type] = STATE(1351), + [sym_abstract_type] = STATE(1351), + [sym_dynamic_type] = STATE(1351), + [sym_macro_invocation] = STATE(1351), + [sym_scoped_identifier] = STATE(3269), + [sym_scoped_type_identifier] = STATE(1024), + [sym_line_comment] = STATE(831), + [sym_block_comment] = STATE(831), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(3093), + [anon_sym_LPAREN] = ACTIONS(3095), + [anon_sym_LBRACK] = ACTIONS(3097), + [anon_sym_PLUS] = ACTIONS(3099), + [anon_sym_STAR] = ACTIONS(3101), + [anon_sym_QMARK] = ACTIONS(3103), + [anon_sym_u8] = ACTIONS(3105), + [anon_sym_i8] = ACTIONS(3105), + [anon_sym_u16] = ACTIONS(3105), + [anon_sym_i16] = ACTIONS(3105), + [anon_sym_u32] = ACTIONS(3105), + [anon_sym_i32] = ACTIONS(3105), + [anon_sym_u64] = ACTIONS(3105), + [anon_sym_i64] = ACTIONS(3105), + [anon_sym_u128] = ACTIONS(3105), + [anon_sym_i128] = ACTIONS(3105), + [anon_sym_isize] = ACTIONS(3105), + [anon_sym_usize] = ACTIONS(3105), + [anon_sym_f32] = ACTIONS(3105), + [anon_sym_f64] = ACTIONS(3105), + [anon_sym_bool] = ACTIONS(3105), + [anon_sym_str] = ACTIONS(3105), + [anon_sym_char] = ACTIONS(3105), + [anon_sym_BANG] = ACTIONS(3107), + [anon_sym_AMP] = ACTIONS(3109), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3111), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), + [anon_sym_default] = ACTIONS(3113), + [anon_sym_fn] = ACTIONS(3115), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(3117), + [anon_sym_union] = ACTIONS(3119), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(3121), + [sym_mutable_specifier] = ACTIONS(3123), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(3125), + [sym_super] = ACTIONS(3125), + [sym_crate] = ACTIONS(3125), + [sym_metavariable] = ACTIONS(3127), + }, + [832] = { + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(3035), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), + [sym_line_comment] = STATE(832), + [sym_block_comment] = STATE(832), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2953), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_PLUS] = ACTIONS(3051), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_PLUS] = ACTIONS(3087), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -96227,22 +96379,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(3057), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), + [sym_mutable_specifier] = ACTIONS(3129), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -96250,182 +96402,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [831] = { - [sym_function_modifiers] = STATE(3473), - [sym_removed_trait_bound] = STATE(1701), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1765), - [sym_bracketed_type] = STATE(3529), - [sym_lifetime] = STATE(3368), - [sym_array_type] = STATE(1701), - [sym_for_lifetimes] = STATE(1613), - [sym_function_type] = STATE(1701), - [sym_tuple_type] = STATE(1701), - [sym_unit_type] = STATE(1701), - [sym_generic_type] = STATE(1608), - [sym_generic_type_with_turbofish] = STATE(3521), - [sym_bounded_type] = STATE(1701), - [sym_reference_type] = STATE(1701), - [sym_pointer_type] = STATE(1701), - [sym_never_type] = STATE(1701), - [sym_abstract_type] = STATE(1701), - [sym_dynamic_type] = STATE(1701), - [sym_macro_invocation] = STATE(1701), - [sym_scoped_identifier] = STATE(3264), - [sym_scoped_type_identifier] = STATE(1526), - [sym_line_comment] = STATE(831), - [sym_block_comment] = STATE(831), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3059), - [anon_sym_LPAREN] = ACTIONS(3061), - [anon_sym_LBRACK] = ACTIONS(3063), - [anon_sym_PLUS] = ACTIONS(3065), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_QMARK] = ACTIONS(3069), - [anon_sym_u8] = ACTIONS(3071), - [anon_sym_i8] = ACTIONS(3071), - [anon_sym_u16] = ACTIONS(3071), - [anon_sym_i16] = ACTIONS(3071), - [anon_sym_u32] = ACTIONS(3071), - [anon_sym_i32] = ACTIONS(3071), - [anon_sym_u64] = ACTIONS(3071), - [anon_sym_i64] = ACTIONS(3071), - [anon_sym_u128] = ACTIONS(3071), - [anon_sym_i128] = ACTIONS(3071), - [anon_sym_isize] = ACTIONS(3071), - [anon_sym_usize] = ACTIONS(3071), - [anon_sym_f32] = ACTIONS(3071), - [anon_sym_f64] = ACTIONS(3071), - [anon_sym_bool] = ACTIONS(3071), - [anon_sym_str] = ACTIONS(3071), - [anon_sym_char] = ACTIONS(3071), - [anon_sym_BANG] = ACTIONS(3073), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3077), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(3079), - [anon_sym_fn] = ACTIONS(3081), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(3083), - [anon_sym_union] = ACTIONS(3085), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(3087), - [sym_mutable_specifier] = ACTIONS(3089), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3091), - [sym_super] = ACTIONS(3091), - [sym_crate] = ACTIONS(3091), - [sym_metavariable] = ACTIONS(3093), - }, - [832] = { - [sym_function_modifiers] = STATE(3338), - [sym_removed_trait_bound] = STATE(1451), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1213), - [sym_bracketed_type] = STATE(3514), - [sym_lifetime] = STATE(3511), - [sym_array_type] = STATE(1451), - [sym_for_lifetimes] = STATE(1592), - [sym_function_type] = STATE(1451), - [sym_tuple_type] = STATE(1451), - [sym_unit_type] = STATE(1451), - [sym_generic_type] = STATE(1078), - [sym_generic_type_with_turbofish] = STATE(3504), - [sym_bounded_type] = STATE(1451), - [sym_reference_type] = STATE(1451), - [sym_pointer_type] = STATE(1451), - [sym_never_type] = STATE(1451), - [sym_abstract_type] = STATE(1451), - [sym_dynamic_type] = STATE(1451), - [sym_macro_invocation] = STATE(1451), - [sym_scoped_identifier] = STATE(3202), - [sym_scoped_type_identifier] = STATE(1028), - [sym_line_comment] = STATE(832), - [sym_block_comment] = STATE(832), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3095), - [anon_sym_LPAREN] = ACTIONS(3097), - [anon_sym_LBRACK] = ACTIONS(3099), - [anon_sym_PLUS] = ACTIONS(3101), - [anon_sym_STAR] = ACTIONS(3103), - [anon_sym_QMARK] = ACTIONS(3105), - [anon_sym_u8] = ACTIONS(3107), - [anon_sym_i8] = ACTIONS(3107), - [anon_sym_u16] = ACTIONS(3107), - [anon_sym_i16] = ACTIONS(3107), - [anon_sym_u32] = ACTIONS(3107), - [anon_sym_i32] = ACTIONS(3107), - [anon_sym_u64] = ACTIONS(3107), - [anon_sym_i64] = ACTIONS(3107), - [anon_sym_u128] = ACTIONS(3107), - [anon_sym_i128] = ACTIONS(3107), - [anon_sym_isize] = ACTIONS(3107), - [anon_sym_usize] = ACTIONS(3107), - [anon_sym_f32] = ACTIONS(3107), - [anon_sym_f64] = ACTIONS(3107), - [anon_sym_bool] = ACTIONS(3107), - [anon_sym_str] = ACTIONS(3107), - [anon_sym_char] = ACTIONS(3107), - [anon_sym_BANG] = ACTIONS(3109), - [anon_sym_AMP] = ACTIONS(3111), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3113), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(3115), - [anon_sym_fn] = ACTIONS(3117), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(3119), - [anon_sym_union] = ACTIONS(3121), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(3123), - [sym_mutable_specifier] = ACTIONS(3125), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3127), - [sym_super] = ACTIONS(3127), - [sym_crate] = ACTIONS(3127), - [sym_metavariable] = ACTIONS(3129), - }, [833] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1976), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(1995), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), [sym_line_comment] = STATE(833), [sym_block_comment] = STATE(833), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2953), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_PLUS] = ACTIONS(3051), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_PLUS] = ACTIONS(3087), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -96443,21 +96451,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [sym_mutable_specifier] = ACTIONS(3131), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), @@ -96467,37 +96475,889 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1584), }, [834] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2799), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(3047), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(832), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), [sym_line_comment] = STATE(834), [sym_block_comment] = STATE(834), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2953), + [anon_sym_LPAREN] = ACTIONS(1560), + [anon_sym_LBRACK] = ACTIONS(1562), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), + [anon_sym_u8] = ACTIONS(1566), + [anon_sym_i8] = ACTIONS(1566), + [anon_sym_u16] = ACTIONS(1566), + [anon_sym_i16] = ACTIONS(1566), + [anon_sym_u32] = ACTIONS(1566), + [anon_sym_i32] = ACTIONS(1566), + [anon_sym_u64] = ACTIONS(1566), + [anon_sym_i64] = ACTIONS(1566), + [anon_sym_u128] = ACTIONS(1566), + [anon_sym_i128] = ACTIONS(1566), + [anon_sym_isize] = ACTIONS(1566), + [anon_sym_usize] = ACTIONS(1566), + [anon_sym_f32] = ACTIONS(1566), + [anon_sym_f64] = ACTIONS(1566), + [anon_sym_bool] = ACTIONS(1566), + [anon_sym_str] = ACTIONS(1566), + [anon_sym_char] = ACTIONS(1566), + [anon_sym_BANG] = ACTIONS(1276), + [anon_sym_AMP] = ACTIONS(1568), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1572), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), + [anon_sym_default] = ACTIONS(1576), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1578), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), + [sym_mutable_specifier] = ACTIONS(3133), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1582), + [sym_super] = ACTIONS(1582), + [sym_crate] = ACTIONS(1582), + [sym_metavariable] = ACTIONS(1584), + }, + [835] = { + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2886), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), + [sym_line_comment] = STATE(835), + [sym_block_comment] = STATE(835), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2953), + [anon_sym_LPAREN] = ACTIONS(1560), + [anon_sym_RPAREN] = ACTIONS(3135), + [anon_sym_LBRACK] = ACTIONS(1562), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), + [anon_sym_u8] = ACTIONS(1566), + [anon_sym_i8] = ACTIONS(1566), + [anon_sym_u16] = ACTIONS(1566), + [anon_sym_i16] = ACTIONS(1566), + [anon_sym_u32] = ACTIONS(1566), + [anon_sym_i32] = ACTIONS(1566), + [anon_sym_u64] = ACTIONS(1566), + [anon_sym_i64] = ACTIONS(1566), + [anon_sym_u128] = ACTIONS(1566), + [anon_sym_i128] = ACTIONS(1566), + [anon_sym_isize] = ACTIONS(1566), + [anon_sym_usize] = ACTIONS(1566), + [anon_sym_f32] = ACTIONS(1566), + [anon_sym_f64] = ACTIONS(1566), + [anon_sym_bool] = ACTIONS(1566), + [anon_sym_str] = ACTIONS(1566), + [anon_sym_char] = ACTIONS(1566), + [anon_sym_BANG] = ACTIONS(1276), + [anon_sym_AMP] = ACTIONS(1568), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1572), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), + [anon_sym_default] = ACTIONS(1576), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1578), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1582), + [sym_super] = ACTIONS(1582), + [sym_crate] = ACTIONS(1582), + [sym_metavariable] = ACTIONS(1584), + }, + [836] = { + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_type_parameters] = STATE(871), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2326), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(2328), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(2159), + [sym_line_comment] = STATE(836), + [sym_block_comment] = STATE(836), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(3137), + [anon_sym_LPAREN] = ACTIONS(1560), + [anon_sym_LBRACK] = ACTIONS(1562), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), + [anon_sym_u8] = ACTIONS(1566), + [anon_sym_i8] = ACTIONS(1566), + [anon_sym_u16] = ACTIONS(1566), + [anon_sym_i16] = ACTIONS(1566), + [anon_sym_u32] = ACTIONS(1566), + [anon_sym_i32] = ACTIONS(1566), + [anon_sym_u64] = ACTIONS(1566), + [anon_sym_i64] = ACTIONS(1566), + [anon_sym_u128] = ACTIONS(1566), + [anon_sym_i128] = ACTIONS(1566), + [anon_sym_isize] = ACTIONS(1566), + [anon_sym_usize] = ACTIONS(1566), + [anon_sym_f32] = ACTIONS(1566), + [anon_sym_f64] = ACTIONS(1566), + [anon_sym_bool] = ACTIONS(1566), + [anon_sym_str] = ACTIONS(1566), + [anon_sym_char] = ACTIONS(1566), + [anon_sym_BANG] = ACTIONS(3139), + [anon_sym_AMP] = ACTIONS(1568), + [anon_sym_LT] = ACTIONS(3141), + [anon_sym_COLON_COLON] = ACTIONS(1572), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), + [anon_sym_default] = ACTIONS(1576), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1578), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1582), + [sym_super] = ACTIONS(1582), + [sym_crate] = ACTIONS(1582), + [sym_metavariable] = ACTIONS(1584), + }, + [837] = { + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2886), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), + [sym_line_comment] = STATE(837), + [sym_block_comment] = STATE(837), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2953), + [anon_sym_LPAREN] = ACTIONS(1560), + [anon_sym_RPAREN] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(1562), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), + [anon_sym_u8] = ACTIONS(1566), + [anon_sym_i8] = ACTIONS(1566), + [anon_sym_u16] = ACTIONS(1566), + [anon_sym_i16] = ACTIONS(1566), + [anon_sym_u32] = ACTIONS(1566), + [anon_sym_i32] = ACTIONS(1566), + [anon_sym_u64] = ACTIONS(1566), + [anon_sym_i64] = ACTIONS(1566), + [anon_sym_u128] = ACTIONS(1566), + [anon_sym_i128] = ACTIONS(1566), + [anon_sym_isize] = ACTIONS(1566), + [anon_sym_usize] = ACTIONS(1566), + [anon_sym_f32] = ACTIONS(1566), + [anon_sym_f64] = ACTIONS(1566), + [anon_sym_bool] = ACTIONS(1566), + [anon_sym_str] = ACTIONS(1566), + [anon_sym_char] = ACTIONS(1566), + [anon_sym_BANG] = ACTIONS(1276), + [anon_sym_AMP] = ACTIONS(1568), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1572), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), + [anon_sym_default] = ACTIONS(1576), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1578), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1582), + [sym_super] = ACTIONS(1582), + [sym_crate] = ACTIONS(1582), + [sym_metavariable] = ACTIONS(1584), + }, + [838] = { + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2886), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), + [sym_line_comment] = STATE(838), + [sym_block_comment] = STATE(838), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2953), + [anon_sym_LPAREN] = ACTIONS(1560), + [anon_sym_RPAREN] = ACTIONS(3145), + [anon_sym_LBRACK] = ACTIONS(1562), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), + [anon_sym_u8] = ACTIONS(1566), + [anon_sym_i8] = ACTIONS(1566), + [anon_sym_u16] = ACTIONS(1566), + [anon_sym_i16] = ACTIONS(1566), + [anon_sym_u32] = ACTIONS(1566), + [anon_sym_i32] = ACTIONS(1566), + [anon_sym_u64] = ACTIONS(1566), + [anon_sym_i64] = ACTIONS(1566), + [anon_sym_u128] = ACTIONS(1566), + [anon_sym_i128] = ACTIONS(1566), + [anon_sym_isize] = ACTIONS(1566), + [anon_sym_usize] = ACTIONS(1566), + [anon_sym_f32] = ACTIONS(1566), + [anon_sym_f64] = ACTIONS(1566), + [anon_sym_bool] = ACTIONS(1566), + [anon_sym_str] = ACTIONS(1566), + [anon_sym_char] = ACTIONS(1566), + [anon_sym_BANG] = ACTIONS(1276), + [anon_sym_AMP] = ACTIONS(1568), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1572), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), + [anon_sym_default] = ACTIONS(1576), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1578), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1582), + [sym_super] = ACTIONS(1582), + [sym_crate] = ACTIONS(1582), + [sym_metavariable] = ACTIONS(1584), + }, + [839] = { + [sym_function_modifiers] = STATE(3468), + [sym_higher_ranked_trait_bound] = STATE(2214), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2217), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(2218), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), + [sym_line_comment] = STATE(839), + [sym_block_comment] = STATE(839), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2953), + [anon_sym_LPAREN] = ACTIONS(1560), + [anon_sym_LBRACK] = ACTIONS(1562), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), + [anon_sym_u8] = ACTIONS(1566), + [anon_sym_i8] = ACTIONS(1566), + [anon_sym_u16] = ACTIONS(1566), + [anon_sym_i16] = ACTIONS(1566), + [anon_sym_u32] = ACTIONS(1566), + [anon_sym_i32] = ACTIONS(1566), + [anon_sym_u64] = ACTIONS(1566), + [anon_sym_i64] = ACTIONS(1566), + [anon_sym_u128] = ACTIONS(1566), + [anon_sym_i128] = ACTIONS(1566), + [anon_sym_isize] = ACTIONS(1566), + [anon_sym_usize] = ACTIONS(1566), + [anon_sym_f32] = ACTIONS(1566), + [anon_sym_f64] = ACTIONS(1566), + [anon_sym_bool] = ACTIONS(1566), + [anon_sym_str] = ACTIONS(1566), + [anon_sym_char] = ACTIONS(1566), + [anon_sym_BANG] = ACTIONS(1276), + [anon_sym_AMP] = ACTIONS(1568), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1572), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), + [anon_sym_default] = ACTIONS(1576), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(3147), + [anon_sym_impl] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1578), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1582), + [sym_super] = ACTIONS(1582), + [sym_crate] = ACTIONS(1582), + [sym_metavariable] = ACTIONS(1584), + }, + [840] = { + [sym_function_modifiers] = STATE(3468), + [sym_higher_ranked_trait_bound] = STATE(2214), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2217), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(2216), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), + [sym_line_comment] = STATE(840), + [sym_block_comment] = STATE(840), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2953), + [anon_sym_LPAREN] = ACTIONS(1560), + [anon_sym_LBRACK] = ACTIONS(1562), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), + [anon_sym_u8] = ACTIONS(1566), + [anon_sym_i8] = ACTIONS(1566), + [anon_sym_u16] = ACTIONS(1566), + [anon_sym_i16] = ACTIONS(1566), + [anon_sym_u32] = ACTIONS(1566), + [anon_sym_i32] = ACTIONS(1566), + [anon_sym_u64] = ACTIONS(1566), + [anon_sym_i64] = ACTIONS(1566), + [anon_sym_u128] = ACTIONS(1566), + [anon_sym_i128] = ACTIONS(1566), + [anon_sym_isize] = ACTIONS(1566), + [anon_sym_usize] = ACTIONS(1566), + [anon_sym_f32] = ACTIONS(1566), + [anon_sym_f64] = ACTIONS(1566), + [anon_sym_bool] = ACTIONS(1566), + [anon_sym_str] = ACTIONS(1566), + [anon_sym_char] = ACTIONS(1566), + [anon_sym_BANG] = ACTIONS(1276), + [anon_sym_AMP] = ACTIONS(1568), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1572), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), + [anon_sym_default] = ACTIONS(1576), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(3147), + [anon_sym_impl] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1578), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1582), + [sym_super] = ACTIONS(1582), + [sym_crate] = ACTIONS(1582), + [sym_metavariable] = ACTIONS(1584), + }, + [841] = { + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_type_parameters] = STATE(969), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2331), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(2317), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(2146), + [sym_line_comment] = STATE(841), + [sym_block_comment] = STATE(841), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(3149), + [anon_sym_LPAREN] = ACTIONS(1560), + [anon_sym_LBRACK] = ACTIONS(1562), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), + [anon_sym_u8] = ACTIONS(1566), + [anon_sym_i8] = ACTIONS(1566), + [anon_sym_u16] = ACTIONS(1566), + [anon_sym_i16] = ACTIONS(1566), + [anon_sym_u32] = ACTIONS(1566), + [anon_sym_i32] = ACTIONS(1566), + [anon_sym_u64] = ACTIONS(1566), + [anon_sym_i64] = ACTIONS(1566), + [anon_sym_u128] = ACTIONS(1566), + [anon_sym_i128] = ACTIONS(1566), + [anon_sym_isize] = ACTIONS(1566), + [anon_sym_usize] = ACTIONS(1566), + [anon_sym_f32] = ACTIONS(1566), + [anon_sym_f64] = ACTIONS(1566), + [anon_sym_bool] = ACTIONS(1566), + [anon_sym_str] = ACTIONS(1566), + [anon_sym_char] = ACTIONS(1566), + [anon_sym_BANG] = ACTIONS(3151), + [anon_sym_AMP] = ACTIONS(1568), + [anon_sym_LT] = ACTIONS(3141), + [anon_sym_COLON_COLON] = ACTIONS(1572), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), + [anon_sym_default] = ACTIONS(1576), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1578), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1582), + [sym_super] = ACTIONS(1582), + [sym_crate] = ACTIONS(1582), + [sym_metavariable] = ACTIONS(1584), + }, + [842] = { + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2541), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), + [sym_line_comment] = STATE(842), + [sym_block_comment] = STATE(842), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2953), + [anon_sym_LPAREN] = ACTIONS(1560), + [anon_sym_RPAREN] = ACTIONS(3153), + [anon_sym_LBRACK] = ACTIONS(1562), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), + [anon_sym_u8] = ACTIONS(1566), + [anon_sym_i8] = ACTIONS(1566), + [anon_sym_u16] = ACTIONS(1566), + [anon_sym_i16] = ACTIONS(1566), + [anon_sym_u32] = ACTIONS(1566), + [anon_sym_i32] = ACTIONS(1566), + [anon_sym_u64] = ACTIONS(1566), + [anon_sym_i64] = ACTIONS(1566), + [anon_sym_u128] = ACTIONS(1566), + [anon_sym_i128] = ACTIONS(1566), + [anon_sym_isize] = ACTIONS(1566), + [anon_sym_usize] = ACTIONS(1566), + [anon_sym_f32] = ACTIONS(1566), + [anon_sym_f64] = ACTIONS(1566), + [anon_sym_bool] = ACTIONS(1566), + [anon_sym_str] = ACTIONS(1566), + [anon_sym_char] = ACTIONS(1566), + [anon_sym_BANG] = ACTIONS(1276), + [anon_sym_AMP] = ACTIONS(1568), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1572), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), + [anon_sym_default] = ACTIONS(1576), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1578), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1582), + [sym_super] = ACTIONS(1582), + [sym_crate] = ACTIONS(1582), + [sym_metavariable] = ACTIONS(1584), + }, + [843] = { + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2697), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), + [sym_line_comment] = STATE(843), + [sym_block_comment] = STATE(843), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2953), + [anon_sym_LPAREN] = ACTIONS(1560), + [anon_sym_RPAREN] = ACTIONS(3155), + [anon_sym_LBRACK] = ACTIONS(1562), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), + [anon_sym_u8] = ACTIONS(1566), + [anon_sym_i8] = ACTIONS(1566), + [anon_sym_u16] = ACTIONS(1566), + [anon_sym_i16] = ACTIONS(1566), + [anon_sym_u32] = ACTIONS(1566), + [anon_sym_i32] = ACTIONS(1566), + [anon_sym_u64] = ACTIONS(1566), + [anon_sym_i64] = ACTIONS(1566), + [anon_sym_u128] = ACTIONS(1566), + [anon_sym_i128] = ACTIONS(1566), + [anon_sym_isize] = ACTIONS(1566), + [anon_sym_usize] = ACTIONS(1566), + [anon_sym_f32] = ACTIONS(1566), + [anon_sym_f64] = ACTIONS(1566), + [anon_sym_bool] = ACTIONS(1566), + [anon_sym_str] = ACTIONS(1566), + [anon_sym_char] = ACTIONS(1566), + [anon_sym_BANG] = ACTIONS(1276), + [anon_sym_AMP] = ACTIONS(1568), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1572), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), + [anon_sym_default] = ACTIONS(1576), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1578), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1582), + [sym_super] = ACTIONS(1582), + [sym_crate] = ACTIONS(1582), + [sym_metavariable] = ACTIONS(1584), + }, + [844] = { + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_type_parameters] = STATE(941), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2352), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(2307), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(2136), + [sym_line_comment] = STATE(844), + [sym_block_comment] = STATE(844), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(3157), + [anon_sym_LPAREN] = ACTIONS(1560), + [anon_sym_LBRACK] = ACTIONS(1562), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), + [anon_sym_u8] = ACTIONS(1566), + [anon_sym_i8] = ACTIONS(1566), + [anon_sym_u16] = ACTIONS(1566), + [anon_sym_i16] = ACTIONS(1566), + [anon_sym_u32] = ACTIONS(1566), + [anon_sym_i32] = ACTIONS(1566), + [anon_sym_u64] = ACTIONS(1566), + [anon_sym_i64] = ACTIONS(1566), + [anon_sym_u128] = ACTIONS(1566), + [anon_sym_i128] = ACTIONS(1566), + [anon_sym_isize] = ACTIONS(1566), + [anon_sym_usize] = ACTIONS(1566), + [anon_sym_f32] = ACTIONS(1566), + [anon_sym_f64] = ACTIONS(1566), + [anon_sym_bool] = ACTIONS(1566), + [anon_sym_str] = ACTIONS(1566), + [anon_sym_char] = ACTIONS(1566), + [anon_sym_BANG] = ACTIONS(3159), + [anon_sym_AMP] = ACTIONS(1568), + [anon_sym_LT] = ACTIONS(3141), + [anon_sym_COLON_COLON] = ACTIONS(1572), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), + [anon_sym_default] = ACTIONS(1576), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1578), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1582), + [sym_super] = ACTIONS(1582), + [sym_crate] = ACTIONS(1582), + [sym_metavariable] = ACTIONS(1584), + }, + [845] = { + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2886), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), + [sym_line_comment] = STATE(845), + [sym_block_comment] = STATE(845), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2953), + [anon_sym_LPAREN] = ACTIONS(1560), + [anon_sym_RPAREN] = ACTIONS(3161), + [anon_sym_LBRACK] = ACTIONS(1562), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), + [anon_sym_u8] = ACTIONS(1566), + [anon_sym_i8] = ACTIONS(1566), + [anon_sym_u16] = ACTIONS(1566), + [anon_sym_i16] = ACTIONS(1566), + [anon_sym_u32] = ACTIONS(1566), + [anon_sym_i32] = ACTIONS(1566), + [anon_sym_u64] = ACTIONS(1566), + [anon_sym_i64] = ACTIONS(1566), + [anon_sym_u128] = ACTIONS(1566), + [anon_sym_i128] = ACTIONS(1566), + [anon_sym_isize] = ACTIONS(1566), + [anon_sym_usize] = ACTIONS(1566), + [anon_sym_f32] = ACTIONS(1566), + [anon_sym_f64] = ACTIONS(1566), + [anon_sym_bool] = ACTIONS(1566), + [anon_sym_str] = ACTIONS(1566), + [anon_sym_char] = ACTIONS(1566), + [anon_sym_BANG] = ACTIONS(1276), + [anon_sym_AMP] = ACTIONS(1568), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1572), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), + [anon_sym_default] = ACTIONS(1576), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1578), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1582), + [sym_super] = ACTIONS(1582), + [sym_crate] = ACTIONS(1582), + [sym_metavariable] = ACTIONS(1584), + }, + [846] = { + [sym_function_modifiers] = STATE(3468), + [sym_higher_ranked_trait_bound] = STATE(2214), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2176), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(2216), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), + [sym_line_comment] = STATE(846), + [sym_block_comment] = STATE(846), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2953), [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_RPAREN] = ACTIONS(3133), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -96515,21 +97375,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(3147), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -96537,38 +97397,180 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [835] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2506), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), - [sym_line_comment] = STATE(835), - [sym_block_comment] = STATE(835), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), + [847] = { + [sym_function_modifiers] = STATE(3339), + [sym_removed_trait_bound] = STATE(1351), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(1433), + [sym_bracketed_type] = STATE(3522), + [sym_lifetime] = STATE(831), + [sym_array_type] = STATE(1351), + [sym_for_lifetimes] = STATE(1614), + [sym_function_type] = STATE(1351), + [sym_tuple_type] = STATE(1351), + [sym_unit_type] = STATE(1351), + [sym_generic_type] = STATE(1059), + [sym_generic_type_with_turbofish] = STATE(3512), + [sym_bounded_type] = STATE(1351), + [sym_reference_type] = STATE(1351), + [sym_pointer_type] = STATE(1351), + [sym_never_type] = STATE(1351), + [sym_abstract_type] = STATE(1351), + [sym_dynamic_type] = STATE(1351), + [sym_macro_invocation] = STATE(1351), + [sym_scoped_identifier] = STATE(3269), + [sym_scoped_type_identifier] = STATE(1024), + [sym_line_comment] = STATE(847), + [sym_block_comment] = STATE(847), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(3093), + [anon_sym_LPAREN] = ACTIONS(3095), + [anon_sym_LBRACK] = ACTIONS(3097), + [anon_sym_STAR] = ACTIONS(3101), + [anon_sym_QMARK] = ACTIONS(3103), + [anon_sym_u8] = ACTIONS(3105), + [anon_sym_i8] = ACTIONS(3105), + [anon_sym_u16] = ACTIONS(3105), + [anon_sym_i16] = ACTIONS(3105), + [anon_sym_u32] = ACTIONS(3105), + [anon_sym_i32] = ACTIONS(3105), + [anon_sym_u64] = ACTIONS(3105), + [anon_sym_i64] = ACTIONS(3105), + [anon_sym_u128] = ACTIONS(3105), + [anon_sym_i128] = ACTIONS(3105), + [anon_sym_isize] = ACTIONS(3105), + [anon_sym_usize] = ACTIONS(3105), + [anon_sym_f32] = ACTIONS(3105), + [anon_sym_f64] = ACTIONS(3105), + [anon_sym_bool] = ACTIONS(3105), + [anon_sym_str] = ACTIONS(3105), + [anon_sym_char] = ACTIONS(3105), + [anon_sym_BANG] = ACTIONS(3107), + [anon_sym_AMP] = ACTIONS(3109), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3111), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), + [anon_sym_default] = ACTIONS(3113), + [anon_sym_fn] = ACTIONS(3115), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(3117), + [anon_sym_union] = ACTIONS(3119), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(3121), + [sym_mutable_specifier] = ACTIONS(3163), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(3125), + [sym_super] = ACTIONS(3125), + [sym_crate] = ACTIONS(3125), + [sym_metavariable] = ACTIONS(3127), + }, + [848] = { + [sym_function_modifiers] = STATE(3480), + [sym_removed_trait_bound] = STATE(1674), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(1796), + [sym_bracketed_type] = STATE(3537), + [sym_lifetime] = STATE(829), + [sym_array_type] = STATE(1674), + [sym_for_lifetimes] = STATE(1623), + [sym_function_type] = STATE(1674), + [sym_tuple_type] = STATE(1674), + [sym_unit_type] = STATE(1674), + [sym_generic_type] = STATE(1591), + [sym_generic_type_with_turbofish] = STATE(3529), + [sym_bounded_type] = STATE(1674), + [sym_reference_type] = STATE(1674), + [sym_pointer_type] = STATE(1674), + [sym_never_type] = STATE(1674), + [sym_abstract_type] = STATE(1674), + [sym_dynamic_type] = STATE(1674), + [sym_macro_invocation] = STATE(1674), + [sym_scoped_identifier] = STATE(3130), + [sym_scoped_type_identifier] = STATE(1516), + [sym_line_comment] = STATE(848), + [sym_block_comment] = STATE(848), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(3051), + [anon_sym_LPAREN] = ACTIONS(3053), + [anon_sym_LBRACK] = ACTIONS(3055), + [anon_sym_STAR] = ACTIONS(3059), + [anon_sym_QMARK] = ACTIONS(3061), + [anon_sym_u8] = ACTIONS(3063), + [anon_sym_i8] = ACTIONS(3063), + [anon_sym_u16] = ACTIONS(3063), + [anon_sym_i16] = ACTIONS(3063), + [anon_sym_u32] = ACTIONS(3063), + [anon_sym_i32] = ACTIONS(3063), + [anon_sym_u64] = ACTIONS(3063), + [anon_sym_i64] = ACTIONS(3063), + [anon_sym_u128] = ACTIONS(3063), + [anon_sym_i128] = ACTIONS(3063), + [anon_sym_isize] = ACTIONS(3063), + [anon_sym_usize] = ACTIONS(3063), + [anon_sym_f32] = ACTIONS(3063), + [anon_sym_f64] = ACTIONS(3063), + [anon_sym_bool] = ACTIONS(3063), + [anon_sym_str] = ACTIONS(3063), + [anon_sym_char] = ACTIONS(3063), + [anon_sym_BANG] = ACTIONS(3065), + [anon_sym_AMP] = ACTIONS(3067), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3069), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), + [anon_sym_default] = ACTIONS(3071), + [anon_sym_fn] = ACTIONS(3073), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(3075), + [anon_sym_union] = ACTIONS(3077), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(3079), + [sym_mutable_specifier] = ACTIONS(3165), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(3083), + [sym_super] = ACTIONS(3083), + [sym_crate] = ACTIONS(3083), + [sym_metavariable] = ACTIONS(3085), + }, + [849] = { + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2886), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), + [sym_line_comment] = STATE(849), + [sym_block_comment] = STATE(849), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2953), [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_RPAREN] = ACTIONS(3135), + [anon_sym_RPAREN] = ACTIONS(3167), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -96586,21 +97588,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -96608,38 +97610,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [836] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2799), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), - [sym_line_comment] = STATE(836), - [sym_block_comment] = STATE(836), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), + [850] = { + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2842), + [sym_bracketed_type] = STATE(3333), + [sym_qualified_type] = STATE(3464), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), + [sym_line_comment] = STATE(850), + [sym_block_comment] = STATE(850), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2953), [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_RPAREN] = ACTIONS(3137), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -96657,21 +97659,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -96679,108 +97681,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [837] = { - [sym_function_modifiers] = STATE(3473), - [sym_removed_trait_bound] = STATE(1701), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1747), - [sym_bracketed_type] = STATE(3529), - [sym_lifetime] = STATE(831), - [sym_array_type] = STATE(1701), - [sym_for_lifetimes] = STATE(1613), - [sym_function_type] = STATE(1701), - [sym_tuple_type] = STATE(1701), - [sym_unit_type] = STATE(1701), - [sym_generic_type] = STATE(1608), - [sym_generic_type_with_turbofish] = STATE(3521), - [sym_bounded_type] = STATE(1701), - [sym_reference_type] = STATE(1701), - [sym_pointer_type] = STATE(1701), - [sym_never_type] = STATE(1701), - [sym_abstract_type] = STATE(1701), - [sym_dynamic_type] = STATE(1701), - [sym_macro_invocation] = STATE(1701), - [sym_scoped_identifier] = STATE(3264), - [sym_scoped_type_identifier] = STATE(1526), - [sym_line_comment] = STATE(837), - [sym_block_comment] = STATE(837), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3059), - [anon_sym_LPAREN] = ACTIONS(3061), - [anon_sym_LBRACK] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_QMARK] = ACTIONS(3069), - [anon_sym_u8] = ACTIONS(3071), - [anon_sym_i8] = ACTIONS(3071), - [anon_sym_u16] = ACTIONS(3071), - [anon_sym_i16] = ACTIONS(3071), - [anon_sym_u32] = ACTIONS(3071), - [anon_sym_i32] = ACTIONS(3071), - [anon_sym_u64] = ACTIONS(3071), - [anon_sym_i64] = ACTIONS(3071), - [anon_sym_u128] = ACTIONS(3071), - [anon_sym_i128] = ACTIONS(3071), - [anon_sym_isize] = ACTIONS(3071), - [anon_sym_usize] = ACTIONS(3071), - [anon_sym_f32] = ACTIONS(3071), - [anon_sym_f64] = ACTIONS(3071), - [anon_sym_bool] = ACTIONS(3071), - [anon_sym_str] = ACTIONS(3071), - [anon_sym_char] = ACTIONS(3071), - [anon_sym_BANG] = ACTIONS(3073), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3077), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(3079), - [anon_sym_fn] = ACTIONS(3081), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(3083), - [anon_sym_union] = ACTIONS(3085), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(3087), - [sym_mutable_specifier] = ACTIONS(3139), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3091), - [sym_super] = ACTIONS(3091), - [sym_crate] = ACTIONS(3091), - [sym_metavariable] = ACTIONS(3093), - }, - [838] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1983), - [sym_bracketed_type] = STATE(3332), + [851] = { + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(1992), + [sym_bracketed_type] = STATE(3333), [sym_lifetime] = STATE(833), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), - [sym_line_comment] = STATE(838), - [sym_block_comment] = STATE(838), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), + [sym_line_comment] = STATE(851), + [sym_block_comment] = STATE(851), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2953), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -96798,22 +97729,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(3141), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), + [sym_mutable_specifier] = ACTIONS(3169), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -96821,38 +97752,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [839] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2799), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), - [sym_line_comment] = STATE(839), - [sym_block_comment] = STATE(839), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), + [852] = { + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_type_parameters] = STATE(901), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2386), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(2291), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(2145), + [sym_line_comment] = STATE(852), + [sym_block_comment] = STATE(852), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(3171), [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_RPAREN] = ACTIONS(3143), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -96870,21 +97801,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(3173), [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(3141), [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -96892,38 +97823,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [840] = { - [sym_function_modifiers] = STATE(3427), - [sym_higher_ranked_trait_bound] = STATE(2208), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2177), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(2178), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), - [sym_line_comment] = STATE(840), - [sym_block_comment] = STATE(840), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), + [853] = { + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2886), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), + [sym_line_comment] = STATE(853), + [sym_block_comment] = STATE(853), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2953), [anon_sym_LPAREN] = ACTIONS(1560), + [anon_sym_RPAREN] = ACTIONS(3175), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -96941,21 +97872,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(3145), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -96963,38 +97894,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [841] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_type_parameters] = STATE(950), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2369), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(2382), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(2165), - [sym_line_comment] = STATE(841), - [sym_block_comment] = STATE(841), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3147), + [854] = { + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2694), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), + [sym_line_comment] = STATE(854), + [sym_block_comment] = STATE(854), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2953), [anon_sym_LPAREN] = ACTIONS(1560), + [anon_sym_RPAREN] = ACTIONS(3177), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -97012,21 +97943,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(3149), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(3151), + [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -97034,37 +97965,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [842] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2622), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), - [sym_line_comment] = STATE(842), - [sym_block_comment] = STATE(842), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), + [855] = { + [sym_function_modifiers] = STATE(3468), + [sym_higher_ranked_trait_bound] = STATE(2175), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2168), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(2167), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), + [sym_line_comment] = STATE(855), + [sym_block_comment] = STATE(855), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2953), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -97082,22 +98014,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3153), [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(3147), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -97105,38 +98036,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [843] = { - [sym_function_modifiers] = STATE(3427), - [sym_higher_ranked_trait_bound] = STATE(2208), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2207), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(2223), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), - [sym_line_comment] = STATE(843), - [sym_block_comment] = STATE(843), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), + [856] = { + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2568), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), + [sym_line_comment] = STATE(856), + [sym_block_comment] = STATE(856), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2953), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -97154,21 +98084,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3179), [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(3145), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -97176,38 +98107,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [844] = { - [sym_function_modifiers] = STATE(3427), - [sym_higher_ranked_trait_bound] = STATE(2208), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2207), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(2178), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), - [sym_line_comment] = STATE(844), - [sym_block_comment] = STATE(844), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), + [857] = { + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2543), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), + [sym_line_comment] = STATE(857), + [sym_block_comment] = STATE(857), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2953), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -97225,21 +98155,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3181), [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(3145), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -97247,38 +98178,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [845] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_type_parameters] = STATE(935), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2314), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(2341), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(2147), - [sym_line_comment] = STATE(845), - [sym_block_comment] = STATE(845), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3155), + [858] = { + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2951), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), + [sym_line_comment] = STATE(858), + [sym_block_comment] = STATE(858), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2953), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -97296,21 +98226,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(3157), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(3151), + [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -97318,38 +98248,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [846] = { - [sym_function_modifiers] = STATE(3427), - [sym_higher_ranked_trait_bound] = STATE(2173), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2146), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(2153), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), - [sym_line_comment] = STATE(846), - [sym_block_comment] = STATE(846), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), + [859] = { + [sym_function_modifiers] = STATE(3339), + [sym_removed_trait_bound] = STATE(1351), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(1277), + [sym_bracketed_type] = STATE(3522), + [sym_lifetime] = STATE(3444), + [sym_array_type] = STATE(1351), + [sym_for_lifetimes] = STATE(1614), + [sym_function_type] = STATE(1351), + [sym_tuple_type] = STATE(1351), + [sym_unit_type] = STATE(1351), + [sym_generic_type] = STATE(1059), + [sym_generic_type_with_turbofish] = STATE(3512), + [sym_bounded_type] = STATE(1351), + [sym_reference_type] = STATE(1351), + [sym_pointer_type] = STATE(1351), + [sym_never_type] = STATE(1351), + [sym_abstract_type] = STATE(1351), + [sym_dynamic_type] = STATE(1351), + [sym_macro_invocation] = STATE(1351), + [sym_scoped_identifier] = STATE(3269), + [sym_scoped_type_identifier] = STATE(1024), + [sym_line_comment] = STATE(859), + [sym_block_comment] = STATE(859), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(3093), + [anon_sym_LPAREN] = ACTIONS(3095), + [anon_sym_LBRACK] = ACTIONS(3097), + [anon_sym_STAR] = ACTIONS(3101), + [anon_sym_QMARK] = ACTIONS(3103), + [anon_sym_u8] = ACTIONS(3105), + [anon_sym_i8] = ACTIONS(3105), + [anon_sym_u16] = ACTIONS(3105), + [anon_sym_i16] = ACTIONS(3105), + [anon_sym_u32] = ACTIONS(3105), + [anon_sym_i32] = ACTIONS(3105), + [anon_sym_u64] = ACTIONS(3105), + [anon_sym_i64] = ACTIONS(3105), + [anon_sym_u128] = ACTIONS(3105), + [anon_sym_i128] = ACTIONS(3105), + [anon_sym_isize] = ACTIONS(3105), + [anon_sym_usize] = ACTIONS(3105), + [anon_sym_f32] = ACTIONS(3105), + [anon_sym_f64] = ACTIONS(3105), + [anon_sym_bool] = ACTIONS(3105), + [anon_sym_str] = ACTIONS(3105), + [anon_sym_char] = ACTIONS(3105), + [anon_sym_BANG] = ACTIONS(3107), + [anon_sym_AMP] = ACTIONS(3109), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3111), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), + [anon_sym_default] = ACTIONS(3113), + [anon_sym_fn] = ACTIONS(3115), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(3117), + [anon_sym_union] = ACTIONS(3119), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(3121), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(3125), + [sym_super] = ACTIONS(3125), + [sym_crate] = ACTIONS(3125), + [sym_metavariable] = ACTIONS(3127), + }, + [860] = { + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2544), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), + [sym_line_comment] = STATE(860), + [sym_block_comment] = STATE(860), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2953), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -97367,21 +98366,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(3145), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -97389,37 +98388,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [847] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(3069), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(830), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), - [sym_line_comment] = STATE(847), - [sym_block_comment] = STATE(847), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), + [861] = { + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2193), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), + [sym_line_comment] = STATE(861), + [sym_block_comment] = STATE(861), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2953), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -97437,22 +98436,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(3159), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -97460,38 +98458,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [848] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_type_parameters] = STATE(938), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2317), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(2319), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(2140), - [sym_line_comment] = STATE(848), - [sym_block_comment] = STATE(848), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3161), + [862] = { + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2337), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), + [sym_line_comment] = STATE(862), + [sym_block_comment] = STATE(862), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2953), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -97509,21 +98506,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(3163), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(3151), + [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -97531,38 +98528,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [849] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2819), - [sym_bracketed_type] = STATE(3332), - [sym_qualified_type] = STATE(3515), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), - [sym_line_comment] = STATE(849), - [sym_block_comment] = STATE(849), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), + [863] = { + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2339), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), + [sym_line_comment] = STATE(863), + [sym_block_comment] = STATE(863), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2953), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -97580,21 +98576,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -97602,109 +98598,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [850] = { - [sym_function_modifiers] = STATE(3338), - [sym_removed_trait_bound] = STATE(1451), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1228), - [sym_bracketed_type] = STATE(3514), - [sym_lifetime] = STATE(832), - [sym_array_type] = STATE(1451), - [sym_for_lifetimes] = STATE(1592), - [sym_function_type] = STATE(1451), - [sym_tuple_type] = STATE(1451), - [sym_unit_type] = STATE(1451), - [sym_generic_type] = STATE(1078), - [sym_generic_type_with_turbofish] = STATE(3504), - [sym_bounded_type] = STATE(1451), - [sym_reference_type] = STATE(1451), - [sym_pointer_type] = STATE(1451), - [sym_never_type] = STATE(1451), - [sym_abstract_type] = STATE(1451), - [sym_dynamic_type] = STATE(1451), - [sym_macro_invocation] = STATE(1451), - [sym_scoped_identifier] = STATE(3202), - [sym_scoped_type_identifier] = STATE(1028), - [sym_line_comment] = STATE(850), - [sym_block_comment] = STATE(850), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3095), - [anon_sym_LPAREN] = ACTIONS(3097), - [anon_sym_LBRACK] = ACTIONS(3099), - [anon_sym_STAR] = ACTIONS(3103), - [anon_sym_QMARK] = ACTIONS(3105), - [anon_sym_u8] = ACTIONS(3107), - [anon_sym_i8] = ACTIONS(3107), - [anon_sym_u16] = ACTIONS(3107), - [anon_sym_i16] = ACTIONS(3107), - [anon_sym_u32] = ACTIONS(3107), - [anon_sym_i32] = ACTIONS(3107), - [anon_sym_u64] = ACTIONS(3107), - [anon_sym_i64] = ACTIONS(3107), - [anon_sym_u128] = ACTIONS(3107), - [anon_sym_i128] = ACTIONS(3107), - [anon_sym_isize] = ACTIONS(3107), - [anon_sym_usize] = ACTIONS(3107), - [anon_sym_f32] = ACTIONS(3107), - [anon_sym_f64] = ACTIONS(3107), - [anon_sym_bool] = ACTIONS(3107), - [anon_sym_str] = ACTIONS(3107), - [anon_sym_char] = ACTIONS(3107), - [anon_sym_BANG] = ACTIONS(3109), - [anon_sym_AMP] = ACTIONS(3111), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3113), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(3115), - [anon_sym_fn] = ACTIONS(3117), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(3119), - [anon_sym_union] = ACTIONS(3121), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(3123), - [sym_mutable_specifier] = ACTIONS(3165), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3127), - [sym_super] = ACTIONS(3127), - [sym_crate] = ACTIONS(3127), - [sym_metavariable] = ACTIONS(3129), - }, - [851] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2799), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), - [sym_line_comment] = STATE(851), - [sym_block_comment] = STATE(851), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), + [864] = { + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2228), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), + [sym_line_comment] = STATE(864), + [sym_block_comment] = STATE(864), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2953), [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_RPAREN] = ACTIONS(3167), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -97722,21 +98646,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -97744,38 +98668,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [852] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2799), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), - [sym_line_comment] = STATE(852), - [sym_block_comment] = STATE(852), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), + [865] = { + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2991), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), + [sym_line_comment] = STATE(865), + [sym_block_comment] = STATE(865), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2953), [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_RPAREN] = ACTIONS(3169), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -97793,21 +98716,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -97815,38 +98738,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [853] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_type_parameters] = STATE(959), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2295), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(2385), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(2170), - [sym_line_comment] = STATE(853), - [sym_block_comment] = STATE(853), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3171), + [866] = { + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2292), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), + [sym_line_comment] = STATE(866), + [sym_block_comment] = STATE(866), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2953), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -97864,21 +98786,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(3173), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(3151), + [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -97886,38 +98808,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [854] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2601), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), - [sym_line_comment] = STATE(854), - [sym_block_comment] = STATE(854), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), + [867] = { + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2297), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), + [sym_line_comment] = STATE(867), + [sym_block_comment] = STATE(867), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2953), [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_RPAREN] = ACTIONS(3175), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -97935,21 +98856,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -97957,38 +98878,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [855] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2576), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), - [sym_line_comment] = STATE(855), - [sym_block_comment] = STATE(855), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), + [868] = { + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2504), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), + [sym_line_comment] = STATE(868), + [sym_block_comment] = STATE(868), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2953), [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_RPAREN] = ACTIONS(3177), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -98006,21 +98926,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -98028,37 +98948,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [856] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2664), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), - [sym_line_comment] = STATE(856), - [sym_block_comment] = STATE(856), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), + [869] = { + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2231), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), + [sym_line_comment] = STATE(869), + [sym_block_comment] = STATE(869), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2953), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -98076,22 +98996,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3179), [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -98099,38 +99018,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [857] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2799), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), - [sym_line_comment] = STATE(857), - [sym_block_comment] = STATE(857), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), + [870] = { + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2298), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), + [sym_line_comment] = STATE(870), + [sym_block_comment] = STATE(870), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2953), [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_RPAREN] = ACTIONS(3181), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -98148,21 +99066,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -98170,37 +99088,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [858] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2334), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), - [sym_line_comment] = STATE(858), - [sym_block_comment] = STATE(858), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), + [871] = { + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2375), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(2379), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(2149), + [sym_line_comment] = STATE(871), + [sym_block_comment] = STATE(871), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(3183), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -98218,21 +99136,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(3185), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -98240,37 +99158,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [859] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1996), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), - [sym_line_comment] = STATE(859), - [sym_block_comment] = STATE(859), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), + [872] = { + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2543), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), + [sym_line_comment] = STATE(872), + [sym_block_comment] = STATE(872), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2953), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -98288,21 +99206,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -98310,37 +99228,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [860] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1985), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), - [sym_line_comment] = STATE(860), - [sym_block_comment] = STATE(860), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), + [873] = { + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(1979), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), + [sym_line_comment] = STATE(873), + [sym_block_comment] = STATE(873), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2953), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -98358,21 +99276,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -98380,37 +99298,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [861] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1994), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), - [sym_line_comment] = STATE(861), - [sym_block_comment] = STATE(861), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), + [874] = { + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(3046), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), + [sym_line_comment] = STATE(874), + [sym_block_comment] = STATE(874), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2953), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -98428,21 +99346,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -98450,37 +99368,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [862] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2402), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), - [sym_line_comment] = STATE(862), - [sym_block_comment] = STATE(862), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), + [875] = { + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(3035), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), + [sym_line_comment] = STATE(875), + [sym_block_comment] = STATE(875), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2953), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -98498,21 +99416,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -98520,667 +99438,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [863] = { - [sym_function_modifiers] = STATE(3473), - [sym_removed_trait_bound] = STATE(1701), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1770), - [sym_bracketed_type] = STATE(3529), - [sym_lifetime] = STATE(3368), - [sym_array_type] = STATE(1701), - [sym_for_lifetimes] = STATE(1613), - [sym_function_type] = STATE(1701), - [sym_tuple_type] = STATE(1701), - [sym_unit_type] = STATE(1701), - [sym_generic_type] = STATE(1608), - [sym_generic_type_with_turbofish] = STATE(3521), - [sym_bounded_type] = STATE(1701), - [sym_reference_type] = STATE(1701), - [sym_pointer_type] = STATE(1701), - [sym_never_type] = STATE(1701), - [sym_abstract_type] = STATE(1701), - [sym_dynamic_type] = STATE(1701), - [sym_macro_invocation] = STATE(1701), - [sym_scoped_identifier] = STATE(3264), - [sym_scoped_type_identifier] = STATE(1526), - [sym_line_comment] = STATE(863), - [sym_block_comment] = STATE(863), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3059), - [anon_sym_LPAREN] = ACTIONS(3061), - [anon_sym_LBRACK] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_QMARK] = ACTIONS(3069), - [anon_sym_u8] = ACTIONS(3071), - [anon_sym_i8] = ACTIONS(3071), - [anon_sym_u16] = ACTIONS(3071), - [anon_sym_i16] = ACTIONS(3071), - [anon_sym_u32] = ACTIONS(3071), - [anon_sym_i32] = ACTIONS(3071), - [anon_sym_u64] = ACTIONS(3071), - [anon_sym_i64] = ACTIONS(3071), - [anon_sym_u128] = ACTIONS(3071), - [anon_sym_i128] = ACTIONS(3071), - [anon_sym_isize] = ACTIONS(3071), - [anon_sym_usize] = ACTIONS(3071), - [anon_sym_f32] = ACTIONS(3071), - [anon_sym_f64] = ACTIONS(3071), - [anon_sym_bool] = ACTIONS(3071), - [anon_sym_str] = ACTIONS(3071), - [anon_sym_char] = ACTIONS(3071), - [anon_sym_BANG] = ACTIONS(3073), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3077), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(3079), - [anon_sym_fn] = ACTIONS(3081), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(3083), - [anon_sym_union] = ACTIONS(3085), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(3087), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3091), - [sym_super] = ACTIONS(3091), - [sym_crate] = ACTIONS(3091), - [sym_metavariable] = ACTIONS(3093), - }, - [864] = { - [sym_function_modifiers] = STATE(3473), - [sym_removed_trait_bound] = STATE(1701), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1729), - [sym_bracketed_type] = STATE(3529), - [sym_lifetime] = STATE(3368), - [sym_array_type] = STATE(1701), - [sym_for_lifetimes] = STATE(1613), - [sym_function_type] = STATE(1701), - [sym_tuple_type] = STATE(1701), - [sym_unit_type] = STATE(1701), - [sym_generic_type] = STATE(1608), - [sym_generic_type_with_turbofish] = STATE(3521), - [sym_bounded_type] = STATE(1701), - [sym_reference_type] = STATE(1701), - [sym_pointer_type] = STATE(1701), - [sym_never_type] = STATE(1701), - [sym_abstract_type] = STATE(1701), - [sym_dynamic_type] = STATE(1701), - [sym_macro_invocation] = STATE(1701), - [sym_scoped_identifier] = STATE(3264), - [sym_scoped_type_identifier] = STATE(1526), - [sym_line_comment] = STATE(864), - [sym_block_comment] = STATE(864), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3059), - [anon_sym_LPAREN] = ACTIONS(3061), - [anon_sym_LBRACK] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_QMARK] = ACTIONS(3069), - [anon_sym_u8] = ACTIONS(3071), - [anon_sym_i8] = ACTIONS(3071), - [anon_sym_u16] = ACTIONS(3071), - [anon_sym_i16] = ACTIONS(3071), - [anon_sym_u32] = ACTIONS(3071), - [anon_sym_i32] = ACTIONS(3071), - [anon_sym_u64] = ACTIONS(3071), - [anon_sym_i64] = ACTIONS(3071), - [anon_sym_u128] = ACTIONS(3071), - [anon_sym_i128] = ACTIONS(3071), - [anon_sym_isize] = ACTIONS(3071), - [anon_sym_usize] = ACTIONS(3071), - [anon_sym_f32] = ACTIONS(3071), - [anon_sym_f64] = ACTIONS(3071), - [anon_sym_bool] = ACTIONS(3071), - [anon_sym_str] = ACTIONS(3071), - [anon_sym_char] = ACTIONS(3071), - [anon_sym_BANG] = ACTIONS(3073), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3077), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(3079), - [anon_sym_fn] = ACTIONS(3081), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(3083), - [anon_sym_union] = ACTIONS(3085), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(3087), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3091), - [sym_super] = ACTIONS(3091), - [sym_crate] = ACTIONS(3091), - [sym_metavariable] = ACTIONS(3093), - }, - [865] = { - [sym_function_modifiers] = STATE(3473), - [sym_removed_trait_bound] = STATE(1701), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1771), - [sym_bracketed_type] = STATE(3529), - [sym_lifetime] = STATE(3368), - [sym_array_type] = STATE(1701), - [sym_for_lifetimes] = STATE(1613), - [sym_function_type] = STATE(1701), - [sym_tuple_type] = STATE(1701), - [sym_unit_type] = STATE(1701), - [sym_generic_type] = STATE(1608), - [sym_generic_type_with_turbofish] = STATE(3521), - [sym_bounded_type] = STATE(1701), - [sym_reference_type] = STATE(1701), - [sym_pointer_type] = STATE(1701), - [sym_never_type] = STATE(1701), - [sym_abstract_type] = STATE(1701), - [sym_dynamic_type] = STATE(1701), - [sym_macro_invocation] = STATE(1701), - [sym_scoped_identifier] = STATE(3264), - [sym_scoped_type_identifier] = STATE(1526), - [sym_line_comment] = STATE(865), - [sym_block_comment] = STATE(865), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3059), - [anon_sym_LPAREN] = ACTIONS(3061), - [anon_sym_LBRACK] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_QMARK] = ACTIONS(3069), - [anon_sym_u8] = ACTIONS(3071), - [anon_sym_i8] = ACTIONS(3071), - [anon_sym_u16] = ACTIONS(3071), - [anon_sym_i16] = ACTIONS(3071), - [anon_sym_u32] = ACTIONS(3071), - [anon_sym_i32] = ACTIONS(3071), - [anon_sym_u64] = ACTIONS(3071), - [anon_sym_i64] = ACTIONS(3071), - [anon_sym_u128] = ACTIONS(3071), - [anon_sym_i128] = ACTIONS(3071), - [anon_sym_isize] = ACTIONS(3071), - [anon_sym_usize] = ACTIONS(3071), - [anon_sym_f32] = ACTIONS(3071), - [anon_sym_f64] = ACTIONS(3071), - [anon_sym_bool] = ACTIONS(3071), - [anon_sym_str] = ACTIONS(3071), - [anon_sym_char] = ACTIONS(3071), - [anon_sym_BANG] = ACTIONS(3073), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3077), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(3079), - [anon_sym_fn] = ACTIONS(3081), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(3083), - [anon_sym_union] = ACTIONS(3085), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(3087), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3091), - [sym_super] = ACTIONS(3091), - [sym_crate] = ACTIONS(3091), - [sym_metavariable] = ACTIONS(3093), - }, - [866] = { - [sym_function_modifiers] = STATE(3473), - [sym_removed_trait_bound] = STATE(1701), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1731), - [sym_bracketed_type] = STATE(3529), - [sym_lifetime] = STATE(3368), - [sym_array_type] = STATE(1701), - [sym_for_lifetimes] = STATE(1613), - [sym_function_type] = STATE(1701), - [sym_tuple_type] = STATE(1701), - [sym_unit_type] = STATE(1701), - [sym_generic_type] = STATE(1608), - [sym_generic_type_with_turbofish] = STATE(3521), - [sym_bounded_type] = STATE(1701), - [sym_reference_type] = STATE(1701), - [sym_pointer_type] = STATE(1701), - [sym_never_type] = STATE(1701), - [sym_abstract_type] = STATE(1701), - [sym_dynamic_type] = STATE(1701), - [sym_macro_invocation] = STATE(1701), - [sym_scoped_identifier] = STATE(3264), - [sym_scoped_type_identifier] = STATE(1526), - [sym_line_comment] = STATE(866), - [sym_block_comment] = STATE(866), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3059), - [anon_sym_LPAREN] = ACTIONS(3061), - [anon_sym_LBRACK] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_QMARK] = ACTIONS(3069), - [anon_sym_u8] = ACTIONS(3071), - [anon_sym_i8] = ACTIONS(3071), - [anon_sym_u16] = ACTIONS(3071), - [anon_sym_i16] = ACTIONS(3071), - [anon_sym_u32] = ACTIONS(3071), - [anon_sym_i32] = ACTIONS(3071), - [anon_sym_u64] = ACTIONS(3071), - [anon_sym_i64] = ACTIONS(3071), - [anon_sym_u128] = ACTIONS(3071), - [anon_sym_i128] = ACTIONS(3071), - [anon_sym_isize] = ACTIONS(3071), - [anon_sym_usize] = ACTIONS(3071), - [anon_sym_f32] = ACTIONS(3071), - [anon_sym_f64] = ACTIONS(3071), - [anon_sym_bool] = ACTIONS(3071), - [anon_sym_str] = ACTIONS(3071), - [anon_sym_char] = ACTIONS(3071), - [anon_sym_BANG] = ACTIONS(3073), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3077), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(3079), - [anon_sym_fn] = ACTIONS(3081), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(3083), - [anon_sym_union] = ACTIONS(3085), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(3087), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3091), - [sym_super] = ACTIONS(3091), - [sym_crate] = ACTIONS(3091), - [sym_metavariable] = ACTIONS(3093), - }, - [867] = { - [sym_function_modifiers] = STATE(3473), - [sym_removed_trait_bound] = STATE(1701), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1732), - [sym_bracketed_type] = STATE(3529), - [sym_lifetime] = STATE(3368), - [sym_array_type] = STATE(1701), - [sym_for_lifetimes] = STATE(1613), - [sym_function_type] = STATE(1701), - [sym_tuple_type] = STATE(1701), - [sym_unit_type] = STATE(1701), - [sym_generic_type] = STATE(1608), - [sym_generic_type_with_turbofish] = STATE(3521), - [sym_bounded_type] = STATE(1701), - [sym_reference_type] = STATE(1701), - [sym_pointer_type] = STATE(1701), - [sym_never_type] = STATE(1701), - [sym_abstract_type] = STATE(1701), - [sym_dynamic_type] = STATE(1701), - [sym_macro_invocation] = STATE(1701), - [sym_scoped_identifier] = STATE(3264), - [sym_scoped_type_identifier] = STATE(1526), - [sym_line_comment] = STATE(867), - [sym_block_comment] = STATE(867), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3059), - [anon_sym_LPAREN] = ACTIONS(3061), - [anon_sym_LBRACK] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_QMARK] = ACTIONS(3069), - [anon_sym_u8] = ACTIONS(3071), - [anon_sym_i8] = ACTIONS(3071), - [anon_sym_u16] = ACTIONS(3071), - [anon_sym_i16] = ACTIONS(3071), - [anon_sym_u32] = ACTIONS(3071), - [anon_sym_i32] = ACTIONS(3071), - [anon_sym_u64] = ACTIONS(3071), - [anon_sym_i64] = ACTIONS(3071), - [anon_sym_u128] = ACTIONS(3071), - [anon_sym_i128] = ACTIONS(3071), - [anon_sym_isize] = ACTIONS(3071), - [anon_sym_usize] = ACTIONS(3071), - [anon_sym_f32] = ACTIONS(3071), - [anon_sym_f64] = ACTIONS(3071), - [anon_sym_bool] = ACTIONS(3071), - [anon_sym_str] = ACTIONS(3071), - [anon_sym_char] = ACTIONS(3071), - [anon_sym_BANG] = ACTIONS(3073), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3077), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(3079), - [anon_sym_fn] = ACTIONS(3081), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(3083), - [anon_sym_union] = ACTIONS(3085), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(3087), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3091), - [sym_super] = ACTIONS(3091), - [sym_crate] = ACTIONS(3091), - [sym_metavariable] = ACTIONS(3093), - }, - [868] = { - [sym_function_modifiers] = STATE(3473), - [sym_removed_trait_bound] = STATE(1701), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1736), - [sym_bracketed_type] = STATE(3529), - [sym_lifetime] = STATE(3368), - [sym_array_type] = STATE(1701), - [sym_for_lifetimes] = STATE(1613), - [sym_function_type] = STATE(1701), - [sym_tuple_type] = STATE(1701), - [sym_unit_type] = STATE(1701), - [sym_generic_type] = STATE(1608), - [sym_generic_type_with_turbofish] = STATE(3521), - [sym_bounded_type] = STATE(1701), - [sym_reference_type] = STATE(1701), - [sym_pointer_type] = STATE(1701), - [sym_never_type] = STATE(1701), - [sym_abstract_type] = STATE(1701), - [sym_dynamic_type] = STATE(1701), - [sym_macro_invocation] = STATE(1701), - [sym_scoped_identifier] = STATE(3264), - [sym_scoped_type_identifier] = STATE(1526), - [sym_line_comment] = STATE(868), - [sym_block_comment] = STATE(868), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3059), - [anon_sym_LPAREN] = ACTIONS(3061), - [anon_sym_LBRACK] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_QMARK] = ACTIONS(3069), - [anon_sym_u8] = ACTIONS(3071), - [anon_sym_i8] = ACTIONS(3071), - [anon_sym_u16] = ACTIONS(3071), - [anon_sym_i16] = ACTIONS(3071), - [anon_sym_u32] = ACTIONS(3071), - [anon_sym_i32] = ACTIONS(3071), - [anon_sym_u64] = ACTIONS(3071), - [anon_sym_i64] = ACTIONS(3071), - [anon_sym_u128] = ACTIONS(3071), - [anon_sym_i128] = ACTIONS(3071), - [anon_sym_isize] = ACTIONS(3071), - [anon_sym_usize] = ACTIONS(3071), - [anon_sym_f32] = ACTIONS(3071), - [anon_sym_f64] = ACTIONS(3071), - [anon_sym_bool] = ACTIONS(3071), - [anon_sym_str] = ACTIONS(3071), - [anon_sym_char] = ACTIONS(3071), - [anon_sym_BANG] = ACTIONS(3073), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3077), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(3079), - [anon_sym_fn] = ACTIONS(3081), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(3083), - [anon_sym_union] = ACTIONS(3085), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(3087), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3091), - [sym_super] = ACTIONS(3091), - [sym_crate] = ACTIONS(3091), - [sym_metavariable] = ACTIONS(3093), - }, - [869] = { - [sym_function_modifiers] = STATE(3473), - [sym_removed_trait_bound] = STATE(1701), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1737), - [sym_bracketed_type] = STATE(3529), - [sym_lifetime] = STATE(3368), - [sym_array_type] = STATE(1701), - [sym_for_lifetimes] = STATE(1613), - [sym_function_type] = STATE(1701), - [sym_tuple_type] = STATE(1701), - [sym_unit_type] = STATE(1701), - [sym_generic_type] = STATE(1608), - [sym_generic_type_with_turbofish] = STATE(3521), - [sym_bounded_type] = STATE(1701), - [sym_reference_type] = STATE(1701), - [sym_pointer_type] = STATE(1701), - [sym_never_type] = STATE(1701), - [sym_abstract_type] = STATE(1701), - [sym_dynamic_type] = STATE(1701), - [sym_macro_invocation] = STATE(1701), - [sym_scoped_identifier] = STATE(3264), - [sym_scoped_type_identifier] = STATE(1526), - [sym_line_comment] = STATE(869), - [sym_block_comment] = STATE(869), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3059), - [anon_sym_LPAREN] = ACTIONS(3061), - [anon_sym_LBRACK] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_QMARK] = ACTIONS(3069), - [anon_sym_u8] = ACTIONS(3071), - [anon_sym_i8] = ACTIONS(3071), - [anon_sym_u16] = ACTIONS(3071), - [anon_sym_i16] = ACTIONS(3071), - [anon_sym_u32] = ACTIONS(3071), - [anon_sym_i32] = ACTIONS(3071), - [anon_sym_u64] = ACTIONS(3071), - [anon_sym_i64] = ACTIONS(3071), - [anon_sym_u128] = ACTIONS(3071), - [anon_sym_i128] = ACTIONS(3071), - [anon_sym_isize] = ACTIONS(3071), - [anon_sym_usize] = ACTIONS(3071), - [anon_sym_f32] = ACTIONS(3071), - [anon_sym_f64] = ACTIONS(3071), - [anon_sym_bool] = ACTIONS(3071), - [anon_sym_str] = ACTIONS(3071), - [anon_sym_char] = ACTIONS(3071), - [anon_sym_BANG] = ACTIONS(3073), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3077), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(3079), - [anon_sym_fn] = ACTIONS(3081), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(3083), - [anon_sym_union] = ACTIONS(3085), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(3087), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3091), - [sym_super] = ACTIONS(3091), - [sym_crate] = ACTIONS(3091), - [sym_metavariable] = ACTIONS(3093), - }, - [870] = { - [sym_function_modifiers] = STATE(3473), - [sym_removed_trait_bound] = STATE(1701), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1738), - [sym_bracketed_type] = STATE(3529), - [sym_lifetime] = STATE(3368), - [sym_array_type] = STATE(1701), - [sym_for_lifetimes] = STATE(1613), - [sym_function_type] = STATE(1701), - [sym_tuple_type] = STATE(1701), - [sym_unit_type] = STATE(1701), - [sym_generic_type] = STATE(1608), - [sym_generic_type_with_turbofish] = STATE(3521), - [sym_bounded_type] = STATE(1701), - [sym_reference_type] = STATE(1701), - [sym_pointer_type] = STATE(1701), - [sym_never_type] = STATE(1701), - [sym_abstract_type] = STATE(1701), - [sym_dynamic_type] = STATE(1701), - [sym_macro_invocation] = STATE(1701), - [sym_scoped_identifier] = STATE(3264), - [sym_scoped_type_identifier] = STATE(1526), - [sym_line_comment] = STATE(870), - [sym_block_comment] = STATE(870), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3059), - [anon_sym_LPAREN] = ACTIONS(3061), - [anon_sym_LBRACK] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_QMARK] = ACTIONS(3069), - [anon_sym_u8] = ACTIONS(3071), - [anon_sym_i8] = ACTIONS(3071), - [anon_sym_u16] = ACTIONS(3071), - [anon_sym_i16] = ACTIONS(3071), - [anon_sym_u32] = ACTIONS(3071), - [anon_sym_i32] = ACTIONS(3071), - [anon_sym_u64] = ACTIONS(3071), - [anon_sym_i64] = ACTIONS(3071), - [anon_sym_u128] = ACTIONS(3071), - [anon_sym_i128] = ACTIONS(3071), - [anon_sym_isize] = ACTIONS(3071), - [anon_sym_usize] = ACTIONS(3071), - [anon_sym_f32] = ACTIONS(3071), - [anon_sym_f64] = ACTIONS(3071), - [anon_sym_bool] = ACTIONS(3071), - [anon_sym_str] = ACTIONS(3071), - [anon_sym_char] = ACTIONS(3071), - [anon_sym_BANG] = ACTIONS(3073), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3077), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(3079), - [anon_sym_fn] = ACTIONS(3081), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(3083), - [anon_sym_union] = ACTIONS(3085), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(3087), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3091), - [sym_super] = ACTIONS(3091), - [sym_crate] = ACTIONS(3091), - [sym_metavariable] = ACTIONS(3093), - }, - [871] = { - [sym_function_modifiers] = STATE(3473), - [sym_removed_trait_bound] = STATE(1701), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1739), - [sym_bracketed_type] = STATE(3529), - [sym_lifetime] = STATE(3368), - [sym_array_type] = STATE(1701), - [sym_for_lifetimes] = STATE(1613), - [sym_function_type] = STATE(1701), - [sym_tuple_type] = STATE(1701), - [sym_unit_type] = STATE(1701), - [sym_generic_type] = STATE(1608), - [sym_generic_type_with_turbofish] = STATE(3521), - [sym_bounded_type] = STATE(1701), - [sym_reference_type] = STATE(1701), - [sym_pointer_type] = STATE(1701), - [sym_never_type] = STATE(1701), - [sym_abstract_type] = STATE(1701), - [sym_dynamic_type] = STATE(1701), - [sym_macro_invocation] = STATE(1701), - [sym_scoped_identifier] = STATE(3264), - [sym_scoped_type_identifier] = STATE(1526), - [sym_line_comment] = STATE(871), - [sym_block_comment] = STATE(871), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3059), - [anon_sym_LPAREN] = ACTIONS(3061), - [anon_sym_LBRACK] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_QMARK] = ACTIONS(3069), - [anon_sym_u8] = ACTIONS(3071), - [anon_sym_i8] = ACTIONS(3071), - [anon_sym_u16] = ACTIONS(3071), - [anon_sym_i16] = ACTIONS(3071), - [anon_sym_u32] = ACTIONS(3071), - [anon_sym_i32] = ACTIONS(3071), - [anon_sym_u64] = ACTIONS(3071), - [anon_sym_i64] = ACTIONS(3071), - [anon_sym_u128] = ACTIONS(3071), - [anon_sym_i128] = ACTIONS(3071), - [anon_sym_isize] = ACTIONS(3071), - [anon_sym_usize] = ACTIONS(3071), - [anon_sym_f32] = ACTIONS(3071), - [anon_sym_f64] = ACTIONS(3071), - [anon_sym_bool] = ACTIONS(3071), - [anon_sym_str] = ACTIONS(3071), - [anon_sym_char] = ACTIONS(3071), - [anon_sym_BANG] = ACTIONS(3073), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3077), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(3079), - [anon_sym_fn] = ACTIONS(3081), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(3083), - [anon_sym_union] = ACTIONS(3085), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(3087), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3091), - [sym_super] = ACTIONS(3091), - [sym_crate] = ACTIONS(3091), - [sym_metavariable] = ACTIONS(3093), - }, - [872] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2184), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), - [sym_line_comment] = STATE(872), - [sym_block_comment] = STATE(872), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), + [876] = { + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2299), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), + [sym_line_comment] = STATE(876), + [sym_block_comment] = STATE(876), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2953), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -99198,21 +99486,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -99220,37 +99508,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [873] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2350), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), - [sym_line_comment] = STATE(873), - [sym_block_comment] = STATE(873), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), + [877] = { + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(3058), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), + [sym_line_comment] = STATE(877), + [sym_block_comment] = STATE(877), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2953), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -99268,21 +99556,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -99290,37 +99578,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [874] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2351), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), - [sym_line_comment] = STATE(874), - [sym_block_comment] = STATE(874), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), + [878] = { + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2189), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), + [sym_line_comment] = STATE(878), + [sym_block_comment] = STATE(878), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2953), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -99338,21 +99626,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -99360,37 +99648,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [875] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2837), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), - [sym_line_comment] = STATE(875), - [sym_block_comment] = STATE(875), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), + [879] = { + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2507), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), + [sym_line_comment] = STATE(879), + [sym_block_comment] = STATE(879), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2953), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -99408,21 +99696,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -99430,37 +99718,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [876] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2863), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), - [sym_line_comment] = STATE(876), - [sym_block_comment] = STATE(876), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), + [880] = { + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2694), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), + [sym_line_comment] = STATE(880), + [sym_block_comment] = STATE(880), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2953), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -99478,21 +99766,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -99500,37 +99788,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [877] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2355), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), - [sym_line_comment] = STATE(877), - [sym_block_comment] = STATE(877), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), + [881] = { + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2320), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), + [sym_line_comment] = STATE(881), + [sym_block_comment] = STATE(881), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2953), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -99548,21 +99836,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -99570,37 +99858,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [878] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2874), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), - [sym_line_comment] = STATE(878), - [sym_block_comment] = STATE(878), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), + [882] = { + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(1974), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), + [sym_line_comment] = STATE(882), + [sym_block_comment] = STATE(882), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2953), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -99618,59 +99906,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), + [sym_self] = ACTIONS(3187), [sym_super] = ACTIONS(1582), [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [879] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2357), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), - [sym_line_comment] = STATE(879), - [sym_block_comment] = STATE(879), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), + [883] = { + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2314), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), + [sym_line_comment] = STATE(883), + [sym_block_comment] = STATE(883), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2953), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -99688,21 +99976,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -99710,107 +99998,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [880] = { - [sym_function_modifiers] = STATE(3338), - [sym_removed_trait_bound] = STATE(1451), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1223), - [sym_bracketed_type] = STATE(3514), - [sym_lifetime] = STATE(3511), - [sym_array_type] = STATE(1451), - [sym_for_lifetimes] = STATE(1592), - [sym_function_type] = STATE(1451), - [sym_tuple_type] = STATE(1451), - [sym_unit_type] = STATE(1451), - [sym_generic_type] = STATE(1078), - [sym_generic_type_with_turbofish] = STATE(3504), - [sym_bounded_type] = STATE(1451), - [sym_reference_type] = STATE(1451), - [sym_pointer_type] = STATE(1451), - [sym_never_type] = STATE(1451), - [sym_abstract_type] = STATE(1451), - [sym_dynamic_type] = STATE(1451), - [sym_macro_invocation] = STATE(1451), - [sym_scoped_identifier] = STATE(3202), - [sym_scoped_type_identifier] = STATE(1028), - [sym_line_comment] = STATE(880), - [sym_block_comment] = STATE(880), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3095), - [anon_sym_LPAREN] = ACTIONS(3097), - [anon_sym_LBRACK] = ACTIONS(3099), - [anon_sym_STAR] = ACTIONS(3103), - [anon_sym_QMARK] = ACTIONS(3105), - [anon_sym_u8] = ACTIONS(3107), - [anon_sym_i8] = ACTIONS(3107), - [anon_sym_u16] = ACTIONS(3107), - [anon_sym_i16] = ACTIONS(3107), - [anon_sym_u32] = ACTIONS(3107), - [anon_sym_i32] = ACTIONS(3107), - [anon_sym_u64] = ACTIONS(3107), - [anon_sym_i64] = ACTIONS(3107), - [anon_sym_u128] = ACTIONS(3107), - [anon_sym_i128] = ACTIONS(3107), - [anon_sym_isize] = ACTIONS(3107), - [anon_sym_usize] = ACTIONS(3107), - [anon_sym_f32] = ACTIONS(3107), - [anon_sym_f64] = ACTIONS(3107), - [anon_sym_bool] = ACTIONS(3107), - [anon_sym_str] = ACTIONS(3107), - [anon_sym_char] = ACTIONS(3107), - [anon_sym_BANG] = ACTIONS(3109), - [anon_sym_AMP] = ACTIONS(3111), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3113), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(3115), - [anon_sym_fn] = ACTIONS(3117), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(3119), - [anon_sym_union] = ACTIONS(3121), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(3123), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3127), - [sym_super] = ACTIONS(3127), - [sym_crate] = ACTIONS(3127), - [sym_metavariable] = ACTIONS(3129), - }, - [881] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2668), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), - [sym_line_comment] = STATE(881), - [sym_block_comment] = STATE(881), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), + [884] = { + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2308), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), + [sym_line_comment] = STATE(884), + [sym_block_comment] = STATE(884), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2953), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -99828,21 +100046,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -99850,37 +100068,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [882] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2896), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), - [sym_line_comment] = STATE(882), - [sym_block_comment] = STATE(882), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), + [885] = { + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2802), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), + [sym_line_comment] = STATE(885), + [sym_block_comment] = STATE(885), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2953), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -99898,21 +100116,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -99920,37 +100138,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [883] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2952), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), - [sym_line_comment] = STATE(883), - [sym_block_comment] = STATE(883), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), + [886] = { + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2759), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), + [sym_line_comment] = STATE(886), + [sym_block_comment] = STATE(886), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2953), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -99968,21 +100186,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -99990,37 +100208,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [884] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2467), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), - [sym_line_comment] = STATE(884), - [sym_block_comment] = STATE(884), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), + [887] = { + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(1974), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), + [sym_line_comment] = STATE(887), + [sym_block_comment] = STATE(887), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2953), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -100038,21 +100256,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -100060,37 +100278,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [885] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2698), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), - [sym_line_comment] = STATE(885), - [sym_block_comment] = STATE(885), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), + [888] = { + [sym_function_modifiers] = STATE(3480), + [sym_removed_trait_bound] = STATE(1674), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(1639), + [sym_bracketed_type] = STATE(3537), + [sym_lifetime] = STATE(3572), + [sym_array_type] = STATE(1674), + [sym_for_lifetimes] = STATE(1623), + [sym_function_type] = STATE(1674), + [sym_tuple_type] = STATE(1674), + [sym_unit_type] = STATE(1674), + [sym_generic_type] = STATE(1591), + [sym_generic_type_with_turbofish] = STATE(3529), + [sym_bounded_type] = STATE(1674), + [sym_reference_type] = STATE(1674), + [sym_pointer_type] = STATE(1674), + [sym_never_type] = STATE(1674), + [sym_abstract_type] = STATE(1674), + [sym_dynamic_type] = STATE(1674), + [sym_macro_invocation] = STATE(1674), + [sym_scoped_identifier] = STATE(3130), + [sym_scoped_type_identifier] = STATE(1516), + [sym_line_comment] = STATE(888), + [sym_block_comment] = STATE(888), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(3051), + [anon_sym_LPAREN] = ACTIONS(3053), + [anon_sym_LBRACK] = ACTIONS(3055), + [anon_sym_STAR] = ACTIONS(3059), + [anon_sym_QMARK] = ACTIONS(3061), + [anon_sym_u8] = ACTIONS(3063), + [anon_sym_i8] = ACTIONS(3063), + [anon_sym_u16] = ACTIONS(3063), + [anon_sym_i16] = ACTIONS(3063), + [anon_sym_u32] = ACTIONS(3063), + [anon_sym_i32] = ACTIONS(3063), + [anon_sym_u64] = ACTIONS(3063), + [anon_sym_i64] = ACTIONS(3063), + [anon_sym_u128] = ACTIONS(3063), + [anon_sym_i128] = ACTIONS(3063), + [anon_sym_isize] = ACTIONS(3063), + [anon_sym_usize] = ACTIONS(3063), + [anon_sym_f32] = ACTIONS(3063), + [anon_sym_f64] = ACTIONS(3063), + [anon_sym_bool] = ACTIONS(3063), + [anon_sym_str] = ACTIONS(3063), + [anon_sym_char] = ACTIONS(3063), + [anon_sym_BANG] = ACTIONS(3065), + [anon_sym_AMP] = ACTIONS(3067), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3069), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), + [anon_sym_default] = ACTIONS(3071), + [anon_sym_fn] = ACTIONS(3073), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(3075), + [anon_sym_union] = ACTIONS(3077), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(3079), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(3083), + [sym_super] = ACTIONS(3083), + [sym_crate] = ACTIONS(3083), + [sym_metavariable] = ACTIONS(3085), + }, + [889] = { + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2387), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), + [sym_line_comment] = STATE(889), + [sym_block_comment] = STATE(889), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2953), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -100108,21 +100396,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -100130,37 +100418,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [886] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2576), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), - [sym_line_comment] = STATE(886), - [sym_block_comment] = STATE(886), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), + [890] = { + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(1983), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), + [sym_line_comment] = STATE(890), + [sym_block_comment] = STATE(890), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2953), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -100178,21 +100466,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -100200,37 +100488,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [887] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2358), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), - [sym_line_comment] = STATE(887), - [sym_block_comment] = STATE(887), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), + [891] = { + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2897), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), + [sym_line_comment] = STATE(891), + [sym_block_comment] = STATE(891), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2953), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -100248,21 +100536,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -100270,37 +100558,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [888] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2359), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), - [sym_line_comment] = STATE(888), - [sym_block_comment] = STATE(888), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), + [892] = { + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2203), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), + [sym_line_comment] = STATE(892), + [sym_block_comment] = STATE(892), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2953), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -100318,21 +100606,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -100340,37 +100628,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [889] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1990), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(1991), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), - [sym_line_comment] = STATE(889), - [sym_block_comment] = STATE(889), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), + [893] = { + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(1996), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), + [sym_line_comment] = STATE(893), + [sym_block_comment] = STATE(893), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2953), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -100388,21 +100676,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2957), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -100410,37 +100698,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [890] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1976), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), - [sym_line_comment] = STATE(890), - [sym_block_comment] = STATE(890), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), + [894] = { + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2826), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), + [sym_line_comment] = STATE(894), + [sym_block_comment] = STATE(894), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2953), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -100458,21 +100746,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -100480,37 +100768,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [891] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2719), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), - [sym_line_comment] = STATE(891), - [sym_block_comment] = STATE(891), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), + [895] = { + [sym_function_modifiers] = STATE(3480), + [sym_removed_trait_bound] = STATE(1674), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(1643), + [sym_bracketed_type] = STATE(3537), + [sym_lifetime] = STATE(3572), + [sym_array_type] = STATE(1674), + [sym_for_lifetimes] = STATE(1623), + [sym_function_type] = STATE(1674), + [sym_tuple_type] = STATE(1674), + [sym_unit_type] = STATE(1674), + [sym_generic_type] = STATE(1591), + [sym_generic_type_with_turbofish] = STATE(3529), + [sym_bounded_type] = STATE(1674), + [sym_reference_type] = STATE(1674), + [sym_pointer_type] = STATE(1674), + [sym_never_type] = STATE(1674), + [sym_abstract_type] = STATE(1674), + [sym_dynamic_type] = STATE(1674), + [sym_macro_invocation] = STATE(1674), + [sym_scoped_identifier] = STATE(3130), + [sym_scoped_type_identifier] = STATE(1516), + [sym_line_comment] = STATE(895), + [sym_block_comment] = STATE(895), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(3051), + [anon_sym_LPAREN] = ACTIONS(3053), + [anon_sym_LBRACK] = ACTIONS(3055), + [anon_sym_STAR] = ACTIONS(3059), + [anon_sym_QMARK] = ACTIONS(3061), + [anon_sym_u8] = ACTIONS(3063), + [anon_sym_i8] = ACTIONS(3063), + [anon_sym_u16] = ACTIONS(3063), + [anon_sym_i16] = ACTIONS(3063), + [anon_sym_u32] = ACTIONS(3063), + [anon_sym_i32] = ACTIONS(3063), + [anon_sym_u64] = ACTIONS(3063), + [anon_sym_i64] = ACTIONS(3063), + [anon_sym_u128] = ACTIONS(3063), + [anon_sym_i128] = ACTIONS(3063), + [anon_sym_isize] = ACTIONS(3063), + [anon_sym_usize] = ACTIONS(3063), + [anon_sym_f32] = ACTIONS(3063), + [anon_sym_f64] = ACTIONS(3063), + [anon_sym_bool] = ACTIONS(3063), + [anon_sym_str] = ACTIONS(3063), + [anon_sym_char] = ACTIONS(3063), + [anon_sym_BANG] = ACTIONS(3065), + [anon_sym_AMP] = ACTIONS(3067), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3069), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), + [anon_sym_default] = ACTIONS(3071), + [anon_sym_fn] = ACTIONS(3073), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(3075), + [anon_sym_union] = ACTIONS(3077), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(3079), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(3083), + [sym_super] = ACTIONS(3083), + [sym_crate] = ACTIONS(3083), + [sym_metavariable] = ACTIONS(3085), + }, + [896] = { + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2886), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), + [sym_line_comment] = STATE(896), + [sym_block_comment] = STATE(896), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2953), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -100528,21 +100886,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -100550,37 +100908,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [892] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2225), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), - [sym_line_comment] = STATE(892), - [sym_block_comment] = STATE(892), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), + [897] = { + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2633), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), + [sym_line_comment] = STATE(897), + [sym_block_comment] = STATE(897), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2953), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -100598,21 +100956,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -100620,107 +100978,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [893] = { - [sym_function_modifiers] = STATE(3338), - [sym_removed_trait_bound] = STATE(1451), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1292), - [sym_bracketed_type] = STATE(3514), - [sym_lifetime] = STATE(3511), - [sym_array_type] = STATE(1451), - [sym_for_lifetimes] = STATE(1592), - [sym_function_type] = STATE(1451), - [sym_tuple_type] = STATE(1451), - [sym_unit_type] = STATE(1451), - [sym_generic_type] = STATE(1078), - [sym_generic_type_with_turbofish] = STATE(3504), - [sym_bounded_type] = STATE(1451), - [sym_reference_type] = STATE(1451), - [sym_pointer_type] = STATE(1451), - [sym_never_type] = STATE(1451), - [sym_abstract_type] = STATE(1451), - [sym_dynamic_type] = STATE(1451), - [sym_macro_invocation] = STATE(1451), - [sym_scoped_identifier] = STATE(3202), - [sym_scoped_type_identifier] = STATE(1028), - [sym_line_comment] = STATE(893), - [sym_block_comment] = STATE(893), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3095), - [anon_sym_LPAREN] = ACTIONS(3097), - [anon_sym_LBRACK] = ACTIONS(3099), - [anon_sym_STAR] = ACTIONS(3103), - [anon_sym_QMARK] = ACTIONS(3105), - [anon_sym_u8] = ACTIONS(3107), - [anon_sym_i8] = ACTIONS(3107), - [anon_sym_u16] = ACTIONS(3107), - [anon_sym_i16] = ACTIONS(3107), - [anon_sym_u32] = ACTIONS(3107), - [anon_sym_i32] = ACTIONS(3107), - [anon_sym_u64] = ACTIONS(3107), - [anon_sym_i64] = ACTIONS(3107), - [anon_sym_u128] = ACTIONS(3107), - [anon_sym_i128] = ACTIONS(3107), - [anon_sym_isize] = ACTIONS(3107), - [anon_sym_usize] = ACTIONS(3107), - [anon_sym_f32] = ACTIONS(3107), - [anon_sym_f64] = ACTIONS(3107), - [anon_sym_bool] = ACTIONS(3107), - [anon_sym_str] = ACTIONS(3107), - [anon_sym_char] = ACTIONS(3107), - [anon_sym_BANG] = ACTIONS(3109), - [anon_sym_AMP] = ACTIONS(3111), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3113), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(3115), - [anon_sym_fn] = ACTIONS(3117), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(3119), - [anon_sym_union] = ACTIONS(3121), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(3123), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3127), - [sym_super] = ACTIONS(3127), - [sym_crate] = ACTIONS(3127), - [sym_metavariable] = ACTIONS(3129), - }, - [894] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2565), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), - [sym_line_comment] = STATE(894), - [sym_block_comment] = STATE(894), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), + [898] = { + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2706), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), + [sym_line_comment] = STATE(898), + [sym_block_comment] = STATE(898), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2953), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -100738,21 +101026,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -100760,317 +101048,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [895] = { - [sym_function_modifiers] = STATE(3338), - [sym_removed_trait_bound] = STATE(1451), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1294), - [sym_bracketed_type] = STATE(3514), - [sym_lifetime] = STATE(3511), - [sym_array_type] = STATE(1451), - [sym_for_lifetimes] = STATE(1592), - [sym_function_type] = STATE(1451), - [sym_tuple_type] = STATE(1451), - [sym_unit_type] = STATE(1451), - [sym_generic_type] = STATE(1078), - [sym_generic_type_with_turbofish] = STATE(3504), - [sym_bounded_type] = STATE(1451), - [sym_reference_type] = STATE(1451), - [sym_pointer_type] = STATE(1451), - [sym_never_type] = STATE(1451), - [sym_abstract_type] = STATE(1451), - [sym_dynamic_type] = STATE(1451), - [sym_macro_invocation] = STATE(1451), - [sym_scoped_identifier] = STATE(3202), - [sym_scoped_type_identifier] = STATE(1028), - [sym_line_comment] = STATE(895), - [sym_block_comment] = STATE(895), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3095), - [anon_sym_LPAREN] = ACTIONS(3097), - [anon_sym_LBRACK] = ACTIONS(3099), - [anon_sym_STAR] = ACTIONS(3103), - [anon_sym_QMARK] = ACTIONS(3105), - [anon_sym_u8] = ACTIONS(3107), - [anon_sym_i8] = ACTIONS(3107), - [anon_sym_u16] = ACTIONS(3107), - [anon_sym_i16] = ACTIONS(3107), - [anon_sym_u32] = ACTIONS(3107), - [anon_sym_i32] = ACTIONS(3107), - [anon_sym_u64] = ACTIONS(3107), - [anon_sym_i64] = ACTIONS(3107), - [anon_sym_u128] = ACTIONS(3107), - [anon_sym_i128] = ACTIONS(3107), - [anon_sym_isize] = ACTIONS(3107), - [anon_sym_usize] = ACTIONS(3107), - [anon_sym_f32] = ACTIONS(3107), - [anon_sym_f64] = ACTIONS(3107), - [anon_sym_bool] = ACTIONS(3107), - [anon_sym_str] = ACTIONS(3107), - [anon_sym_char] = ACTIONS(3107), - [anon_sym_BANG] = ACTIONS(3109), - [anon_sym_AMP] = ACTIONS(3111), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3113), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(3115), - [anon_sym_fn] = ACTIONS(3117), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(3119), - [anon_sym_union] = ACTIONS(3121), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(3123), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3127), - [sym_super] = ACTIONS(3127), - [sym_crate] = ACTIONS(3127), - [sym_metavariable] = ACTIONS(3129), - }, - [896] = { - [sym_function_modifiers] = STATE(3338), - [sym_removed_trait_bound] = STATE(1451), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1225), - [sym_bracketed_type] = STATE(3514), - [sym_lifetime] = STATE(3511), - [sym_array_type] = STATE(1451), - [sym_for_lifetimes] = STATE(1592), - [sym_function_type] = STATE(1451), - [sym_tuple_type] = STATE(1451), - [sym_unit_type] = STATE(1451), - [sym_generic_type] = STATE(1078), - [sym_generic_type_with_turbofish] = STATE(3504), - [sym_bounded_type] = STATE(1451), - [sym_reference_type] = STATE(1451), - [sym_pointer_type] = STATE(1451), - [sym_never_type] = STATE(1451), - [sym_abstract_type] = STATE(1451), - [sym_dynamic_type] = STATE(1451), - [sym_macro_invocation] = STATE(1451), - [sym_scoped_identifier] = STATE(3202), - [sym_scoped_type_identifier] = STATE(1028), - [sym_line_comment] = STATE(896), - [sym_block_comment] = STATE(896), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3095), - [anon_sym_LPAREN] = ACTIONS(3097), - [anon_sym_LBRACK] = ACTIONS(3099), - [anon_sym_STAR] = ACTIONS(3103), - [anon_sym_QMARK] = ACTIONS(3105), - [anon_sym_u8] = ACTIONS(3107), - [anon_sym_i8] = ACTIONS(3107), - [anon_sym_u16] = ACTIONS(3107), - [anon_sym_i16] = ACTIONS(3107), - [anon_sym_u32] = ACTIONS(3107), - [anon_sym_i32] = ACTIONS(3107), - [anon_sym_u64] = ACTIONS(3107), - [anon_sym_i64] = ACTIONS(3107), - [anon_sym_u128] = ACTIONS(3107), - [anon_sym_i128] = ACTIONS(3107), - [anon_sym_isize] = ACTIONS(3107), - [anon_sym_usize] = ACTIONS(3107), - [anon_sym_f32] = ACTIONS(3107), - [anon_sym_f64] = ACTIONS(3107), - [anon_sym_bool] = ACTIONS(3107), - [anon_sym_str] = ACTIONS(3107), - [anon_sym_char] = ACTIONS(3107), - [anon_sym_BANG] = ACTIONS(3109), - [anon_sym_AMP] = ACTIONS(3111), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3113), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(3115), - [anon_sym_fn] = ACTIONS(3117), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(3119), - [anon_sym_union] = ACTIONS(3121), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(3123), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3127), - [sym_super] = ACTIONS(3127), - [sym_crate] = ACTIONS(3127), - [sym_metavariable] = ACTIONS(3129), - }, - [897] = { - [sym_function_modifiers] = STATE(3338), - [sym_removed_trait_bound] = STATE(1451), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1210), - [sym_bracketed_type] = STATE(3514), - [sym_lifetime] = STATE(3511), - [sym_array_type] = STATE(1451), - [sym_for_lifetimes] = STATE(1592), - [sym_function_type] = STATE(1451), - [sym_tuple_type] = STATE(1451), - [sym_unit_type] = STATE(1451), - [sym_generic_type] = STATE(1078), - [sym_generic_type_with_turbofish] = STATE(3504), - [sym_bounded_type] = STATE(1451), - [sym_reference_type] = STATE(1451), - [sym_pointer_type] = STATE(1451), - [sym_never_type] = STATE(1451), - [sym_abstract_type] = STATE(1451), - [sym_dynamic_type] = STATE(1451), - [sym_macro_invocation] = STATE(1451), - [sym_scoped_identifier] = STATE(3202), - [sym_scoped_type_identifier] = STATE(1028), - [sym_line_comment] = STATE(897), - [sym_block_comment] = STATE(897), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3095), - [anon_sym_LPAREN] = ACTIONS(3097), - [anon_sym_LBRACK] = ACTIONS(3099), - [anon_sym_STAR] = ACTIONS(3103), - [anon_sym_QMARK] = ACTIONS(3105), - [anon_sym_u8] = ACTIONS(3107), - [anon_sym_i8] = ACTIONS(3107), - [anon_sym_u16] = ACTIONS(3107), - [anon_sym_i16] = ACTIONS(3107), - [anon_sym_u32] = ACTIONS(3107), - [anon_sym_i32] = ACTIONS(3107), - [anon_sym_u64] = ACTIONS(3107), - [anon_sym_i64] = ACTIONS(3107), - [anon_sym_u128] = ACTIONS(3107), - [anon_sym_i128] = ACTIONS(3107), - [anon_sym_isize] = ACTIONS(3107), - [anon_sym_usize] = ACTIONS(3107), - [anon_sym_f32] = ACTIONS(3107), - [anon_sym_f64] = ACTIONS(3107), - [anon_sym_bool] = ACTIONS(3107), - [anon_sym_str] = ACTIONS(3107), - [anon_sym_char] = ACTIONS(3107), - [anon_sym_BANG] = ACTIONS(3109), - [anon_sym_AMP] = ACTIONS(3111), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3113), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(3115), - [anon_sym_fn] = ACTIONS(3117), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(3119), - [anon_sym_union] = ACTIONS(3121), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(3123), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3127), - [sym_super] = ACTIONS(3127), - [sym_crate] = ACTIONS(3127), - [sym_metavariable] = ACTIONS(3129), - }, - [898] = { - [sym_function_modifiers] = STATE(3473), - [sym_removed_trait_bound] = STATE(1701), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1667), - [sym_bracketed_type] = STATE(3529), - [sym_lifetime] = STATE(3368), - [sym_array_type] = STATE(1701), - [sym_for_lifetimes] = STATE(1613), - [sym_function_type] = STATE(1701), - [sym_tuple_type] = STATE(1701), - [sym_unit_type] = STATE(1701), - [sym_generic_type] = STATE(1608), - [sym_generic_type_with_turbofish] = STATE(3521), - [sym_bounded_type] = STATE(1701), - [sym_reference_type] = STATE(1701), - [sym_pointer_type] = STATE(1701), - [sym_never_type] = STATE(1701), - [sym_abstract_type] = STATE(1701), - [sym_dynamic_type] = STATE(1701), - [sym_macro_invocation] = STATE(1701), - [sym_scoped_identifier] = STATE(3264), - [sym_scoped_type_identifier] = STATE(1526), - [sym_line_comment] = STATE(898), - [sym_block_comment] = STATE(898), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3059), - [anon_sym_LPAREN] = ACTIONS(3061), - [anon_sym_LBRACK] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_QMARK] = ACTIONS(3069), - [anon_sym_u8] = ACTIONS(3071), - [anon_sym_i8] = ACTIONS(3071), - [anon_sym_u16] = ACTIONS(3071), - [anon_sym_i16] = ACTIONS(3071), - [anon_sym_u32] = ACTIONS(3071), - [anon_sym_i32] = ACTIONS(3071), - [anon_sym_u64] = ACTIONS(3071), - [anon_sym_i64] = ACTIONS(3071), - [anon_sym_u128] = ACTIONS(3071), - [anon_sym_i128] = ACTIONS(3071), - [anon_sym_isize] = ACTIONS(3071), - [anon_sym_usize] = ACTIONS(3071), - [anon_sym_f32] = ACTIONS(3071), - [anon_sym_f64] = ACTIONS(3071), - [anon_sym_bool] = ACTIONS(3071), - [anon_sym_str] = ACTIONS(3071), - [anon_sym_char] = ACTIONS(3071), - [anon_sym_BANG] = ACTIONS(3073), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3077), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(3079), - [anon_sym_fn] = ACTIONS(3081), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(3083), - [anon_sym_union] = ACTIONS(3085), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(3087), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3091), - [sym_super] = ACTIONS(3091), - [sym_crate] = ACTIONS(3091), - [sym_metavariable] = ACTIONS(3093), - }, [899] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(3018), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(3022), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), [sym_line_comment] = STATE(899), [sym_block_comment] = STATE(899), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2953), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -101088,21 +101096,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -101111,106 +101119,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1584), }, [900] = { - [sym_function_modifiers] = STATE(3338), - [sym_removed_trait_bound] = STATE(1451), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1298), - [sym_bracketed_type] = STATE(3514), - [sym_lifetime] = STATE(3511), - [sym_array_type] = STATE(1451), - [sym_for_lifetimes] = STATE(1592), - [sym_function_type] = STATE(1451), - [sym_tuple_type] = STATE(1451), - [sym_unit_type] = STATE(1451), - [sym_generic_type] = STATE(1078), - [sym_generic_type_with_turbofish] = STATE(3504), - [sym_bounded_type] = STATE(1451), - [sym_reference_type] = STATE(1451), - [sym_pointer_type] = STATE(1451), - [sym_never_type] = STATE(1451), - [sym_abstract_type] = STATE(1451), - [sym_dynamic_type] = STATE(1451), - [sym_macro_invocation] = STATE(1451), - [sym_scoped_identifier] = STATE(3202), - [sym_scoped_type_identifier] = STATE(1028), + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(1995), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), [sym_line_comment] = STATE(900), [sym_block_comment] = STATE(900), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3095), - [anon_sym_LPAREN] = ACTIONS(3097), - [anon_sym_LBRACK] = ACTIONS(3099), - [anon_sym_STAR] = ACTIONS(3103), - [anon_sym_QMARK] = ACTIONS(3105), - [anon_sym_u8] = ACTIONS(3107), - [anon_sym_i8] = ACTIONS(3107), - [anon_sym_u16] = ACTIONS(3107), - [anon_sym_i16] = ACTIONS(3107), - [anon_sym_u32] = ACTIONS(3107), - [anon_sym_i32] = ACTIONS(3107), - [anon_sym_u64] = ACTIONS(3107), - [anon_sym_i64] = ACTIONS(3107), - [anon_sym_u128] = ACTIONS(3107), - [anon_sym_i128] = ACTIONS(3107), - [anon_sym_isize] = ACTIONS(3107), - [anon_sym_usize] = ACTIONS(3107), - [anon_sym_f32] = ACTIONS(3107), - [anon_sym_f64] = ACTIONS(3107), - [anon_sym_bool] = ACTIONS(3107), - [anon_sym_str] = ACTIONS(3107), - [anon_sym_char] = ACTIONS(3107), - [anon_sym_BANG] = ACTIONS(3109), - [anon_sym_AMP] = ACTIONS(3111), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3113), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(3115), - [anon_sym_fn] = ACTIONS(3117), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(3119), - [anon_sym_union] = ACTIONS(3121), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(3123), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3127), - [sym_super] = ACTIONS(3127), - [sym_crate] = ACTIONS(3127), - [sym_metavariable] = ACTIONS(3129), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2953), + [anon_sym_LPAREN] = ACTIONS(1560), + [anon_sym_LBRACK] = ACTIONS(1562), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), + [anon_sym_u8] = ACTIONS(1566), + [anon_sym_i8] = ACTIONS(1566), + [anon_sym_u16] = ACTIONS(1566), + [anon_sym_i16] = ACTIONS(1566), + [anon_sym_u32] = ACTIONS(1566), + [anon_sym_i32] = ACTIONS(1566), + [anon_sym_u64] = ACTIONS(1566), + [anon_sym_i64] = ACTIONS(1566), + [anon_sym_u128] = ACTIONS(1566), + [anon_sym_i128] = ACTIONS(1566), + [anon_sym_isize] = ACTIONS(1566), + [anon_sym_usize] = ACTIONS(1566), + [anon_sym_f32] = ACTIONS(1566), + [anon_sym_f64] = ACTIONS(1566), + [anon_sym_bool] = ACTIONS(1566), + [anon_sym_str] = ACTIONS(1566), + [anon_sym_char] = ACTIONS(1566), + [anon_sym_BANG] = ACTIONS(1276), + [anon_sym_AMP] = ACTIONS(1568), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1572), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), + [anon_sym_default] = ACTIONS(1576), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1578), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1582), + [sym_super] = ACTIONS(1582), + [sym_crate] = ACTIONS(1582), + [sym_metavariable] = ACTIONS(1584), }, [901] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(3059), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2296), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(2294), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(2165), [sym_line_comment] = STATE(901), [sym_block_comment] = STATE(901), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(3189), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -101228,21 +101236,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(3191), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -101251,36 +101259,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1584), }, [902] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(3061), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2186), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), [sym_line_comment] = STATE(902), [sym_block_comment] = STATE(902), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2953), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -101298,21 +101306,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -101321,36 +101329,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1584), }, [903] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(3015), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2944), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), [sym_line_comment] = STATE(903), [sym_block_comment] = STATE(903), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2953), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -101368,21 +101376,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -101391,36 +101399,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1584), }, [904] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2506), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2377), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), [sym_line_comment] = STATE(904), [sym_block_comment] = STATE(904), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2953), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -101438,21 +101446,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -101461,36 +101469,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1584), }, [905] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1990), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(1991), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(1967), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(1993), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), [sym_line_comment] = STATE(905), [sym_block_comment] = STATE(905), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2953), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -101508,21 +101516,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -101531,36 +101539,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1584), }, [906] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(3277), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2210), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), [sym_line_comment] = STATE(906), [sym_block_comment] = STATE(906), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2953), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -101578,21 +101586,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -101601,176 +101609,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1584), }, [907] = { - [sym_function_modifiers] = STATE(3338), - [sym_removed_trait_bound] = STATE(1451), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1305), - [sym_bracketed_type] = STATE(3514), - [sym_lifetime] = STATE(3511), - [sym_array_type] = STATE(1451), - [sym_for_lifetimes] = STATE(1592), - [sym_function_type] = STATE(1451), - [sym_tuple_type] = STATE(1451), - [sym_unit_type] = STATE(1451), - [sym_generic_type] = STATE(1078), - [sym_generic_type_with_turbofish] = STATE(3504), - [sym_bounded_type] = STATE(1451), - [sym_reference_type] = STATE(1451), - [sym_pointer_type] = STATE(1451), - [sym_never_type] = STATE(1451), - [sym_abstract_type] = STATE(1451), - [sym_dynamic_type] = STATE(1451), - [sym_macro_invocation] = STATE(1451), - [sym_scoped_identifier] = STATE(3202), - [sym_scoped_type_identifier] = STATE(1028), + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2551), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), [sym_line_comment] = STATE(907), [sym_block_comment] = STATE(907), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3095), - [anon_sym_LPAREN] = ACTIONS(3097), - [anon_sym_LBRACK] = ACTIONS(3099), - [anon_sym_STAR] = ACTIONS(3103), - [anon_sym_QMARK] = ACTIONS(3105), - [anon_sym_u8] = ACTIONS(3107), - [anon_sym_i8] = ACTIONS(3107), - [anon_sym_u16] = ACTIONS(3107), - [anon_sym_i16] = ACTIONS(3107), - [anon_sym_u32] = ACTIONS(3107), - [anon_sym_i32] = ACTIONS(3107), - [anon_sym_u64] = ACTIONS(3107), - [anon_sym_i64] = ACTIONS(3107), - [anon_sym_u128] = ACTIONS(3107), - [anon_sym_i128] = ACTIONS(3107), - [anon_sym_isize] = ACTIONS(3107), - [anon_sym_usize] = ACTIONS(3107), - [anon_sym_f32] = ACTIONS(3107), - [anon_sym_f64] = ACTIONS(3107), - [anon_sym_bool] = ACTIONS(3107), - [anon_sym_str] = ACTIONS(3107), - [anon_sym_char] = ACTIONS(3107), - [anon_sym_BANG] = ACTIONS(3109), - [anon_sym_AMP] = ACTIONS(3111), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3113), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(3115), - [anon_sym_fn] = ACTIONS(3117), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(3119), - [anon_sym_union] = ACTIONS(3121), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(3123), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3127), - [sym_super] = ACTIONS(3127), - [sym_crate] = ACTIONS(3127), - [sym_metavariable] = ACTIONS(3129), - }, - [908] = { - [sym_line_comment] = STATE(908), - [sym_block_comment] = STATE(908), - [sym_identifier] = ACTIONS(2412), - [anon_sym_LPAREN] = ACTIONS(2410), - [anon_sym_LBRACK] = ACTIONS(2410), - [anon_sym_RBRACK] = ACTIONS(2410), - [anon_sym_LBRACE] = 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__] = ACTIONS(2412), - [anon_sym_DOT_DOT] = ACTIONS(2410), - [anon_sym_COMMA] = 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_for] = ACTIONS(2412), - [anon_sym_if] = ACTIONS(2412), - [anon_sym_loop] = ACTIONS(2412), - [anon_sym_match] = ACTIONS(2412), - [anon_sym_return] = ACTIONS(2412), - [anon_sym_static] = ACTIONS(2412), - [anon_sym_union] = ACTIONS(2412), - [anon_sym_unsafe] = ACTIONS(2412), - [anon_sym_while] = ACTIONS(2412), - [anon_sym_ref] = ACTIONS(2412), - [sym_mutable_specifier] = 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(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [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), - }, - [909] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2574), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), - [sym_line_comment] = STATE(909), - [sym_block_comment] = STATE(909), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2953), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -101788,21 +101656,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -101810,37 +101678,177 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, + [908] = { + [sym_function_modifiers] = STATE(3480), + [sym_removed_trait_bound] = STATE(1674), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(1718), + [sym_bracketed_type] = STATE(3537), + [sym_lifetime] = STATE(3572), + [sym_array_type] = STATE(1674), + [sym_for_lifetimes] = STATE(1623), + [sym_function_type] = STATE(1674), + [sym_tuple_type] = STATE(1674), + [sym_unit_type] = STATE(1674), + [sym_generic_type] = STATE(1591), + [sym_generic_type_with_turbofish] = STATE(3529), + [sym_bounded_type] = STATE(1674), + [sym_reference_type] = STATE(1674), + [sym_pointer_type] = STATE(1674), + [sym_never_type] = STATE(1674), + [sym_abstract_type] = STATE(1674), + [sym_dynamic_type] = STATE(1674), + [sym_macro_invocation] = STATE(1674), + [sym_scoped_identifier] = STATE(3130), + [sym_scoped_type_identifier] = STATE(1516), + [sym_line_comment] = STATE(908), + [sym_block_comment] = STATE(908), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(3051), + [anon_sym_LPAREN] = ACTIONS(3053), + [anon_sym_LBRACK] = ACTIONS(3055), + [anon_sym_STAR] = ACTIONS(3059), + [anon_sym_QMARK] = ACTIONS(3061), + [anon_sym_u8] = ACTIONS(3063), + [anon_sym_i8] = ACTIONS(3063), + [anon_sym_u16] = ACTIONS(3063), + [anon_sym_i16] = ACTIONS(3063), + [anon_sym_u32] = ACTIONS(3063), + [anon_sym_i32] = ACTIONS(3063), + [anon_sym_u64] = ACTIONS(3063), + [anon_sym_i64] = ACTIONS(3063), + [anon_sym_u128] = ACTIONS(3063), + [anon_sym_i128] = ACTIONS(3063), + [anon_sym_isize] = ACTIONS(3063), + [anon_sym_usize] = ACTIONS(3063), + [anon_sym_f32] = ACTIONS(3063), + [anon_sym_f64] = ACTIONS(3063), + [anon_sym_bool] = ACTIONS(3063), + [anon_sym_str] = ACTIONS(3063), + [anon_sym_char] = ACTIONS(3063), + [anon_sym_BANG] = ACTIONS(3065), + [anon_sym_AMP] = ACTIONS(3067), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3069), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), + [anon_sym_default] = ACTIONS(3071), + [anon_sym_fn] = ACTIONS(3073), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(3075), + [anon_sym_union] = ACTIONS(3077), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(3079), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(3083), + [sym_super] = ACTIONS(3083), + [sym_crate] = ACTIONS(3083), + [sym_metavariable] = ACTIONS(3085), + }, + [909] = { + [sym_function_modifiers] = STATE(3480), + [sym_removed_trait_bound] = STATE(1674), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(1660), + [sym_bracketed_type] = STATE(3537), + [sym_lifetime] = STATE(3572), + [sym_array_type] = STATE(1674), + [sym_for_lifetimes] = STATE(1623), + [sym_function_type] = STATE(1674), + [sym_tuple_type] = STATE(1674), + [sym_unit_type] = STATE(1674), + [sym_generic_type] = STATE(1591), + [sym_generic_type_with_turbofish] = STATE(3529), + [sym_bounded_type] = STATE(1674), + [sym_reference_type] = STATE(1674), + [sym_pointer_type] = STATE(1674), + [sym_never_type] = STATE(1674), + [sym_abstract_type] = STATE(1674), + [sym_dynamic_type] = STATE(1674), + [sym_macro_invocation] = STATE(1674), + [sym_scoped_identifier] = STATE(3130), + [sym_scoped_type_identifier] = STATE(1516), + [sym_line_comment] = STATE(909), + [sym_block_comment] = STATE(909), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(3051), + [anon_sym_LPAREN] = ACTIONS(3053), + [anon_sym_LBRACK] = ACTIONS(3055), + [anon_sym_STAR] = ACTIONS(3059), + [anon_sym_QMARK] = ACTIONS(3061), + [anon_sym_u8] = ACTIONS(3063), + [anon_sym_i8] = ACTIONS(3063), + [anon_sym_u16] = ACTIONS(3063), + [anon_sym_i16] = ACTIONS(3063), + [anon_sym_u32] = ACTIONS(3063), + [anon_sym_i32] = ACTIONS(3063), + [anon_sym_u64] = ACTIONS(3063), + [anon_sym_i64] = ACTIONS(3063), + [anon_sym_u128] = ACTIONS(3063), + [anon_sym_i128] = ACTIONS(3063), + [anon_sym_isize] = ACTIONS(3063), + [anon_sym_usize] = ACTIONS(3063), + [anon_sym_f32] = ACTIONS(3063), + [anon_sym_f64] = ACTIONS(3063), + [anon_sym_bool] = ACTIONS(3063), + [anon_sym_str] = ACTIONS(3063), + [anon_sym_char] = ACTIONS(3063), + [anon_sym_BANG] = ACTIONS(3065), + [anon_sym_AMP] = ACTIONS(3067), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3069), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), + [anon_sym_default] = ACTIONS(3071), + [anon_sym_fn] = ACTIONS(3073), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(3075), + [anon_sym_union] = ACTIONS(3077), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(3079), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(3083), + [sym_super] = ACTIONS(3083), + [sym_crate] = ACTIONS(3083), + [sym_metavariable] = ACTIONS(3085), + }, [910] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2987), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(1966), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), [sym_line_comment] = STATE(910), [sym_block_comment] = STATE(910), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2953), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -101858,21 +101866,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -101881,36 +101889,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1584), }, [911] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(3166), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2458), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), [sym_line_comment] = STATE(911), [sym_block_comment] = STATE(911), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2953), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -101928,21 +101936,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -101951,36 +101959,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1584), }, [912] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(3048), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(1994), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), [sym_line_comment] = STATE(912), [sym_block_comment] = STATE(912), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2953), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -101998,21 +102006,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -102021,106 +102029,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1584), }, [913] = { - [sym_function_modifiers] = STATE(3338), - [sym_removed_trait_bound] = STATE(1451), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1309), - [sym_bracketed_type] = STATE(3514), - [sym_lifetime] = STATE(3511), - [sym_array_type] = STATE(1451), - [sym_for_lifetimes] = STATE(1592), - [sym_function_type] = STATE(1451), - [sym_tuple_type] = STATE(1451), - [sym_unit_type] = STATE(1451), - [sym_generic_type] = STATE(1078), - [sym_generic_type_with_turbofish] = STATE(3504), - [sym_bounded_type] = STATE(1451), - [sym_reference_type] = STATE(1451), - [sym_pointer_type] = STATE(1451), - [sym_never_type] = STATE(1451), - [sym_abstract_type] = STATE(1451), - [sym_dynamic_type] = STATE(1451), - [sym_macro_invocation] = STATE(1451), - [sym_scoped_identifier] = STATE(3202), - [sym_scoped_type_identifier] = STATE(1028), + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2351), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), [sym_line_comment] = STATE(913), [sym_block_comment] = STATE(913), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3095), - [anon_sym_LPAREN] = ACTIONS(3097), - [anon_sym_LBRACK] = ACTIONS(3099), - [anon_sym_STAR] = ACTIONS(3103), - [anon_sym_QMARK] = ACTIONS(3105), - [anon_sym_u8] = ACTIONS(3107), - [anon_sym_i8] = ACTIONS(3107), - [anon_sym_u16] = ACTIONS(3107), - [anon_sym_i16] = ACTIONS(3107), - [anon_sym_u32] = ACTIONS(3107), - [anon_sym_i32] = ACTIONS(3107), - [anon_sym_u64] = ACTIONS(3107), - [anon_sym_i64] = ACTIONS(3107), - [anon_sym_u128] = ACTIONS(3107), - [anon_sym_i128] = ACTIONS(3107), - [anon_sym_isize] = ACTIONS(3107), - [anon_sym_usize] = ACTIONS(3107), - [anon_sym_f32] = ACTIONS(3107), - [anon_sym_f64] = ACTIONS(3107), - [anon_sym_bool] = ACTIONS(3107), - [anon_sym_str] = ACTIONS(3107), - [anon_sym_char] = ACTIONS(3107), - [anon_sym_BANG] = ACTIONS(3109), - [anon_sym_AMP] = ACTIONS(3111), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3113), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(3115), - [anon_sym_fn] = ACTIONS(3117), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(3119), - [anon_sym_union] = ACTIONS(3121), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(3123), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3127), - [sym_super] = ACTIONS(3127), - [sym_crate] = ACTIONS(3127), - [sym_metavariable] = ACTIONS(3129), - }, - [914] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2394), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), - [sym_line_comment] = STATE(914), - [sym_block_comment] = STATE(914), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2953), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -102138,21 +102076,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -102160,37 +102098,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [915] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2934), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), - [sym_line_comment] = STATE(915), - [sym_block_comment] = STATE(915), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), + [914] = { + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2813), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), + [sym_line_comment] = STATE(914), + [sym_block_comment] = STATE(914), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2953), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -102208,21 +102146,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -102230,37 +102168,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, + [915] = { + [sym_function_modifiers] = STATE(3480), + [sym_removed_trait_bound] = STATE(1674), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(1686), + [sym_bracketed_type] = STATE(3537), + [sym_lifetime] = STATE(3572), + [sym_array_type] = STATE(1674), + [sym_for_lifetimes] = STATE(1623), + [sym_function_type] = STATE(1674), + [sym_tuple_type] = STATE(1674), + [sym_unit_type] = STATE(1674), + [sym_generic_type] = STATE(1591), + [sym_generic_type_with_turbofish] = STATE(3529), + [sym_bounded_type] = STATE(1674), + [sym_reference_type] = STATE(1674), + [sym_pointer_type] = STATE(1674), + [sym_never_type] = STATE(1674), + [sym_abstract_type] = STATE(1674), + [sym_dynamic_type] = STATE(1674), + [sym_macro_invocation] = STATE(1674), + [sym_scoped_identifier] = STATE(3130), + [sym_scoped_type_identifier] = STATE(1516), + [sym_line_comment] = STATE(915), + [sym_block_comment] = STATE(915), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(3051), + [anon_sym_LPAREN] = ACTIONS(3053), + [anon_sym_LBRACK] = ACTIONS(3055), + [anon_sym_STAR] = ACTIONS(3059), + [anon_sym_QMARK] = ACTIONS(3061), + [anon_sym_u8] = ACTIONS(3063), + [anon_sym_i8] = ACTIONS(3063), + [anon_sym_u16] = ACTIONS(3063), + [anon_sym_i16] = ACTIONS(3063), + [anon_sym_u32] = ACTIONS(3063), + [anon_sym_i32] = ACTIONS(3063), + [anon_sym_u64] = ACTIONS(3063), + [anon_sym_i64] = ACTIONS(3063), + [anon_sym_u128] = ACTIONS(3063), + [anon_sym_i128] = ACTIONS(3063), + [anon_sym_isize] = ACTIONS(3063), + [anon_sym_usize] = ACTIONS(3063), + [anon_sym_f32] = ACTIONS(3063), + [anon_sym_f64] = ACTIONS(3063), + [anon_sym_bool] = ACTIONS(3063), + [anon_sym_str] = ACTIONS(3063), + [anon_sym_char] = ACTIONS(3063), + [anon_sym_BANG] = ACTIONS(3065), + [anon_sym_AMP] = ACTIONS(3067), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3069), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), + [anon_sym_default] = ACTIONS(3071), + [anon_sym_fn] = ACTIONS(3073), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(3075), + [anon_sym_union] = ACTIONS(3077), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(3079), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(3083), + [sym_super] = ACTIONS(3083), + [sym_crate] = ACTIONS(3083), + [sym_metavariable] = ACTIONS(3085), + }, [916] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2799), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(1984), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), [sym_line_comment] = STATE(916), [sym_block_comment] = STATE(916), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2953), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -102278,21 +102286,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -102301,176 +102309,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1584), }, [917] = { - [sym_function_modifiers] = STATE(3338), - [sym_removed_trait_bound] = STATE(1451), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1388), - [sym_bracketed_type] = STATE(3514), - [sym_lifetime] = STATE(3511), - [sym_array_type] = STATE(1451), - [sym_for_lifetimes] = STATE(1592), - [sym_function_type] = STATE(1451), - [sym_tuple_type] = STATE(1451), - [sym_unit_type] = STATE(1451), - [sym_generic_type] = STATE(1078), - [sym_generic_type_with_turbofish] = STATE(3504), - [sym_bounded_type] = STATE(1451), - [sym_reference_type] = STATE(1451), - [sym_pointer_type] = STATE(1451), - [sym_never_type] = STATE(1451), - [sym_abstract_type] = STATE(1451), - [sym_dynamic_type] = STATE(1451), - [sym_macro_invocation] = STATE(1451), - [sym_scoped_identifier] = STATE(3202), - [sym_scoped_type_identifier] = STATE(1028), + [sym_function_modifiers] = STATE(3339), + [sym_removed_trait_bound] = STATE(1351), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(1398), + [sym_bracketed_type] = STATE(3522), + [sym_lifetime] = STATE(3444), + [sym_array_type] = STATE(1351), + [sym_for_lifetimes] = STATE(1614), + [sym_function_type] = STATE(1351), + [sym_tuple_type] = STATE(1351), + [sym_unit_type] = STATE(1351), + [sym_generic_type] = STATE(1059), + [sym_generic_type_with_turbofish] = STATE(3512), + [sym_bounded_type] = STATE(1351), + [sym_reference_type] = STATE(1351), + [sym_pointer_type] = STATE(1351), + [sym_never_type] = STATE(1351), + [sym_abstract_type] = STATE(1351), + [sym_dynamic_type] = STATE(1351), + [sym_macro_invocation] = STATE(1351), + [sym_scoped_identifier] = STATE(3269), + [sym_scoped_type_identifier] = STATE(1024), [sym_line_comment] = STATE(917), [sym_block_comment] = STATE(917), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3095), - [anon_sym_LPAREN] = ACTIONS(3097), - [anon_sym_LBRACK] = ACTIONS(3099), - [anon_sym_STAR] = ACTIONS(3103), - [anon_sym_QMARK] = ACTIONS(3105), - [anon_sym_u8] = ACTIONS(3107), - [anon_sym_i8] = ACTIONS(3107), - [anon_sym_u16] = ACTIONS(3107), - [anon_sym_i16] = ACTIONS(3107), - [anon_sym_u32] = ACTIONS(3107), - [anon_sym_i32] = ACTIONS(3107), - [anon_sym_u64] = ACTIONS(3107), - [anon_sym_i64] = ACTIONS(3107), - [anon_sym_u128] = ACTIONS(3107), - [anon_sym_i128] = ACTIONS(3107), - [anon_sym_isize] = ACTIONS(3107), - [anon_sym_usize] = ACTIONS(3107), - [anon_sym_f32] = ACTIONS(3107), - [anon_sym_f64] = ACTIONS(3107), - [anon_sym_bool] = ACTIONS(3107), - [anon_sym_str] = ACTIONS(3107), - [anon_sym_char] = ACTIONS(3107), - [anon_sym_BANG] = ACTIONS(3109), - [anon_sym_AMP] = ACTIONS(3111), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3113), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(3115), - [anon_sym_fn] = ACTIONS(3117), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(3119), - [anon_sym_union] = ACTIONS(3121), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(3123), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3127), - [sym_super] = ACTIONS(3127), - [sym_crate] = ACTIONS(3127), - [sym_metavariable] = ACTIONS(3129), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(3093), + [anon_sym_LPAREN] = ACTIONS(3095), + [anon_sym_LBRACK] = ACTIONS(3097), + [anon_sym_STAR] = ACTIONS(3101), + [anon_sym_QMARK] = ACTIONS(3103), + [anon_sym_u8] = ACTIONS(3105), + [anon_sym_i8] = ACTIONS(3105), + [anon_sym_u16] = ACTIONS(3105), + [anon_sym_i16] = ACTIONS(3105), + [anon_sym_u32] = ACTIONS(3105), + [anon_sym_i32] = ACTIONS(3105), + [anon_sym_u64] = ACTIONS(3105), + [anon_sym_i64] = ACTIONS(3105), + [anon_sym_u128] = ACTIONS(3105), + [anon_sym_i128] = ACTIONS(3105), + [anon_sym_isize] = ACTIONS(3105), + [anon_sym_usize] = ACTIONS(3105), + [anon_sym_f32] = ACTIONS(3105), + [anon_sym_f64] = ACTIONS(3105), + [anon_sym_bool] = ACTIONS(3105), + [anon_sym_str] = ACTIONS(3105), + [anon_sym_char] = ACTIONS(3105), + [anon_sym_BANG] = ACTIONS(3107), + [anon_sym_AMP] = ACTIONS(3109), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3111), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), + [anon_sym_default] = ACTIONS(3113), + [anon_sym_fn] = ACTIONS(3115), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(3117), + [anon_sym_union] = ACTIONS(3119), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(3121), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(3125), + [sym_super] = ACTIONS(3125), + [sym_crate] = ACTIONS(3125), + [sym_metavariable] = ACTIONS(3127), }, [918] = { - [sym_function_modifiers] = STATE(3338), - [sym_removed_trait_bound] = STATE(1451), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1389), - [sym_bracketed_type] = STATE(3514), - [sym_lifetime] = STATE(3511), - [sym_array_type] = STATE(1451), - [sym_for_lifetimes] = STATE(1592), - [sym_function_type] = STATE(1451), - [sym_tuple_type] = STATE(1451), - [sym_unit_type] = STATE(1451), - [sym_generic_type] = STATE(1078), - [sym_generic_type_with_turbofish] = STATE(3504), - [sym_bounded_type] = STATE(1451), - [sym_reference_type] = STATE(1451), - [sym_pointer_type] = STATE(1451), - [sym_never_type] = STATE(1451), - [sym_abstract_type] = STATE(1451), - [sym_dynamic_type] = STATE(1451), - [sym_macro_invocation] = STATE(1451), - [sym_scoped_identifier] = STATE(3202), - [sym_scoped_type_identifier] = STATE(1028), + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2756), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), [sym_line_comment] = STATE(918), [sym_block_comment] = STATE(918), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3095), - [anon_sym_LPAREN] = ACTIONS(3097), - [anon_sym_LBRACK] = ACTIONS(3099), - [anon_sym_STAR] = ACTIONS(3103), - [anon_sym_QMARK] = ACTIONS(3105), - [anon_sym_u8] = ACTIONS(3107), - [anon_sym_i8] = ACTIONS(3107), - [anon_sym_u16] = ACTIONS(3107), - [anon_sym_i16] = ACTIONS(3107), - [anon_sym_u32] = ACTIONS(3107), - [anon_sym_i32] = ACTIONS(3107), - [anon_sym_u64] = ACTIONS(3107), - [anon_sym_i64] = ACTIONS(3107), - [anon_sym_u128] = ACTIONS(3107), - [anon_sym_i128] = ACTIONS(3107), - [anon_sym_isize] = ACTIONS(3107), - [anon_sym_usize] = ACTIONS(3107), - [anon_sym_f32] = ACTIONS(3107), - [anon_sym_f64] = ACTIONS(3107), - [anon_sym_bool] = ACTIONS(3107), - [anon_sym_str] = ACTIONS(3107), - [anon_sym_char] = ACTIONS(3107), - [anon_sym_BANG] = ACTIONS(3109), - [anon_sym_AMP] = ACTIONS(3111), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3113), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(3115), - [anon_sym_fn] = ACTIONS(3117), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(3119), - [anon_sym_union] = ACTIONS(3121), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(3123), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3127), - [sym_super] = ACTIONS(3127), - [sym_crate] = ACTIONS(3127), - [sym_metavariable] = ACTIONS(3129), - }, - [919] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1990), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), - [sym_line_comment] = STATE(919), - [sym_block_comment] = STATE(919), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2953), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -102488,21 +102426,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -102510,107 +102448,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [920] = { - [sym_function_modifiers] = STATE(3338), - [sym_removed_trait_bound] = STATE(1451), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1391), - [sym_bracketed_type] = STATE(3514), - [sym_lifetime] = STATE(3511), - [sym_array_type] = STATE(1451), - [sym_for_lifetimes] = STATE(1592), - [sym_function_type] = STATE(1451), - [sym_tuple_type] = STATE(1451), - [sym_unit_type] = STATE(1451), - [sym_generic_type] = STATE(1078), - [sym_generic_type_with_turbofish] = STATE(3504), - [sym_bounded_type] = STATE(1451), - [sym_reference_type] = STATE(1451), - [sym_pointer_type] = STATE(1451), - [sym_never_type] = STATE(1451), - [sym_abstract_type] = STATE(1451), - [sym_dynamic_type] = STATE(1451), - [sym_macro_invocation] = STATE(1451), - [sym_scoped_identifier] = STATE(3202), - [sym_scoped_type_identifier] = STATE(1028), - [sym_line_comment] = STATE(920), - [sym_block_comment] = STATE(920), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3095), - [anon_sym_LPAREN] = ACTIONS(3097), - [anon_sym_LBRACK] = ACTIONS(3099), - [anon_sym_STAR] = ACTIONS(3103), - [anon_sym_QMARK] = ACTIONS(3105), - [anon_sym_u8] = ACTIONS(3107), - [anon_sym_i8] = ACTIONS(3107), - [anon_sym_u16] = ACTIONS(3107), - [anon_sym_i16] = ACTIONS(3107), - [anon_sym_u32] = ACTIONS(3107), - [anon_sym_i32] = ACTIONS(3107), - [anon_sym_u64] = ACTIONS(3107), - [anon_sym_i64] = ACTIONS(3107), - [anon_sym_u128] = ACTIONS(3107), - [anon_sym_i128] = ACTIONS(3107), - [anon_sym_isize] = ACTIONS(3107), - [anon_sym_usize] = ACTIONS(3107), - [anon_sym_f32] = ACTIONS(3107), - [anon_sym_f64] = ACTIONS(3107), - [anon_sym_bool] = ACTIONS(3107), - [anon_sym_str] = ACTIONS(3107), - [anon_sym_char] = ACTIONS(3107), - [anon_sym_BANG] = ACTIONS(3109), - [anon_sym_AMP] = ACTIONS(3111), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3113), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(3115), - [anon_sym_fn] = ACTIONS(3117), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(3119), - [anon_sym_union] = ACTIONS(3121), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(3123), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3127), - [sym_super] = ACTIONS(3127), - [sym_crate] = ACTIONS(3127), - [sym_metavariable] = ACTIONS(3129), - }, - [921] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2569), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), - [sym_line_comment] = STATE(921), - [sym_block_comment] = STATE(921), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), + [919] = { + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2827), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), + [sym_line_comment] = STATE(919), + [sym_block_comment] = STATE(919), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2953), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -102628,21 +102496,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -102650,247 +102518,387 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, + [920] = { + [sym_function_modifiers] = STATE(3339), + [sym_removed_trait_bound] = STATE(1351), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(1397), + [sym_bracketed_type] = STATE(3522), + [sym_lifetime] = STATE(3444), + [sym_array_type] = STATE(1351), + [sym_for_lifetimes] = STATE(1614), + [sym_function_type] = STATE(1351), + [sym_tuple_type] = STATE(1351), + [sym_unit_type] = STATE(1351), + [sym_generic_type] = STATE(1059), + [sym_generic_type_with_turbofish] = STATE(3512), + [sym_bounded_type] = STATE(1351), + [sym_reference_type] = STATE(1351), + [sym_pointer_type] = STATE(1351), + [sym_never_type] = STATE(1351), + [sym_abstract_type] = STATE(1351), + [sym_dynamic_type] = STATE(1351), + [sym_macro_invocation] = STATE(1351), + [sym_scoped_identifier] = STATE(3269), + [sym_scoped_type_identifier] = STATE(1024), + [sym_line_comment] = STATE(920), + [sym_block_comment] = STATE(920), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(3093), + [anon_sym_LPAREN] = ACTIONS(3095), + [anon_sym_LBRACK] = ACTIONS(3097), + [anon_sym_STAR] = ACTIONS(3101), + [anon_sym_QMARK] = ACTIONS(3103), + [anon_sym_u8] = ACTIONS(3105), + [anon_sym_i8] = ACTIONS(3105), + [anon_sym_u16] = ACTIONS(3105), + [anon_sym_i16] = ACTIONS(3105), + [anon_sym_u32] = ACTIONS(3105), + [anon_sym_i32] = ACTIONS(3105), + [anon_sym_u64] = ACTIONS(3105), + [anon_sym_i64] = ACTIONS(3105), + [anon_sym_u128] = ACTIONS(3105), + [anon_sym_i128] = ACTIONS(3105), + [anon_sym_isize] = ACTIONS(3105), + [anon_sym_usize] = ACTIONS(3105), + [anon_sym_f32] = ACTIONS(3105), + [anon_sym_f64] = ACTIONS(3105), + [anon_sym_bool] = ACTIONS(3105), + [anon_sym_str] = ACTIONS(3105), + [anon_sym_char] = ACTIONS(3105), + [anon_sym_BANG] = ACTIONS(3107), + [anon_sym_AMP] = ACTIONS(3109), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3111), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), + [anon_sym_default] = ACTIONS(3113), + [anon_sym_fn] = ACTIONS(3115), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(3117), + [anon_sym_union] = ACTIONS(3119), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(3121), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(3125), + [sym_super] = ACTIONS(3125), + [sym_crate] = ACTIONS(3125), + [sym_metavariable] = ACTIONS(3127), + }, + [921] = { + [sym_function_modifiers] = STATE(3480), + [sym_removed_trait_bound] = STATE(1674), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(1669), + [sym_bracketed_type] = STATE(3537), + [sym_lifetime] = STATE(3572), + [sym_array_type] = STATE(1674), + [sym_for_lifetimes] = STATE(1623), + [sym_function_type] = STATE(1674), + [sym_tuple_type] = STATE(1674), + [sym_unit_type] = STATE(1674), + [sym_generic_type] = STATE(1591), + [sym_generic_type_with_turbofish] = STATE(3529), + [sym_bounded_type] = STATE(1674), + [sym_reference_type] = STATE(1674), + [sym_pointer_type] = STATE(1674), + [sym_never_type] = STATE(1674), + [sym_abstract_type] = STATE(1674), + [sym_dynamic_type] = STATE(1674), + [sym_macro_invocation] = STATE(1674), + [sym_scoped_identifier] = STATE(3130), + [sym_scoped_type_identifier] = STATE(1516), + [sym_line_comment] = STATE(921), + [sym_block_comment] = STATE(921), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(3051), + [anon_sym_LPAREN] = ACTIONS(3053), + [anon_sym_LBRACK] = ACTIONS(3055), + [anon_sym_STAR] = ACTIONS(3059), + [anon_sym_QMARK] = ACTIONS(3061), + [anon_sym_u8] = ACTIONS(3063), + [anon_sym_i8] = ACTIONS(3063), + [anon_sym_u16] = ACTIONS(3063), + [anon_sym_i16] = ACTIONS(3063), + [anon_sym_u32] = ACTIONS(3063), + [anon_sym_i32] = ACTIONS(3063), + [anon_sym_u64] = ACTIONS(3063), + [anon_sym_i64] = ACTIONS(3063), + [anon_sym_u128] = ACTIONS(3063), + [anon_sym_i128] = ACTIONS(3063), + [anon_sym_isize] = ACTIONS(3063), + [anon_sym_usize] = ACTIONS(3063), + [anon_sym_f32] = ACTIONS(3063), + [anon_sym_f64] = ACTIONS(3063), + [anon_sym_bool] = ACTIONS(3063), + [anon_sym_str] = ACTIONS(3063), + [anon_sym_char] = ACTIONS(3063), + [anon_sym_BANG] = ACTIONS(3065), + [anon_sym_AMP] = ACTIONS(3067), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3069), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), + [anon_sym_default] = ACTIONS(3071), + [anon_sym_fn] = ACTIONS(3073), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(3075), + [anon_sym_union] = ACTIONS(3077), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(3079), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(3083), + [sym_super] = ACTIONS(3083), + [sym_crate] = ACTIONS(3083), + [sym_metavariable] = ACTIONS(3085), + }, [922] = { - [sym_function_modifiers] = STATE(3338), - [sym_removed_trait_bound] = STATE(1451), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1449), - [sym_bracketed_type] = STATE(3514), - [sym_lifetime] = STATE(3511), - [sym_array_type] = STATE(1451), - [sym_for_lifetimes] = STATE(1592), - [sym_function_type] = STATE(1451), - [sym_tuple_type] = STATE(1451), - [sym_unit_type] = STATE(1451), - [sym_generic_type] = STATE(1078), - [sym_generic_type_with_turbofish] = STATE(3504), - [sym_bounded_type] = STATE(1451), - [sym_reference_type] = STATE(1451), - [sym_pointer_type] = STATE(1451), - [sym_never_type] = STATE(1451), - [sym_abstract_type] = STATE(1451), - [sym_dynamic_type] = STATE(1451), - [sym_macro_invocation] = STATE(1451), - [sym_scoped_identifier] = STATE(3202), - [sym_scoped_type_identifier] = STATE(1028), + [sym_function_modifiers] = STATE(3480), + [sym_removed_trait_bound] = STATE(1674), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(1673), + [sym_bracketed_type] = STATE(3537), + [sym_lifetime] = STATE(3572), + [sym_array_type] = STATE(1674), + [sym_for_lifetimes] = STATE(1623), + [sym_function_type] = STATE(1674), + [sym_tuple_type] = STATE(1674), + [sym_unit_type] = STATE(1674), + [sym_generic_type] = STATE(1591), + [sym_generic_type_with_turbofish] = STATE(3529), + [sym_bounded_type] = STATE(1674), + [sym_reference_type] = STATE(1674), + [sym_pointer_type] = STATE(1674), + [sym_never_type] = STATE(1674), + [sym_abstract_type] = STATE(1674), + [sym_dynamic_type] = STATE(1674), + [sym_macro_invocation] = STATE(1674), + [sym_scoped_identifier] = STATE(3130), + [sym_scoped_type_identifier] = STATE(1516), [sym_line_comment] = STATE(922), [sym_block_comment] = STATE(922), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3095), - [anon_sym_LPAREN] = ACTIONS(3097), - [anon_sym_LBRACK] = ACTIONS(3099), - [anon_sym_STAR] = ACTIONS(3103), - [anon_sym_QMARK] = ACTIONS(3105), - [anon_sym_u8] = ACTIONS(3107), - [anon_sym_i8] = ACTIONS(3107), - [anon_sym_u16] = ACTIONS(3107), - [anon_sym_i16] = ACTIONS(3107), - [anon_sym_u32] = ACTIONS(3107), - [anon_sym_i32] = ACTIONS(3107), - [anon_sym_u64] = ACTIONS(3107), - [anon_sym_i64] = ACTIONS(3107), - [anon_sym_u128] = ACTIONS(3107), - [anon_sym_i128] = ACTIONS(3107), - [anon_sym_isize] = ACTIONS(3107), - [anon_sym_usize] = ACTIONS(3107), - [anon_sym_f32] = ACTIONS(3107), - [anon_sym_f64] = ACTIONS(3107), - [anon_sym_bool] = ACTIONS(3107), - [anon_sym_str] = ACTIONS(3107), - [anon_sym_char] = ACTIONS(3107), - [anon_sym_BANG] = ACTIONS(3109), - [anon_sym_AMP] = ACTIONS(3111), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3113), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(3115), - [anon_sym_fn] = ACTIONS(3117), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(3119), - [anon_sym_union] = ACTIONS(3121), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(3123), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3127), - [sym_super] = ACTIONS(3127), - [sym_crate] = ACTIONS(3127), - [sym_metavariable] = ACTIONS(3129), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(3051), + [anon_sym_LPAREN] = ACTIONS(3053), + [anon_sym_LBRACK] = ACTIONS(3055), + [anon_sym_STAR] = ACTIONS(3059), + [anon_sym_QMARK] = ACTIONS(3061), + [anon_sym_u8] = ACTIONS(3063), + [anon_sym_i8] = ACTIONS(3063), + [anon_sym_u16] = ACTIONS(3063), + [anon_sym_i16] = ACTIONS(3063), + [anon_sym_u32] = ACTIONS(3063), + [anon_sym_i32] = ACTIONS(3063), + [anon_sym_u64] = ACTIONS(3063), + [anon_sym_i64] = ACTIONS(3063), + [anon_sym_u128] = ACTIONS(3063), + [anon_sym_i128] = ACTIONS(3063), + [anon_sym_isize] = ACTIONS(3063), + [anon_sym_usize] = ACTIONS(3063), + [anon_sym_f32] = ACTIONS(3063), + [anon_sym_f64] = ACTIONS(3063), + [anon_sym_bool] = ACTIONS(3063), + [anon_sym_str] = ACTIONS(3063), + [anon_sym_char] = ACTIONS(3063), + [anon_sym_BANG] = ACTIONS(3065), + [anon_sym_AMP] = ACTIONS(3067), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3069), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), + [anon_sym_default] = ACTIONS(3071), + [anon_sym_fn] = ACTIONS(3073), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(3075), + [anon_sym_union] = ACTIONS(3077), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(3079), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(3083), + [sym_super] = ACTIONS(3083), + [sym_crate] = ACTIONS(3083), + [sym_metavariable] = ACTIONS(3085), }, [923] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1968), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3339), + [sym_removed_trait_bound] = STATE(1351), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(1326), + [sym_bracketed_type] = STATE(3522), + [sym_lifetime] = STATE(3444), + [sym_array_type] = STATE(1351), + [sym_for_lifetimes] = STATE(1614), + [sym_function_type] = STATE(1351), + [sym_tuple_type] = STATE(1351), + [sym_unit_type] = STATE(1351), + [sym_generic_type] = STATE(1059), + [sym_generic_type_with_turbofish] = STATE(3512), + [sym_bounded_type] = STATE(1351), + [sym_reference_type] = STATE(1351), + [sym_pointer_type] = STATE(1351), + [sym_never_type] = STATE(1351), + [sym_abstract_type] = STATE(1351), + [sym_dynamic_type] = STATE(1351), + [sym_macro_invocation] = STATE(1351), + [sym_scoped_identifier] = STATE(3269), + [sym_scoped_type_identifier] = STATE(1024), [sym_line_comment] = STATE(923), [sym_block_comment] = STATE(923), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3183), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(3093), + [anon_sym_LPAREN] = ACTIONS(3095), + [anon_sym_LBRACK] = ACTIONS(3097), + [anon_sym_STAR] = ACTIONS(3101), + [anon_sym_QMARK] = ACTIONS(3103), + [anon_sym_u8] = ACTIONS(3105), + [anon_sym_i8] = ACTIONS(3105), + [anon_sym_u16] = ACTIONS(3105), + [anon_sym_i16] = ACTIONS(3105), + [anon_sym_u32] = ACTIONS(3105), + [anon_sym_i32] = ACTIONS(3105), + [anon_sym_u64] = ACTIONS(3105), + [anon_sym_i64] = ACTIONS(3105), + [anon_sym_u128] = ACTIONS(3105), + [anon_sym_i128] = ACTIONS(3105), + [anon_sym_isize] = ACTIONS(3105), + [anon_sym_usize] = ACTIONS(3105), + [anon_sym_f32] = ACTIONS(3105), + [anon_sym_f64] = ACTIONS(3105), + [anon_sym_bool] = ACTIONS(3105), + [anon_sym_str] = ACTIONS(3105), + [anon_sym_char] = ACTIONS(3105), + [anon_sym_BANG] = ACTIONS(3107), + [anon_sym_AMP] = ACTIONS(3109), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3111), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), + [anon_sym_default] = ACTIONS(3113), + [anon_sym_fn] = ACTIONS(3115), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(3117), + [anon_sym_union] = ACTIONS(3119), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(3121), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(3125), + [sym_super] = ACTIONS(3125), + [sym_crate] = ACTIONS(3125), + [sym_metavariable] = ACTIONS(3127), }, [924] = { - [sym_function_modifiers] = STATE(3473), - [sym_removed_trait_bound] = STATE(1701), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1706), - [sym_bracketed_type] = STATE(3529), - [sym_lifetime] = STATE(3368), - [sym_array_type] = STATE(1701), - [sym_for_lifetimes] = STATE(1613), - [sym_function_type] = STATE(1701), - [sym_tuple_type] = STATE(1701), - [sym_unit_type] = STATE(1701), - [sym_generic_type] = STATE(1608), - [sym_generic_type_with_turbofish] = STATE(3521), - [sym_bounded_type] = STATE(1701), - [sym_reference_type] = STATE(1701), - [sym_pointer_type] = STATE(1701), - [sym_never_type] = STATE(1701), - [sym_abstract_type] = STATE(1701), - [sym_dynamic_type] = STATE(1701), - [sym_macro_invocation] = STATE(1701), - [sym_scoped_identifier] = STATE(3264), - [sym_scoped_type_identifier] = STATE(1526), + [sym_function_modifiers] = STATE(3480), + [sym_removed_trait_bound] = STATE(1674), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(1684), + [sym_bracketed_type] = STATE(3537), + [sym_lifetime] = STATE(3572), + [sym_array_type] = STATE(1674), + [sym_for_lifetimes] = STATE(1623), + [sym_function_type] = STATE(1674), + [sym_tuple_type] = STATE(1674), + [sym_unit_type] = STATE(1674), + [sym_generic_type] = STATE(1591), + [sym_generic_type_with_turbofish] = STATE(3529), + [sym_bounded_type] = STATE(1674), + [sym_reference_type] = STATE(1674), + [sym_pointer_type] = STATE(1674), + [sym_never_type] = STATE(1674), + [sym_abstract_type] = STATE(1674), + [sym_dynamic_type] = STATE(1674), + [sym_macro_invocation] = STATE(1674), + [sym_scoped_identifier] = STATE(3130), + [sym_scoped_type_identifier] = STATE(1516), [sym_line_comment] = STATE(924), [sym_block_comment] = STATE(924), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3059), - [anon_sym_LPAREN] = ACTIONS(3061), - [anon_sym_LBRACK] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_QMARK] = ACTIONS(3069), - [anon_sym_u8] = ACTIONS(3071), - [anon_sym_i8] = ACTIONS(3071), - [anon_sym_u16] = ACTIONS(3071), - [anon_sym_i16] = ACTIONS(3071), - [anon_sym_u32] = ACTIONS(3071), - [anon_sym_i32] = ACTIONS(3071), - [anon_sym_u64] = ACTIONS(3071), - [anon_sym_i64] = ACTIONS(3071), - [anon_sym_u128] = ACTIONS(3071), - [anon_sym_i128] = ACTIONS(3071), - [anon_sym_isize] = ACTIONS(3071), - [anon_sym_usize] = ACTIONS(3071), - [anon_sym_f32] = ACTIONS(3071), - [anon_sym_f64] = ACTIONS(3071), - [anon_sym_bool] = ACTIONS(3071), - [anon_sym_str] = ACTIONS(3071), - [anon_sym_char] = ACTIONS(3071), - [anon_sym_BANG] = ACTIONS(3073), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3077), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(3079), - [anon_sym_fn] = ACTIONS(3081), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(3083), - [anon_sym_union] = ACTIONS(3085), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(3087), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3091), - [sym_super] = ACTIONS(3091), - [sym_crate] = ACTIONS(3091), - [sym_metavariable] = ACTIONS(3093), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(3051), + [anon_sym_LPAREN] = ACTIONS(3053), + [anon_sym_LBRACK] = ACTIONS(3055), + [anon_sym_STAR] = ACTIONS(3059), + [anon_sym_QMARK] = ACTIONS(3061), + [anon_sym_u8] = ACTIONS(3063), + [anon_sym_i8] = ACTIONS(3063), + [anon_sym_u16] = ACTIONS(3063), + [anon_sym_i16] = ACTIONS(3063), + [anon_sym_u32] = ACTIONS(3063), + [anon_sym_i32] = ACTIONS(3063), + [anon_sym_u64] = ACTIONS(3063), + [anon_sym_i64] = ACTIONS(3063), + [anon_sym_u128] = ACTIONS(3063), + [anon_sym_i128] = ACTIONS(3063), + [anon_sym_isize] = ACTIONS(3063), + [anon_sym_usize] = ACTIONS(3063), + [anon_sym_f32] = ACTIONS(3063), + [anon_sym_f64] = ACTIONS(3063), + [anon_sym_bool] = ACTIONS(3063), + [anon_sym_str] = ACTIONS(3063), + [anon_sym_char] = ACTIONS(3063), + [anon_sym_BANG] = ACTIONS(3065), + [anon_sym_AMP] = ACTIONS(3067), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3069), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), + [anon_sym_default] = ACTIONS(3071), + [anon_sym_fn] = ACTIONS(3073), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(3075), + [anon_sym_union] = ACTIONS(3077), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(3079), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(3083), + [sym_super] = ACTIONS(3083), + [sym_crate] = ACTIONS(3083), + [sym_metavariable] = ACTIONS(3085), }, [925] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2601), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2374), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), [sym_line_comment] = STATE(925), [sym_block_comment] = STATE(925), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2953), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -102908,21 +102916,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -102931,36 +102939,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1584), }, [926] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1993), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2336), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), [sym_line_comment] = STATE(926), [sym_block_comment] = STATE(926), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2953), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -102978,21 +102986,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -103001,36 +103009,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1584), }, [927] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1995), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2342), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), [sym_line_comment] = STATE(927), [sym_block_comment] = STATE(927), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2953), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -103048,21 +103056,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -103071,36 +103079,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1584), }, [928] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1972), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2558), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), [sym_line_comment] = STATE(928), [sym_block_comment] = STATE(928), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2953), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -103118,21 +103126,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -103141,106 +103149,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1584), }, [929] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2734), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(1971), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), [sym_line_comment] = STATE(929), [sym_block_comment] = STATE(929), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [930] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1971), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), - [sym_line_comment] = STATE(930), - [sym_block_comment] = STATE(930), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2953), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -103258,21 +103196,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -103280,37 +103218,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [931] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2189), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), - [sym_line_comment] = STATE(931), - [sym_block_comment] = STATE(931), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), + [930] = { + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2481), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), + [sym_line_comment] = STATE(930), + [sym_block_comment] = STATE(930), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2953), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -103328,21 +103266,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -103350,37 +103288,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, + [931] = { + [sym_function_modifiers] = STATE(3480), + [sym_removed_trait_bound] = STATE(1674), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(1726), + [sym_bracketed_type] = STATE(3537), + [sym_lifetime] = STATE(3572), + [sym_array_type] = STATE(1674), + [sym_for_lifetimes] = STATE(1623), + [sym_function_type] = STATE(1674), + [sym_tuple_type] = STATE(1674), + [sym_unit_type] = STATE(1674), + [sym_generic_type] = STATE(1591), + [sym_generic_type_with_turbofish] = STATE(3529), + [sym_bounded_type] = STATE(1674), + [sym_reference_type] = STATE(1674), + [sym_pointer_type] = STATE(1674), + [sym_never_type] = STATE(1674), + [sym_abstract_type] = STATE(1674), + [sym_dynamic_type] = STATE(1674), + [sym_macro_invocation] = STATE(1674), + [sym_scoped_identifier] = STATE(3130), + [sym_scoped_type_identifier] = STATE(1516), + [sym_line_comment] = STATE(931), + [sym_block_comment] = STATE(931), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(3051), + [anon_sym_LPAREN] = ACTIONS(3053), + [anon_sym_LBRACK] = ACTIONS(3055), + [anon_sym_STAR] = ACTIONS(3059), + [anon_sym_QMARK] = ACTIONS(3061), + [anon_sym_u8] = ACTIONS(3063), + [anon_sym_i8] = ACTIONS(3063), + [anon_sym_u16] = ACTIONS(3063), + [anon_sym_i16] = ACTIONS(3063), + [anon_sym_u32] = ACTIONS(3063), + [anon_sym_i32] = ACTIONS(3063), + [anon_sym_u64] = ACTIONS(3063), + [anon_sym_i64] = ACTIONS(3063), + [anon_sym_u128] = ACTIONS(3063), + [anon_sym_i128] = ACTIONS(3063), + [anon_sym_isize] = ACTIONS(3063), + [anon_sym_usize] = ACTIONS(3063), + [anon_sym_f32] = ACTIONS(3063), + [anon_sym_f64] = ACTIONS(3063), + [anon_sym_bool] = ACTIONS(3063), + [anon_sym_str] = ACTIONS(3063), + [anon_sym_char] = ACTIONS(3063), + [anon_sym_BANG] = ACTIONS(3065), + [anon_sym_AMP] = ACTIONS(3067), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3069), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), + [anon_sym_default] = ACTIONS(3071), + [anon_sym_fn] = ACTIONS(3073), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(3075), + [anon_sym_union] = ACTIONS(3077), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(3079), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(3083), + [sym_super] = ACTIONS(3083), + [sym_crate] = ACTIONS(3083), + [sym_metavariable] = ACTIONS(3085), + }, [932] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2685), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2594), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), [sym_line_comment] = STATE(932), [sym_block_comment] = STATE(932), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2953), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -103398,21 +103406,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -103421,36 +103429,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1584), }, [933] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2185), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2799), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), [sym_line_comment] = STATE(933), [sym_block_comment] = STATE(933), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2953), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -103468,21 +103476,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -103491,176 +103499,176 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1584), }, [934] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2930), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3480), + [sym_removed_trait_bound] = STATE(1674), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(1721), + [sym_bracketed_type] = STATE(3537), + [sym_lifetime] = STATE(3572), + [sym_array_type] = STATE(1674), + [sym_for_lifetimes] = STATE(1623), + [sym_function_type] = STATE(1674), + [sym_tuple_type] = STATE(1674), + [sym_unit_type] = STATE(1674), + [sym_generic_type] = STATE(1591), + [sym_generic_type_with_turbofish] = STATE(3529), + [sym_bounded_type] = STATE(1674), + [sym_reference_type] = STATE(1674), + [sym_pointer_type] = STATE(1674), + [sym_never_type] = STATE(1674), + [sym_abstract_type] = STATE(1674), + [sym_dynamic_type] = STATE(1674), + [sym_macro_invocation] = STATE(1674), + [sym_scoped_identifier] = STATE(3130), + [sym_scoped_type_identifier] = STATE(1516), [sym_line_comment] = STATE(934), [sym_block_comment] = STATE(934), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(3051), + [anon_sym_LPAREN] = ACTIONS(3053), + [anon_sym_LBRACK] = ACTIONS(3055), + [anon_sym_STAR] = ACTIONS(3059), + [anon_sym_QMARK] = ACTIONS(3061), + [anon_sym_u8] = ACTIONS(3063), + [anon_sym_i8] = ACTIONS(3063), + [anon_sym_u16] = ACTIONS(3063), + [anon_sym_i16] = ACTIONS(3063), + [anon_sym_u32] = ACTIONS(3063), + [anon_sym_i32] = ACTIONS(3063), + [anon_sym_u64] = ACTIONS(3063), + [anon_sym_i64] = ACTIONS(3063), + [anon_sym_u128] = ACTIONS(3063), + [anon_sym_i128] = ACTIONS(3063), + [anon_sym_isize] = ACTIONS(3063), + [anon_sym_usize] = ACTIONS(3063), + [anon_sym_f32] = ACTIONS(3063), + [anon_sym_f64] = ACTIONS(3063), + [anon_sym_bool] = ACTIONS(3063), + [anon_sym_str] = ACTIONS(3063), + [anon_sym_char] = ACTIONS(3063), + [anon_sym_BANG] = ACTIONS(3065), + [anon_sym_AMP] = ACTIONS(3067), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3069), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), + [anon_sym_default] = ACTIONS(3071), + [anon_sym_fn] = ACTIONS(3073), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(3075), + [anon_sym_union] = ACTIONS(3077), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(3079), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(3083), + [sym_super] = ACTIONS(3083), + [sym_crate] = ACTIONS(3083), + [sym_metavariable] = ACTIONS(3085), }, [935] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2378), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(2379), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(2174), + [sym_function_modifiers] = STATE(3339), + [sym_removed_trait_bound] = STATE(1351), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(1330), + [sym_bracketed_type] = STATE(3522), + [sym_lifetime] = STATE(3444), + [sym_array_type] = STATE(1351), + [sym_for_lifetimes] = STATE(1614), + [sym_function_type] = STATE(1351), + [sym_tuple_type] = STATE(1351), + [sym_unit_type] = STATE(1351), + [sym_generic_type] = STATE(1059), + [sym_generic_type_with_turbofish] = STATE(3512), + [sym_bounded_type] = STATE(1351), + [sym_reference_type] = STATE(1351), + [sym_pointer_type] = STATE(1351), + [sym_never_type] = STATE(1351), + [sym_abstract_type] = STATE(1351), + [sym_dynamic_type] = STATE(1351), + [sym_macro_invocation] = STATE(1351), + [sym_scoped_identifier] = STATE(3269), + [sym_scoped_type_identifier] = STATE(1024), [sym_line_comment] = STATE(935), [sym_block_comment] = STATE(935), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3185), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(3187), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(3093), + [anon_sym_LPAREN] = ACTIONS(3095), + [anon_sym_LBRACK] = ACTIONS(3097), + [anon_sym_STAR] = ACTIONS(3101), + [anon_sym_QMARK] = ACTIONS(3103), + [anon_sym_u8] = ACTIONS(3105), + [anon_sym_i8] = ACTIONS(3105), + [anon_sym_u16] = ACTIONS(3105), + [anon_sym_i16] = ACTIONS(3105), + [anon_sym_u32] = ACTIONS(3105), + [anon_sym_i32] = ACTIONS(3105), + [anon_sym_u64] = ACTIONS(3105), + [anon_sym_i64] = ACTIONS(3105), + [anon_sym_u128] = ACTIONS(3105), + [anon_sym_i128] = ACTIONS(3105), + [anon_sym_isize] = ACTIONS(3105), + [anon_sym_usize] = ACTIONS(3105), + [anon_sym_f32] = ACTIONS(3105), + [anon_sym_f64] = ACTIONS(3105), + [anon_sym_bool] = ACTIONS(3105), + [anon_sym_str] = ACTIONS(3105), + [anon_sym_char] = ACTIONS(3105), + [anon_sym_BANG] = ACTIONS(3107), + [anon_sym_AMP] = ACTIONS(3109), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3111), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), + [anon_sym_default] = ACTIONS(3113), + [anon_sym_fn] = ACTIONS(3115), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(3117), + [anon_sym_union] = ACTIONS(3119), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(3121), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(3125), + [sym_super] = ACTIONS(3125), + [sym_crate] = ACTIONS(3125), + [sym_metavariable] = ACTIONS(3127), }, [936] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2316), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2358), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), [sym_line_comment] = STATE(936), [sym_block_comment] = STATE(936), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2953), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -103678,21 +103686,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -103701,36 +103709,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1584), }, [937] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2318), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2697), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), [sym_line_comment] = STATE(937), [sym_block_comment] = STATE(937), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2953), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -103748,21 +103756,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -103771,36 +103779,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1584), }, [938] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2328), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(2380), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(2131), + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(3021), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), [sym_line_comment] = STATE(938), [sym_block_comment] = STATE(938), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3189), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2953), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -103818,21 +103826,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(3191), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -103841,36 +103849,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1584), }, [939] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2347), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2388), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), [sym_line_comment] = STATE(939), [sym_block_comment] = STATE(939), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2953), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -103888,21 +103896,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -103911,36 +103919,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1584), }, [940] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1992), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2311), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), [sym_line_comment] = STATE(940), [sym_block_comment] = STATE(940), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2953), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -103958,21 +103966,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -103981,36 +103989,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1584), }, [941] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2829), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2385), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(2303), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(2133), [sym_line_comment] = STATE(941), [sym_block_comment] = STATE(941), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(3193), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -104028,21 +104036,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(3195), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -104051,36 +104059,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1584), }, [942] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2671), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2400), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), [sym_line_comment] = STATE(942), [sym_block_comment] = STATE(942), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2953), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -104098,21 +104106,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -104121,36 +104129,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1584), }, [943] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2927), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2909), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), [sym_line_comment] = STATE(943), [sym_block_comment] = STATE(943), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2953), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -104168,21 +104176,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -104191,36 +104199,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1584), }, [944] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2183), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3339), + [sym_removed_trait_bound] = STATE(1351), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(1312), + [sym_bracketed_type] = STATE(3522), + [sym_lifetime] = STATE(3444), + [sym_array_type] = STATE(1351), + [sym_for_lifetimes] = STATE(1614), + [sym_function_type] = STATE(1351), + [sym_tuple_type] = STATE(1351), + [sym_unit_type] = STATE(1351), + [sym_generic_type] = STATE(1059), + [sym_generic_type_with_turbofish] = STATE(3512), + [sym_bounded_type] = STATE(1351), + [sym_reference_type] = STATE(1351), + [sym_pointer_type] = STATE(1351), + [sym_never_type] = STATE(1351), + [sym_abstract_type] = STATE(1351), + [sym_dynamic_type] = STATE(1351), + [sym_macro_invocation] = STATE(1351), + [sym_scoped_identifier] = STATE(3269), + [sym_scoped_type_identifier] = STATE(1024), [sym_line_comment] = STATE(944), [sym_block_comment] = STATE(944), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(3093), + [anon_sym_LPAREN] = ACTIONS(3095), + [anon_sym_LBRACK] = ACTIONS(3097), + [anon_sym_STAR] = ACTIONS(3101), + [anon_sym_QMARK] = ACTIONS(3103), + [anon_sym_u8] = ACTIONS(3105), + [anon_sym_i8] = ACTIONS(3105), + [anon_sym_u16] = ACTIONS(3105), + [anon_sym_i16] = ACTIONS(3105), + [anon_sym_u32] = ACTIONS(3105), + [anon_sym_i32] = ACTIONS(3105), + [anon_sym_u64] = ACTIONS(3105), + [anon_sym_i64] = ACTIONS(3105), + [anon_sym_u128] = ACTIONS(3105), + [anon_sym_i128] = ACTIONS(3105), + [anon_sym_isize] = ACTIONS(3105), + [anon_sym_usize] = ACTIONS(3105), + [anon_sym_f32] = ACTIONS(3105), + [anon_sym_f64] = ACTIONS(3105), + [anon_sym_bool] = ACTIONS(3105), + [anon_sym_str] = ACTIONS(3105), + [anon_sym_char] = ACTIONS(3105), + [anon_sym_BANG] = ACTIONS(3107), + [anon_sym_AMP] = ACTIONS(3109), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3111), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), + [anon_sym_default] = ACTIONS(3113), + [anon_sym_fn] = ACTIONS(3115), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(3117), + [anon_sym_union] = ACTIONS(3119), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(3121), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(3125), + [sym_super] = ACTIONS(3125), + [sym_crate] = ACTIONS(3125), + [sym_metavariable] = ACTIONS(3127), + }, + [945] = { + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2178), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), + [sym_line_comment] = STATE(945), + [sym_block_comment] = STATE(945), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2953), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -104238,21 +104316,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -104260,107 +104338,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [945] = { - [sym_function_modifiers] = STATE(3338), - [sym_removed_trait_bound] = STATE(1451), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1212), - [sym_bracketed_type] = STATE(3514), - [sym_lifetime] = STATE(3511), - [sym_array_type] = STATE(1451), - [sym_for_lifetimes] = STATE(1592), - [sym_function_type] = STATE(1451), - [sym_tuple_type] = STATE(1451), - [sym_unit_type] = STATE(1451), - [sym_generic_type] = STATE(1078), - [sym_generic_type_with_turbofish] = STATE(3504), - [sym_bounded_type] = STATE(1451), - [sym_reference_type] = STATE(1451), - [sym_pointer_type] = STATE(1451), - [sym_never_type] = STATE(1451), - [sym_abstract_type] = STATE(1451), - [sym_dynamic_type] = STATE(1451), - [sym_macro_invocation] = STATE(1451), - [sym_scoped_identifier] = STATE(3202), - [sym_scoped_type_identifier] = STATE(1028), - [sym_line_comment] = STATE(945), - [sym_block_comment] = STATE(945), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3095), - [anon_sym_LPAREN] = ACTIONS(3097), - [anon_sym_LBRACK] = ACTIONS(3099), - [anon_sym_STAR] = ACTIONS(3103), - [anon_sym_QMARK] = ACTIONS(3105), - [anon_sym_u8] = ACTIONS(3107), - [anon_sym_i8] = ACTIONS(3107), - [anon_sym_u16] = ACTIONS(3107), - [anon_sym_i16] = ACTIONS(3107), - [anon_sym_u32] = ACTIONS(3107), - [anon_sym_i32] = ACTIONS(3107), - [anon_sym_u64] = ACTIONS(3107), - [anon_sym_i64] = ACTIONS(3107), - [anon_sym_u128] = ACTIONS(3107), - [anon_sym_i128] = ACTIONS(3107), - [anon_sym_isize] = ACTIONS(3107), - [anon_sym_usize] = ACTIONS(3107), - [anon_sym_f32] = ACTIONS(3107), - [anon_sym_f64] = ACTIONS(3107), - [anon_sym_bool] = ACTIONS(3107), - [anon_sym_str] = ACTIONS(3107), - [anon_sym_char] = ACTIONS(3107), - [anon_sym_BANG] = ACTIONS(3109), - [anon_sym_AMP] = ACTIONS(3111), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3113), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(3115), - [anon_sym_fn] = ACTIONS(3117), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(3119), - [anon_sym_union] = ACTIONS(3121), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(3123), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3127), - [sym_super] = ACTIONS(3127), - [sym_crate] = ACTIONS(3127), - [sym_metavariable] = ACTIONS(3129), - }, [946] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2646), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3339), + [sym_removed_trait_bound] = STATE(1351), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(1374), + [sym_bracketed_type] = STATE(3522), + [sym_lifetime] = STATE(3444), + [sym_array_type] = STATE(1351), + [sym_for_lifetimes] = STATE(1614), + [sym_function_type] = STATE(1351), + [sym_tuple_type] = STATE(1351), + [sym_unit_type] = STATE(1351), + [sym_generic_type] = STATE(1059), + [sym_generic_type_with_turbofish] = STATE(3512), + [sym_bounded_type] = STATE(1351), + [sym_reference_type] = STATE(1351), + [sym_pointer_type] = STATE(1351), + [sym_never_type] = STATE(1351), + [sym_abstract_type] = STATE(1351), + [sym_dynamic_type] = STATE(1351), + [sym_macro_invocation] = STATE(1351), + [sym_scoped_identifier] = STATE(3269), + [sym_scoped_type_identifier] = STATE(1024), [sym_line_comment] = STATE(946), [sym_block_comment] = STATE(946), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(3093), + [anon_sym_LPAREN] = ACTIONS(3095), + [anon_sym_LBRACK] = ACTIONS(3097), + [anon_sym_STAR] = ACTIONS(3101), + [anon_sym_QMARK] = ACTIONS(3103), + [anon_sym_u8] = ACTIONS(3105), + [anon_sym_i8] = ACTIONS(3105), + [anon_sym_u16] = ACTIONS(3105), + [anon_sym_i16] = ACTIONS(3105), + [anon_sym_u32] = ACTIONS(3105), + [anon_sym_i32] = ACTIONS(3105), + [anon_sym_u64] = ACTIONS(3105), + [anon_sym_i64] = ACTIONS(3105), + [anon_sym_u128] = ACTIONS(3105), + [anon_sym_i128] = ACTIONS(3105), + [anon_sym_isize] = ACTIONS(3105), + [anon_sym_usize] = ACTIONS(3105), + [anon_sym_f32] = ACTIONS(3105), + [anon_sym_f64] = ACTIONS(3105), + [anon_sym_bool] = ACTIONS(3105), + [anon_sym_str] = ACTIONS(3105), + [anon_sym_char] = ACTIONS(3105), + [anon_sym_BANG] = ACTIONS(3107), + [anon_sym_AMP] = ACTIONS(3109), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3111), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), + [anon_sym_default] = ACTIONS(3113), + [anon_sym_fn] = ACTIONS(3115), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(3117), + [anon_sym_union] = ACTIONS(3119), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(3121), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(3125), + [sym_super] = ACTIONS(3125), + [sym_crate] = ACTIONS(3125), + [sym_metavariable] = ACTIONS(3127), + }, + [947] = { + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2501), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), + [sym_line_comment] = STATE(947), + [sym_block_comment] = STATE(947), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2953), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -104378,21 +104456,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -104400,107 +104478,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [947] = { - [sym_function_modifiers] = STATE(3338), - [sym_removed_trait_bound] = STATE(1451), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1213), - [sym_bracketed_type] = STATE(3514), - [sym_lifetime] = STATE(3511), - [sym_array_type] = STATE(1451), - [sym_for_lifetimes] = STATE(1592), - [sym_function_type] = STATE(1451), - [sym_tuple_type] = STATE(1451), - [sym_unit_type] = STATE(1451), - [sym_generic_type] = STATE(1078), - [sym_generic_type_with_turbofish] = STATE(3504), - [sym_bounded_type] = STATE(1451), - [sym_reference_type] = STATE(1451), - [sym_pointer_type] = STATE(1451), - [sym_never_type] = STATE(1451), - [sym_abstract_type] = STATE(1451), - [sym_dynamic_type] = STATE(1451), - [sym_macro_invocation] = STATE(1451), - [sym_scoped_identifier] = STATE(3202), - [sym_scoped_type_identifier] = STATE(1028), - [sym_line_comment] = STATE(947), - [sym_block_comment] = STATE(947), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3095), - [anon_sym_LPAREN] = ACTIONS(3097), - [anon_sym_LBRACK] = ACTIONS(3099), - [anon_sym_STAR] = ACTIONS(3103), - [anon_sym_QMARK] = ACTIONS(3105), - [anon_sym_u8] = ACTIONS(3107), - [anon_sym_i8] = ACTIONS(3107), - [anon_sym_u16] = ACTIONS(3107), - [anon_sym_i16] = ACTIONS(3107), - [anon_sym_u32] = ACTIONS(3107), - [anon_sym_i32] = ACTIONS(3107), - [anon_sym_u64] = ACTIONS(3107), - [anon_sym_i64] = ACTIONS(3107), - [anon_sym_u128] = ACTIONS(3107), - [anon_sym_i128] = ACTIONS(3107), - [anon_sym_isize] = ACTIONS(3107), - [anon_sym_usize] = ACTIONS(3107), - [anon_sym_f32] = ACTIONS(3107), - [anon_sym_f64] = ACTIONS(3107), - [anon_sym_bool] = ACTIONS(3107), - [anon_sym_str] = ACTIONS(3107), - [anon_sym_char] = ACTIONS(3107), - [anon_sym_BANG] = ACTIONS(3109), - [anon_sym_AMP] = ACTIONS(3111), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3113), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(3115), - [anon_sym_fn] = ACTIONS(3117), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(3119), - [anon_sym_union] = ACTIONS(3121), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(3123), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3127), - [sym_super] = ACTIONS(3127), - [sym_crate] = ACTIONS(3127), - [sym_metavariable] = ACTIONS(3129), - }, [948] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2997), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2310), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), [sym_line_comment] = STATE(948), [sym_block_comment] = STATE(948), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2953), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -104518,21 +104526,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -104541,106 +104549,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1584), }, [949] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2622), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3339), + [sym_removed_trait_bound] = STATE(1351), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(1418), + [sym_bracketed_type] = STATE(3522), + [sym_lifetime] = STATE(3444), + [sym_array_type] = STATE(1351), + [sym_for_lifetimes] = STATE(1614), + [sym_function_type] = STATE(1351), + [sym_tuple_type] = STATE(1351), + [sym_unit_type] = STATE(1351), + [sym_generic_type] = STATE(1059), + [sym_generic_type_with_turbofish] = STATE(3512), + [sym_bounded_type] = STATE(1351), + [sym_reference_type] = STATE(1351), + [sym_pointer_type] = STATE(1351), + [sym_never_type] = STATE(1351), + [sym_abstract_type] = STATE(1351), + [sym_dynamic_type] = STATE(1351), + [sym_macro_invocation] = STATE(1351), + [sym_scoped_identifier] = STATE(3269), + [sym_scoped_type_identifier] = STATE(1024), [sym_line_comment] = STATE(949), [sym_block_comment] = STATE(949), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(3093), + [anon_sym_LPAREN] = ACTIONS(3095), + [anon_sym_LBRACK] = ACTIONS(3097), + [anon_sym_STAR] = ACTIONS(3101), + [anon_sym_QMARK] = ACTIONS(3103), + [anon_sym_u8] = ACTIONS(3105), + [anon_sym_i8] = ACTIONS(3105), + [anon_sym_u16] = ACTIONS(3105), + [anon_sym_i16] = ACTIONS(3105), + [anon_sym_u32] = ACTIONS(3105), + [anon_sym_i32] = ACTIONS(3105), + [anon_sym_u64] = ACTIONS(3105), + [anon_sym_i64] = ACTIONS(3105), + [anon_sym_u128] = ACTIONS(3105), + [anon_sym_i128] = ACTIONS(3105), + [anon_sym_isize] = ACTIONS(3105), + [anon_sym_usize] = ACTIONS(3105), + [anon_sym_f32] = ACTIONS(3105), + [anon_sym_f64] = ACTIONS(3105), + [anon_sym_bool] = ACTIONS(3105), + [anon_sym_str] = ACTIONS(3105), + [anon_sym_char] = ACTIONS(3105), + [anon_sym_BANG] = ACTIONS(3107), + [anon_sym_AMP] = ACTIONS(3109), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3111), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), + [anon_sym_default] = ACTIONS(3113), + [anon_sym_fn] = ACTIONS(3115), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(3117), + [anon_sym_union] = ACTIONS(3119), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(3121), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(3125), + [sym_super] = ACTIONS(3125), + [sym_crate] = ACTIONS(3125), + [sym_metavariable] = ACTIONS(3127), }, [950] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2291), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(2384), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(2168), + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(3125), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), [sym_line_comment] = STATE(950), [sym_block_comment] = STATE(950), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3193), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2953), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -104658,21 +104666,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(3195), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -104681,36 +104689,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1584), }, [951] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2414), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2197), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), [sym_line_comment] = STATE(951), [sym_block_comment] = STATE(951), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2953), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -104728,21 +104736,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -104751,106 +104759,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1584), }, [952] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2758), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3480), + [sym_removed_trait_bound] = STATE(1674), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(1685), + [sym_bracketed_type] = STATE(3537), + [sym_lifetime] = STATE(3572), + [sym_array_type] = STATE(1674), + [sym_for_lifetimes] = STATE(1623), + [sym_function_type] = STATE(1674), + [sym_tuple_type] = STATE(1674), + [sym_unit_type] = STATE(1674), + [sym_generic_type] = STATE(1591), + [sym_generic_type_with_turbofish] = STATE(3529), + [sym_bounded_type] = STATE(1674), + [sym_reference_type] = STATE(1674), + [sym_pointer_type] = STATE(1674), + [sym_never_type] = STATE(1674), + [sym_abstract_type] = STATE(1674), + [sym_dynamic_type] = STATE(1674), + [sym_macro_invocation] = STATE(1674), + [sym_scoped_identifier] = STATE(3130), + [sym_scoped_type_identifier] = STATE(1516), [sym_line_comment] = STATE(952), [sym_block_comment] = STATE(952), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(3051), + [anon_sym_LPAREN] = ACTIONS(3053), + [anon_sym_LBRACK] = ACTIONS(3055), + [anon_sym_STAR] = ACTIONS(3059), + [anon_sym_QMARK] = ACTIONS(3061), + [anon_sym_u8] = ACTIONS(3063), + [anon_sym_i8] = ACTIONS(3063), + [anon_sym_u16] = ACTIONS(3063), + [anon_sym_i16] = ACTIONS(3063), + [anon_sym_u32] = ACTIONS(3063), + [anon_sym_i32] = ACTIONS(3063), + [anon_sym_u64] = ACTIONS(3063), + [anon_sym_i64] = ACTIONS(3063), + [anon_sym_u128] = ACTIONS(3063), + [anon_sym_i128] = ACTIONS(3063), + [anon_sym_isize] = ACTIONS(3063), + [anon_sym_usize] = ACTIONS(3063), + [anon_sym_f32] = ACTIONS(3063), + [anon_sym_f64] = ACTIONS(3063), + [anon_sym_bool] = ACTIONS(3063), + [anon_sym_str] = ACTIONS(3063), + [anon_sym_char] = ACTIONS(3063), + [anon_sym_BANG] = ACTIONS(3065), + [anon_sym_AMP] = ACTIONS(3067), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3069), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), + [anon_sym_default] = ACTIONS(3071), + [anon_sym_fn] = ACTIONS(3073), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(3075), + [anon_sym_union] = ACTIONS(3077), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(3079), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(3083), + [sym_super] = ACTIONS(3083), + [sym_crate] = ACTIONS(3083), + [sym_metavariable] = ACTIONS(3085), }, [953] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2307), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2323), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), [sym_line_comment] = STATE(953), [sym_block_comment] = STATE(953), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2953), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -104868,21 +104876,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -104891,36 +104899,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1584), }, [954] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2308), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2419), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), [sym_line_comment] = STATE(954), [sym_block_comment] = STATE(954), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2953), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -104938,21 +104946,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -104961,36 +104969,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1584), }, [955] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2538), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2380), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), [sym_line_comment] = STATE(955), [sym_block_comment] = STATE(955), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2953), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -105008,21 +105016,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -105031,36 +105039,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1584), }, [956] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2789), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(1967), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(1993), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), [sym_line_comment] = STATE(956), [sym_block_comment] = STATE(956), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2953), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -105078,21 +105086,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -105101,36 +105109,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1584), }, [957] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2450), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2568), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), [sym_line_comment] = STATE(957), [sym_block_comment] = STATE(957), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2953), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -105148,21 +105156,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -105171,36 +105179,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1584), }, [958] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2541), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(3133), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), [sym_line_comment] = STATE(958), [sym_block_comment] = STATE(958), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2953), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -105218,21 +105226,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -105241,36 +105249,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1584), }, [959] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2309), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(2386), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(2172), + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2631), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), [sym_line_comment] = STATE(959), [sym_block_comment] = STATE(959), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3197), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2953), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -105288,21 +105296,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(3199), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -105311,36 +105319,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1584), }, [960] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2366), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(1967), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), [sym_line_comment] = STATE(960), [sym_block_comment] = STATE(960), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2953), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -105358,21 +105366,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -105381,36 +105389,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1584), }, [961] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2367), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2605), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), [sym_line_comment] = STATE(961), [sym_block_comment] = STATE(961), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2953), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -105428,21 +105436,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -105451,36 +105459,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1584), }, [962] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2370), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2723), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), [sym_line_comment] = STATE(962), [sym_block_comment] = STATE(962), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2953), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -105498,21 +105506,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -105521,106 +105529,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1584), }, [963] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2192), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2615), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), [sym_line_comment] = STATE(963), [sym_block_comment] = STATE(963), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - }, - [964] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2321), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), - [sym_line_comment] = STATE(964), - [sym_block_comment] = STATE(964), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2953), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -105638,21 +105576,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -105660,37 +105598,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [965] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2290), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), - [sym_line_comment] = STATE(965), - [sym_block_comment] = STATE(965), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), + [964] = { + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2856), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), + [sym_line_comment] = STATE(964), + [sym_block_comment] = STATE(964), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2953), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -105708,21 +105646,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -105730,37 +105668,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [966] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2323), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), - [sym_line_comment] = STATE(966), - [sym_block_comment] = STATE(966), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), + [965] = { + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2649), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), + [sym_line_comment] = STATE(965), + [sym_block_comment] = STATE(965), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2953), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -105778,21 +105716,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -105800,177 +105738,247 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, + [966] = { + [sym_function_modifiers] = STATE(3339), + [sym_removed_trait_bound] = STATE(1351), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(1280), + [sym_bracketed_type] = STATE(3522), + [sym_lifetime] = STATE(3444), + [sym_array_type] = STATE(1351), + [sym_for_lifetimes] = STATE(1614), + [sym_function_type] = STATE(1351), + [sym_tuple_type] = STATE(1351), + [sym_unit_type] = STATE(1351), + [sym_generic_type] = STATE(1059), + [sym_generic_type_with_turbofish] = STATE(3512), + [sym_bounded_type] = STATE(1351), + [sym_reference_type] = STATE(1351), + [sym_pointer_type] = STATE(1351), + [sym_never_type] = STATE(1351), + [sym_abstract_type] = STATE(1351), + [sym_dynamic_type] = STATE(1351), + [sym_macro_invocation] = STATE(1351), + [sym_scoped_identifier] = STATE(3269), + [sym_scoped_type_identifier] = STATE(1024), + [sym_line_comment] = STATE(966), + [sym_block_comment] = STATE(966), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(3093), + [anon_sym_LPAREN] = ACTIONS(3095), + [anon_sym_LBRACK] = ACTIONS(3097), + [anon_sym_STAR] = ACTIONS(3101), + [anon_sym_QMARK] = ACTIONS(3103), + [anon_sym_u8] = ACTIONS(3105), + [anon_sym_i8] = ACTIONS(3105), + [anon_sym_u16] = ACTIONS(3105), + [anon_sym_i16] = ACTIONS(3105), + [anon_sym_u32] = ACTIONS(3105), + [anon_sym_i32] = ACTIONS(3105), + [anon_sym_u64] = ACTIONS(3105), + [anon_sym_i64] = ACTIONS(3105), + [anon_sym_u128] = ACTIONS(3105), + [anon_sym_i128] = ACTIONS(3105), + [anon_sym_isize] = ACTIONS(3105), + [anon_sym_usize] = ACTIONS(3105), + [anon_sym_f32] = ACTIONS(3105), + [anon_sym_f64] = ACTIONS(3105), + [anon_sym_bool] = ACTIONS(3105), + [anon_sym_str] = ACTIONS(3105), + [anon_sym_char] = ACTIONS(3105), + [anon_sym_BANG] = ACTIONS(3107), + [anon_sym_AMP] = ACTIONS(3109), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3111), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), + [anon_sym_default] = ACTIONS(3113), + [anon_sym_fn] = ACTIONS(3115), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(3117), + [anon_sym_union] = ACTIONS(3119), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(3121), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(3125), + [sym_super] = ACTIONS(3125), + [sym_crate] = ACTIONS(3125), + [sym_metavariable] = ACTIONS(3127), + }, [967] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2324), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3339), + [sym_removed_trait_bound] = STATE(1351), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(1334), + [sym_bracketed_type] = STATE(3522), + [sym_lifetime] = STATE(3444), + [sym_array_type] = STATE(1351), + [sym_for_lifetimes] = STATE(1614), + [sym_function_type] = STATE(1351), + [sym_tuple_type] = STATE(1351), + [sym_unit_type] = STATE(1351), + [sym_generic_type] = STATE(1059), + [sym_generic_type_with_turbofish] = STATE(3512), + [sym_bounded_type] = STATE(1351), + [sym_reference_type] = STATE(1351), + [sym_pointer_type] = STATE(1351), + [sym_never_type] = STATE(1351), + [sym_abstract_type] = STATE(1351), + [sym_dynamic_type] = STATE(1351), + [sym_macro_invocation] = STATE(1351), + [sym_scoped_identifier] = STATE(3269), + [sym_scoped_type_identifier] = STATE(1024), [sym_line_comment] = STATE(967), [sym_block_comment] = STATE(967), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(3093), + [anon_sym_LPAREN] = ACTIONS(3095), + [anon_sym_LBRACK] = ACTIONS(3097), + [anon_sym_STAR] = ACTIONS(3101), + [anon_sym_QMARK] = ACTIONS(3103), + [anon_sym_u8] = ACTIONS(3105), + [anon_sym_i8] = ACTIONS(3105), + [anon_sym_u16] = ACTIONS(3105), + [anon_sym_i16] = ACTIONS(3105), + [anon_sym_u32] = ACTIONS(3105), + [anon_sym_i32] = ACTIONS(3105), + [anon_sym_u64] = ACTIONS(3105), + [anon_sym_i64] = ACTIONS(3105), + [anon_sym_u128] = ACTIONS(3105), + [anon_sym_i128] = ACTIONS(3105), + [anon_sym_isize] = ACTIONS(3105), + [anon_sym_usize] = ACTIONS(3105), + [anon_sym_f32] = ACTIONS(3105), + [anon_sym_f64] = ACTIONS(3105), + [anon_sym_bool] = ACTIONS(3105), + [anon_sym_str] = ACTIONS(3105), + [anon_sym_char] = ACTIONS(3105), + [anon_sym_BANG] = ACTIONS(3107), + [anon_sym_AMP] = ACTIONS(3109), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3111), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), + [anon_sym_default] = ACTIONS(3113), + [anon_sym_fn] = ACTIONS(3115), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(3117), + [anon_sym_union] = ACTIONS(3119), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(3121), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(3125), + [sym_super] = ACTIONS(3125), + [sym_crate] = ACTIONS(3125), + [sym_metavariable] = ACTIONS(3127), }, [968] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2557), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3480), + [sym_removed_trait_bound] = STATE(1674), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(1683), + [sym_bracketed_type] = STATE(3537), + [sym_lifetime] = STATE(3572), + [sym_array_type] = STATE(1674), + [sym_for_lifetimes] = STATE(1623), + [sym_function_type] = STATE(1674), + [sym_tuple_type] = STATE(1674), + [sym_unit_type] = STATE(1674), + [sym_generic_type] = STATE(1591), + [sym_generic_type_with_turbofish] = STATE(3529), + [sym_bounded_type] = STATE(1674), + [sym_reference_type] = STATE(1674), + [sym_pointer_type] = STATE(1674), + [sym_never_type] = STATE(1674), + [sym_abstract_type] = STATE(1674), + [sym_dynamic_type] = STATE(1674), + [sym_macro_invocation] = STATE(1674), + [sym_scoped_identifier] = STATE(3130), + [sym_scoped_type_identifier] = STATE(1516), [sym_line_comment] = STATE(968), [sym_block_comment] = STATE(968), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(3051), + [anon_sym_LPAREN] = ACTIONS(3053), + [anon_sym_LBRACK] = ACTIONS(3055), + [anon_sym_STAR] = ACTIONS(3059), + [anon_sym_QMARK] = ACTIONS(3061), + [anon_sym_u8] = ACTIONS(3063), + [anon_sym_i8] = ACTIONS(3063), + [anon_sym_u16] = ACTIONS(3063), + [anon_sym_i16] = ACTIONS(3063), + [anon_sym_u32] = ACTIONS(3063), + [anon_sym_i32] = ACTIONS(3063), + [anon_sym_u64] = ACTIONS(3063), + [anon_sym_i64] = ACTIONS(3063), + [anon_sym_u128] = ACTIONS(3063), + [anon_sym_i128] = ACTIONS(3063), + [anon_sym_isize] = ACTIONS(3063), + [anon_sym_usize] = ACTIONS(3063), + [anon_sym_f32] = ACTIONS(3063), + [anon_sym_f64] = ACTIONS(3063), + [anon_sym_bool] = ACTIONS(3063), + [anon_sym_str] = ACTIONS(3063), + [anon_sym_char] = ACTIONS(3063), + [anon_sym_BANG] = ACTIONS(3065), + [anon_sym_AMP] = ACTIONS(3067), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3069), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), + [anon_sym_default] = ACTIONS(3071), + [anon_sym_fn] = ACTIONS(3073), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(3075), + [anon_sym_union] = ACTIONS(3077), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(3079), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(3083), + [sym_super] = ACTIONS(3083), + [sym_crate] = ACTIONS(3083), + [sym_metavariable] = ACTIONS(3085), }, [969] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2909), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2347), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(2309), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(2137), [sym_line_comment] = STATE(969), [sym_block_comment] = STATE(969), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(3197), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -105988,21 +105996,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(3199), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -106011,36 +106019,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1584), }, [970] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2484), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2371), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), [sym_line_comment] = STATE(970), [sym_block_comment] = STATE(970), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2953), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -106058,21 +106066,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -106081,36 +106089,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1584), }, [971] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2558), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2302), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), [sym_line_comment] = STATE(971), [sym_block_comment] = STATE(971), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2953), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -106128,21 +106136,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -106151,106 +106159,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1584), }, [972] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2932), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3480), + [sym_removed_trait_bound] = STATE(1674), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(1681), + [sym_bracketed_type] = STATE(3537), + [sym_lifetime] = STATE(3572), + [sym_array_type] = STATE(1674), + [sym_for_lifetimes] = STATE(1623), + [sym_function_type] = STATE(1674), + [sym_tuple_type] = STATE(1674), + [sym_unit_type] = STATE(1674), + [sym_generic_type] = STATE(1591), + [sym_generic_type_with_turbofish] = STATE(3529), + [sym_bounded_type] = STATE(1674), + [sym_reference_type] = STATE(1674), + [sym_pointer_type] = STATE(1674), + [sym_never_type] = STATE(1674), + [sym_abstract_type] = STATE(1674), + [sym_dynamic_type] = STATE(1674), + [sym_macro_invocation] = STATE(1674), + [sym_scoped_identifier] = STATE(3130), + [sym_scoped_type_identifier] = STATE(1516), [sym_line_comment] = STATE(972), [sym_block_comment] = STATE(972), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(3051), + [anon_sym_LPAREN] = ACTIONS(3053), + [anon_sym_LBRACK] = ACTIONS(3055), + [anon_sym_STAR] = ACTIONS(3059), + [anon_sym_QMARK] = ACTIONS(3061), + [anon_sym_u8] = ACTIONS(3063), + [anon_sym_i8] = ACTIONS(3063), + [anon_sym_u16] = ACTIONS(3063), + [anon_sym_i16] = ACTIONS(3063), + [anon_sym_u32] = ACTIONS(3063), + [anon_sym_i32] = ACTIONS(3063), + [anon_sym_u64] = ACTIONS(3063), + [anon_sym_i64] = ACTIONS(3063), + [anon_sym_u128] = ACTIONS(3063), + [anon_sym_i128] = ACTIONS(3063), + [anon_sym_isize] = ACTIONS(3063), + [anon_sym_usize] = ACTIONS(3063), + [anon_sym_f32] = ACTIONS(3063), + [anon_sym_f64] = ACTIONS(3063), + [anon_sym_bool] = ACTIONS(3063), + [anon_sym_str] = ACTIONS(3063), + [anon_sym_char] = ACTIONS(3063), + [anon_sym_BANG] = ACTIONS(3065), + [anon_sym_AMP] = ACTIONS(3067), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3069), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), + [anon_sym_default] = ACTIONS(3071), + [anon_sym_fn] = ACTIONS(3073), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(3075), + [anon_sym_union] = ACTIONS(3077), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(3079), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(3083), + [sym_super] = ACTIONS(3083), + [sym_crate] = ACTIONS(3083), + [sym_metavariable] = ACTIONS(3085), }, [973] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2560), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2209), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), [sym_line_comment] = STATE(973), [sym_block_comment] = STATE(973), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2953), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -106268,21 +106276,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -106291,36 +106299,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1584), }, [974] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2376), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2208), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), [sym_line_comment] = STATE(974), [sym_block_comment] = STATE(974), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2953), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -106338,21 +106346,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -106361,36 +106369,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1584), }, [975] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2218), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2864), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), [sym_line_comment] = STATE(975), [sym_block_comment] = STATE(975), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2953), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -106408,21 +106416,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -106431,36 +106439,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1584), }, [976] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2330), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2673), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), [sym_line_comment] = STATE(976), [sym_block_comment] = STATE(976), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2953), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -106478,21 +106486,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -106501,36 +106509,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1584), }, [977] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2331), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2325), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), [sym_line_comment] = STATE(977), [sym_block_comment] = STATE(977), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2953), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -106548,21 +106556,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -106571,36 +106579,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1584), }, [978] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2986), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2834), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), [sym_line_comment] = STATE(978), [sym_block_comment] = STATE(978), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2953), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -106618,21 +106626,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -106641,36 +106649,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1584), }, [979] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1968), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2441), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), [sym_line_comment] = STATE(979), [sym_block_comment] = STATE(979), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2953), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -106688,21 +106696,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -106711,36 +106719,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1584), }, [980] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2332), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2410), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), [sym_line_comment] = STATE(980), [sym_block_comment] = STATE(980), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2953), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -106758,21 +106766,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -106781,246 +106789,246 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1584), }, [981] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2333), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3339), + [sym_removed_trait_bound] = STATE(1351), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(1190), + [sym_bracketed_type] = STATE(3522), + [sym_lifetime] = STATE(3444), + [sym_array_type] = STATE(1351), + [sym_for_lifetimes] = STATE(1614), + [sym_function_type] = STATE(1351), + [sym_tuple_type] = STATE(1351), + [sym_unit_type] = STATE(1351), + [sym_generic_type] = STATE(1059), + [sym_generic_type_with_turbofish] = STATE(3512), + [sym_bounded_type] = STATE(1351), + [sym_reference_type] = STATE(1351), + [sym_pointer_type] = STATE(1351), + [sym_never_type] = STATE(1351), + [sym_abstract_type] = STATE(1351), + [sym_dynamic_type] = STATE(1351), + [sym_macro_invocation] = STATE(1351), + [sym_scoped_identifier] = STATE(3269), + [sym_scoped_type_identifier] = STATE(1024), [sym_line_comment] = STATE(981), [sym_block_comment] = STATE(981), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(3093), + [anon_sym_LPAREN] = ACTIONS(3095), + [anon_sym_LBRACK] = ACTIONS(3097), + [anon_sym_STAR] = ACTIONS(3101), + [anon_sym_QMARK] = ACTIONS(3103), + [anon_sym_u8] = ACTIONS(3105), + [anon_sym_i8] = ACTIONS(3105), + [anon_sym_u16] = ACTIONS(3105), + [anon_sym_i16] = ACTIONS(3105), + [anon_sym_u32] = ACTIONS(3105), + [anon_sym_i32] = ACTIONS(3105), + [anon_sym_u64] = ACTIONS(3105), + [anon_sym_i64] = ACTIONS(3105), + [anon_sym_u128] = ACTIONS(3105), + [anon_sym_i128] = ACTIONS(3105), + [anon_sym_isize] = ACTIONS(3105), + [anon_sym_usize] = ACTIONS(3105), + [anon_sym_f32] = ACTIONS(3105), + [anon_sym_f64] = ACTIONS(3105), + [anon_sym_bool] = ACTIONS(3105), + [anon_sym_str] = ACTIONS(3105), + [anon_sym_char] = ACTIONS(3105), + [anon_sym_BANG] = ACTIONS(3107), + [anon_sym_AMP] = ACTIONS(3109), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3111), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), + [anon_sym_default] = ACTIONS(3113), + [anon_sym_fn] = ACTIONS(3115), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(3117), + [anon_sym_union] = ACTIONS(3119), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(3121), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(3125), + [sym_super] = ACTIONS(3125), + [sym_crate] = ACTIONS(3125), + [sym_metavariable] = ACTIONS(3127), }, [982] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2335), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3480), + [sym_removed_trait_bound] = STATE(1674), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(1822), + [sym_bracketed_type] = STATE(3537), + [sym_lifetime] = STATE(3572), + [sym_array_type] = STATE(1674), + [sym_for_lifetimes] = STATE(1623), + [sym_function_type] = STATE(1674), + [sym_tuple_type] = STATE(1674), + [sym_unit_type] = STATE(1674), + [sym_generic_type] = STATE(1591), + [sym_generic_type_with_turbofish] = STATE(3529), + [sym_bounded_type] = STATE(1674), + [sym_reference_type] = STATE(1674), + [sym_pointer_type] = STATE(1674), + [sym_never_type] = STATE(1674), + [sym_abstract_type] = STATE(1674), + [sym_dynamic_type] = STATE(1674), + [sym_macro_invocation] = STATE(1674), + [sym_scoped_identifier] = STATE(3130), + [sym_scoped_type_identifier] = STATE(1516), [sym_line_comment] = STATE(982), [sym_block_comment] = STATE(982), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(3051), + [anon_sym_LPAREN] = ACTIONS(3053), + [anon_sym_LBRACK] = ACTIONS(3055), + [anon_sym_STAR] = ACTIONS(3059), + [anon_sym_QMARK] = ACTIONS(3061), + [anon_sym_u8] = ACTIONS(3063), + [anon_sym_i8] = ACTIONS(3063), + [anon_sym_u16] = ACTIONS(3063), + [anon_sym_i16] = ACTIONS(3063), + [anon_sym_u32] = ACTIONS(3063), + [anon_sym_i32] = ACTIONS(3063), + [anon_sym_u64] = ACTIONS(3063), + [anon_sym_i64] = ACTIONS(3063), + [anon_sym_u128] = ACTIONS(3063), + [anon_sym_i128] = ACTIONS(3063), + [anon_sym_isize] = ACTIONS(3063), + [anon_sym_usize] = ACTIONS(3063), + [anon_sym_f32] = ACTIONS(3063), + [anon_sym_f64] = ACTIONS(3063), + [anon_sym_bool] = ACTIONS(3063), + [anon_sym_str] = ACTIONS(3063), + [anon_sym_char] = ACTIONS(3063), + [anon_sym_BANG] = ACTIONS(3065), + [anon_sym_AMP] = ACTIONS(3067), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3069), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), + [anon_sym_default] = ACTIONS(3071), + [anon_sym_fn] = ACTIONS(3073), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(3075), + [anon_sym_union] = ACTIONS(3077), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(3079), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(3083), + [sym_super] = ACTIONS(3083), + [sym_crate] = ACTIONS(3083), + [sym_metavariable] = ACTIONS(3085), }, [983] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2224), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3339), + [sym_removed_trait_bound] = STATE(1351), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(1273), + [sym_bracketed_type] = STATE(3522), + [sym_lifetime] = STATE(3444), + [sym_array_type] = STATE(1351), + [sym_for_lifetimes] = STATE(1614), + [sym_function_type] = STATE(1351), + [sym_tuple_type] = STATE(1351), + [sym_unit_type] = STATE(1351), + [sym_generic_type] = STATE(1059), + [sym_generic_type_with_turbofish] = STATE(3512), + [sym_bounded_type] = STATE(1351), + [sym_reference_type] = STATE(1351), + [sym_pointer_type] = STATE(1351), + [sym_never_type] = STATE(1351), + [sym_abstract_type] = STATE(1351), + [sym_dynamic_type] = STATE(1351), + [sym_macro_invocation] = STATE(1351), + [sym_scoped_identifier] = STATE(3269), + [sym_scoped_type_identifier] = STATE(1024), [sym_line_comment] = STATE(983), [sym_block_comment] = STATE(983), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(3093), + [anon_sym_LPAREN] = ACTIONS(3095), + [anon_sym_LBRACK] = ACTIONS(3097), + [anon_sym_STAR] = ACTIONS(3101), + [anon_sym_QMARK] = ACTIONS(3103), + [anon_sym_u8] = ACTIONS(3105), + [anon_sym_i8] = ACTIONS(3105), + [anon_sym_u16] = ACTIONS(3105), + [anon_sym_i16] = ACTIONS(3105), + [anon_sym_u32] = ACTIONS(3105), + [anon_sym_i32] = ACTIONS(3105), + [anon_sym_u64] = ACTIONS(3105), + [anon_sym_i64] = ACTIONS(3105), + [anon_sym_u128] = ACTIONS(3105), + [anon_sym_i128] = ACTIONS(3105), + [anon_sym_isize] = ACTIONS(3105), + [anon_sym_usize] = ACTIONS(3105), + [anon_sym_f32] = ACTIONS(3105), + [anon_sym_f64] = ACTIONS(3105), + [anon_sym_bool] = ACTIONS(3105), + [anon_sym_str] = ACTIONS(3105), + [anon_sym_char] = ACTIONS(3105), + [anon_sym_BANG] = ACTIONS(3107), + [anon_sym_AMP] = ACTIONS(3109), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3111), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), + [anon_sym_default] = ACTIONS(3113), + [anon_sym_fn] = ACTIONS(3115), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(3117), + [anon_sym_union] = ACTIONS(3119), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(3121), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(3125), + [sym_super] = ACTIONS(3125), + [sym_crate] = ACTIONS(3125), + [sym_metavariable] = ACTIONS(3127), }, [984] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2570), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2224), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), [sym_line_comment] = STATE(984), [sym_block_comment] = STATE(984), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2953), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -107038,21 +107046,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -107061,36 +107069,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1584), }, [985] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2338), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2809), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), [sym_line_comment] = STATE(985), [sym_block_comment] = STATE(985), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2953), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -107108,21 +107116,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -107131,36 +107139,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1584), }, [986] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2339), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(1977), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), [sym_line_comment] = STATE(986), [sym_block_comment] = STATE(986), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2953), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -107178,21 +107186,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -107201,36 +107209,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1584), }, [987] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2186), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2926), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), [sym_line_comment] = STATE(987), [sym_block_comment] = STATE(987), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2953), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -107248,21 +107256,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -107271,36 +107279,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1584), }, [988] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2739), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2319), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), [sym_line_comment] = STATE(988), [sym_block_comment] = STATE(988), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2953), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -107318,21 +107326,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -107341,36 +107349,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1584), }, [989] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2190), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(1988), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), [sym_line_comment] = STATE(989), [sym_block_comment] = STATE(989), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2953), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -107388,21 +107396,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -107411,36 +107419,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1584), }, [990] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2664), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(1989), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), [sym_line_comment] = STATE(990), [sym_block_comment] = STATE(990), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2953), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -107458,21 +107466,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -107481,36 +107489,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1584), }, [991] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2193), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2316), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), [sym_line_comment] = STATE(991), [sym_block_comment] = STATE(991), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2953), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -107528,21 +107536,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -107551,36 +107559,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1584), }, [992] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2195), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2943), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), [sym_line_comment] = STATE(992), [sym_block_comment] = STATE(992), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2953), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -107598,21 +107606,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -107621,36 +107629,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1584), }, [993] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2780), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2763), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), [sym_line_comment] = STATE(993), [sym_block_comment] = STATE(993), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2953), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -107668,21 +107676,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -107691,36 +107699,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1584), }, [994] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2523), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2637), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), [sym_line_comment] = STATE(994), [sym_block_comment] = STATE(994), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2953), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -107738,21 +107746,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -107761,36 +107769,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1584), }, [995] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1975), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2315), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), [sym_line_comment] = STATE(995), [sym_block_comment] = STATE(995), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2953), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -107808,21 +107816,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -107831,36 +107839,176 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1584), }, [996] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2947), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3339), + [sym_removed_trait_bound] = STATE(1351), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(1270), + [sym_bracketed_type] = STATE(3522), + [sym_lifetime] = STATE(3444), + [sym_array_type] = STATE(1351), + [sym_for_lifetimes] = STATE(1614), + [sym_function_type] = STATE(1351), + [sym_tuple_type] = STATE(1351), + [sym_unit_type] = STATE(1351), + [sym_generic_type] = STATE(1059), + [sym_generic_type_with_turbofish] = STATE(3512), + [sym_bounded_type] = STATE(1351), + [sym_reference_type] = STATE(1351), + [sym_pointer_type] = STATE(1351), + [sym_never_type] = STATE(1351), + [sym_abstract_type] = STATE(1351), + [sym_dynamic_type] = STATE(1351), + [sym_macro_invocation] = STATE(1351), + [sym_scoped_identifier] = STATE(3269), + [sym_scoped_type_identifier] = STATE(1024), [sym_line_comment] = STATE(996), [sym_block_comment] = STATE(996), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(3093), + [anon_sym_LPAREN] = ACTIONS(3095), + [anon_sym_LBRACK] = ACTIONS(3097), + [anon_sym_STAR] = ACTIONS(3101), + [anon_sym_QMARK] = ACTIONS(3103), + [anon_sym_u8] = ACTIONS(3105), + [anon_sym_i8] = ACTIONS(3105), + [anon_sym_u16] = ACTIONS(3105), + [anon_sym_i16] = ACTIONS(3105), + [anon_sym_u32] = ACTIONS(3105), + [anon_sym_i32] = ACTIONS(3105), + [anon_sym_u64] = ACTIONS(3105), + [anon_sym_i64] = ACTIONS(3105), + [anon_sym_u128] = ACTIONS(3105), + [anon_sym_i128] = ACTIONS(3105), + [anon_sym_isize] = ACTIONS(3105), + [anon_sym_usize] = ACTIONS(3105), + [anon_sym_f32] = ACTIONS(3105), + [anon_sym_f64] = ACTIONS(3105), + [anon_sym_bool] = ACTIONS(3105), + [anon_sym_str] = ACTIONS(3105), + [anon_sym_char] = ACTIONS(3105), + [anon_sym_BANG] = ACTIONS(3107), + [anon_sym_AMP] = ACTIONS(3109), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3111), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), + [anon_sym_default] = ACTIONS(3113), + [anon_sym_fn] = ACTIONS(3115), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(3117), + [anon_sym_union] = ACTIONS(3119), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(3121), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(3125), + [sym_super] = ACTIONS(3125), + [sym_crate] = ACTIONS(3125), + [sym_metavariable] = ACTIONS(3127), + }, + [997] = { + [sym_line_comment] = STATE(997), + [sym_block_comment] = STATE(997), + [sym_identifier] = ACTIONS(2743), + [anon_sym_LPAREN] = ACTIONS(2741), + [anon_sym_LBRACK] = ACTIONS(2741), + [anon_sym_RBRACK] = ACTIONS(2741), + [anon_sym_LBRACE] = 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__] = ACTIONS(2743), + [anon_sym_DOT_DOT] = ACTIONS(2741), + [anon_sym_COMMA] = 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_for] = ACTIONS(2743), + [anon_sym_if] = ACTIONS(2743), + [anon_sym_loop] = ACTIONS(2743), + [anon_sym_match] = ACTIONS(2743), + [anon_sym_return] = ACTIONS(2743), + [anon_sym_static] = ACTIONS(2743), + [anon_sym_union] = ACTIONS(2743), + [anon_sym_unsafe] = ACTIONS(2743), + [anon_sym_while] = ACTIONS(2743), + [anon_sym_ref] = ACTIONS(2743), + [sym_mutable_specifier] = 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(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [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), + }, + [998] = { + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2313), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), + [sym_line_comment] = STATE(998), + [sym_block_comment] = STATE(998), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2953), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -107878,21 +108026,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -107900,37 +108048,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [997] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1989), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), - [sym_line_comment] = STATE(997), - [sym_block_comment] = STATE(997), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), + [999] = { + [sym_function_modifiers] = STATE(3339), + [sym_removed_trait_bound] = STATE(1351), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(1429), + [sym_bracketed_type] = STATE(3522), + [sym_lifetime] = STATE(3444), + [sym_array_type] = STATE(1351), + [sym_for_lifetimes] = STATE(1614), + [sym_function_type] = STATE(1351), + [sym_tuple_type] = STATE(1351), + [sym_unit_type] = STATE(1351), + [sym_generic_type] = STATE(1059), + [sym_generic_type_with_turbofish] = STATE(3512), + [sym_bounded_type] = STATE(1351), + [sym_reference_type] = STATE(1351), + [sym_pointer_type] = STATE(1351), + [sym_never_type] = STATE(1351), + [sym_abstract_type] = STATE(1351), + [sym_dynamic_type] = STATE(1351), + [sym_macro_invocation] = STATE(1351), + [sym_scoped_identifier] = STATE(3269), + [sym_scoped_type_identifier] = STATE(1024), + [sym_line_comment] = STATE(999), + [sym_block_comment] = STATE(999), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(3093), + [anon_sym_LPAREN] = ACTIONS(3095), + [anon_sym_LBRACK] = ACTIONS(3097), + [anon_sym_STAR] = ACTIONS(3101), + [anon_sym_QMARK] = ACTIONS(3103), + [anon_sym_u8] = ACTIONS(3105), + [anon_sym_i8] = ACTIONS(3105), + [anon_sym_u16] = ACTIONS(3105), + [anon_sym_i16] = ACTIONS(3105), + [anon_sym_u32] = ACTIONS(3105), + [anon_sym_i32] = ACTIONS(3105), + [anon_sym_u64] = ACTIONS(3105), + [anon_sym_i64] = ACTIONS(3105), + [anon_sym_u128] = ACTIONS(3105), + [anon_sym_i128] = ACTIONS(3105), + [anon_sym_isize] = ACTIONS(3105), + [anon_sym_usize] = ACTIONS(3105), + [anon_sym_f32] = ACTIONS(3105), + [anon_sym_f64] = ACTIONS(3105), + [anon_sym_bool] = ACTIONS(3105), + [anon_sym_str] = ACTIONS(3105), + [anon_sym_char] = ACTIONS(3105), + [anon_sym_BANG] = ACTIONS(3107), + [anon_sym_AMP] = ACTIONS(3109), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3111), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), + [anon_sym_default] = ACTIONS(3113), + [anon_sym_fn] = ACTIONS(3115), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(3117), + [anon_sym_union] = ACTIONS(3119), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(3121), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(3125), + [sym_super] = ACTIONS(3125), + [sym_crate] = ACTIONS(3125), + [sym_metavariable] = ACTIONS(3127), + }, + [1000] = { + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2933), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), + [sym_line_comment] = STATE(1000), + [sym_block_comment] = STATE(1000), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2953), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -107948,21 +108166,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -107970,247 +108188,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [998] = { - [sym_function_modifiers] = STATE(3473), - [sym_removed_trait_bound] = STATE(1701), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1764), - [sym_bracketed_type] = STATE(3529), - [sym_lifetime] = STATE(3368), - [sym_array_type] = STATE(1701), - [sym_for_lifetimes] = STATE(1613), - [sym_function_type] = STATE(1701), - [sym_tuple_type] = STATE(1701), - [sym_unit_type] = STATE(1701), - [sym_generic_type] = STATE(1608), - [sym_generic_type_with_turbofish] = STATE(3521), - [sym_bounded_type] = STATE(1701), - [sym_reference_type] = STATE(1701), - [sym_pointer_type] = STATE(1701), - [sym_never_type] = STATE(1701), - [sym_abstract_type] = STATE(1701), - [sym_dynamic_type] = STATE(1701), - [sym_macro_invocation] = STATE(1701), - [sym_scoped_identifier] = STATE(3264), - [sym_scoped_type_identifier] = STATE(1526), - [sym_line_comment] = STATE(998), - [sym_block_comment] = STATE(998), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3059), - [anon_sym_LPAREN] = ACTIONS(3061), - [anon_sym_LBRACK] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_QMARK] = ACTIONS(3069), - [anon_sym_u8] = ACTIONS(3071), - [anon_sym_i8] = ACTIONS(3071), - [anon_sym_u16] = ACTIONS(3071), - [anon_sym_i16] = ACTIONS(3071), - [anon_sym_u32] = ACTIONS(3071), - [anon_sym_i32] = ACTIONS(3071), - [anon_sym_u64] = ACTIONS(3071), - [anon_sym_i64] = ACTIONS(3071), - [anon_sym_u128] = ACTIONS(3071), - [anon_sym_i128] = ACTIONS(3071), - [anon_sym_isize] = ACTIONS(3071), - [anon_sym_usize] = ACTIONS(3071), - [anon_sym_f32] = ACTIONS(3071), - [anon_sym_f64] = ACTIONS(3071), - [anon_sym_bool] = ACTIONS(3071), - [anon_sym_str] = ACTIONS(3071), - [anon_sym_char] = ACTIONS(3071), - [anon_sym_BANG] = ACTIONS(3073), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3077), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(3079), - [anon_sym_fn] = ACTIONS(3081), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(3083), - [anon_sym_union] = ACTIONS(3085), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(3087), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3091), - [sym_super] = ACTIONS(3091), - [sym_crate] = ACTIONS(3091), - [sym_metavariable] = ACTIONS(3093), - }, - [999] = { - [sym_function_modifiers] = STATE(3473), - [sym_removed_trait_bound] = STATE(1701), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1765), - [sym_bracketed_type] = STATE(3529), - [sym_lifetime] = STATE(3368), - [sym_array_type] = STATE(1701), - [sym_for_lifetimes] = STATE(1613), - [sym_function_type] = STATE(1701), - [sym_tuple_type] = STATE(1701), - [sym_unit_type] = STATE(1701), - [sym_generic_type] = STATE(1608), - [sym_generic_type_with_turbofish] = STATE(3521), - [sym_bounded_type] = STATE(1701), - [sym_reference_type] = STATE(1701), - [sym_pointer_type] = STATE(1701), - [sym_never_type] = STATE(1701), - [sym_abstract_type] = STATE(1701), - [sym_dynamic_type] = STATE(1701), - [sym_macro_invocation] = STATE(1701), - [sym_scoped_identifier] = STATE(3264), - [sym_scoped_type_identifier] = STATE(1526), - [sym_line_comment] = STATE(999), - [sym_block_comment] = STATE(999), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3059), - [anon_sym_LPAREN] = ACTIONS(3061), - [anon_sym_LBRACK] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_QMARK] = ACTIONS(3069), - [anon_sym_u8] = ACTIONS(3071), - [anon_sym_i8] = ACTIONS(3071), - [anon_sym_u16] = ACTIONS(3071), - [anon_sym_i16] = ACTIONS(3071), - [anon_sym_u32] = ACTIONS(3071), - [anon_sym_i32] = ACTIONS(3071), - [anon_sym_u64] = ACTIONS(3071), - [anon_sym_i64] = ACTIONS(3071), - [anon_sym_u128] = ACTIONS(3071), - [anon_sym_i128] = ACTIONS(3071), - [anon_sym_isize] = ACTIONS(3071), - [anon_sym_usize] = ACTIONS(3071), - [anon_sym_f32] = ACTIONS(3071), - [anon_sym_f64] = ACTIONS(3071), - [anon_sym_bool] = ACTIONS(3071), - [anon_sym_str] = ACTIONS(3071), - [anon_sym_char] = ACTIONS(3071), - [anon_sym_BANG] = ACTIONS(3073), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3077), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(3079), - [anon_sym_fn] = ACTIONS(3081), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(3083), - [anon_sym_union] = ACTIONS(3085), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(3087), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3091), - [sym_super] = ACTIONS(3091), - [sym_crate] = ACTIONS(3091), - [sym_metavariable] = ACTIONS(3093), - }, - [1000] = { - [sym_function_modifiers] = STATE(3473), - [sym_removed_trait_bound] = STATE(1701), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1725), - [sym_bracketed_type] = STATE(3529), - [sym_lifetime] = STATE(3368), - [sym_array_type] = STATE(1701), - [sym_for_lifetimes] = STATE(1613), - [sym_function_type] = STATE(1701), - [sym_tuple_type] = STATE(1701), - [sym_unit_type] = STATE(1701), - [sym_generic_type] = STATE(1608), - [sym_generic_type_with_turbofish] = STATE(3521), - [sym_bounded_type] = STATE(1701), - [sym_reference_type] = STATE(1701), - [sym_pointer_type] = STATE(1701), - [sym_never_type] = STATE(1701), - [sym_abstract_type] = STATE(1701), - [sym_dynamic_type] = STATE(1701), - [sym_macro_invocation] = STATE(1701), - [sym_scoped_identifier] = STATE(3264), - [sym_scoped_type_identifier] = STATE(1526), - [sym_line_comment] = STATE(1000), - [sym_block_comment] = STATE(1000), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3059), - [anon_sym_LPAREN] = ACTIONS(3061), - [anon_sym_LBRACK] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_QMARK] = ACTIONS(3069), - [anon_sym_u8] = ACTIONS(3071), - [anon_sym_i8] = ACTIONS(3071), - [anon_sym_u16] = ACTIONS(3071), - [anon_sym_i16] = ACTIONS(3071), - [anon_sym_u32] = ACTIONS(3071), - [anon_sym_i32] = ACTIONS(3071), - [anon_sym_u64] = ACTIONS(3071), - [anon_sym_i64] = ACTIONS(3071), - [anon_sym_u128] = ACTIONS(3071), - [anon_sym_i128] = ACTIONS(3071), - [anon_sym_isize] = ACTIONS(3071), - [anon_sym_usize] = ACTIONS(3071), - [anon_sym_f32] = ACTIONS(3071), - [anon_sym_f64] = ACTIONS(3071), - [anon_sym_bool] = ACTIONS(3071), - [anon_sym_str] = ACTIONS(3071), - [anon_sym_char] = ACTIONS(3071), - [anon_sym_BANG] = ACTIONS(3073), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3077), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(3079), - [anon_sym_fn] = ACTIONS(3081), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(3083), - [anon_sym_union] = ACTIONS(3085), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(3087), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3091), - [sym_super] = ACTIONS(3091), - [sym_crate] = ACTIONS(3091), - [sym_metavariable] = ACTIONS(3093), - }, [1001] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2312), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3468), + [sym_removed_trait_bound] = STATE(1976), + [sym_extern_modifier] = STATE(2321), + [sym__type] = STATE(2541), + [sym_bracketed_type] = STATE(3333), + [sym_lifetime] = STATE(3463), + [sym_array_type] = STATE(1976), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1976), + [sym_tuple_type] = STATE(1976), + [sym_unit_type] = STATE(1976), + [sym_generic_type] = STATE(1937), + [sym_generic_type_with_turbofish] = STATE(3461), + [sym_bounded_type] = STATE(1976), + [sym_reference_type] = STATE(1976), + [sym_pointer_type] = STATE(1976), + [sym_never_type] = STATE(1976), + [sym_abstract_type] = STATE(1976), + [sym_dynamic_type] = STATE(1976), + [sym_macro_invocation] = STATE(1976), + [sym_scoped_identifier] = STATE(3146), + [sym_scoped_type_identifier] = STATE(1918), [sym_line_comment] = STATE(1001), [sym_block_comment] = STATE(1001), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), + [aux_sym_function_modifiers_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(2953), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1270), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -108228,21 +108236,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_dyn] = ACTIONS(1314), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -108256,11 +108264,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = STATE(1002), [aux_sym_enum_variant_list_repeat1] = STATE(1002), [sym_identifier] = ACTIONS(3201), - [anon_sym_LPAREN] = ACTIONS(796), - [anon_sym_LBRACK] = ACTIONS(796), - [anon_sym_RBRACK] = ACTIONS(796), - [anon_sym_LBRACE] = ACTIONS(796), - [anon_sym_STAR] = ACTIONS(796), + [anon_sym_LPAREN] = ACTIONS(758), + [anon_sym_LBRACK] = ACTIONS(758), + [anon_sym_RBRACK] = ACTIONS(758), + [anon_sym_LBRACE] = ACTIONS(758), + [anon_sym_STAR] = ACTIONS(758), [anon_sym_u8] = ACTIONS(3201), [anon_sym_i8] = ACTIONS(3201), [anon_sym_u16] = ACTIONS(3201), @@ -108278,15 +108286,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(3201), [anon_sym_str] = ACTIONS(3201), [anon_sym_char] = ACTIONS(3201), - [anon_sym_DASH] = ACTIONS(796), - [anon_sym_BANG] = ACTIONS(796), - [anon_sym_AMP] = ACTIONS(796), - [anon_sym_PIPE] = ACTIONS(796), - [anon_sym_LT] = ACTIONS(796), - [anon_sym_DOT_DOT] = ACTIONS(796), - [anon_sym_COMMA] = ACTIONS(796), - [anon_sym_COLON_COLON] = ACTIONS(796), - [anon_sym_POUND] = ACTIONS(822), + [anon_sym_DASH] = ACTIONS(758), + [anon_sym_BANG] = ACTIONS(758), + [anon_sym_AMP] = ACTIONS(758), + [anon_sym_PIPE] = ACTIONS(758), + [anon_sym_LT] = ACTIONS(758), + [anon_sym_DOT_DOT] = ACTIONS(758), + [anon_sym_COMMA] = ACTIONS(758), + [anon_sym_COLON_COLON] = ACTIONS(758), + [anon_sym_POUND] = ACTIONS(784), [anon_sym_SQUOTE] = ACTIONS(3201), [anon_sym_async] = ACTIONS(3201), [anon_sym_break] = ACTIONS(3201), @@ -108305,9 +108313,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(3201), [anon_sym_move] = ACTIONS(3201), [anon_sym_try] = ACTIONS(3201), - [sym_integer_literal] = ACTIONS(796), - [aux_sym_string_literal_token1] = ACTIONS(796), - [sym_char_literal] = ACTIONS(796), + [sym_integer_literal] = ACTIONS(758), + [aux_sym_string_literal_token1] = ACTIONS(758), + [sym_char_literal] = ACTIONS(758), [anon_sym_true] = ACTIONS(3201), [anon_sym_false] = ACTIONS(3201), [anon_sym_SLASH_SLASH] = ACTIONS(101), @@ -108315,9 +108323,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_self] = ACTIONS(3201), [sym_super] = ACTIONS(3201), [sym_crate] = ACTIONS(3201), - [sym_metavariable] = ACTIONS(796), - [sym__raw_string_literal_start] = ACTIONS(796), - [sym_float_literal] = ACTIONS(796), + [sym_metavariable] = ACTIONS(758), + [sym__raw_string_literal_start] = ACTIONS(758), + [sym_float_literal] = ACTIONS(758), }, [1003] = { [sym_line_comment] = STATE(1003), @@ -108537,7 +108545,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1006), 2, sym_line_comment, sym_block_comment, - ACTIONS(1067), 18, + ACTIONS(1087), 18, sym__raw_string_literal_start, sym_float_literal, anon_sym_LPAREN, @@ -108606,7 +108614,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1007), 2, sym_line_comment, sym_block_comment, - ACTIONS(2410), 17, + ACTIONS(2741), 17, sym__raw_string_literal_start, sym_float_literal, anon_sym_LPAREN, @@ -108624,7 +108632,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(2412), 38, + ACTIONS(2743), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -108734,33 +108742,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1262), 1, + ACTIONS(1274), 1, anon_sym_DASH, - ACTIONS(1308), 1, + ACTIONS(1320), 1, aux_sym_string_literal_token1, - ACTIONS(1318), 1, + ACTIONS(1330), 1, sym__raw_string_literal_start, - ACTIONS(2340), 1, + ACTIONS(1930), 1, anon_sym_COLON_COLON, ACTIONS(3217), 1, sym_identifier, ACTIONS(3227), 1, sym_metavariable, - STATE(2048), 1, + STATE(2041), 1, sym_scoped_identifier, - STATE(2091), 1, + STATE(2093), 1, sym__literal_pattern, - STATE(3324), 1, + STATE(3312), 1, sym_bracketed_type, - STATE(3350), 1, + STATE(3351), 1, sym_generic_type_with_turbofish, - ACTIONS(1310), 2, + ACTIONS(1322), 2, anon_sym_true, anon_sym_false, STATE(1009), 2, sym_line_comment, sym_block_comment, - ACTIONS(1306), 3, + ACTIONS(1318), 3, sym_float_literal, sym_integer_literal, sym_char_literal, @@ -108772,7 +108780,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(2004), 4, + STATE(2009), 4, sym_negative_literal, sym_string_literal, sym_raw_string_literal, @@ -108812,33 +108820,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1262), 1, + ACTIONS(1274), 1, anon_sym_DASH, - ACTIONS(1308), 1, + ACTIONS(1320), 1, aux_sym_string_literal_token1, - ACTIONS(1318), 1, + ACTIONS(1330), 1, sym__raw_string_literal_start, - ACTIONS(2340), 1, + ACTIONS(1930), 1, anon_sym_COLON_COLON, ACTIONS(3229), 1, sym_identifier, ACTIONS(3239), 1, sym_metavariable, - STATE(2036), 1, + STATE(2057), 1, sym_scoped_identifier, - STATE(2080), 1, + STATE(2098), 1, sym__literal_pattern, - STATE(3324), 1, + STATE(3312), 1, sym_bracketed_type, - STATE(3350), 1, + STATE(3351), 1, sym_generic_type_with_turbofish, - ACTIONS(1310), 2, + ACTIONS(1322), 2, anon_sym_true, anon_sym_false, STATE(1010), 2, sym_line_comment, sym_block_comment, - ACTIONS(1306), 3, + ACTIONS(1318), 3, sym_float_literal, sym_integer_literal, sym_char_literal, @@ -108850,7 +108858,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(2004), 4, + STATE(2009), 4, sym_negative_literal, sym_string_literal, sym_raw_string_literal, @@ -108896,10 +108904,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, ACTIONS(3251), 1, anon_sym_LT2, - STATE(1071), 1, - sym_type_arguments, - STATE(1087), 1, + STATE(1050), 1, sym_parameters, + STATE(1072), 1, + sym_type_arguments, STATE(1011), 2, sym_line_comment, sym_block_comment, @@ -108960,10 +108968,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT2, ACTIONS(3257), 1, anon_sym_COLON_COLON, - STATE(1071), 1, - sym_type_arguments, - STATE(1087), 1, + STATE(1050), 1, sym_parameters, + STATE(1072), 1, + sym_type_arguments, STATE(1012), 2, sym_line_comment, sym_block_comment, @@ -109024,10 +109032,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT2, ACTIONS(3257), 1, anon_sym_COLON_COLON, - STATE(1071), 1, - sym_type_arguments, - STATE(1087), 1, + STATE(1050), 1, sym_parameters, + STATE(1072), 1, + sym_type_arguments, STATE(1013), 2, sym_line_comment, sym_block_comment, @@ -109044,456 +109052,40 @@ static const uint16_t ts_small_parse_table[] = { 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(3259), 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, - [786] = 10, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3243), 1, - anon_sym_LPAREN, - ACTIONS(3251), 1, - anon_sym_LT2, - ACTIONS(3257), 1, - anon_sym_COLON_COLON, - STATE(1071), 1, - sym_type_arguments, - STATE(1087), 1, - sym_parameters, - STATE(1014), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3265), 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(3263), 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, - [860] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1015), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1236), 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(1238), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_if, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [923] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3271), 1, - anon_sym_BANG, - ACTIONS(3273), 1, - anon_sym_COLON_COLON, - STATE(1016), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3269), 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(3267), 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, - [990] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3279), 1, - anon_sym_BANG, - ACTIONS(3281), 1, - anon_sym_COLON_COLON, - STATE(1017), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3277), 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(3275), 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, - [1057] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1018), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1206), 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(1208), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_if, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [1120] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1019), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(987), 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(985), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_if, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [1183] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1020), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1232), 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(1234), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_if, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [1246] = 9, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3259), 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, + [786] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -109502,14 +109094,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(3251), 1, anon_sym_LT2, - STATE(1075), 1, - sym_type_arguments, - STATE(1086), 1, + ACTIONS(3257), 1, + anon_sym_COLON_COLON, + STATE(1050), 1, sym_parameters, - STATE(1021), 2, + STATE(1072), 1, + sym_type_arguments, + STATE(1014), 2, sym_line_comment, sym_block_comment, - ACTIONS(3285), 17, + ACTIONS(3265), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -109527,7 +109121,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3283), 27, + ACTIONS(3263), 27, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACK, @@ -109555,7 +109149,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [1317] = 9, + [860] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -109564,14 +109158,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(3251), 1, anon_sym_LT2, - STATE(1075), 1, - sym_type_arguments, - STATE(1086), 1, + STATE(1049), 1, sym_parameters, - STATE(1022), 2, + STATE(1070), 1, + sym_type_arguments, + STATE(1015), 2, sym_line_comment, sym_block_comment, - ACTIONS(3289), 17, + ACTIONS(3269), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -109589,7 +109183,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3287), 27, + ACTIONS(3267), 27, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACK, @@ -109617,15 +109211,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [1388] = 5, + [931] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1023), 2, + STATE(1016), 2, sym_line_comment, sym_block_comment, - ACTIONS(991), 9, + ACTIONS(1003), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -109635,7 +109229,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(989), 39, + ACTIONS(1001), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -109675,19 +109269,19 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [1451] = 7, + [994] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3295), 1, + ACTIONS(3275), 1, anon_sym_BANG, - ACTIONS(3297), 1, + ACTIONS(3277), 1, anon_sym_COLON_COLON, - STATE(1024), 2, + STATE(1017), 2, sym_line_comment, sym_block_comment, - ACTIONS(3293), 17, + ACTIONS(3273), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -109705,7 +109299,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3291), 29, + ACTIONS(3271), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -109735,15 +109329,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_else, anon_sym_LT2, - [1518] = 5, + [1061] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1025), 2, + STATE(1018), 2, sym_line_comment, sym_block_comment, - ACTIONS(1442), 9, + ACTIONS(983), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -109753,7 +109347,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1444), 39, + ACTIONS(981), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -109793,15 +109387,77 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [1581] = 5, + [1124] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1026), 2, + ACTIONS(3243), 1, + anon_sym_LPAREN, + ACTIONS(3251), 1, + anon_sym_LT2, + STATE(1049), 1, + sym_parameters, + STATE(1070), 1, + sym_type_arguments, + STATE(1019), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3281), 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(3279), 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, + [1195] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1020), 2, sym_line_comment, sym_block_comment, - ACTIONS(1320), 9, + ACTIONS(1414), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -109811,7 +109467,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1322), 39, + ACTIONS(1416), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -109851,12 +109507,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [1644] = 5, + [1258] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1027), 2, + STATE(1021), 2, sym_line_comment, sym_block_comment, ACTIONS(1244), 9, @@ -109909,139 +109565,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [1707] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3243), 1, - anon_sym_LPAREN, - ACTIONS(3251), 1, - anon_sym_LT2, - STATE(1075), 1, - sym_type_arguments, - STATE(1086), 1, - sym_parameters, - STATE(1028), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3301), 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(3299), 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, - [1778] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3243), 1, - anon_sym_LPAREN, - ACTIONS(3251), 1, - anon_sym_LT2, - STATE(1075), 1, - sym_type_arguments, - STATE(1086), 1, - sym_parameters, - STATE(1029), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3305), 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(3303), 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, - [1849] = 5, + [1321] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1030), 2, + STATE(1022), 2, sym_line_comment, sym_block_comment, - ACTIONS(1240), 9, + ACTIONS(1248), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -110051,7 +109583,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1242), 39, + ACTIONS(1250), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -110091,19 +109623,19 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [1912] = 7, + [1384] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3311), 1, + ACTIONS(3287), 1, anon_sym_BANG, - ACTIONS(3313), 1, + ACTIONS(3289), 1, anon_sym_COLON_COLON, - STATE(1031), 2, + STATE(1023), 2, sym_line_comment, sym_block_comment, - ACTIONS(3309), 17, + ACTIONS(3285), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -110121,7 +109653,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3307), 29, + ACTIONS(3283), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -110151,151 +109683,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_else, anon_sym_LT2, - [1979] = 8, + [1451] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3319), 1, - anon_sym_BANG, - ACTIONS(3321), 1, - anon_sym_COLON_COLON, - STATE(1032), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3323), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - ACTIONS(3317), 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(3315), 23, - anon_sym_SEMI, + ACTIONS(3243), 1, 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, - [2047] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1033), 2, + ACTIONS(3251), 1, + anon_sym_LT2, + STATE(1049), 1, + sym_parameters, + STATE(1070), 1, + sym_type_arguments, + STATE(1024), 2, sym_line_comment, sym_block_comment, - ACTIONS(3295), 16, + ACTIONS(3293), 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_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3297), 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, - [2109] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1034), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3311), 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_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3313), 31, + ACTIONS(3291), 27, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, @@ -110312,38 +109735,35 @@ 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, - [2171] = 5, + [1522] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1035), 2, + STATE(1025), 2, sym_line_comment, sym_block_comment, - ACTIONS(2795), 9, + ACTIONS(1240), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ, + anon_sym_EQ_GT, + anon_sym_PIPE, anon_sym_LT, - anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2797), 38, + ACTIONS(1242), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -110366,6 +109786,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_if, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -110382,32 +109803,37 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [2233] = 5, + [1585] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1036), 2, + ACTIONS(3299), 1, + anon_sym_BANG, + ACTIONS(3301), 1, + anon_sym_COLON_COLON, + STATE(1026), 2, sym_line_comment, sym_block_comment, - ACTIONS(3279), 16, + ACTIONS(3297), 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(3281), 31, + ACTIONS(3295), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -110426,152 +109852,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_COMMA, - anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [2295] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1037), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1762), 9, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_LT, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1764), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [2357] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1038), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2458), 9, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_LT, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2460), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [2419] = 5, + anon_sym_LT2, + [1652] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1039), 2, + STATE(1027), 2, sym_line_comment, sym_block_comment, - ACTIONS(1994), 9, + ACTIONS(1232), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ, + anon_sym_EQ_GT, + anon_sym_PIPE, anon_sym_LT, - anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1996), 38, + ACTIONS(1234), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -110594,6 +109904,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_if, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -110610,23 +109921,19 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [2481] = 9, + [1715] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3247), 1, + ACTIONS(3307), 1, anon_sym_BANG, - ACTIONS(3325), 1, - anon_sym_LBRACE, - ACTIONS(3327), 1, + ACTIONS(3309), 1, anon_sym_COLON_COLON, - STATE(1199), 1, - sym_field_initializer_list, - STATE(1040), 2, + STATE(1028), 2, sym_line_comment, sym_block_comment, - ACTIONS(1416), 15, + ACTIONS(3305), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -110637,17 +109944,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(1418), 28, + ACTIONS(3303), 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, @@ -110660,47 +109970,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_COMMA, + anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [2551] = 7, + anon_sym_LT2, + [1782] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3333), 1, - anon_sym_POUND, - STATE(1479), 2, - sym_attribute_item, - sym_inner_attribute_item, - STATE(1041), 3, + STATE(1029), 2, sym_line_comment, sym_block_comment, - aux_sym_match_arm_repeat1, - ACTIONS(3331), 14, - sym__raw_string_literal_start, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DASH, - anon_sym_AMP, + ACTIONS(1236), 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(3329), 29, + ACTIONS(1238), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -110718,94 +110017,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym__, + anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_if, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, - anon_sym_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, - [2617] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1042), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3271), 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(3273), 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, - [2679] = 5, + [1845] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1043), 2, + STATE(1030), 2, sym_line_comment, sym_block_comment, - ACTIONS(2146), 9, + ACTIONS(1206), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ, + anon_sym_EQ_GT, + anon_sym_PIPE, anon_sym_LT, - anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2148), 38, + ACTIONS(1208), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -110828,6 +110080,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_if, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -110844,15 +110097,23 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [2741] = 5, + [1908] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1044), 2, + ACTIONS(3243), 1, + anon_sym_LPAREN, + ACTIONS(3251), 1, + anon_sym_LT2, + STATE(1049), 1, + sym_parameters, + STATE(1070), 1, + sym_type_arguments, + STATE(1031), 2, sym_line_comment, sym_block_comment, - ACTIONS(3338), 15, + ACTIONS(3313), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -110863,14 +110124,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(3336), 31, + ACTIONS(3311), 27, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, @@ -110887,88 +110149,84 @@ 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_DASH_GT, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [2802] = 7, + [1979] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - STATE(1386), 1, - sym_label, - STATE(1045), 2, + ACTIONS(3319), 1, + anon_sym_POUND, + STATE(1474), 2, + sym_attribute_item, + sym_inner_attribute_item, + STATE(1032), 3, sym_line_comment, sym_block_comment, - ACTIONS(3342), 15, - anon_sym_PLUS, - anon_sym_STAR, + aux_sym_match_arm_repeat1, + ACTIONS(3317), 14, + 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_EQ, - anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3340), 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, - [2867] = 6, + anon_sym_COLON_COLON, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(3315), 29, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym__, + anon_sym_const, + anon_sym_default, + anon_sym_union, + anon_sym_ref, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [2045] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3346), 1, - anon_sym_LBRACE, - STATE(1046), 2, + STATE(1033), 2, sym_line_comment, sym_block_comment, - ACTIONS(3311), 16, + ACTIONS(3307), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -110985,12 +110243,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3313), 29, + ACTIONS(3309), 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, @@ -111013,17 +110272,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_COLON_COLON, + anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [2930] = 5, + [2107] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1047), 2, + ACTIONS(3247), 1, + anon_sym_BANG, + ACTIONS(3322), 1, + anon_sym_LBRACE, + ACTIONS(3324), 1, + anon_sym_COLON_COLON, + STATE(1354), 1, + sym_field_initializer_list, + STATE(1034), 2, sym_line_comment, sym_block_comment, - ACTIONS(3350), 15, + ACTIONS(1406), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -111039,13 +110307,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3348), 31, + ACTIONS(1408), 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, @@ -111067,77 +110334,142 @@ 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, - [2991] = 5, + [2177] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1048), 2, + STATE(1035), 2, sym_line_comment, sym_block_comment, - ACTIONS(3354), 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, + ACTIONS(1900), 9, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, anon_sym_EQ, - anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3352), 31, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1902), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [2239] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1036), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2238), 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_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + anon_sym_EQ, + anon_sym_LT, anon_sym_COMMA, anon_sym_COLON_COLON, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [3052] = 6, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2240), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [2301] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3360), 1, - anon_sym_DASH_GT, - STATE(1049), 2, + ACTIONS(3330), 1, + anon_sym_BANG, + ACTIONS(3332), 1, + anon_sym_COLON_COLON, + STATE(1037), 2, sym_line_comment, sym_block_comment, - ACTIONS(3358), 15, + ACTIONS(3334), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + ACTIONS(3328), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -111153,13 +110485,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3356), 30, + anon_sym_as, + ACTIONS(3326), 23, 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, @@ -111180,85 +110510,79 @@ 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, - anon_sym_else, - [3115] = 7, + [2369] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3362), 1, - anon_sym_else, - STATE(1239), 1, - sym_else_clause, - STATE(1050), 2, + STATE(1038), 2, sym_line_comment, sym_block_comment, - ACTIONS(1196), 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(1194), 29, + ACTIONS(2847), 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_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + anon_sym_EQ, + anon_sym_LT, anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - [3180] = 6, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2849), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [2431] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3364), 1, - anon_sym_COLON_COLON, - STATE(1051), 2, + STATE(1039), 2, sym_line_comment, sym_block_comment, - ACTIONS(3305), 15, + ACTIONS(3275), 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, @@ -111268,7 +110592,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3303), 30, + ACTIONS(3277), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -111296,24 +110620,26 @@ 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, - [3243] = 5, + [2493] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1052), 2, + STATE(1040), 2, sym_line_comment, sym_block_comment, - ACTIONS(3368), 15, + ACTIONS(3299), 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, @@ -111323,7 +110649,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3366), 31, + ACTIONS(3301), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -111355,21 +110681,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [3304] = 5, + [2555] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1053), 2, + STATE(1041), 2, sym_line_comment, sym_block_comment, - ACTIONS(3372), 15, + ACTIONS(3287), 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, @@ -111379,7 +110706,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3370), 31, + ACTIONS(3289), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -111407,71 +110734,86 @@ 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_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [3365] = 27, - ACTIONS(29), 1, - anon_sym_LT, + [2617] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1298), 1, - anon_sym_extern, - ACTIONS(3069), 1, - anon_sym_QMARK, - ACTIONS(3081), 1, - anon_sym_fn, - ACTIONS(3374), 1, - sym_identifier, - ACTIONS(3376), 1, - anon_sym_LPAREN, - ACTIONS(3380), 1, - anon_sym_COLON_COLON, - ACTIONS(3382), 1, - anon_sym_default, - ACTIONS(3384), 1, - anon_sym_for, - ACTIONS(3386), 1, - anon_sym_union, - ACTIONS(3390), 1, - sym_metavariable, - STATE(1530), 1, - sym_scoped_type_identifier, - STATE(1597), 1, - sym_generic_type, - STATE(1613), 1, - sym_for_lifetimes, - STATE(2206), 1, - aux_sym_function_modifiers_repeat1, - STATE(2320), 1, - sym_extern_modifier, - STATE(3473), 1, - sym_function_modifiers, - STATE(3507), 1, - sym_scoped_identifier, - STATE(3524), 1, - sym_generic_type_with_turbofish, - STATE(3530), 1, - sym_bracketed_type, - STATE(1054), 2, + STATE(1042), 2, sym_line_comment, sym_block_comment, - ACTIONS(1284), 3, + ACTIONS(2769), 9, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2771), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, anon_sym_async, anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + 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(3388), 3, + anon_sym_use, + anon_sym_extern, + sym_identifier, sym_self, sym_super, sym_crate, - STATE(1708), 3, - sym_removed_trait_bound, - sym_function_type, - sym_tuple_type, - ACTIONS(3378), 17, + [2679] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1043), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1710), 9, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1712), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -111489,19 +110831,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3470] = 7, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [2741] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3394), 1, - anon_sym_LPAREN, - STATE(1209), 1, - sym_arguments, - STATE(1055), 2, + STATE(1044), 2, sym_line_comment, sym_block_comment, - ACTIONS(3396), 15, + ACTIONS(3338), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -111517,8 +110876,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3392), 29, + ACTIONS(3336), 31, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, @@ -111544,27 +110904,25 @@ 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, - [3535] = 6, + [2802] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3398), 1, - anon_sym_LBRACE, - STATE(1056), 2, + STATE(1045), 2, sym_line_comment, sym_block_comment, - ACTIONS(3279), 16, + ACTIONS(3342), 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, @@ -111574,12 +110932,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3281), 29, + ACTIONS(3340), 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, @@ -111601,24 +110960,103 @@ 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_DASH_GT, + anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [3598] = 5, + [2863] = 24, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1057), 2, + ACTIONS(1562), 1, + anon_sym_LBRACK, + ACTIONS(3344), 1, + sym_identifier, + ACTIONS(3348), 1, + anon_sym_LPAREN, + ACTIONS(3350), 1, + anon_sym_STAR, + ACTIONS(3354), 1, + anon_sym_AMP, + ACTIONS(3356), 1, + anon_sym_COLON_COLON, + ACTIONS(3358), 1, + anon_sym_SQUOTE, + ACTIONS(3362), 1, + anon_sym_for, + ACTIONS(3366), 1, + sym_metavariable, + STATE(2522), 1, + sym_scoped_type_identifier, + STATE(2671), 1, + sym_where_predicate, + STATE(2967), 1, + sym_generic_type, + STATE(3341), 1, + sym_generic_type_with_turbofish, + STATE(3362), 1, + sym_scoped_identifier, + STATE(3476), 1, + sym_bracketed_type, + ACTIONS(3346), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + ACTIONS(3360), 2, + anon_sym_default, + anon_sym_union, + STATE(1046), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3364), 3, + sym_self, + sym_super, + sym_crate, + STATE(3098), 6, + sym_higher_ranked_trait_bound, + sym_lifetime, + sym_array_type, + sym_tuple_type, + sym_reference_type, + sym_pointer_type, + ACTIONS(3352), 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, + [2962] = 6, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(3368), 1, + anon_sym_LBRACE, + STATE(1047), 2, sym_line_comment, sym_block_comment, - ACTIONS(3402), 15, + ACTIONS(3299), 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, @@ -111628,13 +111066,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3400), 31, + ACTIONS(3301), 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, @@ -111657,18 +111094,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_COLON_COLON, - anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [3659] = 5, + [3025] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1058), 2, + ACTIONS(3370), 1, + anon_sym_else, + STATE(1352), 1, + sym_else_clause, + STATE(1048), 2, sym_line_comment, sym_block_comment, - ACTIONS(3406), 15, + ACTIONS(1196), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -111684,7 +111124,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3404), 31, + ACTIONS(1194), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -111712,19 +111152,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, - [3720] = 5, + [3090] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1059), 2, + ACTIONS(3376), 1, + anon_sym_DASH_GT, + STATE(1049), 2, sym_line_comment, sym_block_comment, - ACTIONS(3410), 15, + ACTIONS(3374), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -111740,7 +111180,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3408), 31, + ACTIONS(3372), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -111768,21 +111208,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, - [3781] = 6, + [3153] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3416), 1, + ACTIONS(3382), 1, anon_sym_DASH_GT, - STATE(1060), 2, + STATE(1050), 2, sym_line_comment, sym_block_comment, - ACTIONS(3414), 15, + ACTIONS(3380), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -111798,7 +111237,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3412), 30, + ACTIONS(3378), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -111829,15 +111268,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [3844] = 5, + [3216] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1061), 2, + ACTIONS(3384), 1, + anon_sym_COLON_COLON, + STATE(1051), 2, sym_line_comment, sym_block_comment, - ACTIONS(3420), 15, + ACTIONS(3269), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -111853,7 +111294,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3418), 31, + ACTIONS(3267), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -111881,97 +111322,20 @@ 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, - [3905] = 27, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(1298), 1, - anon_sym_extern, - ACTIONS(3105), 1, - anon_sym_QMARK, - ACTIONS(3117), 1, - anon_sym_fn, - ACTIONS(3422), 1, - sym_identifier, - ACTIONS(3424), 1, - anon_sym_LPAREN, - ACTIONS(3428), 1, - anon_sym_COLON_COLON, - ACTIONS(3430), 1, - anon_sym_default, - ACTIONS(3432), 1, - anon_sym_for, - ACTIONS(3434), 1, - anon_sym_union, - ACTIONS(3438), 1, - sym_metavariable, - STATE(1022), 1, - sym_scoped_type_identifier, - STATE(1088), 1, - sym_generic_type, - STATE(1592), 1, - sym_for_lifetimes, - STATE(2206), 1, - aux_sym_function_modifiers_repeat1, - STATE(2320), 1, - sym_extern_modifier, - STATE(3338), 1, - sym_function_modifiers, - STATE(3483), 1, - sym_scoped_identifier, - STATE(3516), 1, - sym_generic_type_with_turbofish, - STATE(3526), 1, - sym_bracketed_type, - STATE(1062), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1284), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3436), 3, - sym_self, - sym_super, - sym_crate, - STATE(1293), 3, - sym_removed_trait_bound, - sym_function_type, - sym_tuple_type, - ACTIONS(3426), 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, - [4010] = 5, + [3279] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1063), 2, + ACTIONS(3390), 1, + anon_sym_DASH_GT, + STATE(1052), 2, sym_line_comment, sym_block_comment, - ACTIONS(1546), 15, + ACTIONS(3388), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -111987,7 +111351,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1548), 31, + ACTIONS(3386), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -111995,7 +111359,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, @@ -112019,15 +111382,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [4071] = 5, + [3342] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1064), 2, + ACTIONS(3392), 1, + anon_sym_COLON_COLON, + STATE(1053), 2, sym_line_comment, sym_block_comment, - ACTIONS(3309), 17, + ACTIONS(3293), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -112038,14 +111403,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(3307), 29, + ACTIONS(3291), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -112064,43 +111427,79 @@ 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, - anon_sym_LT2, - [4132] = 7, + [3405] = 27, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3440), 1, - anon_sym_POUND, - STATE(1476), 1, - sym_attribute_item, - STATE(1065), 3, - sym_line_comment, - sym_block_comment, - aux_sym_enum_variant_list_repeat1, - ACTIONS(796), 11, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR, + ACTIONS(1310), 1, + anon_sym_extern, + ACTIONS(3103), 1, anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_LT, + ACTIONS(3115), 1, + anon_sym_fn, + ACTIONS(3394), 1, + sym_identifier, + ACTIONS(3396), 1, + anon_sym_LPAREN, + ACTIONS(3400), 1, anon_sym_COLON_COLON, - anon_sym_SQUOTE, - sym_integer_literal, + ACTIONS(3402), 1, + anon_sym_default, + ACTIONS(3404), 1, + anon_sym_for, + ACTIONS(3406), 1, + anon_sym_union, + ACTIONS(3410), 1, sym_metavariable, - ACTIONS(3201), 32, + STATE(1031), 1, + sym_scoped_type_identifier, + STATE(1057), 1, + sym_generic_type, + STATE(1614), 1, + sym_for_lifetimes, + STATE(2220), 1, + aux_sym_function_modifiers_repeat1, + STATE(2321), 1, + sym_extern_modifier, + STATE(3339), 1, + sym_function_modifiers, + STATE(3490), 1, + sym_scoped_identifier, + STATE(3524), 1, + sym_generic_type_with_turbofish, + STATE(3534), 1, + sym_bracketed_type, + STATE(1054), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1296), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(3408), 3, + sym_self, + sym_super, + sym_crate, + STATE(1439), 3, + sym_removed_trait_bound, + sym_function_type, + sym_tuple_type, + ACTIONS(3398), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -112118,30 +111517,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_pub, - anon_sym_union, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [4197] = 5, + [3510] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1066), 2, + ACTIONS(3412), 1, + anon_sym_COLON_COLON, + STATE(1055), 2, sym_line_comment, sym_block_comment, - ACTIONS(3445), 15, + ACTIONS(1406), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -112157,7 +111543,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3443), 31, + ACTIONS(1408), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -112185,21 +111571,18 @@ 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, - [4258] = 6, + [3573] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3451), 1, - anon_sym_DASH_GT, - STATE(1067), 2, + STATE(1056), 2, sym_line_comment, sym_block_comment, - ACTIONS(3449), 15, + ACTIONS(3416), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -112215,7 +111598,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3447), 30, + ACTIONS(3414), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -112243,105 +111626,27 @@ 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, - [4321] = 27, - ACTIONS(29), 1, - anon_sym_LT, + [3634] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1292), 1, - anon_sym_for, - ACTIONS(1298), 1, - anon_sym_extern, - ACTIONS(3069), 1, - anon_sym_QMARK, - ACTIONS(3081), 1, - anon_sym_fn, - ACTIONS(3376), 1, - anon_sym_LPAREN, - ACTIONS(3380), 1, + ACTIONS(3384), 1, anon_sym_COLON_COLON, - ACTIONS(3382), 1, - anon_sym_default, - ACTIONS(3386), 1, - anon_sym_union, - ACTIONS(3390), 1, - sym_metavariable, - ACTIONS(3453), 1, - sym_identifier, - STATE(1520), 1, - sym_scoped_type_identifier, - STATE(1613), 1, - sym_for_lifetimes, - STATE(1633), 1, - sym_generic_type, - STATE(2206), 1, - aux_sym_function_modifiers_repeat1, - STATE(2320), 1, - sym_extern_modifier, - STATE(3473), 1, - sym_function_modifiers, - STATE(3507), 1, - sym_scoped_identifier, - STATE(3524), 1, - sym_generic_type_with_turbofish, - STATE(3530), 1, - sym_bracketed_type, - STATE(1068), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1284), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3388), 3, - sym_self, - sym_super, - sym_crate, - STATE(1730), 3, - sym_removed_trait_bound, - sym_function_type, - sym_tuple_type, - ACTIONS(3378), 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, - [4426] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3455), 1, - anon_sym_LBRACE, - STATE(1069), 2, + STATE(1057), 2, sym_line_comment, sym_block_comment, - ACTIONS(3271), 16, + ACTIONS(3313), 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, @@ -112351,12 +111656,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3273), 29, + ACTIONS(3311), 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, @@ -112378,20 +111684,18 @@ 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, - [4489] = 6, + [3697] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3364), 1, - anon_sym_COLON_COLON, - STATE(1070), 2, + STATE(1058), 2, sym_line_comment, sym_block_comment, - ACTIONS(3285), 15, + ACTIONS(3420), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -112407,7 +111711,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3283), 30, + ACTIONS(3418), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -112435,18 +111739,21 @@ 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, - [4552] = 5, + [3758] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1071), 2, + ACTIONS(3384), 1, + anon_sym_COLON_COLON, + STATE(1059), 2, sym_line_comment, sym_block_comment, - ACTIONS(3459), 15, + ACTIONS(3293), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -112462,7 +111769,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3457), 31, + ACTIONS(3291), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -112490,19 +111797,22 @@ 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, - [4613] = 5, + [3821] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1072), 2, + ACTIONS(3424), 1, + anon_sym_LPAREN, + STATE(1340), 1, + sym_arguments, + STATE(1060), 2, sym_line_comment, sym_block_comment, - ACTIONS(3463), 15, + ACTIONS(3426), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -112518,9 +111828,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3461), 31, + ACTIONS(3422), 29, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, @@ -112546,21 +111855,18 @@ 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, - [4674] = 6, + [3886] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3465), 1, - anon_sym_COLON_COLON, - STATE(1073), 2, + STATE(1061), 2, sym_line_comment, sym_block_comment, - ACTIONS(1416), 15, + ACTIONS(3273), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -112571,12 +111877,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(1418), 30, + ACTIONS(3271), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -112595,105 +111903,83 @@ 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, - [4737] = 27, - ACTIONS(29), 1, - anon_sym_LT, + anon_sym_LT2, + [3947] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1292), 1, - anon_sym_for, - ACTIONS(1298), 1, - anon_sym_extern, - ACTIONS(3105), 1, - anon_sym_QMARK, - ACTIONS(3117), 1, - anon_sym_fn, - ACTIONS(3424), 1, - anon_sym_LPAREN, ACTIONS(3428), 1, anon_sym_COLON_COLON, - ACTIONS(3430), 1, - anon_sym_default, - ACTIONS(3434), 1, - anon_sym_union, - ACTIONS(3438), 1, - sym_metavariable, - ACTIONS(3467), 1, - sym_identifier, - STATE(1021), 1, - sym_scoped_type_identifier, - STATE(1070), 1, - sym_generic_type, - STATE(1592), 1, - sym_for_lifetimes, - STATE(2206), 1, - aux_sym_function_modifiers_repeat1, - STATE(2320), 1, - sym_extern_modifier, - STATE(3338), 1, - sym_function_modifiers, - STATE(3483), 1, - sym_scoped_identifier, - STATE(3516), 1, - sym_generic_type_with_turbofish, - STATE(3526), 1, - sym_bracketed_type, - STATE(1074), 2, + STATE(1062), 2, sym_line_comment, sym_block_comment, - ACTIONS(1284), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3436), 3, - sym_self, - sym_super, - sym_crate, - STATE(1296), 3, - sym_removed_trait_bound, - sym_function_type, - sym_tuple_type, - ACTIONS(3426), 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, - [4842] = 5, + ACTIONS(3293), 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(3291), 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, + [4010] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1075), 2, + STATE(1063), 2, sym_line_comment, sym_block_comment, - ACTIONS(3471), 15, + ACTIONS(3432), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -112709,7 +111995,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3469), 31, + ACTIONS(3430), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -112741,17 +112027,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [4903] = 6, + [4071] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3473), 1, - anon_sym_COLON_COLON, - STATE(1076), 2, + STATE(1064), 2, sym_line_comment, sym_block_comment, - ACTIONS(3301), 15, + ACTIONS(3213), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -112767,7 +112051,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3299), 30, + ACTIONS(3215), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -112775,6 +112059,7 @@ 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, @@ -112798,98 +112083,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [4966] = 24, - ACTIONS(29), 1, - anon_sym_LT, + [4132] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1562), 1, - anon_sym_LBRACK, - ACTIONS(3475), 1, - sym_identifier, - ACTIONS(3479), 1, - anon_sym_LPAREN, - ACTIONS(3481), 1, - anon_sym_STAR, - ACTIONS(3485), 1, - anon_sym_AMP, - ACTIONS(3487), 1, - anon_sym_COLON_COLON, - ACTIONS(3489), 1, - anon_sym_SQUOTE, - ACTIONS(3493), 1, - anon_sym_for, - ACTIONS(3497), 1, - sym_metavariable, - STATE(2507), 1, - sym_scoped_type_identifier, - STATE(2546), 1, - sym_where_predicate, - STATE(3020), 1, - sym_generic_type, - STATE(3340), 1, - sym_generic_type_with_turbofish, - STATE(3385), 1, - sym_scoped_identifier, - STATE(3469), 1, - sym_bracketed_type, - ACTIONS(3477), 2, - anon_sym_SEMI, + ACTIONS(3434), 1, anon_sym_LBRACE, - ACTIONS(3491), 2, - anon_sym_default, - anon_sym_union, - STATE(1077), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3495), 3, - sym_self, - sym_super, - sym_crate, - STATE(3194), 6, - sym_higher_ranked_trait_bound, - sym_lifetime, - sym_array_type, - sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(3483), 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, - [5065] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3364), 1, - anon_sym_COLON_COLON, - STATE(1078), 2, + STATE(1065), 2, sym_line_comment, sym_block_comment, - ACTIONS(3301), 15, + ACTIONS(3275), 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, @@ -112899,13 +112110,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3299), 30, + ACTIONS(3277), 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, @@ -112927,96 +112137,20 @@ 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_COLON_COLON, anon_sym_as, anon_sym_else, - [5128] = 27, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(1258), 1, - anon_sym_QMARK, - ACTIONS(1290), 1, - anon_sym_fn, - ACTIONS(1298), 1, - anon_sym_extern, - ACTIONS(3479), 1, - anon_sym_LPAREN, - ACTIONS(3487), 1, - anon_sym_COLON_COLON, - ACTIONS(3491), 1, - anon_sym_union, - ACTIONS(3497), 1, - sym_metavariable, - ACTIONS(3499), 1, - sym_identifier, - ACTIONS(3503), 1, - anon_sym_default, - ACTIONS(3505), 1, - anon_sym_for, - STATE(1618), 1, - sym_for_lifetimes, - STATE(1914), 1, - sym_scoped_type_identifier, - STATE(1951), 1, - sym_generic_type, - STATE(2206), 1, - aux_sym_function_modifiers_repeat1, - STATE(2320), 1, - sym_extern_modifier, - STATE(3340), 1, - sym_generic_type_with_turbofish, - STATE(3385), 1, - sym_scoped_identifier, - STATE(3427), 1, - sym_function_modifiers, - STATE(3469), 1, - sym_bracketed_type, - STATE(1079), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1284), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3495), 3, - sym_self, - sym_super, - sym_crate, - STATE(1966), 3, - sym_removed_trait_bound, - sym_function_type, - sym_tuple_type, - ACTIONS(3501), 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, - [5233] = 5, + [4195] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1080), 2, + ACTIONS(3440), 1, + anon_sym_DASH_GT, + STATE(1066), 2, sym_line_comment, sym_block_comment, - ACTIONS(3213), 15, + ACTIONS(3438), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -113032,7 +112166,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3215), 31, + ACTIONS(3436), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -113040,7 +112174,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, @@ -113064,15 +112197,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [5294] = 5, + [4258] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1081), 2, + ACTIONS(3446), 1, + anon_sym_SQUOTE, + STATE(1405), 1, + sym_label, + STATE(1067), 2, sym_line_comment, sym_block_comment, - ACTIONS(3509), 15, + ACTIONS(3444), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -113088,7 +112225,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3507), 31, + ACTIONS(3442), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -113116,96 +112253,17 @@ 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, - [5355] = 24, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(1562), 1, - anon_sym_LBRACK, - ACTIONS(3475), 1, - sym_identifier, - ACTIONS(3479), 1, - anon_sym_LPAREN, - ACTIONS(3481), 1, - anon_sym_STAR, - ACTIONS(3485), 1, - anon_sym_AMP, - ACTIONS(3487), 1, - anon_sym_COLON_COLON, - ACTIONS(3489), 1, - anon_sym_SQUOTE, - ACTIONS(3493), 1, - anon_sym_for, - ACTIONS(3497), 1, - sym_metavariable, - STATE(2507), 1, - sym_scoped_type_identifier, - STATE(2546), 1, - sym_where_predicate, - STATE(3020), 1, - sym_generic_type, - STATE(3340), 1, - sym_generic_type_with_turbofish, - STATE(3385), 1, - sym_scoped_identifier, - STATE(3469), 1, - sym_bracketed_type, - ACTIONS(3491), 2, - anon_sym_default, - anon_sym_union, - ACTIONS(3511), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - STATE(1082), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3495), 3, - sym_self, - sym_super, - sym_crate, - STATE(3194), 6, - sym_higher_ranked_trait_bound, - sym_lifetime, - sym_array_type, - sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(3483), 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, - [5454] = 6, + [4323] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3517), 1, - anon_sym_DASH_GT, - STATE(1083), 2, + STATE(1068), 2, sym_line_comment, sym_block_comment, - ACTIONS(3515), 15, + ACTIONS(3450), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -113221,7 +112279,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3513), 30, + ACTIONS(3448), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -113249,98 +112307,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, - [5517] = 27, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(1258), 1, - anon_sym_QMARK, - ACTIONS(1290), 1, - anon_sym_fn, - ACTIONS(1292), 1, - anon_sym_for, - ACTIONS(1298), 1, - anon_sym_extern, - ACTIONS(3479), 1, - anon_sym_LPAREN, - ACTIONS(3487), 1, - anon_sym_COLON_COLON, - ACTIONS(3491), 1, - anon_sym_union, - ACTIONS(3497), 1, - sym_metavariable, - ACTIONS(3503), 1, - anon_sym_default, - ACTIONS(3519), 1, - sym_identifier, - STATE(1618), 1, - sym_for_lifetimes, - STATE(1916), 1, - sym_scoped_type_identifier, - STATE(1940), 1, - sym_generic_type, - STATE(2206), 1, - aux_sym_function_modifiers_repeat1, - STATE(2320), 1, - sym_extern_modifier, - STATE(3340), 1, - sym_generic_type_with_turbofish, - STATE(3385), 1, - sym_scoped_identifier, - STATE(3427), 1, - sym_function_modifiers, - STATE(3469), 1, - sym_bracketed_type, - STATE(1084), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1284), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3495), 3, - sym_self, - sym_super, - sym_crate, - STATE(1979), 3, - sym_removed_trait_bound, - sym_function_type, - sym_tuple_type, - ACTIONS(3501), 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, - [5622] = 6, + [4384] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3525), 1, - anon_sym_DASH_GT, - STATE(1085), 2, + STATE(1069), 2, sym_line_comment, sym_block_comment, - ACTIONS(3523), 15, + ACTIONS(3454), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -113356,7 +112335,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3521), 30, + ACTIONS(3452), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -113384,20 +112363,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, - [5685] = 6, + [4445] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3531), 1, - anon_sym_DASH_GT, - STATE(1086), 2, + STATE(1070), 2, sym_line_comment, sym_block_comment, - ACTIONS(3529), 15, + ACTIONS(3458), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -113413,7 +112391,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3527), 30, + ACTIONS(3456), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -113441,26 +112419,28 @@ 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, - [5748] = 6, + [4506] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3537), 1, - anon_sym_DASH_GT, - STATE(1087), 2, + ACTIONS(3460), 1, + anon_sym_LBRACE, + STATE(1071), 2, sym_line_comment, sym_block_comment, - ACTIONS(3535), 15, + ACTIONS(3287), 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, @@ -113470,13 +112450,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3533), 30, + ACTIONS(3289), 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, @@ -113498,20 +112477,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_COLON_COLON, anon_sym_as, anon_sym_else, - [5811] = 6, + [4569] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3364), 1, - anon_sym_COLON_COLON, - STATE(1088), 2, + STATE(1072), 2, sym_line_comment, sym_block_comment, - ACTIONS(3289), 15, + ACTIONS(3464), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -113527,7 +112504,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3287), 30, + ACTIONS(3462), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -113555,27 +112532,25 @@ 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, - [5874] = 6, + [4630] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3539), 1, - anon_sym_LBRACE, - STATE(1089), 2, + STATE(1073), 2, sym_line_comment, sym_block_comment, - ACTIONS(3295), 16, + ACTIONS(3468), 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, @@ -113585,12 +112560,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3297), 29, + ACTIONS(3466), 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, @@ -113612,20 +112588,97 @@ 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_DASH_GT, + anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [5937] = 6, + [4691] = 27, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3541), 1, + ACTIONS(1270), 1, + anon_sym_QMARK, + ACTIONS(1302), 1, + anon_sym_fn, + ACTIONS(1310), 1, + anon_sym_extern, + ACTIONS(3348), 1, + anon_sym_LPAREN, + ACTIONS(3356), 1, anon_sym_COLON_COLON, - STATE(1090), 2, + ACTIONS(3360), 1, + anon_sym_union, + ACTIONS(3366), 1, + sym_metavariable, + ACTIONS(3470), 1, + sym_identifier, + ACTIONS(3474), 1, + anon_sym_default, + ACTIONS(3476), 1, + anon_sym_for, + STATE(1587), 1, + sym_for_lifetimes, + STATE(1913), 1, + sym_scoped_type_identifier, + STATE(1940), 1, + sym_generic_type, + STATE(2220), 1, + aux_sym_function_modifiers_repeat1, + STATE(2321), 1, + sym_extern_modifier, + STATE(3341), 1, + sym_generic_type_with_turbofish, + STATE(3362), 1, + sym_scoped_identifier, + STATE(3468), 1, + sym_function_modifiers, + STATE(3476), 1, + sym_bracketed_type, + STATE(1074), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1296), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(3364), 3, + sym_self, + sym_super, + sym_crate, + STATE(1991), 3, + sym_removed_trait_bound, + sym_function_type, + sym_tuple_type, + ACTIONS(3472), 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, + [4796] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1075), 2, sym_line_comment, sym_block_comment, - ACTIONS(3301), 15, + ACTIONS(3480), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -113641,7 +112694,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3299), 30, + ACTIONS(3478), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -113669,18 +112722,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, - [6000] = 5, + [4857] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1091), 2, + STATE(1076), 2, sym_line_comment, sym_block_comment, - ACTIONS(1368), 15, + ACTIONS(3484), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -113696,7 +112750,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1366), 30, + ACTIONS(3482), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -113724,191 +112778,71 @@ 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, - [6060] = 5, + [4918] = 27, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1092), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1958), 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(1960), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - 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(1270), 1, + anon_sym_QMARK, + ACTIONS(1302), 1, anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, + ACTIONS(1304), 1, + anon_sym_for, + ACTIONS(1310), 1, anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [6120] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1093), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1962), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_LT, + ACTIONS(3348), 1, + anon_sym_LPAREN, + ACTIONS(3356), 1, anon_sym_COLON_COLON, - anon_sym_POUND, + ACTIONS(3360), 1, + anon_sym_union, + ACTIONS(3366), 1, sym_metavariable, - ACTIONS(1964), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - 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(3474), 1, anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, + ACTIONS(3486), 1, sym_identifier, - sym_self, - sym_super, - sym_crate, - [6180] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1094), 2, + STATE(1587), 1, + sym_for_lifetimes, + STATE(1916), 1, + sym_scoped_type_identifier, + STATE(1949), 1, + sym_generic_type, + STATE(2220), 1, + aux_sym_function_modifiers_repeat1, + STATE(2321), 1, + sym_extern_modifier, + STATE(3341), 1, + sym_generic_type_with_turbofish, + STATE(3362), 1, + sym_scoped_identifier, + STATE(3468), 1, + sym_function_modifiers, + STATE(3476), 1, + sym_bracketed_type, + STATE(1077), 2, sym_line_comment, - sym_block_comment, - ACTIONS(1966), 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(1968), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, + sym_block_comment, + ACTIONS(1296), 3, anon_sym_async, anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, + ACTIONS(3364), 3, sym_self, sym_super, sym_crate, - [6240] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1095), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1970), 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(1972), 38, + STATE(1987), 3, + sym_removed_trait_bound, + sym_function_type, + sym_tuple_type, + ACTIONS(3472), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -113926,44 +112860,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [6300] = 5, + [5023] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1096), 2, + ACTIONS(3488), 1, + anon_sym_POUND, + STATE(1477), 1, + sym_attribute_item, + STATE(1078), 3, sym_line_comment, sym_block_comment, - ACTIONS(1974), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + aux_sym_enum_variant_list_repeat1, + ACTIONS(758), 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(1976), 38, + ACTIONS(3201), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -113984,316 +112906,306 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, - anon_sym_enum, anon_sym_fn, + anon_sym_for, anon_sym_impl, - anon_sym_let, - anon_sym_mod, anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, anon_sym_union, anon_sym_unsafe, - anon_sym_use, anon_sym_extern, + anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [6360] = 5, + [5088] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1097), 2, + STATE(1079), 2, sym_line_comment, sym_block_comment, - ACTIONS(1978), 7, + ACTIONS(3493), 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(3491), 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(1980), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [6420] = 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, + [5149] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1098), 2, + ACTIONS(3499), 1, + anon_sym_DASH_GT, + STATE(1080), 2, sym_line_comment, sym_block_comment, - ACTIONS(1982), 7, + ACTIONS(3497), 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(3495), 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_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1984), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [6480] = 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, + [5212] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1099), 2, + ACTIONS(3501), 1, + anon_sym_LBRACE, + STATE(1081), 2, sym_line_comment, sym_block_comment, - ACTIONS(1986), 7, + ACTIONS(3307), 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(3309), 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(1988), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [6540] = 5, + anon_sym_as, + anon_sym_else, + [5275] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1100), 2, + ACTIONS(3507), 1, + anon_sym_DASH_GT, + STATE(1082), 2, sym_line_comment, sym_block_comment, - ACTIONS(1990), 7, + ACTIONS(3505), 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(3503), 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, + [5338] = 27, + ACTIONS(29), 1, anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1992), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [6600] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1101), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1874), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_LT, + ACTIONS(1304), 1, + anon_sym_for, + ACTIONS(1310), 1, + anon_sym_extern, + ACTIONS(3061), 1, + anon_sym_QMARK, + ACTIONS(3073), 1, + anon_sym_fn, + ACTIONS(3509), 1, + sym_identifier, + ACTIONS(3511), 1, + anon_sym_LPAREN, + ACTIONS(3515), 1, anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1876), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - 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(3517), 1, anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, + ACTIONS(3519), 1, anon_sym_union, + ACTIONS(3523), 1, + sym_metavariable, + STATE(1532), 1, + sym_scoped_type_identifier, + STATE(1613), 1, + sym_generic_type, + STATE(1623), 1, + sym_for_lifetimes, + STATE(2220), 1, + aux_sym_function_modifiers_repeat1, + STATE(2321), 1, + sym_extern_modifier, + STATE(3480), 1, + sym_function_modifiers, + STATE(3515), 1, + sym_scoped_identifier, + STATE(3532), 1, + sym_generic_type_with_turbofish, + STATE(3538), 1, + sym_bracketed_type, + STATE(1083), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1296), 3, + anon_sym_async, + anon_sym_const, anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, + ACTIONS(3521), 3, sym_self, sym_super, sym_crate, - [6660] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1102), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1998), 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(2000), 38, + STATE(1666), 3, + sym_removed_trait_bound, + sym_function_type, + sym_tuple_type, + ACTIONS(3513), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114311,99 +113223,179 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [6720] = 5, + [5443] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1103), 2, + STATE(1084), 2, sym_line_comment, sym_block_comment, - ACTIONS(2002), 7, + ACTIONS(1546), 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(1548), 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(2004), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [6780] = 5, + 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, + [5504] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1104), 2, + STATE(1085), 2, sym_line_comment, sym_block_comment, - ACTIONS(2006), 7, + ACTIONS(3527), 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(3525), 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, + [5565] = 27, + ACTIONS(29), 1, anon_sym_LT, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(1304), 1, + anon_sym_for, + ACTIONS(1310), 1, + anon_sym_extern, + ACTIONS(3103), 1, + anon_sym_QMARK, + ACTIONS(3115), 1, + anon_sym_fn, + ACTIONS(3396), 1, + anon_sym_LPAREN, + ACTIONS(3400), 1, anon_sym_COLON_COLON, - anon_sym_POUND, + ACTIONS(3402), 1, + anon_sym_default, + ACTIONS(3406), 1, + anon_sym_union, + ACTIONS(3410), 1, sym_metavariable, - ACTIONS(2008), 38, + ACTIONS(3529), 1, + sym_identifier, + STATE(1019), 1, + sym_scoped_type_identifier, + STATE(1087), 1, + sym_generic_type, + STATE(1614), 1, + sym_for_lifetimes, + STATE(2220), 1, + aux_sym_function_modifiers_repeat1, + STATE(2321), 1, + sym_extern_modifier, + STATE(3339), 1, + sym_function_modifiers, + STATE(3490), 1, + sym_scoped_identifier, + STATE(3524), 1, + sym_generic_type_with_turbofish, + STATE(3534), 1, + sym_bracketed_type, + STATE(1086), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1296), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(3408), 3, + sym_self, + sym_super, + sym_crate, + STATE(1275), 3, + sym_removed_trait_bound, + sym_function_type, + sym_tuple_type, + ACTIONS(3398), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114421,44 +113413,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [6840] = 5, + [5670] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1105), 2, + ACTIONS(3384), 1, + anon_sym_COLON_COLON, + STATE(1087), 2, sym_line_comment, sym_block_comment, - ACTIONS(2010), 7, + ACTIONS(3281), 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(3279), 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, + [5733] = 27, + ACTIONS(29), 1, anon_sym_LT, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(1310), 1, + anon_sym_extern, + ACTIONS(3061), 1, + anon_sym_QMARK, + ACTIONS(3073), 1, + anon_sym_fn, + ACTIONS(3511), 1, + anon_sym_LPAREN, + ACTIONS(3515), 1, anon_sym_COLON_COLON, - anon_sym_POUND, + ACTIONS(3517), 1, + anon_sym_default, + ACTIONS(3519), 1, + anon_sym_union, + ACTIONS(3523), 1, sym_metavariable, - ACTIONS(2012), 38, + ACTIONS(3531), 1, + sym_identifier, + ACTIONS(3533), 1, + anon_sym_for, + STATE(1524), 1, + sym_scoped_type_identifier, + STATE(1623), 1, + sym_for_lifetimes, + STATE(1631), 1, + sym_generic_type, + STATE(2220), 1, + aux_sym_function_modifiers_repeat1, + STATE(2321), 1, + sym_extern_modifier, + STATE(3480), 1, + sym_function_modifiers, + STATE(3515), 1, + sym_scoped_identifier, + STATE(3532), 1, + sym_generic_type_with_turbofish, + STATE(3538), 1, + sym_bracketed_type, + STATE(1088), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1296), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(3521), 3, + sym_self, + sym_super, + sym_crate, + STATE(1779), 3, + sym_removed_trait_bound, + sym_function_type, + sym_tuple_type, + ACTIONS(3513), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114476,44 +113548,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [6900] = 5, + [5838] = 24, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1106), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2014), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_LT, + ACTIONS(1562), 1, + anon_sym_LBRACK, + ACTIONS(3344), 1, + sym_identifier, + ACTIONS(3348), 1, + anon_sym_LPAREN, + ACTIONS(3350), 1, + anon_sym_STAR, + ACTIONS(3354), 1, + anon_sym_AMP, + ACTIONS(3356), 1, anon_sym_COLON_COLON, - anon_sym_POUND, + ACTIONS(3358), 1, + anon_sym_SQUOTE, + ACTIONS(3362), 1, + anon_sym_for, + ACTIONS(3366), 1, sym_metavariable, - ACTIONS(2016), 38, + STATE(2522), 1, + sym_scoped_type_identifier, + STATE(2671), 1, + sym_where_predicate, + STATE(2967), 1, + sym_generic_type, + STATE(3341), 1, + sym_generic_type_with_turbofish, + STATE(3362), 1, + sym_scoped_identifier, + STATE(3476), 1, + sym_bracketed_type, + ACTIONS(3360), 2, + anon_sym_default, + anon_sym_union, + ACTIONS(3535), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(1089), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3364), 3, + sym_self, + sym_super, + sym_crate, + STATE(3098), 6, + sym_higher_ranked_trait_bound, + sym_lifetime, + sym_array_type, + sym_tuple_type, + sym_reference_type, + sym_pointer_type, + ACTIONS(3352), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114531,36 +113623,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_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [6960] = 5, + [5937] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1107), 2, + ACTIONS(3541), 1, + anon_sym_DASH_GT, + STATE(1090), 2, sym_line_comment, sym_block_comment, - ACTIONS(2018), 7, + ACTIONS(3539), 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(3537), 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, + [6000] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1091), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1666), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -114568,7 +113696,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2020), 38, + ACTIONS(1668), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114607,15 +113735,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7020] = 5, + [6060] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1108), 2, + STATE(1092), 2, sym_line_comment, sym_block_comment, - ACTIONS(2022), 7, + ACTIONS(2793), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -114623,7 +113751,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2024), 38, + ACTIONS(2795), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114662,23 +113790,29 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7080] = 5, + [6120] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1109), 2, + STATE(1093), 2, sym_line_comment, sym_block_comment, - ACTIONS(2026), 7, + ACTIONS(3545), 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_COLON_COLON, - anon_sym_POUND, + anon_sym_SQUOTE, sym_metavariable, - ACTIONS(2028), 38, + ACTIONS(3543), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114699,33 +113833,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, - anon_sym_enum, anon_sym_fn, + anon_sym_for, anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, anon_sym_union, anon_sym_unsafe, - anon_sym_use, + anon_sym_where, anon_sym_extern, + anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [7140] = 5, + [6180] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1110), 2, + STATE(1094), 2, sym_line_comment, sym_block_comment, - ACTIONS(2030), 7, + ACTIONS(2741), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -114733,7 +113861,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2032), 38, + ACTIONS(2743), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114772,15 +113900,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7200] = 5, + [6240] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1111), 2, + STATE(1095), 2, sym_line_comment, sym_block_comment, - ACTIONS(2034), 7, + ACTIONS(2222), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -114788,7 +113916,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2036), 38, + ACTIONS(2224), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114827,23 +113955,29 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7260] = 5, + [6300] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1112), 2, + STATE(1096), 2, sym_line_comment, sym_block_comment, - ACTIONS(2038), 7, + ACTIONS(3549), 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_COLON_COLON, - anon_sym_POUND, + anon_sym_SQUOTE, sym_metavariable, - ACTIONS(2040), 38, + ACTIONS(3547), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114864,33 +113998,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, - anon_sym_enum, anon_sym_fn, + anon_sym_for, anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, anon_sym_union, anon_sym_unsafe, - anon_sym_use, + anon_sym_where, anon_sym_extern, + anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [7320] = 5, + [6360] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1113), 2, + STATE(1097), 2, sym_line_comment, sym_block_comment, - ACTIONS(2042), 7, + ACTIONS(2062), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -114898,7 +114026,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2044), 38, + ACTIONS(2064), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114937,15 +114065,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7380] = 5, + [6420] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1114), 2, + STATE(1098), 2, sym_line_comment, sym_block_comment, - ACTIONS(2046), 7, + ACTIONS(2436), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -114953,7 +114081,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2048), 38, + ACTIONS(2438), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114992,15 +114120,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7440] = 5, + [6480] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1115), 2, + STATE(1099), 2, sym_line_comment, sym_block_comment, - ACTIONS(2050), 7, + ACTIONS(2058), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -115008,7 +114136,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2052), 38, + ACTIONS(2060), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115047,15 +114175,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7500] = 5, + [6540] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1116), 2, + STATE(1100), 2, sym_line_comment, sym_block_comment, - ACTIONS(2054), 7, + ACTIONS(2206), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -115063,7 +114191,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2056), 38, + ACTIONS(2208), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115102,15 +114230,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7560] = 5, + [6600] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1117), 2, + STATE(1101), 2, sym_line_comment, sym_block_comment, - ACTIONS(2058), 7, + ACTIONS(2424), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -115118,7 +114246,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2060), 38, + ACTIONS(2426), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115157,125 +114285,70 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7620] = 5, + [6660] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1118), 2, + STATE(1102), 2, sym_line_comment, sym_block_comment, - ACTIONS(2062), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + ACTIONS(903), 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(2064), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [7680] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1119), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2066), 7, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(905), 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_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2068), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [7740] = 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, + [6720] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1120), 2, + STATE(1103), 2, sym_line_comment, sym_block_comment, - ACTIONS(2070), 7, + ACTIONS(2198), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -115283,7 +114356,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2072), 38, + ACTIONS(2200), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115322,15 +114395,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7800] = 5, + [6780] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1121), 2, + STATE(1104), 2, sym_line_comment, sym_block_comment, - ACTIONS(2074), 7, + ACTIONS(2054), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -115338,7 +114411,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2076), 38, + ACTIONS(2056), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115377,15 +114450,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7860] = 5, + [6840] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1122), 2, + STATE(1105), 2, sym_line_comment, sym_block_comment, - ACTIONS(2078), 7, + ACTIONS(2274), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -115393,7 +114466,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2080), 38, + ACTIONS(2276), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115432,15 +114505,70 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7920] = 5, + [6900] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1123), 2, + STATE(1106), 2, sym_line_comment, sym_block_comment, - ACTIONS(2082), 7, + ACTIONS(1440), 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(1438), 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, + [6960] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1107), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2166), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -115448,7 +114576,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2084), 38, + ACTIONS(2168), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115487,15 +114615,70 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7980] = 5, + [7020] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1124), 2, + STATE(1108), 2, sym_line_comment, sym_block_comment, - ACTIONS(2086), 7, + ACTIONS(3553), 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(3551), 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, + [7080] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1109), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2270), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -115503,7 +114686,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2088), 38, + ACTIONS(2272), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115542,23 +114725,29 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8040] = 5, + [7140] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1125), 2, + STATE(1110), 2, sym_line_comment, sym_block_comment, - ACTIONS(2090), 7, + ACTIONS(3557), 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_COLON_COLON, - anon_sym_POUND, + anon_sym_SQUOTE, sym_metavariable, - ACTIONS(2092), 38, + ACTIONS(3555), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115579,33 +114768,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, - anon_sym_enum, anon_sym_fn, + anon_sym_for, anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, anon_sym_union, anon_sym_unsafe, - anon_sym_use, + anon_sym_where, anon_sym_extern, + anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [8100] = 5, + [7200] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1126), 2, + STATE(1111), 2, sym_line_comment, sym_block_comment, - ACTIONS(2094), 7, + ACTIONS(2158), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -115613,7 +114796,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2096), 38, + ACTIONS(2160), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115652,70 +114835,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8160] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1127), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1430), 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(1428), 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, - [8220] = 5, + [7260] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1128), 2, + STATE(1112), 2, sym_line_comment, sym_block_comment, - ACTIONS(1878), 7, + ACTIONS(2266), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -115723,7 +114851,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1880), 38, + ACTIONS(2268), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115762,15 +114890,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8280] = 5, + [7320] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1129), 2, + STATE(1113), 2, sym_line_comment, sym_block_comment, - ACTIONS(1882), 7, + ACTIONS(2262), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -115778,7 +114906,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1884), 38, + ACTIONS(2264), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115817,70 +114945,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8340] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1130), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1400), 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(1398), 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, - [8400] = 5, + [7380] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1131), 2, + STATE(1114), 2, sym_line_comment, sym_block_comment, - ACTIONS(2102), 7, + ACTIONS(2154), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -115888,7 +114961,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2104), 38, + ACTIONS(2156), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115927,15 +115000,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8460] = 5, + [7440] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1132), 2, + STATE(1115), 2, sym_line_comment, sym_block_comment, - ACTIONS(2106), 7, + ACTIONS(2254), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -115943,7 +115016,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2108), 38, + ACTIONS(2256), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115982,15 +115055,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8520] = 5, + [7500] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1133), 2, + STATE(1116), 2, sym_line_comment, sym_block_comment, - ACTIONS(2110), 7, + ACTIONS(2278), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -115998,7 +115071,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2112), 38, + ACTIONS(2280), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116037,70 +115110,125 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8580] = 5, + [7560] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1134), 2, + STATE(1117), 2, sym_line_comment, sym_block_comment, - ACTIONS(2114), 7, + ACTIONS(1444), 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(1442), 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, + [7620] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1118), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1242), 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(2116), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [8640] = 5, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1240), 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, + [7680] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1135), 2, + STATE(1119), 2, sym_line_comment, sym_block_comment, - ACTIONS(2118), 7, + ACTIONS(2380), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116108,7 +115236,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2120), 38, + ACTIONS(2382), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116147,15 +115275,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8700] = 5, + [7740] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1136), 2, + STATE(1120), 2, sym_line_comment, sym_block_comment, - ACTIONS(2122), 7, + ACTIONS(2350), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116163,7 +115291,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2124), 38, + ACTIONS(2352), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116202,15 +115330,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8760] = 5, + [7800] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1137), 2, + STATE(1121), 2, sym_line_comment, sym_block_comment, - ACTIONS(2126), 7, + ACTIONS(2142), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116218,7 +115346,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2128), 38, + ACTIONS(2144), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116257,15 +115385,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8820] = 5, + [7860] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1138), 2, + STATE(1122), 2, sym_line_comment, sym_block_comment, - ACTIONS(2130), 7, + ACTIONS(2346), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116273,7 +115401,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2132), 38, + ACTIONS(2348), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116312,15 +115440,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8880] = 5, + [7920] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1139), 2, + STATE(1123), 2, sym_line_comment, sym_block_comment, - ACTIONS(2134), 7, + ACTIONS(2342), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116328,7 +115456,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2136), 38, + ACTIONS(2344), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116367,15 +115495,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8940] = 5, + [7980] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1140), 2, + STATE(1124), 2, sym_line_comment, sym_block_comment, - ACTIONS(2138), 7, + ACTIONS(2334), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116383,7 +115511,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2140), 38, + ACTIONS(2336), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116422,15 +115550,73 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9000] = 5, + [8040] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1141), 2, + ACTIONS(3561), 1, + anon_sym_LBRACK, + ACTIONS(3565), 1, + anon_sym_QMARK, + ACTIONS(3567), 1, + anon_sym_DOT, + STATE(1125), 2, sym_line_comment, sym_block_comment, - ACTIONS(2142), 7, + ACTIONS(3563), 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(3559), 28, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, + 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_SQUOTE, + anon_sym_as, + anon_sym_else, + [8106] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1126), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1908), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116438,7 +115624,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2144), 38, + ACTIONS(1910), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116477,15 +115663,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9060] = 5, + [8166] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1142), 2, + STATE(1127), 2, sym_line_comment, sym_block_comment, - ACTIONS(1894), 7, + ACTIONS(2318), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116493,7 +115679,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1896), 38, + ACTIONS(2320), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116532,15 +115718,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9120] = 5, + [8226] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1143), 2, + STATE(1128), 2, sym_line_comment, sym_block_comment, - ACTIONS(2150), 7, + ACTIONS(2611), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116548,7 +115734,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2152), 38, + ACTIONS(2613), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116587,15 +115773,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9180] = 5, + [8286] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1144), 2, + STATE(1129), 2, sym_line_comment, sym_block_comment, - ACTIONS(2154), 7, + ACTIONS(2282), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116603,7 +115789,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2156), 38, + ACTIONS(2284), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116642,15 +115828,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9240] = 5, + [8346] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1145), 2, + STATE(1130), 2, sym_line_comment, sym_block_comment, - ACTIONS(2158), 7, + ACTIONS(2290), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116658,7 +115844,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2160), 38, + ACTIONS(2292), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116697,15 +115883,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9300] = 5, + [8406] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1146), 2, + STATE(1131), 2, sym_line_comment, sym_block_comment, - ACTIONS(2162), 7, + ACTIONS(2302), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116713,7 +115899,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2164), 38, + ACTIONS(2304), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116752,15 +115938,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9360] = 5, + [8466] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1147), 2, + STATE(1132), 2, sym_line_comment, sym_block_comment, - ACTIONS(2166), 7, + ACTIONS(2330), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116768,7 +115954,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2168), 38, + ACTIONS(2332), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116807,15 +115993,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9420] = 5, + [8526] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1148), 2, + STATE(1133), 2, sym_line_comment, sym_block_comment, - ACTIONS(2170), 7, + ACTIONS(2338), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116823,7 +116009,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2172), 38, + ACTIONS(2340), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116862,15 +116048,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9480] = 5, + [8586] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1149), 2, + STATE(1134), 2, sym_line_comment, sym_block_comment, - ACTIONS(2174), 7, + ACTIONS(2146), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116878,7 +116064,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2176), 38, + ACTIONS(2148), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116917,15 +116103,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9540] = 5, + [8646] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1150), 2, + STATE(1135), 2, sym_line_comment, sym_block_comment, - ACTIONS(2178), 7, + ACTIONS(2360), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116933,7 +116119,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2180), 38, + ACTIONS(2362), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116972,15 +116158,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9600] = 5, + [8706] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1151), 2, + STATE(1136), 2, sym_line_comment, sym_block_comment, - ACTIONS(2182), 7, + ACTIONS(2364), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116988,7 +116174,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2184), 38, + ACTIONS(2366), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117027,15 +116213,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9660] = 5, + [8766] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1152), 2, + STATE(1137), 2, sym_line_comment, sym_block_comment, - ACTIONS(2186), 7, + ACTIONS(2416), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117043,7 +116229,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2188), 38, + ACTIONS(2418), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117082,15 +116268,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9720] = 5, + [8826] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1153), 2, + STATE(1138), 2, sym_line_comment, sym_block_comment, - ACTIONS(2190), 7, + ACTIONS(2314), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117098,7 +116284,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2192), 38, + ACTIONS(2316), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117137,15 +116323,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9780] = 5, + [8886] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1154), 2, + STATE(1139), 2, sym_line_comment, sym_block_comment, - ACTIONS(2194), 7, + ACTIONS(1904), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117153,7 +116339,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2196), 38, + ACTIONS(1906), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117192,15 +116378,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9840] = 5, + [8946] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1155), 2, + STATE(1140), 2, sym_line_comment, sym_block_comment, - ACTIONS(2198), 7, + ACTIONS(2310), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117208,7 +116394,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2200), 38, + ACTIONS(2312), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117247,15 +116433,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9900] = 5, + [9006] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1156), 2, + STATE(1141), 2, sym_line_comment, sym_block_comment, - ACTIONS(2202), 7, + ACTIONS(2306), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117263,7 +116449,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2204), 38, + ACTIONS(2308), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117302,15 +116488,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9960] = 5, + [9066] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1157), 2, + STATE(1142), 2, sym_line_comment, sym_block_comment, - ACTIONS(2206), 7, + ACTIONS(2298), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117318,7 +116504,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2208), 38, + ACTIONS(2300), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117357,15 +116543,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10020] = 5, + [9126] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1158), 2, + STATE(1143), 2, sym_line_comment, sym_block_comment, - ACTIONS(2210), 7, + ACTIONS(1674), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117373,7 +116559,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2212), 38, + ACTIONS(1676), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117412,15 +116598,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10080] = 5, + [9186] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1159), 2, + STATE(1144), 2, sym_line_comment, sym_block_comment, - ACTIONS(2214), 7, + ACTIONS(1690), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117428,7 +116614,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2216), 38, + ACTIONS(1692), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117467,15 +116653,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10140] = 5, + [9246] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1160), 2, + STATE(1145), 2, sym_line_comment, sym_block_comment, - ACTIONS(2218), 7, + ACTIONS(2294), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117483,7 +116669,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2220), 38, + ACTIONS(2296), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117522,15 +116708,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10200] = 5, + [9306] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1161), 2, + STATE(1146), 2, sym_line_comment, sym_block_comment, - ACTIONS(2222), 7, + ACTIONS(2286), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117538,7 +116724,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2224), 38, + ACTIONS(2288), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117577,15 +116763,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10260] = 5, + [9366] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1162), 2, + STATE(1147), 2, sym_line_comment, sym_block_comment, - ACTIONS(2226), 7, + ACTIONS(2246), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117593,7 +116779,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2228), 38, + ACTIONS(2248), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117632,15 +116818,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10320] = 5, + [9426] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1163), 2, + STATE(1148), 2, sym_line_comment, sym_block_comment, - ACTIONS(2230), 7, + ACTIONS(2242), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117648,7 +116834,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2232), 38, + ACTIONS(2244), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117687,12 +116873,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10380] = 5, + [9486] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1164), 2, + STATE(1149), 2, sym_line_comment, sym_block_comment, ACTIONS(2234), 7, @@ -117742,125 +116928,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10440] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1165), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2238), 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(2240), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [10500] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1166), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2242), 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(2244), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [10560] = 5, + [9546] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1167), 2, + STATE(1150), 2, sym_line_comment, sym_block_comment, - ACTIONS(2250), 7, + ACTIONS(2218), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117868,7 +116944,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2252), 38, + ACTIONS(2220), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117907,15 +116983,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10620] = 5, + [9606] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1168), 2, + STATE(1151), 2, sym_line_comment, sym_block_comment, - ACTIONS(2254), 7, + ACTIONS(2368), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117923,7 +116999,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2256), 38, + ACTIONS(2370), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117962,15 +117038,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10680] = 5, + [9666] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1169), 2, + STATE(1152), 2, sym_line_comment, sym_block_comment, - ACTIONS(2258), 7, + ACTIONS(2186), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117978,7 +117054,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2260), 38, + ACTIONS(2188), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118017,15 +117093,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10740] = 5, + [9726] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1170), 2, + STATE(1153), 2, sym_line_comment, sym_block_comment, - ACTIONS(2262), 7, + ACTIONS(2178), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118033,7 +117109,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2264), 38, + ACTIONS(2180), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118072,15 +117148,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10800] = 5, + [9786] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1171), 2, + STATE(1154), 2, sym_line_comment, sym_block_comment, - ACTIONS(2266), 7, + ACTIONS(2126), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118088,7 +117164,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2268), 38, + ACTIONS(2128), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118127,15 +117203,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10860] = 5, + [9846] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1172), 2, + STATE(1155), 2, sym_line_comment, sym_block_comment, - ACTIONS(2915), 7, + ACTIONS(2675), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118143,7 +117219,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2917), 38, + ACTIONS(2677), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118182,15 +117258,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10920] = 5, + [9906] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1173), 2, + STATE(1156), 2, sym_line_comment, sym_block_comment, - ACTIONS(2274), 7, + ACTIONS(2122), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118198,7 +117274,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2276), 38, + ACTIONS(2124), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118237,15 +117313,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10980] = 5, + [9966] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1174), 2, + STATE(1157), 2, sym_line_comment, sym_block_comment, - ACTIONS(2278), 7, + ACTIONS(2372), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118253,7 +117329,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2280), 38, + ACTIONS(2374), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118292,15 +117368,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11040] = 5, + [10026] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1175), 2, + STATE(1158), 2, sym_line_comment, sym_block_comment, - ACTIONS(2282), 7, + ACTIONS(2118), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118308,7 +117384,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2284), 38, + ACTIONS(2120), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118347,15 +117423,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11100] = 5, + [10086] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1176), 2, + STATE(1159), 2, sym_line_comment, sym_block_comment, - ACTIONS(2286), 7, + ACTIONS(2376), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118363,7 +117439,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2288), 38, + ACTIONS(2378), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118402,15 +117478,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11160] = 5, + [10146] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1177), 2, + STATE(1160), 2, sym_line_comment, sym_block_comment, - ACTIONS(2290), 7, + ACTIONS(2102), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118418,7 +117494,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2292), 38, + ACTIONS(2104), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118457,15 +117533,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11220] = 5, + [10206] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1178), 2, + STATE(1161), 2, sym_line_comment, sym_block_comment, - ACTIONS(2294), 7, + ACTIONS(2034), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118473,7 +117549,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2296), 38, + ACTIONS(2036), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118512,15 +117588,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11280] = 5, + [10266] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1179), 2, + STATE(1162), 2, sym_line_comment, sym_block_comment, - ACTIONS(2302), 7, + ACTIONS(2030), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118528,7 +117604,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2304), 38, + ACTIONS(2032), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118567,15 +117643,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11340] = 5, + [10326] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1180), 2, + STATE(1163), 2, sym_line_comment, sym_block_comment, - ACTIONS(2306), 7, + ACTIONS(1694), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118583,7 +117659,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2308), 38, + ACTIONS(1696), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118622,15 +117698,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11400] = 5, + [10386] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1181), 2, + STATE(1164), 2, sym_line_comment, sym_block_comment, - ACTIONS(2310), 7, + ACTIONS(2026), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118638,7 +117714,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2312), 38, + ACTIONS(2028), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118677,15 +117753,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11460] = 5, + [10446] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1182), 2, + STATE(1165), 2, sym_line_comment, sym_block_comment, - ACTIONS(2314), 7, + ACTIONS(2022), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118693,7 +117769,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2316), 38, + ACTIONS(2024), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118732,15 +117808,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11520] = 5, + [10506] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1183), 2, + STATE(1166), 2, sym_line_comment, sym_block_comment, - ACTIONS(3545), 15, + ACTIONS(3571), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -118756,7 +117832,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3543), 30, + ACTIONS(3569), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -118787,15 +117863,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [11580] = 5, + [10566] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1184), 2, + STATE(1167), 2, sym_line_comment, sym_block_comment, - ACTIONS(1906), 7, + ACTIONS(1706), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118803,7 +117879,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1908), 38, + ACTIONS(1708), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118842,15 +117918,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11640] = 5, + [10626] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1185), 2, + STATE(1168), 2, sym_line_comment, sym_block_comment, - ACTIONS(2098), 7, + ACTIONS(1718), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118858,7 +117934,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2100), 38, + ACTIONS(1720), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118897,70 +117973,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11700] = 5, + [10686] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1186), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3549), 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(3547), 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, - [11760] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1187), 2, + STATE(1169), 2, sym_line_comment, sym_block_comment, - ACTIONS(1662), 7, + ACTIONS(1990), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118968,7 +117989,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1664), 38, + ACTIONS(1992), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119007,15 +118028,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11820] = 5, + [10746] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1188), 2, + STATE(1170), 2, sym_line_comment, sym_block_comment, - ACTIONS(2246), 7, + ACTIONS(2384), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119023,7 +118044,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2248), 38, + ACTIONS(2386), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119062,70 +118083,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11880] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1189), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3553), 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(3551), 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, - [11940] = 5, + [10806] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1190), 2, + STATE(1171), 2, sym_line_comment, sym_block_comment, - ACTIONS(2298), 7, + ACTIONS(2388), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119133,7 +118099,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2300), 38, + ACTIONS(2390), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119172,15 +118138,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12000] = 5, + [10866] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1191), 2, + STATE(1172), 2, sym_line_comment, sym_block_comment, - ACTIONS(2318), 7, + ACTIONS(1722), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119188,7 +118154,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2320), 38, + ACTIONS(1724), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119227,125 +118193,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12060] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1192), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1416), 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(1418), 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, - [12120] = 5, + [10926] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1193), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3557), 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(3555), 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, - [12180] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1194), 2, + STATE(1173), 2, sym_line_comment, sym_block_comment, - ACTIONS(2322), 7, + ACTIONS(1678), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119353,7 +118209,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2324), 38, + ACTIONS(1680), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119392,125 +118248,70 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12240] = 5, + [10986] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1195), 2, + STATE(1174), 2, sym_line_comment, sym_block_comment, - ACTIONS(1452), 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(1450), 30, + ACTIONS(1682), 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, - [12300] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1196), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1322), 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(1320), 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, - [12360] = 5, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1684), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [11046] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1197), 2, + STATE(1175), 2, sym_line_comment, sym_block_comment, - ACTIONS(2326), 7, + ACTIONS(1726), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119518,7 +118319,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2328), 38, + ACTIONS(1728), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119557,125 +118358,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12420] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1198), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(753), 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(755), 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, - [12480] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1199), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3561), 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(3559), 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, - [12540] = 5, + [11106] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1200), 2, + STATE(1176), 2, sym_line_comment, sym_block_comment, - ACTIONS(2380), 7, + ACTIONS(1702), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119683,7 +118374,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2382), 38, + ACTIONS(1704), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119722,15 +118413,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12600] = 5, + [11166] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1201), 2, + STATE(1177), 2, sym_line_comment, sym_block_comment, - ACTIONS(2384), 7, + ACTIONS(2392), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119738,7 +118429,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2386), 38, + ACTIONS(2394), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119777,70 +118468,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12660] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1202), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3565), 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(3563), 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, - [12720] = 5, + [11226] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1203), 2, + STATE(1178), 2, sym_line_comment, sym_block_comment, - ACTIONS(2388), 7, + ACTIONS(2404), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119848,7 +118484,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2390), 38, + ACTIONS(2406), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119887,15 +118523,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12780] = 5, + [11286] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1204), 2, + STATE(1179), 2, sym_line_comment, sym_block_comment, - ACTIONS(2392), 7, + ACTIONS(2412), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119903,7 +118539,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2394), 38, + ACTIONS(2414), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119942,663 +118578,353 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12840] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1205), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1208), 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(1206), 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, - [12900] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1206), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1384), 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(1382), 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, - [12960] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1207), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3569), 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(3567), 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, - [13020] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1208), 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), 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, - [13080] = 5, + [11346] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1209), 2, + STATE(1180), 2, sym_line_comment, sym_block_comment, - ACTIONS(3577), 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(3575), 30, + ACTIONS(2765), 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, - [13140] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1210), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3581), 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(3579), 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, - [13200] = 5, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2767), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [11406] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1211), 2, + STATE(1181), 2, sym_line_comment, sym_block_comment, - ACTIONS(3585), 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(3583), 30, + ACTIONS(2440), 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, - [13260] = 5, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2442), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [11466] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1212), 2, + STATE(1182), 2, sym_line_comment, sym_block_comment, - ACTIONS(3589), 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(3587), 30, + ACTIONS(2484), 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, - [13320] = 5, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2486), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [11526] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1213), 2, + STATE(1183), 2, sym_line_comment, sym_block_comment, - ACTIONS(3593), 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(3591), 30, + ACTIONS(1734), 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, - [13380] = 5, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1736), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [11586] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1214), 2, + STATE(1184), 2, sym_line_comment, sym_block_comment, - ACTIONS(1416), 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(1418), 30, + ACTIONS(2591), 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, - [13440] = 5, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2593), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [11646] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1215), 2, + STATE(1185), 2, sym_line_comment, sym_block_comment, - ACTIONS(3396), 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(3392), 30, + ACTIONS(2615), 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, - [13500] = 21, - ACTIONS(29), 1, anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(1614), 1, - anon_sym_DASH, - ACTIONS(1638), 1, - aux_sym_string_literal_token1, - ACTIONS(1646), 1, - sym__raw_string_literal_start, - ACTIONS(3221), 1, - anon_sym_if, - ACTIONS(3595), 1, - sym_identifier, - ACTIONS(3599), 1, anon_sym_COLON_COLON, - ACTIONS(3603), 1, + anon_sym_POUND, sym_metavariable, - STATE(2726), 1, - sym_scoped_identifier, - STATE(2895), 1, - sym__literal_pattern, - STATE(3465), 1, - sym_bracketed_type, - STATE(3478), 1, - sym_generic_type_with_turbofish, - ACTIONS(1640), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3219), 2, - anon_sym_EQ_GT, - anon_sym_PIPE, - STATE(1216), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1636), 3, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3601), 3, + ACTIONS(2617), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_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(2299), 4, - sym_negative_literal, - sym_string_literal, - sym_raw_string_literal, - sym_boolean_literal, - ACTIONS(3597), 19, + [11706] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1186), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1662), 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(1664), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120616,402 +118942,201 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, + anon_sym_async, + anon_sym_const, anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, - [13592] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1217), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3607), 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(3605), 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, - [13652] = 5, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [11766] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1218), 2, + STATE(1187), 2, sym_line_comment, sym_block_comment, - ACTIONS(1422), 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(1420), 30, + ACTIONS(1766), 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, - [13712] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1219), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3611), 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(3609), 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, - [13772] = 5, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1768), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [11826] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1220), 2, + STATE(1188), 2, sym_line_comment, sym_block_comment, - 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), 30, + 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_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - 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, - [13832] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1221), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3619), 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(3617), 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, - [13892] = 5, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2775), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [11886] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1222), 2, + STATE(1189), 2, sym_line_comment, sym_block_comment, - ACTIONS(3623), 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(3621), 30, + ACTIONS(1738), 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, - [13952] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1223), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3627), 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(3625), 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, - [14012] = 5, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1740), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [11946] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1224), 2, + STATE(1190), 2, sym_line_comment, sym_block_comment, - ACTIONS(3627), 15, + ACTIONS(3575), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -121027,7 +119152,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3625), 30, + ACTIONS(3573), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -121058,125 +119183,235 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [14072] = 5, + [12006] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1225), 2, + STATE(1191), 2, sym_line_comment, sym_block_comment, - ACTIONS(3631), 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, + ACTIONS(2631), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3629), 30, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2633), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [12066] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1192), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2639), 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, - [14132] = 5, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2641), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [12126] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1226), 2, + STATE(1193), 2, sym_line_comment, sym_block_comment, - ACTIONS(3635), 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, + ACTIONS(1742), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3633), 30, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1744), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [12186] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1194), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2663), 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, - [14192] = 5, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2665), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [12246] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1227), 2, + STATE(1195), 2, sym_line_comment, sym_block_comment, - ACTIONS(2400), 7, + ACTIONS(1746), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121184,7 +119419,227 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2402), 38, + ACTIONS(1748), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [12306] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1196), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2707), 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(2709), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [12366] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1197), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1750), 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(1752), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [12426] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1198), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2354), 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(2356), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [12486] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1199), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1754), 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(1756), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121223,84 +119678,23 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14252] = 5, + [12546] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1228), 2, + STATE(1200), 2, sym_line_comment, sym_block_comment, - ACTIONS(3639), 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(3637), 30, + ACTIONS(1758), 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, - [14312] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1229), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3643), 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(3641), 32, + ACTIONS(1760), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121321,41 +119715,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_enum, anon_sym_fn, - anon_sym_for, anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, anon_sym_unsafe, - anon_sym_where, + anon_sym_use, anon_sym_extern, - anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [14372] = 5, + [12606] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1230), 2, + STATE(1201), 2, sym_line_comment, sym_block_comment, - ACTIONS(3647), 13, + ACTIONS(1762), 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(3645), 32, + ACTIONS(1764), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121376,27 +119770,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_enum, anon_sym_fn, - anon_sym_for, anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, anon_sym_unsafe, - anon_sym_where, + anon_sym_use, anon_sym_extern, - anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [14432] = 5, + [12666] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1231), 2, + STATE(1202), 2, sym_line_comment, sym_block_comment, - ACTIONS(985), 15, + ACTIONS(3579), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -121412,7 +119812,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(987), 30, + ACTIONS(3577), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -121443,15 +119843,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [14492] = 5, + [12726] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1232), 2, + STATE(1203), 2, sym_line_comment, sym_block_comment, - ACTIONS(2418), 7, + ACTIONS(2731), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121459,7 +119859,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2420), 38, + ACTIONS(2733), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121498,15 +119898,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14552] = 5, + [12786] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1233), 2, + STATE(1204), 2, sym_line_comment, sym_block_comment, - ACTIONS(2422), 7, + ACTIONS(1844), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121514,7 +119914,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2424), 38, + ACTIONS(1846), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121553,15 +119953,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14612] = 5, + [12846] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1234), 2, + STATE(1205), 2, sym_line_comment, sym_block_comment, - ACTIONS(2426), 7, + ACTIONS(2745), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121569,7 +119969,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2428), 38, + ACTIONS(2747), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121608,15 +120008,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14672] = 5, + [12906] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1235), 2, + STATE(1206), 2, sym_line_comment, sym_block_comment, - ACTIONS(2430), 7, + ACTIONS(2777), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121624,7 +120024,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2432), 38, + ACTIONS(2779), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121663,15 +120063,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14732] = 5, + [12966] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1236), 2, + STATE(1207), 2, sym_line_comment, sym_block_comment, - ACTIONS(2434), 7, + ACTIONS(2753), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121679,7 +120079,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2436), 38, + ACTIONS(2755), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121718,15 +120118,70 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14792] = 5, + [13026] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1237), 2, + STATE(1208), 2, sym_line_comment, sym_block_comment, - ACTIONS(3651), 15, + ACTIONS(2761), 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(2763), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [13086] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1209), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1428), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -121742,7 +120197,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3649), 30, + ACTIONS(1426), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -121773,19 +120228,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [14852] = 7, + [13146] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3321), 1, + STATE(1210), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1840), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, anon_sym_COLON_COLON, - ACTIONS(3653), 1, - anon_sym_BANG, - STATE(1238), 2, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1842), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [13206] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1211), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1848), 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(1850), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [13266] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1212), 2, sym_line_comment, sym_block_comment, - ACTIONS(3317), 15, + ACTIONS(3583), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -121801,12 +120362,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3315), 28, + ACTIONS(3581), 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, @@ -121828,17 +120390,73 @@ 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, - [14916] = 5, + [13326] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1239), 2, + STATE(1213), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2781), 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(2783), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [13386] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1214), 2, sym_line_comment, sym_block_comment, - ACTIONS(1388), 15, + ACTIONS(3587), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -121854,7 +120472,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1386), 30, + ACTIONS(3585), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -121885,15 +120503,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [14976] = 5, + [13446] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1240), 2, + STATE(1215), 2, sym_line_comment, sym_block_comment, - ACTIONS(2438), 7, + ACTIONS(1860), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121901,7 +120519,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2440), 38, + ACTIONS(1862), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121940,15 +120558,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15036] = 5, + [13506] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1241), 2, + STATE(1216), 2, sym_line_comment, sym_block_comment, - ACTIONS(1416), 15, + ACTIONS(3591), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -121964,7 +120582,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1418), 30, + ACTIONS(3589), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -121995,15 +120613,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [15096] = 5, + [13566] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1242), 2, + STATE(1217), 2, sym_line_comment, sym_block_comment, - ACTIONS(2442), 7, + ACTIONS(1852), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122011,7 +120629,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2444), 38, + ACTIONS(1854), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122050,71 +120668,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15156] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3659), 1, - anon_sym_RBRACE, - STATE(1243), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3657), 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, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(3655), 29, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym__, - anon_sym_const, - anon_sym_default, - anon_sym_union, - anon_sym_ref, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [15218] = 5, + [13626] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1244), 2, + STATE(1218), 2, sym_line_comment, sym_block_comment, - ACTIONS(2410), 7, + ACTIONS(1856), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122122,7 +120684,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2412), 38, + ACTIONS(1858), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122161,15 +120723,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15278] = 5, + [13686] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1245), 2, + STATE(1219), 2, sym_line_comment, sym_block_comment, - ACTIONS(2446), 7, + ACTIONS(1864), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122177,7 +120739,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2448), 38, + ACTIONS(1866), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122216,15 +120778,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15338] = 5, + [13746] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1246), 2, + STATE(1220), 2, sym_line_comment, sym_block_comment, - ACTIONS(2450), 7, + ACTIONS(1872), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122232,7 +120794,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2452), 38, + ACTIONS(1874), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122271,15 +120833,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15398] = 5, + [13806] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1247), 2, + STATE(1221), 2, sym_line_comment, sym_block_comment, - ACTIONS(2454), 7, + ACTIONS(1868), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122287,7 +120849,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2456), 38, + ACTIONS(1870), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122326,125 +120888,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15458] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1248), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1396), 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(1394), 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, - [15518] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1249), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3663), 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(3661), 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, - [15578] = 5, + [13866] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1250), 2, + STATE(1222), 2, sym_line_comment, sym_block_comment, - ACTIONS(1416), 15, + ACTIONS(3595), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -122460,7 +120912,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1418), 30, + ACTIONS(3593), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -122491,74 +120943,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [15638] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - STATE(1251), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3669), 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(3665), 27, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_LBRACE, - 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_SQUOTE, - anon_sym_else, - [15706] = 5, + [13926] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1252), 2, + STATE(1223), 2, sym_line_comment, sym_block_comment, - ACTIONS(2462), 7, + ACTIONS(1888), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122566,7 +120959,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2464), 38, + ACTIONS(1890), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122605,15 +120998,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15766] = 5, + [13986] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1253), 2, + STATE(1224), 2, sym_line_comment, sym_block_comment, - ACTIONS(2466), 7, + ACTIONS(1912), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122621,7 +121014,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2468), 38, + ACTIONS(1914), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122660,70 +121053,125 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15826] = 5, + [14046] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1254), 2, + STATE(1225), 2, sym_line_comment, sym_block_comment, - ACTIONS(2470), 7, + ACTIONS(3599), 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(3597), 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, + [14106] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1226), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3603), 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(2472), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [15886] = 5, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3601), 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, + [14166] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1255), 2, + STATE(1227), 2, sym_line_comment, sym_block_comment, - ACTIONS(2474), 7, + ACTIONS(1916), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122731,7 +121179,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2476), 38, + ACTIONS(1918), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122770,15 +121218,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15946] = 5, + [14226] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1256), 2, + STATE(1228), 2, sym_line_comment, sym_block_comment, - ACTIONS(2478), 7, + ACTIONS(1880), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122786,7 +121234,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2480), 38, + ACTIONS(1882), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122801,94 +121249,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usize, anon_sym_f32, anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [16006] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1257), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3679), 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(3677), 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, - [16066] = 5, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [14286] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1258), 2, + STATE(1229), 2, sym_line_comment, sym_block_comment, - ACTIONS(2482), 7, + ACTIONS(2789), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122896,7 +121289,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2484), 38, + ACTIONS(2791), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122935,15 +121328,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16126] = 5, + [14346] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1259), 2, + STATE(1230), 2, sym_line_comment, sym_block_comment, - ACTIONS(2486), 7, + ACTIONS(1884), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122951,7 +121344,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2488), 38, + ACTIONS(1886), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122990,29 +121383,23 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16186] = 5, + [14406] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1260), 2, + STATE(1231), 2, sym_line_comment, sym_block_comment, - ACTIONS(3683), 13, + ACTIONS(2831), 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(3681), 32, + ACTIONS(2833), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123033,41 +121420,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_enum, anon_sym_fn, - anon_sym_for, anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, anon_sym_unsafe, - anon_sym_where, + anon_sym_use, anon_sym_extern, - anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [16246] = 5, + [14466] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1261), 2, + STATE(1232), 2, sym_line_comment, sym_block_comment, - ACTIONS(3687), 13, + ACTIONS(1896), 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(3685), 32, + ACTIONS(1898), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123088,82 +121475,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_enum, anon_sym_fn, - anon_sym_for, anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, anon_sym_unsafe, - anon_sym_where, + anon_sym_use, anon_sym_extern, - anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [16306] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1262), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3691), 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(3689), 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, - [16366] = 5, + [14526] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1263), 2, + STATE(1233), 2, sym_line_comment, sym_block_comment, - ACTIONS(2490), 7, + ACTIONS(1970), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123171,7 +121509,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2492), 38, + ACTIONS(1972), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123210,70 +121548,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16426] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1264), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3695), 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(3693), 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, - [16486] = 5, + [14586] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1265), 2, + STATE(1234), 2, sym_line_comment, sym_block_comment, - ACTIONS(2494), 7, + ACTIONS(1974), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123281,7 +121564,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2496), 38, + ACTIONS(1976), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123320,15 +121603,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16546] = 5, + [14646] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1266), 2, + STATE(1235), 2, sym_line_comment, sym_block_comment, - ACTIONS(2498), 7, + ACTIONS(2891), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123336,7 +121619,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2500), 38, + ACTIONS(2893), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123375,15 +121658,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16606] = 5, + [14706] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1267), 2, + STATE(1236), 2, sym_line_comment, sym_block_comment, - ACTIONS(2502), 7, + ACTIONS(2038), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123391,7 +121674,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2504), 38, + ACTIONS(2040), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123430,15 +121713,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16666] = 5, + [14766] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1268), 2, + STATE(1237), 2, sym_line_comment, sym_block_comment, - ACTIONS(2506), 7, + ACTIONS(2050), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123446,7 +121729,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2508), 38, + ACTIONS(2052), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123485,70 +121768,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16726] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1269), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1376), 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(1374), 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, - [16786] = 5, + [14826] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1270), 2, + STATE(1238), 2, sym_line_comment, sym_block_comment, - ACTIONS(2514), 7, + ACTIONS(2907), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123556,7 +121784,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2516), 38, + ACTIONS(2909), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123595,15 +121823,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16846] = 5, + [14886] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1271), 2, + STATE(1239), 2, sym_line_comment, sym_block_comment, - ACTIONS(2518), 7, + ACTIONS(2066), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123611,7 +121839,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2520), 38, + ACTIONS(2068), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123650,29 +121878,23 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16906] = 5, + [14946] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1272), 2, + STATE(1240), 2, sym_line_comment, sym_block_comment, - ACTIONS(3699), 13, + ACTIONS(2785), 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(3697), 32, + ACTIONS(2787), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123693,41 +121915,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_enum, anon_sym_fn, - anon_sym_for, anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, anon_sym_unsafe, - anon_sym_where, + anon_sym_use, anon_sym_extern, - anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [16966] = 5, + [15006] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1273), 2, + STATE(1241), 2, sym_line_comment, sym_block_comment, - ACTIONS(3703), 13, + ACTIONS(2070), 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(3701), 32, + ACTIONS(2072), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123748,27 +121970,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_enum, anon_sym_fn, - anon_sym_for, anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, anon_sym_unsafe, - anon_sym_where, + anon_sym_use, anon_sym_extern, - anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [17026] = 5, + [15066] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1274), 2, + STATE(1242), 2, sym_line_comment, sym_block_comment, - ACTIONS(3707), 15, + ACTIONS(1436), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -123784,7 +122012,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3705), 30, + ACTIONS(1434), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -123815,29 +122043,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [17086] = 5, + [15126] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1275), 2, + STATE(1243), 2, sym_line_comment, sym_block_comment, - ACTIONS(3711), 13, + ACTIONS(3607), 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(3605), 30, anon_sym_SEMI, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, - anon_sym_STAR, + anon_sym_RBRACE, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + 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, + [15186] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1244), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3611), 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_DOT, + anon_sym_DOT_DOT, + ACTIONS(3609), 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, + [15246] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1245), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2797), 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(3709), 32, + ACTIONS(2799), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123858,27 +122190,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_enum, anon_sym_fn, - anon_sym_for, anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, anon_sym_unsafe, - anon_sym_where, + anon_sym_use, anon_sym_extern, - anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [17146] = 5, + [15306] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1276), 2, + STATE(1246), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1376), 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(1374), 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, + [15366] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1247), 2, sym_line_comment, sym_block_comment, - ACTIONS(2522), 7, + ACTIONS(2078), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123886,7 +122279,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2524), 38, + ACTIONS(2080), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123925,15 +122318,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17206] = 5, + [15426] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1277), 2, + STATE(1248), 2, sym_line_comment, sym_block_comment, - ACTIONS(2528), 7, + ACTIONS(2086), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123941,7 +122334,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2530), 38, + ACTIONS(2088), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123980,15 +122373,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17266] = 5, + [15486] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1278), 2, + STATE(1249), 2, sym_line_comment, sym_block_comment, - ACTIONS(3715), 15, + ACTIONS(3615), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -124004,7 +122397,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3713), 30, + ACTIONS(3613), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -124035,15 +122428,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [17326] = 5, + [15546] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1279), 2, + STATE(1250), 2, sym_line_comment, sym_block_comment, - ACTIONS(2615), 7, + ACTIONS(2090), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124051,7 +122444,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2617), 38, + ACTIONS(2092), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124090,15 +122483,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17386] = 5, + [15606] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1280), 2, + STATE(1251), 2, sym_line_comment, sym_block_comment, - ACTIONS(2619), 7, + ACTIONS(1978), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124106,7 +122499,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2621), 38, + ACTIONS(1980), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124145,15 +122538,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17446] = 5, + [15666] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1281), 2, + STATE(1252), 2, sym_line_comment, sym_block_comment, - ACTIONS(2623), 7, + ACTIONS(2094), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124161,7 +122554,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2625), 38, + ACTIONS(2096), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124200,15 +122593,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17506] = 5, + [15726] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1282), 2, + STATE(1253), 2, sym_line_comment, sym_block_comment, - ACTIONS(2627), 7, + ACTIONS(2106), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124216,7 +122609,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2629), 38, + ACTIONS(2108), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124255,15 +122648,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17566] = 5, + [15786] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1283), 2, + STATE(1254), 2, sym_line_comment, sym_block_comment, - ACTIONS(2631), 7, + ACTIONS(1982), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124271,7 +122664,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2633), 38, + ACTIONS(1984), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124310,15 +122703,70 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17626] = 5, + [15846] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1284), 2, + STATE(1255), 2, sym_line_comment, sym_block_comment, - ACTIONS(2637), 7, + ACTIONS(3619), 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(3617), 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, + [15906] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1256), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1986), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124326,7 +122774,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2639), 38, + ACTIONS(1988), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124365,15 +122813,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17686] = 5, + [15966] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1285), 2, + STATE(1257), 2, sym_line_comment, sym_block_comment, - ACTIONS(2641), 7, + ACTIONS(2002), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124381,7 +122829,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2643), 38, + ACTIONS(2004), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124420,143 +122868,78 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17746] = 5, + [16026] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1286), 2, + STATE(1258), 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_DOT, - anon_sym_DOT_DOT, - ACTIONS(3717), 30, + ACTIONS(2110), 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, - [17806] = 5, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2112), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [16086] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1287), 2, + STATE(1259), 2, sym_line_comment, sym_block_comment, - ACTIONS(1426), 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(1424), 30, + ACTIONS(2010), 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_SQUOTE, - anon_sym_as, - anon_sym_else, - [17866] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3725), 1, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - STATE(1288), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3723), 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, anon_sym_COLON_COLON, anon_sym_POUND, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, sym_metavariable, - ACTIONS(3721), 29, + ACTIONS(2012), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124574,27 +122957,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym__, + anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_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, - [17928] = 5, + [16146] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1289), 2, + STATE(1260), 2, sym_line_comment, sym_block_comment, - ACTIONS(2645), 7, + ACTIONS(2114), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124602,7 +122994,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2647), 38, + ACTIONS(2116), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124641,15 +123033,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17988] = 5, + [16206] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1290), 2, + STATE(1261), 2, sym_line_comment, sym_block_comment, - ACTIONS(2653), 7, + ACTIONS(2074), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124657,7 +123049,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2655), 38, + ACTIONS(2076), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124696,125 +123088,70 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18048] = 5, + [16266] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1291), 2, + STATE(1262), 2, sym_line_comment, sym_block_comment, - ACTIONS(3729), 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(3727), 30, + ACTIONS(2803), 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, - [18108] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1292), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3733), 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(3731), 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, - [18168] = 5, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2805), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [16326] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1293), 2, + STATE(1263), 2, sym_line_comment, sym_block_comment, - ACTIONS(3289), 15, + ACTIONS(1001), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -124830,7 +123167,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3287), 30, + ACTIONS(1003), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -124861,15 +123198,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [18228] = 5, + [16386] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1294), 2, + STATE(1264), 2, sym_line_comment, sym_block_comment, - ACTIONS(3737), 15, + ACTIONS(3623), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -124885,7 +123222,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3735), 30, + ACTIONS(3621), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -124916,125 +123253,185 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [18288] = 5, + [16446] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1295), 2, + STATE(1265), 2, sym_line_comment, sym_block_comment, - ACTIONS(3741), 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, + ACTIONS(2082), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3739), 30, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2084), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [16506] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1266), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2098), 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, - [18348] = 5, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2100), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [16566] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1296), 2, + ACTIONS(3629), 1, + anon_sym_RBRACE, + STATE(1267), 2, sym_line_comment, sym_block_comment, - ACTIONS(3285), 15, - anon_sym_PLUS, - anon_sym_STAR, + ACTIONS(3627), 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_EQ, - anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3283), 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, - [18408] = 5, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(3625), 29, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym__, + anon_sym_const, + anon_sym_default, + anon_sym_union, + anon_sym_ref, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [16628] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1297), 2, + ACTIONS(3247), 1, + anon_sym_BANG, + ACTIONS(3631), 1, + anon_sym_COLON_COLON, + STATE(1268), 2, sym_line_comment, sym_block_comment, - ACTIONS(3305), 15, + ACTIONS(1406), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -125050,13 +123447,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3303), 30, + ACTIONS(1408), 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, @@ -125078,73 +123474,72 @@ 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, - [18468] = 5, + [16692] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1298), 2, + STATE(1269), 2, sym_line_comment, sym_block_comment, - ACTIONS(3745), 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(3743), 30, + ACTIONS(2130), 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, - [18528] = 5, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2132), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [16752] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1299), 2, + STATE(1270), 2, sym_line_comment, sym_block_comment, - ACTIONS(3749), 15, + ACTIONS(3635), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -125160,7 +123555,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3747), 30, + ACTIONS(3633), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -125191,70 +123586,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [18588] = 5, + [16812] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1300), 2, + STATE(1271), 2, sym_line_comment, sym_block_comment, - ACTIONS(3753), 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(3751), 30, + ACTIONS(2138), 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, - [18648] = 5, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2140), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [16872] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1301), 2, + STATE(1272), 2, sym_line_comment, sym_block_comment, - ACTIONS(2406), 7, + ACTIONS(2150), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125262,7 +123657,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2408), 38, + ACTIONS(2152), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125301,15 +123696,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18708] = 5, + [16932] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1302), 2, + STATE(1273), 2, sym_line_comment, sym_block_comment, - ACTIONS(1242), 15, + ACTIONS(3639), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -125325,7 +123720,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1240), 30, + ACTIONS(3637), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -125356,58 +123751,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [18768] = 21, - ACTIONS(29), 1, - anon_sym_LT, + [16992] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1614), 1, - anon_sym_DASH, - ACTIONS(1638), 1, - aux_sym_string_literal_token1, - ACTIONS(1646), 1, - sym__raw_string_literal_start, - ACTIONS(3233), 1, - anon_sym_if, - ACTIONS(3599), 1, - anon_sym_COLON_COLON, - ACTIONS(3755), 1, - sym_identifier, - ACTIONS(3761), 1, - sym_metavariable, - STATE(2696), 1, - sym_scoped_identifier, - STATE(2971), 1, - sym__literal_pattern, - STATE(3465), 1, - sym_bracketed_type, - STATE(3478), 1, - sym_generic_type_with_turbofish, - ACTIONS(1640), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3231), 2, - anon_sym_EQ_GT, - anon_sym_PIPE, - STATE(1303), 2, + STATE(1274), 2, sym_line_comment, sym_block_comment, - ACTIONS(1636), 3, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3759), 3, - sym_self, - sym_super, - sym_crate, - STATE(2299), 4, - sym_negative_literal, - sym_string_literal, - sym_raw_string_literal, - sym_boolean_literal, - ACTIONS(3757), 19, + ACTIONS(2162), 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(2164), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125425,17 +123785,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, + anon_sym_async, + anon_sym_const, anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, - [18860] = 5, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [17052] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1304), 2, + STATE(1275), 2, sym_line_comment, sym_block_comment, - ACTIONS(3765), 15, + ACTIONS(3281), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -125451,7 +123830,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3763), 30, + ACTIONS(3279), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -125482,15 +123861,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [18920] = 5, + [17112] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1305), 2, + STATE(1276), 2, sym_line_comment, sym_block_comment, - ACTIONS(3769), 15, + ACTIONS(3643), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -125506,7 +123885,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3767), 30, + ACTIONS(3641), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -125537,70 +123916,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [18980] = 5, + [17172] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1306), 2, + STATE(1277), 2, sym_line_comment, sym_block_comment, - ACTIONS(2657), 7, + ACTIONS(3647), 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(3645), 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_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2659), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [19040] = 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, + [17232] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1307), 2, + STATE(1278), 2, sym_line_comment, sym_block_comment, - ACTIONS(2661), 7, + ACTIONS(1730), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125608,7 +123987,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2663), 38, + ACTIONS(1732), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125647,70 +124026,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19100] = 5, + [17292] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1308), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3773), 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(3771), 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, - [19160] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1309), 2, + STATE(1279), 2, sym_line_comment, sym_block_comment, - ACTIONS(3777), 15, + ACTIONS(933), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -125726,7 +124050,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3775), 30, + ACTIONS(935), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -125757,15 +124081,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [19220] = 5, + [17352] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1310), 2, + STATE(1280), 2, sym_line_comment, sym_block_comment, - ACTIONS(1416), 15, + ACTIONS(3651), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -125781,7 +124105,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1418), 30, + ACTIONS(3649), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -125812,15 +124136,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [19280] = 5, + [17412] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1311), 2, + STATE(1281), 2, sym_line_comment, sym_block_comment, - ACTIONS(989), 15, + ACTIONS(3655), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -125836,7 +124160,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(991), 30, + ACTIONS(3653), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -125867,15 +124191,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [19340] = 5, + [17472] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1312), 2, + STATE(1282), 2, sym_line_comment, sym_block_comment, - ACTIONS(2665), 7, + ACTIONS(2444), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125883,7 +124207,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2667), 38, + ACTIONS(2446), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125922,70 +124246,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19400] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1313), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(767), 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(769), 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, - [19460] = 5, + [17532] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1314), 2, + STATE(1283), 2, sym_line_comment, sym_block_comment, - ACTIONS(2669), 7, + ACTIONS(2819), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125993,7 +124262,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2671), 38, + ACTIONS(2821), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126032,15 +124301,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19520] = 5, + [17592] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1315), 2, + STATE(1284), 2, sym_line_comment, sym_block_comment, - ACTIONS(2673), 7, + ACTIONS(2460), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126048,7 +124317,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2675), 38, + ACTIONS(2462), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126087,15 +124356,70 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19580] = 5, + [17652] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1316), 2, + STATE(1285), 2, sym_line_comment, sym_block_comment, - ACTIONS(2677), 7, + ACTIONS(1432), 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(1430), 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, + [17712] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1286), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2464), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126103,7 +124427,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2679), 38, + ACTIONS(2466), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126142,15 +124466,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19640] = 5, + [17772] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1317), 2, + STATE(1287), 2, sym_line_comment, sym_block_comment, - ACTIONS(2681), 7, + ACTIONS(2468), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126158,7 +124482,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2683), 38, + ACTIONS(2470), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126197,15 +124521,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19700] = 5, + [17832] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1318), 2, + STATE(1288), 2, sym_line_comment, sym_block_comment, - ACTIONS(2685), 7, + ACTIONS(2476), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126213,7 +124537,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2687), 38, + ACTIONS(2478), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126252,15 +124576,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19760] = 5, + [17892] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1319), 2, + STATE(1289), 2, sym_line_comment, sym_block_comment, - ACTIONS(1352), 15, + ACTIONS(3659), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -126276,7 +124600,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1350), 30, + ACTIONS(3657), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -126307,293 +124631,180 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [19820] = 5, + [17952] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1320), 2, + STATE(1290), 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, + ACTIONS(2170), 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, - [19880] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1321), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1356), 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(1354), 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, - [19940] = 5, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2172), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [18012] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1322), 2, + STATE(1291), 2, sym_line_comment, sym_block_comment, - ACTIONS(3785), 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(3783), 30, + ACTIONS(2174), 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, - [20000] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - STATE(1323), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3789), 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(3787), 28, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_LBRACE, - 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_SQUOTE, - anon_sym_as, - anon_sym_else, - [20066] = 5, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2176), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [18072] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1324), 2, + STATE(1292), 2, sym_line_comment, sym_block_comment, - ACTIONS(3793), 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(3791), 30, + ACTIONS(2480), 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, - [20126] = 5, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2482), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [18132] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1325), 2, + STATE(1293), 2, sym_line_comment, sym_block_comment, - ACTIONS(3797), 15, + ACTIONS(3663), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -126609,7 +124820,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3795), 30, + ACTIONS(3661), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -126640,15 +124851,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [20186] = 5, + [18192] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1326), 2, + STATE(1294), 2, sym_line_comment, sym_block_comment, - ACTIONS(2689), 7, + ACTIONS(2190), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126656,7 +124867,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2691), 38, + ACTIONS(2192), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126695,70 +124906,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20246] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1327), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3801), 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(3799), 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, - [20306] = 5, + [18252] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1328), 2, + STATE(1295), 2, sym_line_comment, sym_block_comment, - ACTIONS(2693), 7, + ACTIONS(2194), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126766,7 +124922,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2695), 38, + ACTIONS(2196), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126805,15 +124961,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20366] = 5, + [18312] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1329), 2, + STATE(1296), 2, sym_line_comment, sym_block_comment, - ACTIONS(2697), 7, + ACTIONS(2827), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126821,7 +124977,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2699), 38, + ACTIONS(2829), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126860,15 +125016,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20426] = 5, + [18372] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1330), 2, + STATE(1297), 2, sym_line_comment, sym_block_comment, - ACTIONS(2701), 7, + ACTIONS(2488), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126876,7 +125032,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2703), 38, + ACTIONS(2490), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126915,15 +125071,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20486] = 5, + [18432] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1331), 2, + STATE(1298), 2, sym_line_comment, sym_block_comment, - ACTIONS(2705), 7, + ACTIONS(2202), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126931,7 +125087,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2707), 38, + ACTIONS(2204), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126970,15 +125126,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20546] = 5, + [18492] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1332), 2, + STATE(1299), 2, sym_line_comment, sym_block_comment, - ACTIONS(2709), 7, + ACTIONS(2210), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126986,7 +125142,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2711), 38, + ACTIONS(2212), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127025,15 +125181,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20606] = 5, + [18552] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1333), 2, + STATE(1300), 2, sym_line_comment, sym_block_comment, - ACTIONS(2713), 7, + ACTIONS(2496), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127041,7 +125197,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2715), 38, + ACTIONS(2498), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127080,15 +125236,70 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20666] = 5, + [18612] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1334), 2, + STATE(1301), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3667), 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(3665), 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, + [18672] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1302), 2, sym_line_comment, sym_block_comment, - ACTIONS(2717), 7, + ACTIONS(2500), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127096,7 +125307,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2719), 38, + ACTIONS(2502), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127135,15 +125346,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20726] = 5, + [18732] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1335), 2, + STATE(1303), 2, sym_line_comment, sym_block_comment, - ACTIONS(2721), 7, + ACTIONS(2226), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127151,7 +125362,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2723), 38, + ACTIONS(2228), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127190,15 +125401,70 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20786] = 5, + [18792] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1336), 2, + STATE(1304), 2, sym_line_comment, sym_block_comment, - ACTIONS(1364), 15, + ACTIONS(2595), 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(2597), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [18852] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1305), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1406), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -127214,7 +125480,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1362), 30, + ACTIONS(1408), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -127245,21 +125511,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [20846] = 8, + [18912] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - STATE(1337), 2, + STATE(1306), 2, sym_line_comment, sym_block_comment, - ACTIONS(3805), 14, + ACTIONS(1406), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -127273,14 +125533,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(3803), 28, + ACTIONS(1408), 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, @@ -127303,15 +125566,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [20912] = 5, + [18972] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1338), 2, + STATE(1307), 2, sym_line_comment, sym_block_comment, - ACTIONS(2791), 7, + ACTIONS(2835), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127319,7 +125582,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2793), 38, + ACTIONS(2837), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127358,15 +125621,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20972] = 5, + [19032] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1339), 2, + STATE(1308), 2, sym_line_comment, sym_block_comment, - ACTIONS(2799), 7, + ACTIONS(2839), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127374,7 +125637,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2801), 38, + ACTIONS(2841), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127413,15 +125676,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21032] = 5, + [19092] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1340), 2, + STATE(1309), 2, sym_line_comment, sym_block_comment, - ACTIONS(2803), 7, + ACTIONS(2599), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127429,7 +125692,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2805), 38, + ACTIONS(2601), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127468,15 +125731,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21092] = 5, + [19152] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1341), 2, + STATE(1310), 2, sym_line_comment, sym_block_comment, - ACTIONS(2807), 7, + ACTIONS(2623), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127484,7 +125747,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2809), 38, + ACTIONS(2625), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127523,15 +125786,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21152] = 5, + [19212] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1342), 2, + STATE(1311), 2, sym_line_comment, sym_block_comment, - ACTIONS(2811), 7, + ACTIONS(2230), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127539,7 +125802,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2813), 38, + ACTIONS(2232), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127578,70 +125841,70 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21212] = 5, + [19272] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1343), 2, + STATE(1312), 2, sym_line_comment, sym_block_comment, - ACTIONS(2815), 7, + ACTIONS(3671), 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(3669), 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_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2817), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [21272] = 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, + [19332] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1344), 2, + STATE(1313), 2, sym_line_comment, sym_block_comment, - ACTIONS(2819), 7, + ACTIONS(2627), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127649,7 +125912,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2821), 38, + ACTIONS(2629), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127688,15 +125951,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21332] = 5, + [19392] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1345), 2, + STATE(1314), 2, sym_line_comment, sym_block_comment, - ACTIONS(2823), 7, + ACTIONS(2647), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127704,7 +125967,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2825), 38, + ACTIONS(2649), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127743,23 +126006,84 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21392] = 5, + [19452] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1346), 2, + STATE(1315), 2, sym_line_comment, sym_block_comment, - ACTIONS(2827), 7, + ACTIONS(1208), 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(1206), 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, + [19512] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1316), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3675), 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_POUND, + anon_sym_SQUOTE, sym_metavariable, - ACTIONS(2829), 38, + ACTIONS(3673), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127780,33 +126104,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, - anon_sym_enum, anon_sym_fn, + anon_sym_for, anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, anon_sym_union, anon_sym_unsafe, - anon_sym_use, + anon_sym_where, anon_sym_extern, + anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [21452] = 5, + [19572] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1347), 2, + STATE(1317), 2, sym_line_comment, sym_block_comment, - ACTIONS(2831), 7, + ACTIONS(2651), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127814,7 +126132,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2833), 38, + ACTIONS(2653), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127853,23 +126171,29 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21512] = 5, + [19632] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1348), 2, + STATE(1318), 2, sym_line_comment, sym_block_comment, - ACTIONS(2835), 7, + ACTIONS(3679), 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_COLON_COLON, - anon_sym_POUND, + anon_sym_SQUOTE, sym_metavariable, - ACTIONS(2837), 38, + ACTIONS(3677), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127890,41 +126214,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, - anon_sym_enum, anon_sym_fn, + anon_sym_for, anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, anon_sym_union, anon_sym_unsafe, - anon_sym_use, + anon_sym_where, anon_sym_extern, + anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [21572] = 5, + [19692] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1349), 2, + STATE(1319), 2, sym_line_comment, sym_block_comment, - ACTIONS(2839), 7, + ACTIONS(3683), 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_COLON_COLON, - anon_sym_POUND, + anon_sym_SQUOTE, sym_metavariable, - ACTIONS(2841), 38, + ACTIONS(3681), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127945,33 +126269,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, - anon_sym_enum, anon_sym_fn, + anon_sym_for, anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, anon_sym_union, anon_sym_unsafe, - anon_sym_use, + anon_sym_where, anon_sym_extern, + anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [21632] = 5, + [19752] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1350), 2, + STATE(1320), 2, sym_line_comment, sym_block_comment, - ACTIONS(2843), 7, + ACTIONS(2655), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127979,7 +126297,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2845), 38, + ACTIONS(2657), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128018,15 +126336,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21692] = 5, + [19812] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1351), 2, + STATE(1321), 2, sym_line_comment, sym_block_comment, - ACTIONS(2847), 7, + ACTIONS(2659), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128034,7 +126352,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2849), 38, + ACTIONS(2661), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128073,15 +126391,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21752] = 5, + [19872] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1352), 2, + STATE(1322), 2, sym_line_comment, sym_block_comment, - ACTIONS(2851), 7, + ACTIONS(2667), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128089,7 +126407,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2853), 38, + ACTIONS(2669), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128128,21 +126446,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21812] = 8, + [19932] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - STATE(1353), 2, + STATE(1323), 2, sym_line_comment, sym_block_comment, - ACTIONS(3809), 14, + ACTIONS(1406), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -128156,14 +126468,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(3807), 28, + ACTIONS(1408), 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, @@ -128186,15 +126501,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [21878] = 5, + [19992] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1354), 2, + STATE(1324), 2, sym_line_comment, sym_block_comment, - ACTIONS(2855), 7, + ACTIONS(2671), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128202,7 +126517,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2857), 38, + ACTIONS(2673), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128241,15 +126556,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21938] = 5, + [20052] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1355), 2, + STATE(1325), 2, sym_line_comment, sym_block_comment, - ACTIONS(2859), 7, + ACTIONS(2679), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128257,7 +126572,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2861), 38, + ACTIONS(2681), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128296,15 +126611,70 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21998] = 5, + [20112] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1356), 2, + STATE(1326), 2, sym_line_comment, sym_block_comment, - ACTIONS(2863), 7, + ACTIONS(3687), 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(3685), 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, + [20172] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1327), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2683), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128312,7 +126682,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2865), 38, + ACTIONS(2685), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128351,15 +126721,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22058] = 5, + [20232] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1357), 2, + STATE(1328), 2, sym_line_comment, sym_block_comment, - ACTIONS(2867), 7, + ACTIONS(2711), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128367,7 +126737,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2869), 38, + ACTIONS(2713), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128406,70 +126776,125 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22118] = 5, + [20292] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1358), 2, + STATE(1329), 2, sym_line_comment, sym_block_comment, - ACTIONS(2871), 7, + ACTIONS(3691), 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(3689), 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, + [20352] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1330), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3695), 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(2873), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [22178] = 5, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3693), 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, + [20412] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1359), 2, + STATE(1331), 2, sym_line_comment, sym_block_comment, - ACTIONS(2875), 7, + ACTIONS(2719), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128477,7 +126902,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2877), 38, + ACTIONS(2721), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128516,15 +126941,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22238] = 5, + [20472] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1360), 2, + STATE(1332), 2, sym_line_comment, sym_block_comment, - ACTIONS(2879), 7, + ACTIONS(2723), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128532,7 +126957,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2881), 38, + ACTIONS(2725), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128571,15 +126996,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22298] = 5, + [20532] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1361), 2, + STATE(1333), 2, sym_line_comment, sym_block_comment, - ACTIONS(2883), 7, + ACTIONS(2727), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128587,7 +127012,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2885), 38, + ACTIONS(2729), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128626,15 +127051,125 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22358] = 5, + [20592] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1362), 2, + STATE(1334), 2, sym_line_comment, sym_block_comment, - ACTIONS(2887), 7, + ACTIONS(3699), 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(3697), 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, + [20652] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1335), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3703), 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(3701), 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, + [20712] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1336), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2749), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128642,7 +127177,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2889), 38, + ACTIONS(2751), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128681,15 +127216,70 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22418] = 5, + [20772] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1363), 2, + STATE(1337), 2, sym_line_comment, sym_block_comment, - ACTIONS(2891), 7, + ACTIONS(885), 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(887), 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, + [20832] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1338), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2134), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128697,7 +127287,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2893), 38, + ACTIONS(2136), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128736,15 +127326,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22478] = 5, + [20892] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1364), 2, + STATE(1339), 2, sym_line_comment, sym_block_comment, - ACTIONS(2895), 7, + ACTIONS(2851), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128752,7 +127342,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2897), 38, + ACTIONS(2853), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128791,84 +127381,188 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22538] = 5, + [20952] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1365), 2, + STATE(1340), 2, sym_line_comment, sym_block_comment, - ACTIONS(3813), 13, + ACTIONS(3707), 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(3705), 30, anon_sym_SEMI, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, - anon_sym_STAR, + anon_sym_RBRACE, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + 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, + [21012] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1341), 2, + sym_line_comment, + sym_block_comment, + 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_COLON_COLON, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3709), 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, - sym_metavariable, - ACTIONS(3811), 32, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_where, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [22598] = 5, + anon_sym_as, + anon_sym_else, + [21072] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1366), 2, + STATE(1342), 2, sym_line_comment, sym_block_comment, - ACTIONS(3817), 13, + ACTIONS(1368), 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(1366), 30, anon_sym_SEMI, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, - anon_sym_STAR, + anon_sym_RBRACE, anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_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, + [21132] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1343), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2867), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_SQUOTE, + anon_sym_POUND, sym_metavariable, - ACTIONS(3815), 32, + ACTIONS(2869), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128889,41 +127583,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_enum, anon_sym_fn, - anon_sym_for, anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, anon_sym_unsafe, - anon_sym_where, + anon_sym_use, anon_sym_extern, - anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [22658] = 5, + [21192] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1367), 2, + STATE(1344), 2, sym_line_comment, sym_block_comment, - ACTIONS(3821), 13, + ACTIONS(2879), 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(3819), 32, + ACTIONS(2881), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128944,27 +127638,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_enum, anon_sym_fn, - anon_sym_for, anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, anon_sym_unsafe, - anon_sym_where, + anon_sym_use, anon_sym_extern, - anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [22718] = 5, + [21252] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1368), 2, + STATE(1345), 2, sym_line_comment, sym_block_comment, - ACTIONS(2899), 7, + ACTIONS(2883), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128972,7 +127672,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2901), 38, + ACTIONS(2885), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129011,78 +127711,29 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22778] = 5, + [21312] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1369), 2, + STATE(1346), 2, sym_line_comment, sym_block_comment, - ACTIONS(3825), 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(3823), 30, + ACTIONS(3715), 13, anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LBRACE, - 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, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [22838] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1370), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2903), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_EQ, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_POUND, + anon_sym_SQUOTE, sym_metavariable, - ACTIONS(2905), 38, + ACTIONS(3713), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129103,33 +127754,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, - anon_sym_enum, anon_sym_fn, + anon_sym_for, anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, anon_sym_union, anon_sym_unsafe, - anon_sym_use, + anon_sym_where, anon_sym_extern, + anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [22898] = 5, + [21372] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1371), 2, + STATE(1347), 2, sym_line_comment, sym_block_comment, - ACTIONS(2907), 7, + ACTIONS(2895), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129137,7 +127782,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2909), 38, + ACTIONS(2897), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129176,15 +127821,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22958] = 5, + [21432] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1372), 2, + STATE(1348), 2, sym_line_comment, sym_block_comment, - ACTIONS(2911), 7, + ACTIONS(2899), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129192,7 +127837,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2913), 38, + ACTIONS(2901), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129231,23 +127876,29 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23018] = 5, + [21492] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1373), 2, + STATE(1349), 2, sym_line_comment, sym_block_comment, - ACTIONS(2270), 7, + ACTIONS(3719), 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_COLON_COLON, - anon_sym_POUND, + anon_sym_SQUOTE, sym_metavariable, - ACTIONS(2272), 38, + ACTIONS(3717), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129268,33 +127919,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, - anon_sym_enum, anon_sym_fn, + anon_sym_for, anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, anon_sym_union, anon_sym_unsafe, - anon_sym_use, + anon_sym_where, anon_sym_extern, + anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [23078] = 5, + [21552] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1374), 2, + STATE(1350), 2, sym_line_comment, sym_block_comment, - ACTIONS(2649), 7, + ACTIONS(2322), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129302,7 +127947,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2651), 38, + ACTIONS(2324), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129341,15 +127986,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23138] = 5, + [21612] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1375), 2, + STATE(1351), 2, sym_line_comment, sym_block_comment, - ACTIONS(1234), 15, + ACTIONS(3293), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -129365,7 +128010,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1232), 30, + ACTIONS(3291), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -129396,15 +128041,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [23198] = 5, + [21672] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1376), 2, + STATE(1352), 2, sym_line_comment, sym_block_comment, - ACTIONS(1380), 15, + ACTIONS(1396), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -129420,7 +128065,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1378), 30, + ACTIONS(1394), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -129451,18 +128096,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [23258] = 6, + [21732] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3827), 2, + STATE(1353), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3723), 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(3721), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, - anon_sym_COLON_COLON, - STATE(1377), 2, + 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, + [21792] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1354), 2, sym_line_comment, sym_block_comment, - ACTIONS(3545), 15, + ACTIONS(3727), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -129478,12 +128175,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3543), 28, + ACTIONS(3725), 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, @@ -129505,17 +128203,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, - [23320] = 5, + [21852] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1378), 2, + STATE(1355), 2, sym_line_comment, sym_block_comment, - ACTIONS(1666), 7, + ACTIONS(2326), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129523,7 +128222,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1668), 38, + ACTIONS(2328), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129562,15 +128261,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23380] = 5, + [21912] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1379), 2, + STATE(1356), 2, sym_line_comment, sym_block_comment, - ACTIONS(1670), 7, + ACTIONS(2887), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129578,7 +128277,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1672), 38, + ACTIONS(2889), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129617,125 +128316,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23440] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1380), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(771), 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(773), 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, - [23500] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1381), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1372), 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(1370), 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, - [23560] = 5, + [21972] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1382), 2, + STATE(1357), 2, sym_line_comment, sym_block_comment, - ACTIONS(3831), 15, + ACTIONS(937), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -129751,7 +128340,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3829), 30, + ACTIONS(939), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -129782,125 +128371,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [23620] = 5, + [22032] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1383), 2, + STATE(1358), 2, sym_line_comment, sym_block_comment, - ACTIONS(3835), 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(3833), 30, + ACTIONS(2875), 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, - [23680] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1384), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3839), 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(3837), 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, - [23740] = 5, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2877), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [22092] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1385), 2, + STATE(1359), 2, sym_line_comment, sym_block_comment, - ACTIONS(3843), 15, + ACTIONS(3731), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -129916,7 +128450,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3841), 30, + ACTIONS(3729), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -129947,15 +128481,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [23800] = 5, + [22152] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1386), 2, + STATE(1360), 2, sym_line_comment, sym_block_comment, - ACTIONS(3847), 15, + ACTIONS(1364), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -129971,7 +128505,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3845), 30, + ACTIONS(1362), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -130002,125 +128536,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [23860] = 5, + [22212] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1387), 2, + STATE(1361), 2, sym_line_comment, sym_block_comment, - ACTIONS(1444), 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(1442), 30, + ACTIONS(2863), 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, - [23920] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1388), 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, - anon_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(3849), 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, - [23980] = 5, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2865), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [22272] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1389), 2, + STATE(1362), 2, sym_line_comment, sym_block_comment, - ACTIONS(3855), 15, + ACTIONS(1246), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -130136,7 +128615,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3853), 30, + ACTIONS(1244), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -130167,15 +128646,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24040] = 5, + [22332] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1390), 2, + STATE(1363), 2, sym_line_comment, sym_block_comment, - ACTIONS(1758), 7, + ACTIONS(2859), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130183,7 +128662,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1760), 38, + ACTIONS(2861), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130222,15 +128701,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24100] = 5, + [22392] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1391), 2, + STATE(1364), 2, sym_line_comment, sym_block_comment, - ACTIONS(3859), 15, + ACTIONS(945), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -130246,7 +128725,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3857), 30, + ACTIONS(947), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -130277,74 +128756,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24160] = 5, + [22452] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1392), 2, + STATE(1365), 2, sym_line_comment, sym_block_comment, - ACTIONS(1674), 7, + ACTIONS(3735), 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(3733), 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_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1676), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [24220] = 7, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + 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, + [22512] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3247), 1, - anon_sym_BANG, - ACTIONS(3861), 1, - anon_sym_COLON_COLON, - STATE(1393), 2, + STATE(1366), 2, sym_line_comment, sym_block_comment, - ACTIONS(1416), 15, + ACTIONS(981), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -130360,12 +128835,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1418), 28, + ACTIONS(983), 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, @@ -130387,17 +128863,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, - [24284] = 5, + [22572] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1394), 2, + STATE(1367), 2, sym_line_comment, sym_block_comment, - ACTIONS(1678), 7, + ACTIONS(2855), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130405,7 +128882,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1680), 38, + ACTIONS(2857), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130444,15 +128921,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24344] = 5, + [22632] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1395), 2, + STATE(1368), 2, sym_line_comment, sym_block_comment, - ACTIONS(1682), 7, + ACTIONS(2871), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130460,7 +128937,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1684), 38, + ACTIONS(2873), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130499,15 +128976,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24404] = 5, + [22692] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1396), 2, + STATE(1369), 2, sym_line_comment, sym_block_comment, - ACTIONS(1686), 7, + ACTIONS(2396), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130515,7 +128992,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1688), 38, + ACTIONS(2398), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130554,15 +129031,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24464] = 5, + [22752] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1397), 2, + STATE(1370), 2, sym_line_comment, sym_block_comment, - ACTIONS(1690), 7, + ACTIONS(2400), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130570,7 +129047,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1692), 38, + ACTIONS(2402), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130609,15 +129086,235 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24524] = 5, + [22812] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1398), 2, + STATE(1371), 2, sym_line_comment, sym_block_comment, - ACTIONS(1694), 7, + ACTIONS(1258), 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(1256), 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, + [22872] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1372), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1254), 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(1252), 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, + [22932] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1373), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3739), 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(3737), 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, + [22992] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1374), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3739), 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(3737), 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, + [23052] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1375), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2408), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130625,7 +129322,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1696), 38, + ACTIONS(2410), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130664,15 +129361,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24584] = 5, + [23112] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1399), 2, + STATE(1376), 2, sym_line_comment, sym_block_comment, - ACTIONS(1698), 7, + ACTIONS(2420), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130680,7 +129377,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1700), 38, + ACTIONS(2422), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130719,15 +129416,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24644] = 5, + [23172] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1400), 2, + STATE(1377), 2, sym_line_comment, sym_block_comment, - ACTIONS(1702), 7, + ACTIONS(2428), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130735,7 +129432,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1704), 38, + ACTIONS(2430), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130774,15 +129471,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24704] = 5, + [23232] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1401), 2, + STATE(1378), 2, sym_line_comment, sym_block_comment, - ACTIONS(1706), 7, + ACTIONS(2432), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130790,7 +129487,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1708), 38, + ACTIONS(2434), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130829,15 +129526,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24764] = 5, + [23292] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1402), 2, + STATE(1379), 2, sym_line_comment, sym_block_comment, - ACTIONS(1710), 7, + ACTIONS(2448), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130845,7 +129542,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1712), 38, + ACTIONS(2450), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130884,15 +129581,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24824] = 5, + [23352] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1403), 2, + STATE(1380), 2, sym_line_comment, sym_block_comment, - ACTIONS(1714), 7, + ACTIONS(2452), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130900,7 +129597,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1716), 38, + ACTIONS(2454), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130939,15 +129636,125 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24884] = 5, + [23412] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1404), 2, + STATE(1381), 2, sym_line_comment, sym_block_comment, - ACTIONS(1718), 7, + ACTIONS(1372), 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(1370), 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, + [23472] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1382), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1420), 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(1418), 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, + [23532] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1383), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2911), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130955,7 +129762,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1720), 38, + ACTIONS(2913), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130994,15 +129801,70 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24944] = 5, + [23592] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1384), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1406), 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(1408), 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, + [23652] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1405), 2, + STATE(1385), 2, sym_line_comment, sym_block_comment, - ACTIONS(1722), 7, + ACTIONS(2915), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131010,7 +129872,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1724), 38, + ACTIONS(2917), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131049,15 +129911,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25004] = 5, + [23712] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1406), 2, + STATE(1386), 2, sym_line_comment, sym_block_comment, - ACTIONS(1726), 7, + ACTIONS(2456), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131065,7 +129927,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1728), 38, + ACTIONS(2458), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131104,15 +129966,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25064] = 5, + [23772] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1407), 2, + STATE(1387), 2, sym_line_comment, sym_block_comment, - ACTIONS(1730), 7, + ACTIONS(2472), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131120,7 +129982,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1732), 38, + ACTIONS(2474), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131159,15 +130021,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25124] = 5, + [23832] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1408), 2, + STATE(1388), 2, sym_line_comment, sym_block_comment, - ACTIONS(1734), 7, + ACTIONS(2715), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131175,7 +130037,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1736), 38, + ACTIONS(2717), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131214,15 +130076,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25184] = 5, + [23892] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1409), 2, + STATE(1389), 2, sym_line_comment, sym_block_comment, - ACTIONS(1738), 7, + ACTIONS(3743), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131230,7 +130092,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1740), 38, + ACTIONS(3741), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131269,15 +130131,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25244] = 5, + [23952] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1410), 2, + STATE(1390), 2, sym_line_comment, sym_block_comment, - ACTIONS(1742), 7, + ACTIONS(2492), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131285,7 +130147,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1744), 38, + ACTIONS(2494), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131324,15 +130186,70 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25304] = 5, + [24012] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1411), 2, + STATE(1391), 2, sym_line_comment, sym_block_comment, - ACTIONS(1746), 7, + ACTIONS(3747), 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(3745), 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, + [24072] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1392), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2757), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131340,7 +130257,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1748), 38, + ACTIONS(2759), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131379,15 +130296,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25364] = 5, + [24132] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1412), 2, + STATE(1393), 2, sym_line_comment, sym_block_comment, - ACTIONS(1750), 7, + ACTIONS(2587), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131395,7 +130312,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1752), 38, + ACTIONS(2589), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131434,15 +130351,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25424] = 5, + [24192] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1413), 2, + STATE(1394), 2, sym_line_comment, sym_block_comment, - ACTIONS(1392), 15, + ACTIONS(1448), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -131458,7 +130375,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1390), 30, + ACTIONS(1446), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -131489,70 +130406,400 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25484] = 5, + [24252] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1414), 2, + STATE(1395), 2, sym_line_comment, sym_block_comment, - ACTIONS(1754), 7, + ACTIONS(3751), 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(3749), 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, + [24312] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1396), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3426), 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(1756), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [25544] = 5, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3422), 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, + [24372] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1397), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3755), 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(3753), 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, + [24432] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1398), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3759), 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(3757), 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, + [24492] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1399), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3763), 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(3761), 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, + [24552] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1400), 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, + anon_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(3765), 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, + [24612] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1401), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3771), 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(3769), 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, + [24672] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1415), 2, + STATE(1402), 2, sym_line_comment, sym_block_comment, - ACTIONS(1766), 7, + ACTIONS(2603), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131560,7 +130807,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1768), 38, + ACTIONS(2605), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131599,125 +130846,127 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25604] = 5, + [24732] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1416), 2, + STATE(1403), 2, sym_line_comment, sym_block_comment, - ACTIONS(1770), 7, + ACTIONS(3775), 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(3773), 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_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1772), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [25664] = 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, + [24792] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1417), 2, + ACTIONS(3332), 1, + anon_sym_COLON_COLON, + ACTIONS(3777), 1, + anon_sym_BANG, + STATE(1404), 2, sym_line_comment, sym_block_comment, - ACTIONS(1774), 7, + ACTIONS(3328), 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(3326), 28, 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_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1776), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [25724] = 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_as, + anon_sym_else, + [24856] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1418), 2, + STATE(1405), 2, sym_line_comment, sym_block_comment, - ACTIONS(1246), 15, + ACTIONS(3781), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -131733,7 +130982,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1244), 30, + ACTIONS(3779), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -131764,18 +131013,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25784] = 6, + [24916] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3863), 2, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - STATE(1419), 2, + STATE(1406), 2, sym_line_comment, sym_block_comment, - ACTIONS(3545), 15, + ACTIONS(1238), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -131791,12 +131037,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3543), 28, + ACTIONS(1236), 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, @@ -131818,17 +131065,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, - [25846] = 5, + [24976] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1420), 2, + STATE(1407), 2, sym_line_comment, sym_block_comment, - ACTIONS(1778), 7, + ACTIONS(2607), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131836,7 +131084,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1780), 38, + ACTIONS(2609), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131875,15 +131123,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25906] = 5, + [25036] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1421), 2, + STATE(1408), 2, sym_line_comment, sym_block_comment, - ACTIONS(1782), 7, + ACTIONS(2214), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131891,7 +131139,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1784), 38, + ACTIONS(2216), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131930,15 +131178,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25966] = 5, + [25096] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1422), 2, + STATE(1409), 2, sym_line_comment, sym_block_comment, - ACTIONS(1786), 7, + ACTIONS(2619), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131946,7 +131194,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1788), 38, + ACTIONS(2621), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131985,15 +131233,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26026] = 5, + [25156] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1423), 2, + STATE(1410), 2, sym_line_comment, sym_block_comment, - ACTIONS(1790), 7, + ACTIONS(2182), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132001,7 +131249,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1792), 38, + ACTIONS(2184), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132040,15 +131288,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26086] = 5, + [25216] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1424), 2, + STATE(1411), 2, sym_line_comment, sym_block_comment, - ACTIONS(1794), 7, + ACTIONS(2903), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132056,7 +131304,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1796), 38, + ACTIONS(2905), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132095,188 +131343,227 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26146] = 5, + [25276] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1425), 2, + STATE(1412), 2, sym_line_comment, sym_block_comment, - ACTIONS(1798), 7, + ACTIONS(3785), 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(3783), 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_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1800), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [26206] = 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, + [25336] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1426), 2, + STATE(1413), 2, sym_line_comment, sym_block_comment, - ACTIONS(1802), 7, + ACTIONS(1234), 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(1232), 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_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1804), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [26266] = 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, + [25396] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1427), 2, + ACTIONS(3561), 1, + anon_sym_LBRACK, + ACTIONS(3565), 1, + anon_sym_QMARK, + ACTIONS(3567), 1, + anon_sym_DOT, + ACTIONS(3791), 1, + anon_sym_as, + STATE(1414), 2, sym_line_comment, sym_block_comment, - ACTIONS(1806), 7, + ACTIONS(3789), 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(3787), 27, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, 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_SQUOTE, + anon_sym_else, + [25464] = 21, + ACTIONS(29), 1, anon_sym_LT, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(1614), 1, + anon_sym_DASH, + ACTIONS(1638), 1, + aux_sym_string_literal_token1, + ACTIONS(1646), 1, + sym__raw_string_literal_start, + ACTIONS(3221), 1, + anon_sym_if, + ACTIONS(3793), 1, + sym_identifier, + ACTIONS(3797), 1, anon_sym_COLON_COLON, - anon_sym_POUND, + ACTIONS(3801), 1, sym_metavariable, - ACTIONS(1808), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, + STATE(2534), 1, + sym_scoped_identifier, + STATE(2959), 1, + sym__literal_pattern, + STATE(3472), 1, + sym_bracketed_type, + STATE(3485), 1, + sym_generic_type_with_turbofish, + ACTIONS(1640), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3219), 2, + anon_sym_EQ_GT, + anon_sym_PIPE, + STATE(1415), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1636), 3, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3799), 3, sym_self, sym_super, sym_crate, - [26326] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1428), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1810), 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(1812), 38, + STATE(2355), 4, + sym_negative_literal, + sym_string_literal, + sym_raw_string_literal, + sym_boolean_literal, + ACTIONS(3795), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132294,44 +131581,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, - anon_sym_const, anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [26386] = 5, + [25556] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1429), 2, + ACTIONS(3807), 1, + anon_sym_RBRACE, + STATE(1416), 2, sym_line_comment, sym_block_comment, - ACTIONS(1814), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + ACTIONS(3805), 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, anon_sym_COLON_COLON, anon_sym_POUND, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, sym_metavariable, - ACTIONS(1816), 38, + ACTIONS(3803), 29, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132349,264 +131627,262 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, + anon_sym__, anon_sym_const, anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - 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, - [26446] = 5, + [25618] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1430), 2, + STATE(1417), 2, sym_line_comment, sym_block_comment, - ACTIONS(1818), 7, + ACTIONS(3811), 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(3809), 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_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1820), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [26506] = 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, + [25678] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1431), 2, + STATE(1418), 2, sym_line_comment, sym_block_comment, - ACTIONS(1822), 7, + ACTIONS(3815), 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(3813), 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_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1824), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [26566] = 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, + [25738] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1432), 2, + ACTIONS(3819), 2, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + STATE(1419), 2, sym_line_comment, sym_block_comment, - ACTIONS(1826), 7, + ACTIONS(3821), 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(3817), 28, 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_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1828), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [26626] = 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_as, + anon_sym_else, + [25800] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1433), 2, + STATE(1420), 2, sym_line_comment, sym_block_comment, - ACTIONS(1830), 7, + ACTIONS(3821), 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(3817), 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_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1832), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [26686] = 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, + [25860] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1434), 2, + STATE(1421), 2, sym_line_comment, sym_block_comment, - ACTIONS(1834), 7, + ACTIONS(3825), 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_COLON_COLON, - anon_sym_POUND, + anon_sym_SQUOTE, sym_metavariable, - ACTIONS(1836), 38, + ACTIONS(3823), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132627,41 +131903,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, - anon_sym_enum, anon_sym_fn, + anon_sym_for, anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, anon_sym_union, anon_sym_unsafe, - anon_sym_use, + anon_sym_where, anon_sym_extern, + anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [26746] = 5, + [25920] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1435), 2, + STATE(1422), 2, sym_line_comment, sym_block_comment, - ACTIONS(1838), 7, + ACTIONS(3829), 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_COLON_COLON, - anon_sym_POUND, + anon_sym_SQUOTE, sym_metavariable, - ACTIONS(1840), 38, + ACTIONS(3827), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132682,41 +131958,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, - anon_sym_enum, anon_sym_fn, + anon_sym_for, anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, anon_sym_union, anon_sym_unsafe, - anon_sym_use, + anon_sym_where, anon_sym_extern, + anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [26806] = 5, + [25980] = 21, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1436), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1842), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_LT, + ACTIONS(1614), 1, + anon_sym_DASH, + ACTIONS(1638), 1, + aux_sym_string_literal_token1, + ACTIONS(1646), 1, + sym__raw_string_literal_start, + ACTIONS(3233), 1, + anon_sym_if, + ACTIONS(3797), 1, anon_sym_COLON_COLON, - anon_sym_POUND, + ACTIONS(3831), 1, + sym_identifier, + ACTIONS(3837), 1, sym_metavariable, - ACTIONS(1844), 38, + STATE(2525), 1, + sym_scoped_identifier, + STATE(2968), 1, + sym__literal_pattern, + STATE(3472), 1, + sym_bracketed_type, + STATE(3485), 1, + sym_generic_type_with_turbofish, + ACTIONS(1640), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3231), 2, + anon_sym_EQ_GT, + anon_sym_PIPE, + STATE(1423), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1636), 3, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3835), 3, + sym_self, + sym_super, + sym_crate, + STATE(2355), 4, + sym_negative_literal, + sym_string_literal, + sym_raw_string_literal, + sym_boolean_literal, + ACTIONS(3833), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132734,36 +132039,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, - anon_sym_const, anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [26866] = 5, + [26072] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1437), 2, + STATE(1424), 2, sym_line_comment, sym_block_comment, - ACTIONS(1846), 7, + ACTIONS(2823), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132771,7 +132057,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1848), 38, + ACTIONS(2825), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132810,15 +132096,70 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26926] = 5, + [26132] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1438), 2, + STATE(1425), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3841), 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(3839), 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, + [26192] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1426), 2, sym_line_comment, sym_block_comment, - ACTIONS(1850), 7, + ACTIONS(2815), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132826,7 +132167,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1852), 38, + ACTIONS(2817), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132865,15 +132206,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26986] = 5, + [26252] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1439), 2, + STATE(1427), 2, sym_line_comment, sym_block_comment, - ACTIONS(3867), 15, + ACTIONS(3845), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -132889,7 +132230,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3865), 30, + ACTIONS(3843), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -132920,15 +132261,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27046] = 5, + [26312] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1440), 2, + STATE(1428), 2, sym_line_comment, sym_block_comment, - ACTIONS(1854), 7, + ACTIONS(2635), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132936,7 +132277,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1856), 38, + ACTIONS(2637), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132975,15 +132316,70 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27106] = 5, + [26372] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1441), 2, + STATE(1429), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3849), 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(3847), 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, + [26432] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1430), 2, sym_line_comment, sym_block_comment, - ACTIONS(1858), 7, + ACTIONS(2811), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132991,7 +132387,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1860), 38, + ACTIONS(2813), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133030,15 +132426,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27166] = 5, + [26492] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1442), 2, + STATE(1431), 2, sym_line_comment, sym_block_comment, - ACTIONS(1862), 7, + ACTIONS(2643), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133046,7 +132442,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1864), 38, + ACTIONS(2645), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133085,15 +132481,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27226] = 5, + [26552] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1443), 2, + STATE(1432), 2, sym_line_comment, sym_block_comment, - ACTIONS(1866), 7, + ACTIONS(2018), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133101,7 +132497,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1868), 38, + ACTIONS(2020), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133140,15 +132536,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27286] = 5, + [26612] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1444), 2, + STATE(1433), 2, sym_line_comment, sym_block_comment, - ACTIONS(3871), 15, + ACTIONS(3853), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -133164,7 +132560,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3869), 30, + ACTIONS(3851), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -133195,15 +132591,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27346] = 5, + [26672] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1445), 2, + STATE(1434), 2, sym_line_comment, sym_block_comment, - ACTIONS(1870), 7, + ACTIONS(2687), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133211,7 +132607,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1872), 38, + ACTIONS(2689), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133250,15 +132646,70 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27406] = 5, + [26732] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1446), 2, + STATE(1435), 2, sym_line_comment, sym_block_comment, - ACTIONS(1238), 15, + ACTIONS(2014), 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(2016), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [26792] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1436), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3857), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -133274,7 +132725,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1236), 30, + ACTIONS(3855), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -133305,70 +132756,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27466] = 5, + [26852] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1447), 2, + ACTIONS(3859), 2, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + STATE(1437), 2, sym_line_comment, sym_block_comment, - ACTIONS(1886), 7, + ACTIONS(3821), 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(3817), 28, 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_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1888), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [27526] = 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_as, + anon_sym_else, + [26914] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1448), 2, + STATE(1438), 2, sym_line_comment, sym_block_comment, - ACTIONS(1890), 7, + ACTIONS(1876), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133376,7 +132828,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1892), 38, + ACTIONS(1878), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133415,15 +132867,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27586] = 5, + [26974] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1449), 2, + STATE(1439), 2, sym_line_comment, sym_block_comment, - ACTIONS(3875), 15, + ACTIONS(3313), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -133439,7 +132891,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3873), 30, + ACTIONS(3311), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -133470,70 +132922,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27646] = 5, + [27034] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1450), 2, + STATE(1440), 2, sym_line_comment, sym_block_comment, - ACTIONS(1898), 7, + ACTIONS(3269), 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(3267), 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_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1900), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [27706] = 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, + [27094] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1451), 2, + STATE(1441), 2, sym_line_comment, sym_block_comment, - ACTIONS(3301), 15, + ACTIONS(3863), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -133549,7 +133001,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3299), 30, + ACTIONS(3861), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -133580,70 +133032,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27766] = 5, + [27154] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1452), 2, + ACTIONS(3561), 1, + anon_sym_LBRACK, + ACTIONS(3565), 1, + anon_sym_QMARK, + ACTIONS(3567), 1, + anon_sym_DOT, + STATE(1442), 2, sym_line_comment, sym_block_comment, - ACTIONS(1902), 7, + ACTIONS(3867), 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(3865), 28, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1904), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [27826] = 5, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + 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, + [27220] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1453), 2, + STATE(1443), 2, sym_line_comment, sym_block_comment, - ACTIONS(1910), 7, + ACTIONS(2807), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133651,7 +133106,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1912), 38, + ACTIONS(2809), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133690,15 +133145,70 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27886] = 5, + [27280] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1444), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1416), 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(1414), 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, + [27340] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1454), 2, + STATE(1445), 2, sym_line_comment, sym_block_comment, - ACTIONS(1404), 15, + ACTIONS(1360), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -133714,7 +133224,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1402), 30, + ACTIONS(1358), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -133745,15 +133255,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27946] = 5, + [27400] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1455), 2, + STATE(1446), 2, sym_line_comment, sym_block_comment, - ACTIONS(1914), 7, + ACTIONS(1836), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133761,7 +133271,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1916), 38, + ACTIONS(1838), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133800,15 +133310,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28006] = 5, + [27460] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1456), 2, + STATE(1447), 2, sym_line_comment, sym_block_comment, - ACTIONS(3879), 7, + ACTIONS(1714), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133816,7 +133326,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3877), 38, + ACTIONS(1716), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133855,15 +133365,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28066] = 5, + [27520] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1457), 2, + STATE(1448), 2, sym_line_comment, sym_block_comment, - ACTIONS(1918), 7, + ACTIONS(1698), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133871,7 +133381,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1920), 38, + ACTIONS(1700), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133910,15 +133420,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28126] = 5, + [27580] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1458), 2, + STATE(1449), 2, sym_line_comment, sym_block_comment, - ACTIONS(1922), 7, + ACTIONS(1686), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133926,7 +133436,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1924), 38, + ACTIONS(1688), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133965,15 +133475,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28186] = 5, + [27640] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1459), 2, + STATE(1450), 2, sym_line_comment, sym_block_comment, - ACTIONS(1926), 7, + ACTIONS(1670), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133981,7 +133491,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1928), 38, + ACTIONS(1672), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134020,70 +133530,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28246] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1460), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3883), 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(3881), 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, - [28306] = 5, + [27700] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1461), 2, + STATE(1451), 2, sym_line_comment, sym_block_comment, - ACTIONS(1930), 7, + ACTIONS(1892), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -134091,7 +133546,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1932), 38, + ACTIONS(1894), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134130,15 +133585,21 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28366] = 5, + [27760] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1462), 2, + ACTIONS(3561), 1, + anon_sym_LBRACK, + ACTIONS(3565), 1, + anon_sym_QMARK, + ACTIONS(3567), 1, + anon_sym_DOT, + STATE(1452), 2, sym_line_comment, sym_block_comment, - ACTIONS(935), 15, + ACTIONS(3871), 14, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -134152,17 +133613,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(937), 30, + ACTIONS(3869), 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, @@ -134185,15 +133643,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28426] = 5, + [27826] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1463), 2, + STATE(1453), 2, sym_line_comment, sym_block_comment, - ACTIONS(967), 15, + ACTIONS(3875), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -134209,7 +133667,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(969), 30, + ACTIONS(3873), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -134240,70 +133698,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28486] = 5, + [27886] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1464), 2, + STATE(1454), 2, sym_line_comment, sym_block_comment, - ACTIONS(1934), 7, + 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), 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_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1936), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [28546] = 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, + [27946] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1465), 2, + STATE(1455), 2, sym_line_comment, sym_block_comment, - ACTIONS(1938), 7, + ACTIONS(1994), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -134311,7 +133769,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1940), 38, + ACTIONS(1996), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134350,15 +133808,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28606] = 5, + [28006] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1466), 2, + STATE(1456), 2, sym_line_comment, sym_block_comment, - ACTIONS(1942), 7, + ACTIONS(1998), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -134366,7 +133824,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1944), 38, + ACTIONS(2000), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134405,70 +133863,70 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28666] = 5, + [28066] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1467), 2, + STATE(1457), 2, sym_line_comment, sym_block_comment, - ACTIONS(1946), 7, + ACTIONS(1400), 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(1398), 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_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1948), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [28726] = 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, + [28126] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1468), 2, + STATE(1458), 2, sym_line_comment, sym_block_comment, - ACTIONS(1950), 7, + ACTIONS(2006), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -134476,7 +133934,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1952), 38, + ACTIONS(2008), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134515,15 +133973,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28786] = 5, + [28186] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1469), 2, + STATE(1459), 2, sym_line_comment, sym_block_comment, - ACTIONS(1954), 7, + ACTIONS(2042), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -134531,7 +133989,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1956), 38, + ACTIONS(2044), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134570,194 +134028,23 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28846] = 5, + [28246] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1470), 2, + STATE(1460), 2, sym_line_comment, sym_block_comment, - ACTIONS(2510), 7, + ACTIONS(2691), 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(2512), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [28906] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1471), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3887), 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, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(3885), 29, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym__, - anon_sym_const, - anon_sym_default, - anon_sym_union, - anon_sym_ref, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [28965] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1472), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2410), 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(2412), 32, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_pub, - anon_sym_union, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [29024] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1473), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3657), 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, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, + anon_sym_COLON_COLON, + anon_sym_POUND, sym_metavariable, - ACTIONS(3655), 29, + ACTIONS(2693), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134775,43 +134062,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym__, + anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_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, - [29083] = 5, + [28306] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1474), 2, + STATE(1461), 2, sym_line_comment, sym_block_comment, - ACTIONS(2657), 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(2046), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, anon_sym_LT, - anon_sym_DOT_DOT, anon_sym_COLON_COLON, anon_sym_POUND, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, sym_metavariable, - ACTIONS(2659), 29, + ACTIONS(2048), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134829,29 +134117,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym__, + anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_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, - [29142] = 6, + [28366] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3889), 1, - anon_sym_COLON_COLON, - STATE(1475), 2, + STATE(1462), 2, sym_line_comment, sym_block_comment, - ACTIONS(1416), 15, + ACTIONS(1406), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -134867,12 +134162,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1418), 28, + ACTIONS(1408), 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, @@ -134894,30 +134190,26 @@ 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, - [29203] = 5, + [28426] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1476), 2, + STATE(1463), 2, sym_line_comment, sym_block_comment, - ACTIONS(3205), 12, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, + ACTIONS(2695), 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(3203), 32, + ACTIONS(2697), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134938,43 +134230,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_enum, anon_sym_fn, - anon_sym_for, anon_sym_impl, + anon_sym_let, + anon_sym_mod, anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, anon_sym_unsafe, + anon_sym_use, anon_sym_extern, - anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [29262] = 5, + [28486] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1477), 2, + STATE(1464), 2, sym_line_comment, sym_block_comment, - ACTIONS(3723), 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(2699), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, anon_sym_LT, - anon_sym_DOT_DOT, anon_sym_COLON_COLON, anon_sym_POUND, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, sym_metavariable, - ACTIONS(3721), 29, + ACTIONS(2701), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134992,98 +134282,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym__, + anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_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, - [29321] = 6, + [28546] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3321), 1, - anon_sym_COLON_COLON, - STATE(1478), 2, + STATE(1465), 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(3315), 28, + ACTIONS(2703), 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_as, - anon_sym_else, - [29382] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1479), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3893), 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, anon_sym_COLON_COLON, anon_sym_POUND, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, sym_metavariable, - ACTIONS(3891), 29, + ACTIONS(2705), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -135101,73 +134337,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym__, + anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_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, - [29441] = 23, - ACTIONS(29), 1, - anon_sym_LT, + [28606] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1562), 1, - anon_sym_LBRACK, - ACTIONS(3475), 1, - sym_identifier, - ACTIONS(3479), 1, - anon_sym_LPAREN, - ACTIONS(3481), 1, - anon_sym_STAR, - ACTIONS(3485), 1, - anon_sym_AMP, - ACTIONS(3487), 1, - anon_sym_COLON_COLON, - ACTIONS(3489), 1, - anon_sym_SQUOTE, - ACTIONS(3493), 1, - anon_sym_for, - ACTIONS(3497), 1, - sym_metavariable, - STATE(2507), 1, - sym_scoped_type_identifier, - STATE(2546), 1, - sym_where_predicate, - STATE(3020), 1, - sym_generic_type, - STATE(3340), 1, - sym_generic_type_with_turbofish, - STATE(3385), 1, - sym_scoped_identifier, - STATE(3469), 1, - sym_bracketed_type, - ACTIONS(3491), 2, - anon_sym_default, - anon_sym_union, - STATE(1480), 2, + STATE(1466), 2, sym_line_comment, sym_block_comment, - ACTIONS(3495), 3, - sym_self, - sym_super, - sym_crate, - STATE(3194), 6, - sym_higher_ranked_trait_bound, - sym_lifetime, - sym_array_type, - sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(3483), 17, + ACTIONS(2737), 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(2739), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -135185,231 +134392,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [29536] = 23, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(1562), 1, - anon_sym_LBRACK, - ACTIONS(3475), 1, - sym_identifier, - ACTIONS(3479), 1, - anon_sym_LPAREN, - ACTIONS(3481), 1, - anon_sym_STAR, - ACTIONS(3485), 1, - anon_sym_AMP, - ACTIONS(3487), 1, - anon_sym_COLON_COLON, - ACTIONS(3489), 1, - anon_sym_SQUOTE, - ACTIONS(3493), 1, - anon_sym_for, - ACTIONS(3497), 1, - sym_metavariable, - STATE(2438), 1, - sym_where_predicate, - STATE(2507), 1, - sym_scoped_type_identifier, - STATE(3020), 1, - sym_generic_type, - STATE(3340), 1, - sym_generic_type_with_turbofish, - STATE(3385), 1, - sym_scoped_identifier, - STATE(3469), 1, - sym_bracketed_type, - ACTIONS(3491), 2, + anon_sym_async, + anon_sym_const, anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + 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(1481), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3495), 3, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, sym_self, sym_super, sym_crate, - STATE(3194), 6, - sym_higher_ranked_trait_bound, - sym_lifetime, - sym_array_type, - sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(3483), 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, - [29631] = 19, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3901), 1, - anon_sym_CARET, - ACTIONS(3903), 1, - anon_sym_AMP, - ACTIONS(3905), 1, - anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3913), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(3917), 2, - anon_sym_GT, - anon_sym_LT, - STATE(1482), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3899), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3895), 19, - 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_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_else, - [29717] = 21, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3901), 1, - anon_sym_CARET, - ACTIONS(3903), 1, - anon_sym_AMP, - ACTIONS(3905), 1, - anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3921), 1, - anon_sym_EQ, - ACTIONS(3923), 1, - anon_sym_DOT_DOT, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3917), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3925), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1483), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3899), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3919), 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, - [29807] = 9, + [28666] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3325), 1, - anon_sym_LBRACE, - ACTIONS(3327), 1, - anon_sym_COLON_COLON, - ACTIONS(3927), 1, - anon_sym_BANG, - STATE(1199), 1, - sym_field_initializer_list, - STATE(1484), 2, + STATE(1467), 2, sym_line_comment, sym_block_comment, - ACTIONS(1416), 15, + ACTIONS(3883), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -135425,72 +134437,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1418), 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, - [29873] = 13, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3903), 1, - anon_sym_AMP, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1485), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3899), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3669), 6, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3665), 25, + ACTIONS(3881), 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, @@ -135510,47 +134465,42 @@ 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, - [29947] = 12, + [28726] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1486), 2, + STATE(1468), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(1452), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3669), 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(3665), 25, + ACTIONS(1450), 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, @@ -135570,119 +134520,97 @@ 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, - [30019] = 22, + [28786] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3901), 1, - anon_sym_CARET, - ACTIONS(3903), 1, - anon_sym_AMP, - ACTIONS(3905), 1, - anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3923), 1, - anon_sym_DOT_DOT, - ACTIONS(3931), 1, - anon_sym_EQ, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3917), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3925), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1487), 2, + STATE(1469), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3661), 7, + ACTIONS(2258), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_else, - ACTIONS(3929), 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, - [30111] = 14, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2260), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [28846] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3901), 1, - anon_sym_CARET, - ACTIONS(3903), 1, - anon_sym_AMP, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1488), 2, + STATE(1470), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(1250), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3669), 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(3665), 25, + ACTIONS(1248), 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, @@ -135702,64 +134630,171 @@ 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, - [30187] = 21, + [28906] = 23, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(1562), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3901), 1, - anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(3344), 1, + sym_identifier, + ACTIONS(3348), 1, + anon_sym_LPAREN, + ACTIONS(3350), 1, + anon_sym_STAR, + ACTIONS(3354), 1, + anon_sym_AMP, + ACTIONS(3356), 1, + anon_sym_COLON_COLON, + ACTIONS(3358), 1, + anon_sym_SQUOTE, + ACTIONS(3362), 1, + anon_sym_for, + ACTIONS(3366), 1, + sym_metavariable, + STATE(2456), 1, + sym_where_predicate, + STATE(2522), 1, + sym_scoped_type_identifier, + STATE(2967), 1, + sym_generic_type, + STATE(3341), 1, + sym_generic_type_with_turbofish, + STATE(3362), 1, + sym_scoped_identifier, + STATE(3476), 1, + sym_bracketed_type, + ACTIONS(3360), 2, + anon_sym_default, + anon_sym_union, + STATE(1471), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3364), 3, + sym_self, + sym_super, + sym_crate, + STATE(3098), 6, + sym_higher_ranked_trait_bound, + sym_lifetime, + sym_array_type, + sym_tuple_type, + sym_reference_type, + sym_pointer_type, + ACTIONS(3352), 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, + [29001] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1472), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3627), 15, + sym__raw_string_literal_start, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DASH, anon_sym_AMP, - ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3923), 1, + anon_sym_LT, anon_sym_DOT_DOT, - ACTIONS(3935), 1, - anon_sym_EQ, - ACTIONS(3897), 2, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(3625), 29, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym__, + anon_sym_const, + anon_sym_default, + anon_sym_union, + anon_sym_ref, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [29060] = 6, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(3885), 1, + anon_sym_COLON_COLON, + STATE(1473), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1406), 15, anon_sym_PLUS, + anon_sym_STAR, anon_sym_DASH, - ACTIONS(3911), 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(3917), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(3925), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1489), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3899), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3933), 17, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1408), 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, @@ -135770,129 +134805,340 @@ 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_as, anon_sym_else, - [30277] = 17, + [29121] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + STATE(1474), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3889), 15, + sym__raw_string_literal_start, + sym_float_literal, + anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3901), 1, - anon_sym_CARET, - ACTIONS(3903), 1, + anon_sym_DASH, anon_sym_AMP, - ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(3669), 2, - anon_sym_EQ, + anon_sym_LT, anon_sym_DOT_DOT, - ACTIONS(3897), 2, - anon_sym_PLUS, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(3887), 29, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym__, + anon_sym_const, + anon_sym_default, + anon_sym_union, + anon_sym_ref, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [29180] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1475), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3805), 15, + sym__raw_string_literal_start, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DASH, - ACTIONS(3911), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3917), 2, - anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT, - STATE(1490), 2, + anon_sym_DOT_DOT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(3803), 29, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym__, + anon_sym_const, + anon_sym_default, + anon_sym_union, + anon_sym_ref, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [29239] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1476), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3893), 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, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(3891), 29, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym__, + anon_sym_const, + anon_sym_default, + anon_sym_union, + anon_sym_ref, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [29298] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1477), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3205), 12, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3665), 21, - anon_sym_SEMI, + 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(3203), 32, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, + anon_sym_pub, + anon_sym_union, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [29357] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1478), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2741), 12, 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, - [30359] = 25, + 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(2743), 32, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, + anon_sym_pub, + anon_sym_union, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [29416] = 23, ACTIONS(29), 1, anon_sym_LT, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1290), 1, - anon_sym_fn, - ACTIONS(1298), 1, - anon_sym_extern, - ACTIONS(3145), 1, - anon_sym_for, - ACTIONS(3487), 1, + ACTIONS(1562), 1, + anon_sym_LBRACK, + ACTIONS(3344), 1, + sym_identifier, + ACTIONS(3348), 1, + anon_sym_LPAREN, + ACTIONS(3350), 1, + anon_sym_STAR, + ACTIONS(3354), 1, + anon_sym_AMP, + ACTIONS(3356), 1, anon_sym_COLON_COLON, - ACTIONS(3491), 1, - anon_sym_union, - ACTIONS(3497), 1, + ACTIONS(3358), 1, + anon_sym_SQUOTE, + ACTIONS(3362), 1, + anon_sym_for, + ACTIONS(3366), 1, sym_metavariable, - ACTIONS(3503), 1, - anon_sym_default, - ACTIONS(3937), 1, - sym_identifier, - STATE(1618), 1, - sym_for_lifetimes, - STATE(1917), 1, + STATE(2522), 1, sym_scoped_type_identifier, - STATE(1944), 1, + STATE(2671), 1, + sym_where_predicate, + STATE(2967), 1, sym_generic_type, - STATE(2206), 1, - aux_sym_function_modifiers_repeat1, - STATE(2320), 1, - sym_extern_modifier, - STATE(3340), 1, + STATE(3341), 1, sym_generic_type_with_turbofish, - STATE(3385), 1, + STATE(3362), 1, sym_scoped_identifier, - STATE(3427), 1, - sym_function_modifiers, - STATE(3469), 1, + STATE(3476), 1, sym_bracketed_type, - STATE(1491), 2, + ACTIONS(3360), 2, + anon_sym_default, + anon_sym_union, + STATE(1479), 2, sym_line_comment, sym_block_comment, - STATE(1984), 2, - sym_higher_ranked_trait_bound, - sym_function_type, - ACTIONS(1284), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3495), 3, + ACTIONS(3364), 3, sym_self, sym_super, sym_crate, - ACTIONS(3501), 17, + STATE(3098), 6, + sym_higher_ranked_trait_bound, + sym_lifetime, + sym_array_type, + sym_tuple_type, + sym_reference_type, + sym_pointer_type, + ACTIONS(3352), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -135910,224 +135156,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [30457] = 11, + [29511] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3939), 1, - anon_sym_LPAREN, - ACTIONS(3941), 1, - anon_sym_BANG, - ACTIONS(3943), 1, - anon_sym_COLON_COLON, - ACTIONS(3945), 1, - anon_sym_LT2, - STATE(1582), 1, - sym_type_arguments, - STATE(1602), 1, - sym_parameters, - STATE(1492), 2, + STATE(1480), 2, sym_line_comment, sym_block_comment, - ACTIONS(3245), 17, - anon_sym_PLUS, - anon_sym_STAR, + ACTIONS(2098), 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(3241), 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, - [30527] = 19, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(2100), 29, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym__, + anon_sym_const, + anon_sym_default, + anon_sym_union, + anon_sym_ref, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [29570] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3901), 1, - anon_sym_CARET, - ACTIONS(3903), 1, - anon_sym_AMP, - ACTIONS(3905), 1, - anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(370), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3917), 2, - anon_sym_GT, - anon_sym_LT, - STATE(1493), 2, + ACTIONS(3332), 1, + anon_sym_COLON_COLON, + STATE(1481), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(368), 19, - 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_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_else, - [30613] = 21, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3901), 1, - anon_sym_CARET, - ACTIONS(3903), 1, - anon_sym_AMP, - ACTIONS(3905), 1, - anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3923), 1, - anon_sym_DOT_DOT, - ACTIONS(3949), 1, - anon_sym_EQ, - ACTIONS(3897), 2, + ACTIONS(3328), 15, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3917), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3925), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1494), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3899), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3947), 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, - [30703] = 10, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - STATE(1495), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3899), 3, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3669), 11, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -136136,13 +135234,16 @@ 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(3665), 25, + ACTIONS(3326), 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, @@ -136162,50 +135263,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, + anon_sym_as, anon_sym_else, - [30771] = 22, + [29631] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3561), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3565), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3567), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3791), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(3899), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(3901), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3903), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3905), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3907), 1, anon_sym_PIPE_PIPE, - ACTIONS(3923), 1, - anon_sym_DOT_DOT, - ACTIONS(3931), 1, + ACTIONS(3913), 1, anon_sym_EQ, - ACTIONS(3897), 2, + ACTIONS(3919), 1, + anon_sym_DOT_DOT, + ACTIONS(3895), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3909), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3925), 2, + ACTIONS(3921), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1496), 2, + STATE(1482), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3897), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -136214,7 +135316,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3771), 7, + ACTIONS(3689), 7, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136222,7 +135324,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_COMMA, anon_sym_else, - ACTIONS(3929), 10, + ACTIONS(3911), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -136233,44 +135335,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30863] = 15, + [29723] = 15, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3561), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3565), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3567), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3791), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(3899), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(3901), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3903), 1, anon_sym_PIPE, - ACTIONS(3897), 2, + ACTIONS(3895), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3909), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1497), 2, + STATE(1483), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3897), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3669), 4, + ACTIONS(3789), 4, anon_sym_EQ, anon_sym_GT, anon_sym_LT, anon_sym_DOT_DOT, - ACTIONS(3665), 25, + ACTIONS(3787), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136296,62 +135398,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_else, - [30941] = 25, + [29801] = 25, ACTIONS(29), 1, anon_sym_LT, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1298), 1, + ACTIONS(1310), 1, anon_sym_extern, - ACTIONS(3117), 1, + ACTIONS(3115), 1, anon_sym_fn, - ACTIONS(3428), 1, + ACTIONS(3400), 1, anon_sym_COLON_COLON, - ACTIONS(3430), 1, + ACTIONS(3402), 1, anon_sym_default, - ACTIONS(3434), 1, + ACTIONS(3406), 1, anon_sym_union, - ACTIONS(3438), 1, + ACTIONS(3410), 1, sym_metavariable, - ACTIONS(3951), 1, + ACTIONS(3923), 1, sym_identifier, - ACTIONS(3953), 1, + ACTIONS(3925), 1, anon_sym_for, - STATE(1029), 1, + STATE(1015), 1, sym_scoped_type_identifier, STATE(1051), 1, sym_generic_type, - STATE(1592), 1, + STATE(1614), 1, sym_for_lifetimes, - STATE(2206), 1, + STATE(2220), 1, aux_sym_function_modifiers_repeat1, - STATE(2320), 1, + STATE(2321), 1, sym_extern_modifier, - STATE(3338), 1, + STATE(3339), 1, sym_function_modifiers, - STATE(3483), 1, + STATE(3490), 1, sym_scoped_identifier, - STATE(3516), 1, + STATE(3524), 1, sym_generic_type_with_turbofish, - STATE(3526), 1, + STATE(3534), 1, sym_bracketed_type, - STATE(1297), 2, + STATE(1440), 2, sym_higher_ranked_trait_bound, sym_function_type, - STATE(1498), 2, + STATE(1484), 2, sym_line_comment, sym_block_comment, - ACTIONS(1284), 3, + ACTIONS(1296), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(3436), 3, + ACTIONS(3408), 3, sym_self, sym_super, sym_crate, - ACTIONS(3426), 17, + ACTIONS(3398), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -136369,49 +135471,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [31039] = 21, + [29899] = 21, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3561), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3565), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3567), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3791), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(3899), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(3901), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3903), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3905), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3907), 1, anon_sym_PIPE_PIPE, - ACTIONS(3923), 1, + ACTIONS(3919), 1, anon_sym_DOT_DOT, - ACTIONS(3957), 1, + ACTIONS(3929), 1, anon_sym_EQ, - ACTIONS(3897), 2, + ACTIONS(3895), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3909), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3925), 2, + ACTIONS(3921), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1499), 2, + STATE(1485), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3897), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -136420,7 +135522,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3955), 17, + ACTIONS(3927), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136438,43 +135540,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_COMMA, anon_sym_else, - [31129] = 18, + [29989] = 21, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3561), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3565), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3567), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3791), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(3899), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(3901), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3903), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3905), 1, anon_sym_AMP_AMP, - ACTIONS(3669), 2, - anon_sym_EQ, + ACTIONS(3907), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3919), 1, anon_sym_DOT_DOT, - ACTIONS(3897), 2, + ACTIONS(3933), 1, + anon_sym_EQ, + ACTIONS(3895), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3909), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - STATE(1500), 2, + ACTIONS(3921), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1486), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3897), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -136483,13 +135591,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3665), 20, + ACTIONS(3931), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -136500,51 +135607,65 @@ 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, - [31213] = 11, + [30079] = 21, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3561), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3565), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3567), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3791), 1, anon_sym_as, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1501), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3899), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3669), 9, + ACTIONS(3899), 1, anon_sym_CARET, + ACTIONS(3901), 1, anon_sym_AMP, + ACTIONS(3903), 1, anon_sym_PIPE, + ACTIONS(3905), 1, + anon_sym_AMP_AMP, + ACTIONS(3907), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3919), 1, + anon_sym_DOT_DOT, + ACTIONS(3937), 1, + anon_sym_EQ, + ACTIONS(3895), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3909), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3665), 25, + ACTIONS(3921), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1487), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3897), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3915), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3935), 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, @@ -136555,71 +135676,48 @@ 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, - [31283] = 21, + [30169] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(342), 1, - anon_sym_EQ, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(3322), 1, + anon_sym_LBRACE, + ACTIONS(3324), 1, + anon_sym_COLON_COLON, + ACTIONS(3939), 1, + anon_sym_BANG, + STATE(1354), 1, + sym_field_initializer_list, + STATE(1488), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1406), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3903), 1, anon_sym_AMP, - ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3923), 1, - anon_sym_DOT_DOT, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(3925), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1502), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3899), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(336), 17, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1408), 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, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -136630,51 +135728,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_COMMA, - anon_sym_else, - [31373] = 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, + [30235] = 21, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(342), 1, + anon_sym_EQ, + ACTIONS(3561), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3565), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3567), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3791), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(3899), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(3901), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3903), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3905), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3907), 1, anon_sym_PIPE_PIPE, - ACTIONS(3923), 1, + ACTIONS(3919), 1, anon_sym_DOT_DOT, - ACTIONS(3961), 1, - anon_sym_EQ, - ACTIONS(3897), 2, + ACTIONS(3895), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3909), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3925), 2, + ACTIONS(3921), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1503), 2, + STATE(1489), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3897), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -136683,7 +135786,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3959), 17, + ACTIONS(336), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136701,122 +135804,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_COMMA, anon_sym_else, - [31463] = 25, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(1298), 1, - anon_sym_extern, - ACTIONS(3081), 1, - anon_sym_fn, - ACTIONS(3380), 1, - anon_sym_COLON_COLON, - ACTIONS(3382), 1, - anon_sym_default, - ACTIONS(3386), 1, - anon_sym_union, - ACTIONS(3390), 1, - sym_metavariable, - ACTIONS(3963), 1, - sym_identifier, - ACTIONS(3965), 1, - anon_sym_for, - STATE(1532), 1, - sym_scoped_type_identifier, - STATE(1600), 1, - sym_generic_type, - STATE(1613), 1, - sym_for_lifetimes, - STATE(2206), 1, - aux_sym_function_modifiers_repeat1, - STATE(2320), 1, - sym_extern_modifier, - STATE(3473), 1, - sym_function_modifiers, - STATE(3507), 1, - sym_scoped_identifier, - STATE(3524), 1, - sym_generic_type_with_turbofish, - STATE(3530), 1, - sym_bracketed_type, - STATE(1504), 2, - sym_line_comment, - sym_block_comment, - STATE(1709), 2, - sym_higher_ranked_trait_bound, - sym_function_type, - ACTIONS(1284), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3388), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(3378), 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, - [31561] = 22, + [30325] = 19, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3561), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3565), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3567), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3791), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(3899), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(3901), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3903), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3905), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3907), 1, anon_sym_PIPE_PIPE, - ACTIONS(3923), 1, - anon_sym_DOT_DOT, - ACTIONS(3931), 1, + ACTIONS(392), 2, anon_sym_EQ, - ACTIONS(3897), 2, + anon_sym_DOT_DOT, + ACTIONS(3895), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3909), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3925), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1505), 2, + STATE(1490), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3897), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -136825,15 +135851,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3739), 7, + ACTIONS(390), 19, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_else, - ACTIONS(3929), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -136844,25 +135867,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31653] = 10, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_else, + [30411] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3939), 1, + ACTIONS(3941), 1, anon_sym_LPAREN, + ACTIONS(3943), 1, + anon_sym_BANG, ACTIONS(3945), 1, - anon_sym_LT2, - ACTIONS(3967), 1, anon_sym_COLON_COLON, - STATE(1582), 1, - sym_type_arguments, - STATE(1602), 1, + ACTIONS(3947), 1, + anon_sym_LT2, + STATE(1593), 1, sym_parameters, - STATE(1506), 2, + STATE(1599), 1, + sym_type_arguments, + STATE(1491), 2, sym_line_comment, sym_block_comment, - ACTIONS(3261), 17, + ACTIONS(3245), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136880,7 +135909,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3259), 20, + ACTIONS(3241), 20, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, @@ -136901,28 +135930,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [31720] = 9, + [30481] = 25, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3941), 1, - anon_sym_BANG, - ACTIONS(3969), 1, - anon_sym_LBRACE, - ACTIONS(3971), 1, + ACTIONS(1310), 1, + anon_sym_extern, + ACTIONS(3073), 1, + anon_sym_fn, + ACTIONS(3515), 1, anon_sym_COLON_COLON, - STATE(1650), 1, - sym_field_initializer_list, - STATE(1507), 2, + ACTIONS(3517), 1, + anon_sym_default, + ACTIONS(3519), 1, + anon_sym_union, + ACTIONS(3523), 1, + sym_metavariable, + ACTIONS(3949), 1, + sym_identifier, + ACTIONS(3951), 1, + anon_sym_for, + STATE(1538), 1, + sym_scoped_type_identifier, + STATE(1623), 1, + sym_for_lifetimes, + STATE(1635), 1, + sym_generic_type, + STATE(2220), 1, + aux_sym_function_modifiers_repeat1, + STATE(2321), 1, + sym_extern_modifier, + STATE(3480), 1, + sym_function_modifiers, + STATE(3515), 1, + sym_scoped_identifier, + STATE(3532), 1, + sym_generic_type_with_turbofish, + STATE(3538), 1, + sym_bracketed_type, + STATE(1492), 2, sym_line_comment, sym_block_comment, - ACTIONS(1416), 15, - anon_sym_PLUS, + STATE(1780), 2, + sym_higher_ranked_trait_bound, + sym_function_type, + ACTIONS(1296), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(3521), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(3513), 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, + [30579] = 10, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(3561), 1, + anon_sym_LBRACK, + ACTIONS(3565), 1, + anon_sym_QMARK, + ACTIONS(3567), 1, + anon_sym_DOT, + ACTIONS(3791), 1, + anon_sym_as, + STATE(1493), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3897), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3789), 11, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -136931,13 +136034,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(1418), 23, + ACTIONS(3787), 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, @@ -136956,47 +136059,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_as, - [31785] = 10, + anon_sym_COMMA, + anon_sym_else, + [30647] = 13, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3939), 1, - anon_sym_LPAREN, - ACTIONS(3945), 1, - anon_sym_LT2, - ACTIONS(3967), 1, - anon_sym_COLON_COLON, - STATE(1582), 1, - sym_type_arguments, - STATE(1602), 1, - sym_parameters, - STATE(1508), 2, + ACTIONS(3561), 1, + anon_sym_LBRACK, + ACTIONS(3565), 1, + anon_sym_QMARK, + ACTIONS(3567), 1, + anon_sym_DOT, + ACTIONS(3791), 1, + anon_sym_as, + ACTIONS(3901), 1, + anon_sym_AMP, + ACTIONS(3895), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3909), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1494), 2, sym_line_comment, sym_block_comment, - ACTIONS(3265), 17, - anon_sym_PLUS, + ACTIONS(3897), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3789), 6, 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(3263), 20, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, + ACTIONS(3787), 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, @@ -137007,50 +136112,56 @@ 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, - [31852] = 8, + anon_sym_COMMA, + anon_sym_else, + [30721] = 12, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3319), 1, - anon_sym_BANG, - ACTIONS(3321), 1, - anon_sym_COLON_COLON, - ACTIONS(3973), 1, - sym_identifier, - STATE(1509), 2, + ACTIONS(3561), 1, + anon_sym_LBRACK, + ACTIONS(3565), 1, + anon_sym_QMARK, + ACTIONS(3567), 1, + anon_sym_DOT, + ACTIONS(3791), 1, + anon_sym_as, + ACTIONS(3895), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3909), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1495), 2, sym_line_comment, sym_block_comment, - ACTIONS(3317), 16, - anon_sym_PLUS, + ACTIONS(3897), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3789), 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, - anon_sym_as, - ACTIONS(3315), 23, + ACTIONS(3787), 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, @@ -137069,107 +136180,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [31915] = 19, - ACTIONS(29), 1, - anon_sym_LT, + anon_sym_COMMA, + anon_sym_else, + [30793] = 14, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1262), 1, + ACTIONS(3561), 1, + anon_sym_LBRACK, + ACTIONS(3565), 1, + anon_sym_QMARK, + ACTIONS(3567), 1, + anon_sym_DOT, + ACTIONS(3791), 1, + anon_sym_as, + ACTIONS(3899), 1, + anon_sym_CARET, + ACTIONS(3901), 1, + anon_sym_AMP, + ACTIONS(3895), 2, + anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1308), 1, - aux_sym_string_literal_token1, - ACTIONS(1318), 1, - sym__raw_string_literal_start, - ACTIONS(2340), 1, - anon_sym_COLON_COLON, - ACTIONS(3229), 1, - sym_identifier, - ACTIONS(3239), 1, - sym_metavariable, - STATE(2036), 1, - sym_scoped_identifier, - STATE(2080), 1, - sym__literal_pattern, - STATE(3324), 1, - sym_bracketed_type, - STATE(3350), 1, - sym_generic_type_with_turbofish, - ACTIONS(1310), 2, - anon_sym_true, - anon_sym_false, - STATE(1510), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1306), 3, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3237), 3, - sym_self, - sym_super, - sym_crate, - STATE(2004), 4, - sym_negative_literal, - sym_string_literal, - sym_raw_string_literal, - sym_boolean_literal, - ACTIONS(3235), 19, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_default, - anon_sym_union, - [32000] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3247), 1, - anon_sym_BANG, - ACTIONS(3975), 1, - anon_sym_COLON_COLON, - STATE(1199), 1, - sym_field_initializer_list, - STATE(1511), 2, + ACTIONS(3909), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1496), 2, sym_line_comment, sym_block_comment, - ACTIONS(1416), 15, - anon_sym_PLUS, + ACTIONS(3897), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(3789), 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(1418), 24, + ACTIONS(3787), 25, + anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_QMARK, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -137188,244 +136242,129 @@ 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, - [32063] = 19, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(1262), 1, - anon_sym_DASH, - ACTIONS(1308), 1, - aux_sym_string_literal_token1, - ACTIONS(1318), 1, - sym__raw_string_literal_start, - ACTIONS(2340), 1, - anon_sym_COLON_COLON, - ACTIONS(3217), 1, - sym_identifier, - ACTIONS(3227), 1, - sym_metavariable, - STATE(2048), 1, - sym_scoped_identifier, - STATE(2091), 1, - sym__literal_pattern, - STATE(3324), 1, - sym_bracketed_type, - STATE(3350), 1, - sym_generic_type_with_turbofish, - ACTIONS(1310), 2, - anon_sym_true, - anon_sym_false, - STATE(1512), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1306), 3, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3225), 3, - sym_self, - sym_super, - sym_crate, - STATE(2004), 4, - sym_negative_literal, - sym_string_literal, - sym_raw_string_literal, - sym_boolean_literal, - ACTIONS(3223), 19, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_default, - anon_sym_union, - [32148] = 10, + anon_sym_COMMA, + anon_sym_else, + [30869] = 17, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3939), 1, - anon_sym_LPAREN, - ACTIONS(3945), 1, - anon_sym_LT2, - ACTIONS(3967), 1, - anon_sym_COLON_COLON, - STATE(1582), 1, - sym_type_arguments, - STATE(1602), 1, - sym_parameters, - STATE(1513), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3255), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3561), 1, + anon_sym_LBRACK, + ACTIONS(3565), 1, + anon_sym_QMARK, + ACTIONS(3567), 1, + anon_sym_DOT, + ACTIONS(3791), 1, + anon_sym_as, + ACTIONS(3899), 1, anon_sym_CARET, + ACTIONS(3901), 1, anon_sym_AMP, + ACTIONS(3903), 1, anon_sym_PIPE, + ACTIONS(3789), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(3895), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3909), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, - anon_sym_EQ, + ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3253), 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, - [32215] = 19, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(1614), 1, - anon_sym_DASH, - ACTIONS(1638), 1, - aux_sym_string_literal_token1, - ACTIONS(1646), 1, - sym__raw_string_literal_start, - ACTIONS(3599), 1, - anon_sym_COLON_COLON, - ACTIONS(3755), 1, - sym_identifier, - ACTIONS(3761), 1, - sym_metavariable, - STATE(2696), 1, - sym_scoped_identifier, - STATE(2971), 1, - sym__literal_pattern, - STATE(3465), 1, - sym_bracketed_type, - STATE(3478), 1, - sym_generic_type_with_turbofish, - ACTIONS(1640), 2, - anon_sym_true, - anon_sym_false, - STATE(1514), 2, + STATE(1497), 2, sym_line_comment, sym_block_comment, - ACTIONS(1636), 3, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3759), 3, - sym_self, - sym_super, - sym_crate, - STATE(2299), 4, - sym_negative_literal, - sym_string_literal, - sym_raw_string_literal, - sym_boolean_literal, - ACTIONS(3757), 19, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_default, - anon_sym_union, - [32300] = 19, + ACTIONS(3897), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3915), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3787), 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, + [30951] = 25, ACTIONS(29), 1, anon_sym_LT, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1614), 1, - anon_sym_DASH, - ACTIONS(1638), 1, - aux_sym_string_literal_token1, - ACTIONS(1646), 1, - sym__raw_string_literal_start, - ACTIONS(3595), 1, - sym_identifier, - ACTIONS(3599), 1, + ACTIONS(1302), 1, + anon_sym_fn, + ACTIONS(1310), 1, + anon_sym_extern, + ACTIONS(3147), 1, + anon_sym_for, + ACTIONS(3356), 1, anon_sym_COLON_COLON, - ACTIONS(3603), 1, + ACTIONS(3360), 1, + anon_sym_union, + ACTIONS(3366), 1, sym_metavariable, - STATE(2726), 1, + ACTIONS(3474), 1, + anon_sym_default, + ACTIONS(3953), 1, + sym_identifier, + STATE(1587), 1, + sym_for_lifetimes, + STATE(1915), 1, + sym_scoped_type_identifier, + STATE(1948), 1, + sym_generic_type, + STATE(2220), 1, + aux_sym_function_modifiers_repeat1, + STATE(2321), 1, + sym_extern_modifier, + STATE(3341), 1, + sym_generic_type_with_turbofish, + STATE(3362), 1, sym_scoped_identifier, - STATE(2895), 1, - sym__literal_pattern, - STATE(3465), 1, + STATE(3468), 1, + sym_function_modifiers, + STATE(3476), 1, sym_bracketed_type, - STATE(3478), 1, - sym_generic_type_with_turbofish, - ACTIONS(1640), 2, - anon_sym_true, - anon_sym_false, - STATE(1515), 2, + STATE(1498), 2, sym_line_comment, sym_block_comment, - ACTIONS(1636), 3, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3601), 3, + STATE(1986), 2, + sym_higher_ranked_trait_bound, + sym_function_type, + ACTIONS(1296), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(3364), 3, sym_self, sym_super, sym_crate, - STATE(2299), 4, - sym_negative_literal, - sym_string_literal, - sym_raw_string_literal, - sym_boolean_literal, - ACTIONS(3597), 19, + ACTIONS(3472), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -137443,24 +136382,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_default, - anon_sym_union, - [32385] = 5, + [31049] = 18, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1516), 2, + ACTIONS(3561), 1, + anon_sym_LBRACK, + ACTIONS(3565), 1, + anon_sym_QMARK, + ACTIONS(3567), 1, + anon_sym_DOT, + ACTIONS(3791), 1, + anon_sym_as, + ACTIONS(3899), 1, + anon_sym_CARET, + ACTIONS(3901), 1, + anon_sym_AMP, + ACTIONS(3903), 1, + anon_sym_PIPE, + ACTIONS(3905), 1, + anon_sym_AMP_AMP, + ACTIONS(3789), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(3895), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3909), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3917), 2, + anon_sym_GT, + anon_sym_LT, + STATE(1499), 2, sym_line_comment, sym_block_comment, - ACTIONS(3295), 16, - anon_sym_PLUS, + ACTIONS(3897), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3915), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3787), 20, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + 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, + [31133] = 11, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(3561), 1, + anon_sym_LBRACK, + ACTIONS(3565), 1, + anon_sym_QMARK, + ACTIONS(3567), 1, + anon_sym_DOT, + ACTIONS(3791), 1, + anon_sym_as, + ACTIONS(3895), 2, + anon_sym_PLUS, anon_sym_DASH, + STATE(1500), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3897), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3789), 9, anon_sym_CARET, - anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -137468,13 +136480,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(3297), 25, + ACTIONS(3787), 25, + anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_QMARK, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -137493,95 +136505,276 @@ 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, - [32441] = 6, + anon_sym_COMMA, + anon_sym_else, + [31203] = 21, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3981), 1, - anon_sym_COLON_COLON, - STATE(1517), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3979), 9, - anon_sym_LPAREN, + ACTIONS(3561), 1, anon_sym_LBRACK, - anon_sym_STAR, + ACTIONS(3565), 1, anon_sym_QMARK, - anon_sym_BANG, + ACTIONS(3567), 1, + anon_sym_DOT, + ACTIONS(3791), 1, + anon_sym_as, + ACTIONS(3899), 1, + anon_sym_CARET, + ACTIONS(3901), 1, anon_sym_AMP, + ACTIONS(3903), 1, + anon_sym_PIPE, + ACTIONS(3905), 1, + anon_sym_AMP_AMP, + ACTIONS(3907), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3919), 1, + anon_sym_DOT_DOT, + ACTIONS(3957), 1, + anon_sym_EQ, + ACTIONS(3895), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3909), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3917), 2, + anon_sym_GT, anon_sym_LT, - anon_sym_SQUOTE, - sym_metavariable, - ACTIONS(3977), 31, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [32499] = 6, + ACTIONS(3921), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1501), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3897), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3915), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3955), 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, + [31293] = 21, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3539), 1, - anon_sym_LBRACE, - STATE(1518), 2, + ACTIONS(3561), 1, + anon_sym_LBRACK, + ACTIONS(3565), 1, + anon_sym_QMARK, + ACTIONS(3567), 1, + anon_sym_DOT, + ACTIONS(3791), 1, + anon_sym_as, + ACTIONS(3899), 1, + anon_sym_CARET, + ACTIONS(3901), 1, + anon_sym_AMP, + ACTIONS(3903), 1, + anon_sym_PIPE, + ACTIONS(3905), 1, + anon_sym_AMP_AMP, + ACTIONS(3907), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3919), 1, + anon_sym_DOT_DOT, + ACTIONS(3961), 1, + anon_sym_EQ, + ACTIONS(3895), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3909), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3917), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3921), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1502), 2, sym_line_comment, sym_block_comment, - ACTIONS(3295), 16, - anon_sym_PLUS, + ACTIONS(3897), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3915), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3959), 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, + [31383] = 22, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(3561), 1, + anon_sym_LBRACK, + ACTIONS(3565), 1, + anon_sym_QMARK, + ACTIONS(3567), 1, + anon_sym_DOT, + ACTIONS(3791), 1, + anon_sym_as, + ACTIONS(3899), 1, anon_sym_CARET, - anon_sym_BANG, + ACTIONS(3901), 1, anon_sym_AMP, + ACTIONS(3903), 1, anon_sym_PIPE, + ACTIONS(3905), 1, + anon_sym_AMP_AMP, + ACTIONS(3907), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3913), 1, + anon_sym_EQ, + ACTIONS(3919), 1, + anon_sym_DOT_DOT, + ACTIONS(3895), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3909), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3297), 24, + ACTIONS(3921), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1503), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3897), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3915), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3617), 7, + anon_sym_SEMI, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_else, + ACTIONS(3911), 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, + [31475] = 22, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(3561), 1, anon_sym_LBRACK, - anon_sym_EQ_GT, + ACTIONS(3565), 1, anon_sym_QMARK, + ACTIONS(3567), 1, + anon_sym_DOT, + ACTIONS(3791), 1, + anon_sym_as, + ACTIONS(3899), 1, + anon_sym_CARET, + ACTIONS(3901), 1, + anon_sym_AMP, + ACTIONS(3903), 1, + anon_sym_PIPE, + ACTIONS(3905), 1, anon_sym_AMP_AMP, + ACTIONS(3907), 1, anon_sym_PIPE_PIPE, + ACTIONS(3913), 1, + anon_sym_EQ, + ACTIONS(3919), 1, + anon_sym_DOT_DOT, + ACTIONS(3895), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3909), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3917), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3921), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1504), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3897), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3915), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3661), 7, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_else, + ACTIONS(3911), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -137592,27 +136785,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, + [31567] = 19, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(3561), 1, + anon_sym_LBRACK, + ACTIONS(3565), 1, + anon_sym_QMARK, + ACTIONS(3567), 1, + anon_sym_DOT, + ACTIONS(3791), 1, + anon_sym_as, + ACTIONS(3899), 1, + anon_sym_CARET, + ACTIONS(3901), 1, + anon_sym_AMP, + ACTIONS(3903), 1, + anon_sym_PIPE, + ACTIONS(3905), 1, + anon_sym_AMP_AMP, + ACTIONS(3907), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3895), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3909), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3917), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3965), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + STATE(1505), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3897), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3915), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(3963), 19, + 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_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_as, - [32557] = 7, + anon_sym_COMMA, + anon_sym_else, + [31653] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3295), 1, + ACTIONS(3943), 1, anon_sym_BANG, - ACTIONS(3297), 1, + ACTIONS(3967), 1, + anon_sym_LBRACE, + ACTIONS(3969), 1, anon_sym_COLON_COLON, - STATE(1519), 2, + STATE(1748), 1, + sym_field_initializer_list, + STATE(1506), 2, sym_line_comment, sym_block_comment, - ACTIONS(3293), 17, + ACTIONS(1406), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137623,14 +136879,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(3291), 22, + ACTIONS(1408), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -137645,31 +136899,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_as, - anon_sym_LT2, - [32617] = 9, + [31718] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3939), 1, - anon_sym_LPAREN, - ACTIONS(3945), 1, - anon_sym_LT2, - STATE(1583), 1, - sym_type_arguments, - STATE(1614), 1, - sym_parameters, - STATE(1520), 2, + ACTIONS(3247), 1, + anon_sym_BANG, + ACTIONS(3971), 1, + anon_sym_COLON_COLON, + STATE(1354), 1, + sym_field_initializer_list, + STATE(1507), 2, sym_line_comment, sym_block_comment, - ACTIONS(3285), 17, + ACTIONS(1406), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137680,16 +136933,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(3283), 20, + ACTIONS(1408), 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, @@ -137701,42 +136953,55 @@ 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_SQUOTE, anon_sym_as, - [32681] = 5, + [31781] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1521), 2, + ACTIONS(3941), 1, + anon_sym_LPAREN, + ACTIONS(3947), 1, + anon_sym_LT2, + ACTIONS(3973), 1, + anon_sym_COLON_COLON, + STATE(1593), 1, + sym_parameters, + STATE(1599), 1, + sym_type_arguments, + STATE(1508), 2, sym_line_comment, sym_block_comment, - ACTIONS(3279), 16, + ACTIONS(3265), 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(3281), 25, - anon_sym_LPAREN, + ACTIONS(3263), 20, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -137748,46 +137013,50 @@ 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_SQUOTE, anon_sym_as, - [32737] = 6, + [31848] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3398), 1, - anon_sym_LBRACE, - STATE(1522), 2, + ACTIONS(3941), 1, + anon_sym_LPAREN, + ACTIONS(3947), 1, + anon_sym_LT2, + ACTIONS(3973), 1, + anon_sym_COLON_COLON, + STATE(1593), 1, + sym_parameters, + STATE(1599), 1, + sym_type_arguments, + STATE(1509), 2, sym_line_comment, sym_block_comment, - ACTIONS(3279), 16, + ACTIONS(3261), 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(3281), 24, - anon_sym_LPAREN, + ACTIONS(3259), 20, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, @@ -137801,45 +137070,250 @@ 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, - [32795] = 5, + [31915] = 19, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1523), 2, + ACTIONS(1274), 1, + anon_sym_DASH, + ACTIONS(1320), 1, + aux_sym_string_literal_token1, + ACTIONS(1330), 1, + sym__raw_string_literal_start, + ACTIONS(1930), 1, + anon_sym_COLON_COLON, + ACTIONS(3217), 1, + sym_identifier, + ACTIONS(3227), 1, + sym_metavariable, + STATE(2041), 1, + sym_scoped_identifier, + STATE(2093), 1, + sym__literal_pattern, + STATE(3312), 1, + sym_bracketed_type, + STATE(3351), 1, + sym_generic_type_with_turbofish, + ACTIONS(1322), 2, + anon_sym_true, + anon_sym_false, + STATE(1510), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1318), 3, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3225), 3, + sym_self, + sym_super, + sym_crate, + STATE(2009), 4, + sym_negative_literal, + sym_string_literal, + sym_raw_string_literal, + sym_boolean_literal, + ACTIONS(3223), 19, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_default, + anon_sym_union, + [32000] = 19, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(1614), 1, + anon_sym_DASH, + ACTIONS(1638), 1, + aux_sym_string_literal_token1, + ACTIONS(1646), 1, + sym__raw_string_literal_start, + ACTIONS(3793), 1, + sym_identifier, + ACTIONS(3797), 1, + anon_sym_COLON_COLON, + ACTIONS(3801), 1, + sym_metavariable, + STATE(2534), 1, + sym_scoped_identifier, + STATE(2959), 1, + sym__literal_pattern, + STATE(3472), 1, + sym_bracketed_type, + STATE(3485), 1, + sym_generic_type_with_turbofish, + ACTIONS(1640), 2, + anon_sym_true, + anon_sym_false, + STATE(1511), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1636), 3, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3799), 3, + sym_self, + sym_super, + sym_crate, + STATE(2355), 4, + sym_negative_literal, + sym_string_literal, + sym_raw_string_literal, + sym_boolean_literal, + ACTIONS(3795), 19, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_default, + anon_sym_union, + [32085] = 19, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(1274), 1, + anon_sym_DASH, + ACTIONS(1320), 1, + aux_sym_string_literal_token1, + ACTIONS(1330), 1, + sym__raw_string_literal_start, + ACTIONS(1930), 1, + anon_sym_COLON_COLON, + ACTIONS(3229), 1, + sym_identifier, + ACTIONS(3239), 1, + sym_metavariable, + STATE(2057), 1, + sym_scoped_identifier, + STATE(2098), 1, + sym__literal_pattern, + STATE(3312), 1, + sym_bracketed_type, + STATE(3351), 1, + sym_generic_type_with_turbofish, + ACTIONS(1322), 2, + anon_sym_true, + anon_sym_false, + STATE(1512), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1318), 3, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3237), 3, + sym_self, + sym_super, + sym_crate, + STATE(2009), 4, + sym_negative_literal, + sym_string_literal, + sym_raw_string_literal, + sym_boolean_literal, + ACTIONS(3235), 19, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_default, + anon_sym_union, + [32170] = 10, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(3941), 1, + anon_sym_LPAREN, + ACTIONS(3947), 1, + anon_sym_LT2, + ACTIONS(3973), 1, + anon_sym_COLON_COLON, + STATE(1593), 1, + sym_parameters, + STATE(1599), 1, + sym_type_arguments, + STATE(1513), 2, sym_line_comment, sym_block_comment, - ACTIONS(3311), 16, + ACTIONS(3255), 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(3313), 25, - anon_sym_LPAREN, + ACTIONS(3253), 20, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -137851,35 +137325,34 @@ 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_SQUOTE, anon_sym_as, - [32851] = 6, + [32237] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3455), 1, - anon_sym_LBRACE, - STATE(1524), 2, + ACTIONS(3330), 1, + anon_sym_BANG, + ACTIONS(3332), 1, + anon_sym_COLON_COLON, + ACTIONS(3975), 1, + sym_identifier, + STATE(1514), 2, sym_line_comment, sym_block_comment, - ACTIONS(3271), 16, + ACTIONS(3328), 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, @@ -137889,10 +137362,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3273), 24, + anon_sym_as, + ACTIONS(3326), 23, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_EQ_GT, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -137912,37 +137387,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + [32300] = 19, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(1614), 1, + anon_sym_DASH, + ACTIONS(1638), 1, + aux_sym_string_literal_token1, + ACTIONS(1646), 1, + sym__raw_string_literal_start, + ACTIONS(3797), 1, anon_sym_COLON_COLON, - anon_sym_as, - [32909] = 5, + ACTIONS(3831), 1, + sym_identifier, + ACTIONS(3837), 1, + sym_metavariable, + STATE(2525), 1, + sym_scoped_identifier, + STATE(2968), 1, + sym__literal_pattern, + STATE(3472), 1, + sym_bracketed_type, + STATE(3485), 1, + sym_generic_type_with_turbofish, + ACTIONS(1640), 2, + anon_sym_true, + anon_sym_false, + STATE(1515), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1636), 3, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3835), 3, + sym_self, + sym_super, + sym_crate, + STATE(2355), 4, + sym_negative_literal, + sym_string_literal, + sym_raw_string_literal, + sym_boolean_literal, + ACTIONS(3833), 19, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_default, + anon_sym_union, + [32385] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1525), 2, + ACTIONS(3941), 1, + anon_sym_LPAREN, + ACTIONS(3947), 1, + anon_sym_LT2, + STATE(1582), 1, + sym_type_arguments, + STATE(1589), 1, + sym_parameters, + STATE(1516), 2, sym_line_comment, sym_block_comment, - ACTIONS(3271), 16, + ACTIONS(3293), 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(3273), 25, - anon_sym_LPAREN, + ACTIONS(3291), 20, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -137954,34 +137501,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_SQUOTE, anon_sym_as, - [32965] = 9, + [32449] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3939), 1, - anon_sym_LPAREN, - ACTIONS(3945), 1, - anon_sym_LT2, - STATE(1583), 1, - sym_type_arguments, - STATE(1614), 1, - sym_parameters, - STATE(1526), 2, + ACTIONS(3777), 1, + anon_sym_BANG, + ACTIONS(3977), 1, + anon_sym_COLON_COLON, + STATE(1517), 2, sym_line_comment, sym_block_comment, - ACTIONS(3301), 17, + ACTIONS(3328), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137992,16 +137531,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(3299), 20, + ACTIONS(3326), 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, @@ -138013,26 +137551,29 @@ 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_SQUOTE, anon_sym_as, - [33029] = 7, + [32509] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3271), 1, + ACTIONS(3275), 1, anon_sym_BANG, - ACTIONS(3273), 1, + ACTIONS(3277), 1, anon_sym_COLON_COLON, - STATE(1527), 2, + STATE(1518), 2, sym_line_comment, sym_block_comment, - ACTIONS(3269), 17, + ACTIONS(3273), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138050,7 +137591,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3267), 22, + ACTIONS(3271), 22, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -138073,15 +137614,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_as, anon_sym_LT2, - [33089] = 5, + [32569] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1528), 2, + ACTIONS(3981), 1, + anon_sym_LPAREN, + STATE(1519), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3984), 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(3979), 31, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, + anon_sym_union, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [32627] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1520), 2, sym_line_comment, sym_block_comment, - ACTIONS(3817), 10, + ACTIONS(3545), 10, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_STAR, @@ -138092,7 +137685,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_SQUOTE, sym_metavariable, - ACTIONS(3815), 31, + ACTIONS(3543), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -138124,37 +137717,85 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [33145] = 7, + [32683] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3311), 1, + STATE(1521), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3715), 10, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_QMARK, anon_sym_BANG, - ACTIONS(3313), 1, + anon_sym_AMP, + anon_sym_LT, anon_sym_COLON_COLON, - STATE(1529), 2, + anon_sym_SQUOTE, + sym_metavariable, + ACTIONS(3713), 31, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, + anon_sym_union, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [32739] = 6, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(3434), 1, + anon_sym_LBRACE, + STATE(1522), 2, sym_line_comment, sym_block_comment, - ACTIONS(3309), 17, + ACTIONS(3275), 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(3307), 22, + ACTIONS(3277), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -138169,49 +137810,45 @@ 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, - anon_sym_LT2, - [33205] = 9, + [32797] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3939), 1, - anon_sym_LPAREN, - ACTIONS(3945), 1, - anon_sym_LT2, - STATE(1583), 1, - sym_type_arguments, - STATE(1614), 1, - sym_parameters, - STATE(1530), 2, + ACTIONS(3460), 1, + anon_sym_LBRACE, + STATE(1523), 2, sym_line_comment, sym_block_comment, - ACTIONS(3289), 17, + ACTIONS(3287), 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(3287), 20, + ACTIONS(3289), 24, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, @@ -138225,82 +137862,33 @@ 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, - [33269] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3984), 1, - anon_sym_LPAREN, - STATE(1531), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3979), 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(3977), 31, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [33327] = 9, + anon_sym_as, + [32855] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3939), 1, + ACTIONS(3941), 1, anon_sym_LPAREN, - ACTIONS(3945), 1, + ACTIONS(3947), 1, anon_sym_LT2, - STATE(1583), 1, + STATE(1582), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1589), 1, sym_parameters, - STATE(1532), 2, + STATE(1524), 2, sym_line_comment, sym_block_comment, - ACTIONS(3305), 17, + ACTIONS(3313), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138318,7 +137906,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3303), 20, + ACTIONS(3311), 20, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, @@ -138339,40 +137927,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [33391] = 7, + [32919] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3279), 1, - anon_sym_BANG, - ACTIONS(3281), 1, - anon_sym_COLON_COLON, - STATE(1533), 2, + STATE(1525), 2, sym_line_comment, sym_block_comment, - ACTIONS(3277), 17, + ACTIONS(3287), 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(3275), 22, + ACTIONS(3289), 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, @@ -138384,33 +137967,35 @@ 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_SQUOTE, anon_sym_as, - anon_sym_LT2, - [33451] = 7, + [32975] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3861), 1, - anon_sym_COLON_COLON, - ACTIONS(3927), 1, - anon_sym_BANG, - STATE(1534), 2, + ACTIONS(3368), 1, + anon_sym_LBRACE, + STATE(1526), 2, sym_line_comment, sym_block_comment, - ACTIONS(1416), 15, + ACTIONS(3299), 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, @@ -138420,11 +138005,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1418), 24, - anon_sym_SEMI, + ACTIONS(3301), 24, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -138444,26 +138028,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, - [33511] = 7, + [33033] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3247), 1, - anon_sym_BANG, - ACTIONS(3987), 1, - anon_sym_COLON_COLON, - STATE(1535), 2, + STATE(1527), 2, sym_line_comment, sym_block_comment, - ACTIONS(1416), 15, + ACTIONS(3275), 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, @@ -138473,7 +138055,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1418), 24, + ACTIONS(3277), 25, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, @@ -138496,17 +138078,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_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, - [33571] = 5, + [33089] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1536), 2, + STATE(1528), 2, sym_line_comment, sym_block_comment, - ACTIONS(3647), 10, + ACTIONS(3988), 10, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_STAR, @@ -138517,7 +138100,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_SQUOTE, sym_metavariable, - ACTIONS(3645), 31, + ACTIONS(3986), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -138549,25 +138132,24 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [33627] = 7, + [33145] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3653), 1, - anon_sym_BANG, - ACTIONS(3989), 1, - anon_sym_COLON_COLON, - STATE(1537), 2, + ACTIONS(3501), 1, + anon_sym_LBRACE, + STATE(1529), 2, sym_line_comment, sym_block_comment, - ACTIONS(3317), 15, + ACTIONS(3307), 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, @@ -138577,10 +138159,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3315), 24, + ACTIONS(3309), 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, @@ -138600,26 +138182,27 @@ 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, - [33687] = 6, + [33203] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3346), 1, - anon_sym_LBRACE, - STATE(1538), 2, + ACTIONS(3247), 1, + anon_sym_BANG, + ACTIONS(3990), 1, + anon_sym_COLON_COLON, + STATE(1530), 2, sym_line_comment, sym_block_comment, - ACTIONS(3311), 16, + ACTIONS(1406), 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, @@ -138629,10 +138212,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3313), 24, + ACTIONS(1408), 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, @@ -138652,17 +138235,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_SQUOTE, anon_sym_as, - [33745] = 5, + [33263] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1539), 2, + ACTIONS(3992), 1, + anon_sym_COLON_COLON, + STATE(1531), 2, sym_line_comment, sym_block_comment, - ACTIONS(3993), 10, + ACTIONS(3984), 9, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_STAR, @@ -138670,10 +138255,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_AMP, anon_sym_LT, - anon_sym_COLON_COLON, anon_sym_SQUOTE, sym_metavariable, - ACTIONS(3991), 31, + ACTIONS(3979), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -138705,125 +138289,77 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [33801] = 5, + [33321] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1540), 2, + ACTIONS(3941), 1, + anon_sym_LPAREN, + ACTIONS(3947), 1, + anon_sym_LT2, + STATE(1582), 1, + sym_type_arguments, + STATE(1589), 1, + sym_parameters, + STATE(1532), 2, sym_line_comment, sym_block_comment, - ACTIONS(3997), 10, - anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(3281), 17, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_EQ, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, - sym_metavariable, - ACTIONS(3995), 31, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [33857] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1541), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4001), 10, - anon_sym_LPAREN, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3279), 20, anon_sym_LBRACK, - anon_sym_STAR, + anon_sym_EQ_GT, anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, - sym_metavariable, - ACTIONS(3999), 31, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [33913] = 6, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_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, + [33385] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1386), 1, - sym_label, - STATE(1542), 2, + STATE(1533), 2, sym_line_comment, sym_block_comment, - ACTIONS(3342), 15, + ACTIONS(3307), 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, @@ -138833,7 +138369,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3340), 24, + ACTIONS(3309), 25, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, @@ -138856,68 +138392,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_SQUOTE, anon_sym_as, - [33970] = 25, + [33441] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1003), 1, - anon_sym_RBRACK, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3901), 1, + STATE(1534), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3299), 16, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3903), 1, + anon_sym_BANG, anon_sym_AMP, - ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, - anon_sym_EQ, - ACTIONS(4003), 1, - anon_sym_SEMI, - ACTIONS(4005), 1, - anon_sym_DOT_DOT, - ACTIONS(4009), 1, - anon_sym_COMMA, - STATE(2960), 1, - aux_sym_arguments_repeat1, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1543), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3899), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3929), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3301), 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, @@ -138928,19 +138437,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34065] = 7, + anon_sym_EQ_EQ, + 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, + [33497] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4011), 1, + STATE(1535), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3997), 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, - STATE(1647), 1, - sym_label, - STATE(1544), 2, + sym_metavariable, + ACTIONS(3995), 31, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, + anon_sym_union, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [33553] = 7, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(3631), 1, + anon_sym_COLON_COLON, + ACTIONS(3939), 1, + anon_sym_BANG, + STATE(1536), 2, sym_line_comment, sym_block_comment, - ACTIONS(3342), 15, + ACTIONS(1406), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138956,10 +138525,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3340), 23, + ACTIONS(1408), 24, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_EQ_GT, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -138980,32 +138550,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [34124] = 5, + [33613] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1545), 2, + ACTIONS(3307), 1, + anon_sym_BANG, + ACTIONS(3309), 1, + anon_sym_COLON_COLON, + STATE(1537), 2, sym_line_comment, sym_block_comment, - ACTIONS(3279), 16, + ACTIONS(3305), 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(3281), 24, + ACTIONS(3303), 22, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -139020,29 +138595,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, - [34179] = 7, + anon_sym_LT2, + [33673] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, ACTIONS(3941), 1, - anon_sym_BANG, - ACTIONS(4013), 1, - anon_sym_COLON_COLON, - STATE(1546), 2, + anon_sym_LPAREN, + ACTIONS(3947), 1, + anon_sym_LT2, + STATE(1582), 1, + sym_type_arguments, + STATE(1589), 1, + sym_parameters, + STATE(1538), 2, sym_line_comment, sym_block_comment, - ACTIONS(1416), 15, + ACTIONS(3269), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139053,13 +138630,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(1418), 23, - anon_sym_LPAREN, + ACTIONS(3267), 20, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, @@ -139073,41 +138651,44 @@ 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, - [34238] = 5, + [33737] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1547), 2, + ACTIONS(3299), 1, + anon_sym_BANG, + ACTIONS(3301), 1, + anon_sym_COLON_COLON, + STATE(1539), 2, sym_line_comment, sym_block_comment, - ACTIONS(3295), 16, + ACTIONS(3297), 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(3297), 24, + ACTIONS(3295), 22, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -139122,29 +138703,78 @@ 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, - [34293] = 7, + anon_sym_LT2, + [33797] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4015), 1, + STATE(1540), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4001), 10, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_QMARK, anon_sym_BANG, - ACTIONS(4017), 1, + anon_sym_AMP, + anon_sym_LT, anon_sym_COLON_COLON, - STATE(1548), 2, + anon_sym_SQUOTE, + sym_metavariable, + ACTIONS(3999), 31, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, + anon_sym_union, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [33853] = 7, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(3287), 1, + anon_sym_BANG, + ACTIONS(3289), 1, + anon_sym_COLON_COLON, + STATE(1541), 2, sym_line_comment, sym_block_comment, - ACTIONS(3317), 15, + ACTIONS(3285), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139155,12 +138785,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(3315), 23, + ACTIONS(3283), 22, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -139175,75 +138807,74 @@ 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, - [34352] = 25, + anon_sym_LT2, + [33913] = 25, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(955), 1, - anon_sym_RBRACK, - ACTIONS(3667), 1, + ACTIONS(3446), 1, + anon_sym_SQUOTE, + ACTIONS(3561), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3565), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3567), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3791), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(4007), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4009), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4011), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(4013), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4015), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4021), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4027), 1, anon_sym_DOT_DOT, - ACTIONS(4019), 1, - anon_sym_SEMI, - ACTIONS(4021), 1, - anon_sym_COMMA, - STATE(2774), 1, - aux_sym_arguments_repeat1, - ACTIONS(3897), 2, + STATE(381), 1, + sym_block, + STATE(3457), 1, + sym_label, + ACTIONS(4003), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4017), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4025), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4029), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1549), 2, + STATE(1542), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4005), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4023), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4019), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139254,21 +138885,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34447] = 5, + [34008] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1550), 2, + STATE(1543), 2, sym_line_comment, sym_block_comment, - ACTIONS(3463), 15, + ACTIONS(3307), 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, @@ -139278,10 +138910,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3461), 25, + ACTIONS(3309), 24, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -139304,66 +138935,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_as, - [34502] = 25, + [34063] = 25, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(1013), 1, + anon_sym_RBRACK, + ACTIONS(3561), 1, + anon_sym_LBRACK, + ACTIONS(3565), 1, + anon_sym_QMARK, + ACTIONS(3567), 1, + anon_sym_DOT, + ACTIONS(3791), 1, + anon_sym_as, + ACTIONS(3899), 1, + anon_sym_CARET, + ACTIONS(3901), 1, + anon_sym_AMP, + ACTIONS(3903), 1, + anon_sym_PIPE, + ACTIONS(3905), 1, + anon_sym_AMP_AMP, + ACTIONS(3907), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3913), 1, + anon_sym_EQ, + ACTIONS(4031), 1, + anon_sym_SEMI, + ACTIONS(4033), 1, + anon_sym_DOT_DOT, + ACTIONS(4037), 1, + anon_sym_COMMA, + STATE(2832), 1, + aux_sym_arguments_repeat1, + ACTIONS(3895), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3909), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3917), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4035), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1544), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3897), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3915), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3911), 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, + [34158] = 25, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1210), 1, + ACTIONS(338), 1, anon_sym_LBRACE, - ACTIONS(3344), 1, + ACTIONS(3446), 1, anon_sym_SQUOTE, - ACTIONS(3667), 1, + ACTIONS(3561), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3565), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3567), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3791), 1, anon_sym_as, - ACTIONS(4027), 1, + ACTIONS(4007), 1, anon_sym_CARET, - ACTIONS(4029), 1, + ACTIONS(4009), 1, anon_sym_AMP, - ACTIONS(4031), 1, + ACTIONS(4011), 1, anon_sym_PIPE, - ACTIONS(4033), 1, + ACTIONS(4013), 1, anon_sym_AMP_AMP, - ACTIONS(4035), 1, + ACTIONS(4015), 1, anon_sym_PIPE_PIPE, - ACTIONS(4041), 1, + ACTIONS(4021), 1, anon_sym_EQ, - ACTIONS(4047), 1, + ACTIONS(4027), 1, anon_sym_DOT_DOT, - STATE(469), 1, + STATE(1246), 1, sym_block, - STATE(3590), 1, + STATE(3547), 1, sym_label, - ACTIONS(4023), 2, + ACTIONS(4003), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4037), 2, + ACTIONS(4017), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4045), 2, + ACTIONS(4025), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4049), 2, + ACTIONS(4029), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1551), 2, + STATE(1545), 2, sym_line_comment, sym_block_comment, - ACTIONS(4025), 3, + ACTIONS(4005), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4043), 4, + ACTIONS(4023), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4039), 10, + ACTIONS(4019), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139374,24 +139075,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34597] = 6, + [34253] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3827), 2, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - STATE(1552), 2, + STATE(1546), 2, sym_line_comment, sym_block_comment, - ACTIONS(3545), 15, + ACTIONS(3299), 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, @@ -139401,7 +139100,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3543), 23, + ACTIONS(3301), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -139424,18 +139123,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, - [34654] = 6, + [34308] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3989), 1, - anon_sym_COLON_COLON, - STATE(1553), 2, + STATE(1547), 2, sym_line_comment, sym_block_comment, - ACTIONS(3317), 15, + ACTIONS(3416), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139451,10 +139149,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3315), 24, + ACTIONS(3414), 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, @@ -139474,21 +139173,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, - [34711] = 7, + [34363] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4051), 1, - anon_sym_else, - STATE(1766), 1, - sym_else_clause, - STATE(1554), 2, + ACTIONS(3859), 1, + anon_sym_COLON_COLON, + STATE(1548), 2, sym_line_comment, sym_block_comment, - ACTIONS(1196), 15, + ACTIONS(3821), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139504,10 +139201,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1194), 23, + ACTIONS(3817), 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, @@ -139527,67 +139224,68 @@ 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, - [34770] = 25, + [34420] = 25, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(915), 1, - anon_sym_RBRACK, - ACTIONS(3667), 1, + ACTIONS(3446), 1, + anon_sym_SQUOTE, + ACTIONS(3561), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3565), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3567), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3791), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(4007), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4009), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4011), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(4013), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4015), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4021), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4027), 1, anon_sym_DOT_DOT, - ACTIONS(4053), 1, - anon_sym_SEMI, - ACTIONS(4055), 1, - anon_sym_COMMA, - STATE(2777), 1, - aux_sym_arguments_repeat1, - ACTIONS(3897), 2, + STATE(396), 1, + sym_block, + STATE(3457), 1, + sym_label, + ACTIONS(4003), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4017), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4025), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4029), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1555), 2, + STATE(1549), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4005), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4023), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4019), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139598,15 +139296,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34865] = 5, + [34515] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1556), 2, + ACTIONS(3859), 2, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + STATE(1550), 2, sym_line_comment, sym_block_comment, - ACTIONS(3350), 15, + ACTIONS(3821), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139622,10 +139323,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3348), 25, + ACTIONS(3817), 23, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -139646,17 +139346,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_COLON_COLON, anon_sym_as, - [34920] = 5, + [34572] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1557), 2, + ACTIONS(4039), 1, + anon_sym_else, + STATE(1677), 1, + sym_else_clause, + STATE(1551), 2, sym_line_comment, sym_block_comment, - ACTIONS(3406), 15, + ACTIONS(1196), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139672,10 +139375,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3404), 25, + ACTIONS(1194), 23, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -139696,91 +139398,67 @@ 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, - [34975] = 6, + [34631] = 25, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4057), 1, - anon_sym_COLON_COLON, - STATE(1558), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1416), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(1212), 1, + anon_sym_LBRACE, + ACTIONS(3446), 1, + anon_sym_SQUOTE, + ACTIONS(3561), 1, + anon_sym_LBRACK, + ACTIONS(3565), 1, + anon_sym_QMARK, + ACTIONS(3567), 1, + anon_sym_DOT, + ACTIONS(3791), 1, + anon_sym_as, + ACTIONS(4007), 1, anon_sym_CARET, + ACTIONS(4009), 1, anon_sym_AMP, + ACTIONS(4011), 1, anon_sym_PIPE, + ACTIONS(4013), 1, + anon_sym_AMP_AMP, + ACTIONS(4015), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4021), 1, + anon_sym_EQ, + ACTIONS(4027), 1, + anon_sym_DOT_DOT, + STATE(466), 1, + sym_block, + STATE(3598), 1, + sym_label, + ACTIONS(4003), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4017), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4025), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1418), 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, + ACTIONS(4029), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, - anon_sym_as, - [35032] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1559), 2, + STATE(1552), 2, sym_line_comment, sym_block_comment, - ACTIONS(3410), 15, - anon_sym_PLUS, + ACTIONS(4005), 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(3408), 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, + ACTIONS(4023), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4019), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139791,74 +139469,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_COLON_COLON, - anon_sym_as, - [35087] = 25, - ACTIONS(19), 1, - anon_sym_LBRACE, + [34726] = 25, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(3667), 1, + ACTIONS(873), 1, + anon_sym_RBRACK, + ACTIONS(3561), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3565), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3567), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3791), 1, anon_sym_as, - ACTIONS(4027), 1, + ACTIONS(3899), 1, anon_sym_CARET, - ACTIONS(4029), 1, + ACTIONS(3901), 1, anon_sym_AMP, - ACTIONS(4031), 1, + ACTIONS(3903), 1, anon_sym_PIPE, - ACTIONS(4033), 1, + ACTIONS(3905), 1, anon_sym_AMP_AMP, - ACTIONS(4035), 1, + ACTIONS(3907), 1, anon_sym_PIPE_PIPE, - ACTIONS(4041), 1, + ACTIONS(3913), 1, anon_sym_EQ, - ACTIONS(4047), 1, + ACTIONS(4033), 1, anon_sym_DOT_DOT, - STATE(376), 1, - sym_block, - STATE(3510), 1, - sym_label, - ACTIONS(4023), 2, + ACTIONS(4041), 1, + anon_sym_SEMI, + ACTIONS(4043), 1, + anon_sym_COMMA, + STATE(2783), 1, + aux_sym_arguments_repeat1, + ACTIONS(3895), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4037), 2, + ACTIONS(3909), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4045), 2, + ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4049), 2, + ACTIONS(4035), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1560), 2, + STATE(1553), 2, sym_line_comment, sym_block_comment, - ACTIONS(4025), 3, + ACTIONS(3897), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4043), 4, + ACTIONS(3915), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4039), 10, + ACTIONS(3911), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139869,15 +139539,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35182] = 5, + [34821] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1561), 2, + STATE(1554), 2, sym_line_comment, sym_block_comment, - ACTIONS(3271), 16, + ACTIONS(3275), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139894,7 +139564,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3273), 24, + ACTIONS(3277), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -139919,66 +139589,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_as, - [35237] = 25, + [34876] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, - anon_sym_LBRACE, - ACTIONS(3344), 1, + ACTIONS(4045), 1, anon_sym_SQUOTE, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(4027), 1, - anon_sym_CARET, - ACTIONS(4029), 1, - anon_sym_AMP, - ACTIONS(4031), 1, - anon_sym_PIPE, - ACTIONS(4033), 1, - anon_sym_AMP_AMP, - ACTIONS(4035), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4041), 1, - anon_sym_EQ, - ACTIONS(4047), 1, - anon_sym_DOT_DOT, - STATE(1127), 1, - sym_block, - STATE(3539), 1, + STATE(1737), 1, sym_label, - ACTIONS(4023), 2, + STATE(1555), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3444), 15, anon_sym_PLUS, + anon_sym_STAR, anon_sym_DASH, - ACTIONS(4037), 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(4045), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4049), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1562), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4025), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4043), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4039), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3442), 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, @@ -139989,66 +139634,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35332] = 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, + [34935] = 25, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(400), 1, + ACTIONS(1212), 1, anon_sym_LBRACE, - ACTIONS(3344), 1, + ACTIONS(3446), 1, anon_sym_SQUOTE, - ACTIONS(3667), 1, + ACTIONS(3561), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3565), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3567), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3791), 1, anon_sym_as, - ACTIONS(4027), 1, + ACTIONS(4007), 1, anon_sym_CARET, - ACTIONS(4029), 1, + ACTIONS(4009), 1, anon_sym_AMP, - ACTIONS(4031), 1, + ACTIONS(4011), 1, anon_sym_PIPE, - ACTIONS(4033), 1, + ACTIONS(4013), 1, anon_sym_AMP_AMP, - ACTIONS(4035), 1, + ACTIONS(4015), 1, anon_sym_PIPE_PIPE, - ACTIONS(4041), 1, + ACTIONS(4021), 1, anon_sym_EQ, - ACTIONS(4047), 1, + ACTIONS(4027), 1, anon_sym_DOT_DOT, - STATE(1777), 1, + STATE(465), 1, sym_block, - STATE(3591), 1, + STATE(3598), 1, sym_label, - ACTIONS(4023), 2, + ACTIONS(4003), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4037), 2, + ACTIONS(4017), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4045), 2, + ACTIONS(4025), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4049), 2, + ACTIONS(4029), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1563), 2, + STATE(1556), 2, sym_line_comment, sym_block_comment, - ACTIONS(4025), 3, + ACTIONS(4005), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4043), 4, + ACTIONS(4023), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4039), 10, + ACTIONS(4019), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140059,22 +139711,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35427] = 5, + [35030] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1564), 2, + ACTIONS(3819), 1, + anon_sym_COLON_COLON, + STATE(1557), 2, sym_line_comment, sym_block_comment, - ACTIONS(3311), 16, + ACTIONS(3821), 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, @@ -140084,10 +139737,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3313), 24, + ACTIONS(3817), 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, @@ -140107,19 +139760,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_COLON_COLON, + anon_sym_SQUOTE, anon_sym_as, - [35482] = 6, + [35087] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3863), 1, + ACTIONS(3819), 2, + anon_sym_LBRACE, anon_sym_COLON_COLON, - STATE(1565), 2, + STATE(1558), 2, sym_line_comment, sym_block_comment, - ACTIONS(3545), 15, + ACTIONS(3821), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140135,10 +139789,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3543), 24, + ACTIONS(3817), 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, @@ -140158,68 +139812,67 @@ 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, - [35539] = 25, + [35144] = 25, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, ACTIONS(400), 1, anon_sym_LBRACE, - ACTIONS(3344), 1, + ACTIONS(3446), 1, anon_sym_SQUOTE, - ACTIONS(3667), 1, + ACTIONS(3561), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3565), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3567), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3791), 1, anon_sym_as, - ACTIONS(4027), 1, + ACTIONS(4007), 1, anon_sym_CARET, - ACTIONS(4029), 1, + ACTIONS(4009), 1, anon_sym_AMP, - ACTIONS(4031), 1, + ACTIONS(4011), 1, anon_sym_PIPE, - ACTIONS(4033), 1, + ACTIONS(4013), 1, anon_sym_AMP_AMP, - ACTIONS(4035), 1, + ACTIONS(4015), 1, anon_sym_PIPE_PIPE, - ACTIONS(4041), 1, + ACTIONS(4021), 1, anon_sym_EQ, - ACTIONS(4047), 1, + ACTIONS(4027), 1, anon_sym_DOT_DOT, - STATE(1772), 1, + STATE(1775), 1, sym_block, - STATE(3591), 1, + STATE(3599), 1, sym_label, - ACTIONS(4023), 2, + ACTIONS(4003), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4037), 2, + ACTIONS(4017), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4045), 2, + ACTIONS(4025), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4049), 2, + ACTIONS(4029), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1566), 2, + STATE(1559), 2, sym_line_comment, sym_block_comment, - ACTIONS(4025), 3, + ACTIONS(4005), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4043), 4, + ACTIONS(4023), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4039), 10, + ACTIONS(4019), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140230,66 +139883,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35634] = 25, - ACTIONS(19), 1, - anon_sym_LBRACE, + [35239] = 25, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(3667), 1, + ACTIONS(1019), 1, + anon_sym_RBRACK, + ACTIONS(3561), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3565), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3567), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3791), 1, anon_sym_as, - ACTIONS(4027), 1, + ACTIONS(3899), 1, anon_sym_CARET, - ACTIONS(4029), 1, + ACTIONS(3901), 1, anon_sym_AMP, - ACTIONS(4031), 1, + ACTIONS(3903), 1, anon_sym_PIPE, - ACTIONS(4033), 1, + ACTIONS(3905), 1, anon_sym_AMP_AMP, - ACTIONS(4035), 1, + ACTIONS(3907), 1, anon_sym_PIPE_PIPE, - ACTIONS(4041), 1, + ACTIONS(3913), 1, anon_sym_EQ, - ACTIONS(4047), 1, + ACTIONS(4033), 1, anon_sym_DOT_DOT, - STATE(394), 1, - sym_block, - STATE(3510), 1, - sym_label, - ACTIONS(4023), 2, + ACTIONS(4047), 1, + anon_sym_SEMI, + ACTIONS(4049), 1, + anon_sym_COMMA, + STATE(2770), 1, + aux_sym_arguments_repeat1, + ACTIONS(3895), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4037), 2, + ACTIONS(3909), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4045), 2, + ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4049), 2, + ACTIONS(4035), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1567), 2, + STATE(1560), 2, sym_line_comment, sym_block_comment, - ACTIONS(4025), 3, + ACTIONS(3897), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4043), 4, + ACTIONS(3915), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4039), 10, + ACTIONS(3911), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140300,18 +139953,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35729] = 6, + [35334] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3863), 2, - anon_sym_LBRACE, + ACTIONS(4051), 1, anon_sym_COLON_COLON, - STATE(1568), 2, + STATE(1561), 2, sym_line_comment, sym_block_comment, - ACTIONS(3545), 15, + ACTIONS(1406), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140327,10 +139979,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3543), 23, + ACTIONS(1408), 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, @@ -140350,58 +140002,59 @@ 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, - [35786] = 25, + [35391] = 25, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1035), 1, + ACTIONS(953), 1, anon_sym_RBRACK, - ACTIONS(3667), 1, + ACTIONS(3561), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3565), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3567), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3791), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(3899), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(3901), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3903), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3905), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3907), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(3913), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4033), 1, anon_sym_DOT_DOT, - ACTIONS(4059), 1, + ACTIONS(4053), 1, anon_sym_SEMI, - ACTIONS(4061), 1, + ACTIONS(4055), 1, anon_sym_COMMA, - STATE(2788), 1, + STATE(2784), 1, aux_sym_arguments_repeat1, - ACTIONS(3897), 2, + ACTIONS(3895), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3909), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4035), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1569), 2, + STATE(1562), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3897), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -140410,7 +140063,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(3911), 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, + [35486] = 6, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1405), 1, + sym_label, + STATE(1563), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3444), 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(3442), 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, + anon_sym_SQUOTE, + anon_sym_as, + [35543] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1564), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3450), 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(3448), 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, @@ -140421,17 +140167,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35881] = 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, + [35598] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3827), 1, - anon_sym_COLON_COLON, - STATE(1570), 2, + STATE(1565), 2, sym_line_comment, sym_block_comment, - ACTIONS(3545), 15, + ACTIONS(3420), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140447,10 +140199,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3543), 24, + ACTIONS(3418), 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, @@ -140470,68 +140223,68 @@ 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, - [35938] = 25, + [35653] = 25, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, + ACTIONS(400), 1, anon_sym_LBRACE, - ACTIONS(3344), 1, + ACTIONS(3446), 1, anon_sym_SQUOTE, - ACTIONS(3667), 1, + ACTIONS(3561), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3565), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3567), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3791), 1, anon_sym_as, - ACTIONS(4027), 1, + ACTIONS(4007), 1, anon_sym_CARET, - ACTIONS(4029), 1, + ACTIONS(4009), 1, anon_sym_AMP, - ACTIONS(4031), 1, + ACTIONS(4011), 1, anon_sym_PIPE, - ACTIONS(4033), 1, + ACTIONS(4013), 1, anon_sym_AMP_AMP, - ACTIONS(4035), 1, + ACTIONS(4015), 1, anon_sym_PIPE_PIPE, - ACTIONS(4041), 1, + ACTIONS(4021), 1, anon_sym_EQ, - ACTIONS(4047), 1, + ACTIONS(4027), 1, anon_sym_DOT_DOT, - STATE(1319), 1, + STATE(1800), 1, sym_block, - STATE(3539), 1, + STATE(3599), 1, sym_label, - ACTIONS(4023), 2, + ACTIONS(4003), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4037), 2, + ACTIONS(4017), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4045), 2, + ACTIONS(4025), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4049), 2, + ACTIONS(4029), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1571), 2, + STATE(1566), 2, sym_line_comment, sym_block_comment, - ACTIONS(4025), 3, + ACTIONS(4005), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4043), 4, + ACTIONS(4023), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4039), 10, + ACTIONS(4019), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140542,66 +140295,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36033] = 25, + [35748] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1210), 1, - anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(4027), 1, + ACTIONS(3977), 1, + anon_sym_COLON_COLON, + STATE(1567), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3328), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4029), 1, anon_sym_AMP, - ACTIONS(4031), 1, anon_sym_PIPE, - ACTIONS(4033), 1, - anon_sym_AMP_AMP, - ACTIONS(4035), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4041), 1, - anon_sym_EQ, - ACTIONS(4047), 1, - anon_sym_DOT_DOT, - STATE(453), 1, - sym_block, - STATE(3590), 1, - sym_label, - ACTIONS(4023), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4037), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4045), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4049), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1572), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4025), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4043), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4039), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3326), 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, @@ -140612,62 +140338,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36128] = 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, + anon_sym_as, + [35805] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(4027), 1, + ACTIONS(3943), 1, + anon_sym_BANG, + ACTIONS(4057), 1, + anon_sym_COLON_COLON, + STATE(1568), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1406), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4029), 1, anon_sym_AMP, - ACTIONS(4031), 1, anon_sym_PIPE, - ACTIONS(4033), 1, - anon_sym_AMP_AMP, - ACTIONS(4035), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4041), 1, - anon_sym_EQ, - ACTIONS(4063), 1, - anon_sym_DOT_DOT, - ACTIONS(4023), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4037), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4045), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4065), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1573), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3771), 3, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1408), 23, anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_SQUOTE, - ACTIONS(4025), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4043), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4039), 10, + 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, @@ -140678,64 +140391,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36216] = 24, + anon_sym_EQ_EQ, + 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, + [35864] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1005), 1, - anon_sym_RPAREN, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(4059), 1, + anon_sym_BANG, + ACTIONS(4061), 1, + anon_sym_COLON_COLON, + STATE(1569), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3328), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3903), 1, anon_sym_AMP, - ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, - anon_sym_EQ, - ACTIONS(4005), 1, - anon_sym_DOT_DOT, - ACTIONS(4067), 1, - anon_sym_COMMA, - STATE(2790), 1, - aux_sym_arguments_repeat1, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1574), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3899), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3929), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3326), 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, @@ -140746,60 +140443,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36308] = 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, + [35923] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3935), 1, - anon_sym_EQ, - ACTIONS(4027), 1, + STATE(1570), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3287), 16, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4029), 1, + anon_sym_BANG, anon_sym_AMP, - ACTIONS(4031), 1, anon_sym_PIPE, - ACTIONS(4033), 1, - anon_sym_AMP_AMP, - ACTIONS(4035), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4063), 1, - anon_sym_DOT_DOT, - ACTIONS(4023), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4037), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4045), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4065), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1575), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4025), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4043), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3933), 13, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3289), 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, @@ -140810,65 +140492,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_SQUOTE, - [36394] = 24, + anon_sym_EQ_EQ, + 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, + [35978] = 25, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1007), 1, - anon_sym_RBRACK, - ACTIONS(3667), 1, + ACTIONS(338), 1, + anon_sym_LBRACE, + ACTIONS(3446), 1, + anon_sym_SQUOTE, + ACTIONS(3561), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3565), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3567), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3791), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(4007), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4009), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4011), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(4013), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4015), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4021), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4027), 1, anon_sym_DOT_DOT, - ACTIONS(4069), 1, - anon_sym_COMMA, - STATE(2849), 1, - aux_sym_arguments_repeat1, - ACTIONS(3897), 2, + STATE(1117), 1, + sym_block, + STATE(3547), 1, + sym_label, + ACTIONS(4003), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4017), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4025), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4029), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1576), 2, + STATE(1571), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4005), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4023), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4019), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140879,60 +140570,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36486] = 21, + [36073] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3957), 1, - anon_sym_EQ, - ACTIONS(4027), 1, + STATE(1572), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3484), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4029), 1, anon_sym_AMP, - ACTIONS(4031), 1, anon_sym_PIPE, - ACTIONS(4033), 1, - anon_sym_AMP_AMP, - ACTIONS(4035), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4063), 1, - anon_sym_DOT_DOT, - ACTIONS(4023), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4037), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4045), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4065), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1577), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4025), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4043), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3955), 13, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3482), 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, @@ -140943,65 +140612,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_SQUOTE, - [36572] = 24, + anon_sym_EQ_EQ, + 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, + [36128] = 17, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(983), 1, - anon_sym_RBRACK, - ACTIONS(3667), 1, + ACTIONS(3561), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3565), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3567), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3791), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(4007), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4009), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4011), 1, anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(3789), 2, anon_sym_EQ, - ACTIONS(4005), 1, anon_sym_DOT_DOT, - ACTIONS(4071), 1, - anon_sym_COMMA, - STATE(2898), 1, - aux_sym_arguments_repeat1, - ACTIONS(3897), 2, + ACTIONS(4003), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4017), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4025), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1578), 2, + STATE(1573), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4005), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4023), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(3787), 17, + 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, @@ -141012,56 +140678,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36664] = 19, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, + [36206] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(4027), 1, + STATE(1574), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3273), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4029), 1, anon_sym_AMP, - ACTIONS(4031), 1, anon_sym_PIPE, - ACTIONS(4033), 1, - anon_sym_AMP_AMP, - ACTIONS(4035), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3913), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(4023), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4037), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4045), 2, + anon_sym_LT_LT_EQ, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - STATE(1579), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4025), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4043), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3895), 15, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3271), 22, 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, @@ -141070,48 +140722,45 @@ 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_SQUOTE, - [36746] = 12, + anon_sym_as, + anon_sym_LT2, + [36260] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(4023), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4037), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1580), 2, + ACTIONS(4063), 1, + anon_sym_DASH_GT, + STATE(1575), 2, sym_line_comment, sym_block_comment, - ACTIONS(4025), 3, + ACTIONS(3539), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3669), 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(3665), 21, + ACTIONS(3537), 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, @@ -141130,16 +140779,16 @@ 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, - [36814] = 5, + anon_sym_as, + [36316] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1581), 2, + STATE(1576), 2, sym_line_comment, sym_block_comment, - ACTIONS(3354), 15, + ACTIONS(3454), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141155,7 +140804,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3352), 24, + ACTIONS(3452), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -141180,15 +140829,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_as, - [36868] = 5, + [36370] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1582), 2, + STATE(1577), 2, sym_line_comment, sym_block_comment, - ACTIONS(3459), 15, + ACTIONS(3432), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141204,7 +140853,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3457), 24, + ACTIONS(3430), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -141229,15 +140878,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_as, - [36922] = 5, + [36424] = 21, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1583), 2, + ACTIONS(3561), 1, + anon_sym_LBRACK, + ACTIONS(3565), 1, + anon_sym_QMARK, + ACTIONS(3567), 1, + anon_sym_DOT, + ACTIONS(3791), 1, + anon_sym_as, + ACTIONS(3933), 1, + anon_sym_EQ, + ACTIONS(4007), 1, + anon_sym_CARET, + ACTIONS(4009), 1, + anon_sym_AMP, + ACTIONS(4011), 1, + anon_sym_PIPE, + ACTIONS(4013), 1, + anon_sym_AMP_AMP, + ACTIONS(4015), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4065), 1, + anon_sym_DOT_DOT, + ACTIONS(4003), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4017), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4025), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4067), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1578), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4005), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4023), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3931), 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, + [36510] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1579), 2, sym_line_comment, sym_block_comment, - ACTIONS(3471), 15, + ACTIONS(1238), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141253,7 +140967,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3469), 24, + ACTIONS(1236), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -141276,37 +140990,48 @@ 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, - [36976] = 5, + anon_sym_else, + [36564] = 15, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1584), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3338), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3561), 1, + anon_sym_LBRACK, + ACTIONS(3565), 1, + anon_sym_QMARK, + ACTIONS(3567), 1, + anon_sym_DOT, + ACTIONS(3791), 1, + anon_sym_as, + ACTIONS(4007), 1, anon_sym_CARET, + ACTIONS(4009), 1, anon_sym_AMP, + ACTIONS(4011), 1, anon_sym_PIPE, + ACTIONS(4003), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4017), 2, anon_sym_LT_LT, anon_sym_GT_GT, + STATE(1580), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4005), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3789), 4, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3336), 24, + ACTIONS(3787), 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, @@ -141325,64 +141050,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_DASH_GT, - anon_sym_as, - [37030] = 22, + anon_sym_SQUOTE, + [36638] = 21, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3561), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3565), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3567), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3791), 1, anon_sym_as, - ACTIONS(4027), 1, + ACTIONS(3961), 1, + anon_sym_EQ, + ACTIONS(4007), 1, anon_sym_CARET, - ACTIONS(4029), 1, + ACTIONS(4009), 1, anon_sym_AMP, - ACTIONS(4031), 1, + ACTIONS(4011), 1, anon_sym_PIPE, - ACTIONS(4033), 1, + ACTIONS(4013), 1, anon_sym_AMP_AMP, - ACTIONS(4035), 1, + ACTIONS(4015), 1, anon_sym_PIPE_PIPE, - ACTIONS(4041), 1, - anon_sym_EQ, - ACTIONS(4063), 1, + ACTIONS(4065), 1, anon_sym_DOT_DOT, - ACTIONS(4023), 2, + ACTIONS(4003), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4037), 2, + ACTIONS(4017), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4045), 2, + ACTIONS(4025), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4065), 2, + ACTIONS(4067), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1585), 2, + STATE(1581), 2, sym_line_comment, sym_block_comment, - ACTIONS(3739), 3, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_SQUOTE, - ACTIONS(4025), 3, + ACTIONS(4005), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4043), 4, + ACTIONS(4023), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4039), 10, + ACTIONS(3959), 13, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141393,15 +141115,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37118] = 5, + anon_sym_SQUOTE, + [36724] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1586), 2, + STATE(1582), 2, sym_line_comment, sym_block_comment, - ACTIONS(3309), 17, + ACTIONS(3458), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141412,14 +141135,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(3307), 22, + ACTIONS(3456), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -141434,23 +141155,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, - anon_sym_LT2, - [37172] = 5, + [36778] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1587), 2, + ACTIONS(4069), 1, + anon_sym_COLON_COLON, + STATE(1583), 2, sym_line_comment, sym_block_comment, - ACTIONS(1242), 15, + ACTIONS(1406), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141466,7 +141191,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1240), 24, + ACTIONS(1408), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -141490,48 +141215,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - anon_sym_else, - [37226] = 14, + [36834] = 21, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3561), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3565), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3567), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3791), 1, anon_sym_as, - ACTIONS(4027), 1, + ACTIONS(3957), 1, + anon_sym_EQ, + ACTIONS(4007), 1, anon_sym_CARET, - ACTIONS(4029), 1, + ACTIONS(4009), 1, anon_sym_AMP, - ACTIONS(4023), 2, + ACTIONS(4011), 1, + anon_sym_PIPE, + ACTIONS(4013), 1, + anon_sym_AMP_AMP, + ACTIONS(4015), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4065), 1, + anon_sym_DOT_DOT, + ACTIONS(4003), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4037), 2, + ACTIONS(4017), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1588), 2, + ACTIONS(4025), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4067), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1584), 2, sym_line_comment, sym_block_comment, - ACTIONS(4025), 3, + ACTIONS(4005), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3669), 5, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3665), 21, + ACTIONS(4023), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3955), 13, 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, @@ -141542,71 +141279,45 @@ 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, - [37298] = 24, + [36920] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1009), 1, - anon_sym_RPAREN, - ACTIONS(3667), 1, + ACTIONS(3561), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3565), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3567), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3791), 1, anon_sym_as, - ACTIONS(3901), 1, - anon_sym_CARET, - ACTIONS(3903), 1, - anon_sym_AMP, - ACTIONS(3905), 1, - anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, - anon_sym_EQ, - ACTIONS(4005), 1, - anon_sym_DOT_DOT, - ACTIONS(4073), 1, - anon_sym_COMMA, - STATE(2944), 1, - aux_sym_arguments_repeat1, - ACTIONS(3897), 2, + ACTIONS(4003), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3917), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4007), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1589), 2, + STATE(1585), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4005), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(3789), 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(3787), 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, @@ -141617,53 +141328,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37390] = 17, + anon_sym_EQ_EQ, + 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, + [36986] = 18, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3561), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3565), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3567), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3791), 1, anon_sym_as, - ACTIONS(4027), 1, + ACTIONS(4007), 1, anon_sym_CARET, - ACTIONS(4029), 1, + ACTIONS(4009), 1, anon_sym_AMP, - ACTIONS(4031), 1, + ACTIONS(4011), 1, anon_sym_PIPE, - ACTIONS(3669), 2, + ACTIONS(4013), 1, + anon_sym_AMP_AMP, + ACTIONS(3789), 2, anon_sym_EQ, anon_sym_DOT_DOT, - ACTIONS(4023), 2, + ACTIONS(4003), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4037), 2, + ACTIONS(4017), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4045), 2, + ACTIONS(4025), 2, anon_sym_GT, anon_sym_LT, - STATE(1590), 2, + STATE(1586), 2, sym_line_comment, sym_block_comment, - ACTIONS(4025), 3, + ACTIONS(4005), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4043), 4, + ACTIONS(4023), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3665), 17, + ACTIONS(3787), 16, anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -141678,105 +141397,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_SQUOTE, - [37468] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4017), 1, - anon_sym_COLON_COLON, - STATE(1591), 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(3315), 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, - [37524] = 22, + [37066] = 22, ACTIONS(29), 1, anon_sym_LT, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1298), 1, + ACTIONS(1310), 1, anon_sym_extern, - ACTIONS(3487), 1, + ACTIONS(3356), 1, anon_sym_COLON_COLON, - ACTIONS(3491), 1, + ACTIONS(3360), 1, anon_sym_union, - ACTIONS(3497), 1, + ACTIONS(3366), 1, sym_metavariable, - ACTIONS(3503), 1, + ACTIONS(3474), 1, anon_sym_default, - ACTIONS(4075), 1, + ACTIONS(4071), 1, sym_identifier, - ACTIONS(4077), 1, + ACTIONS(4073), 1, anon_sym_fn, - STATE(2206), 1, + STATE(2220), 1, aux_sym_function_modifiers_repeat1, - STATE(2320), 1, + STATE(2321), 1, sym_extern_modifier, - STATE(2509), 1, + STATE(2709), 1, sym_scoped_type_identifier, - STATE(3340), 1, - sym_generic_type_with_turbofish, - STATE(3370), 1, + STATE(3334), 1, sym_function_modifiers, - STATE(3385), 1, + STATE(3341), 1, + sym_generic_type_with_turbofish, + STATE(3362), 1, sym_scoped_identifier, - STATE(3403), 1, - sym_generic_type, - STATE(3469), 1, + STATE(3476), 1, sym_bracketed_type, - STATE(1592), 2, + STATE(3487), 1, + sym_generic_type, + STATE(1587), 2, sym_line_comment, sym_block_comment, - ACTIONS(1284), 3, + ACTIONS(1296), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(3495), 3, + ACTIONS(3364), 3, sym_self, sym_super, sym_crate, - ACTIONS(3501), 17, + ACTIONS(3472), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -141794,79 +141463,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [37612] = 18, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(4027), 1, - anon_sym_CARET, - ACTIONS(4029), 1, - anon_sym_AMP, - ACTIONS(4031), 1, - anon_sym_PIPE, - ACTIONS(4033), 1, - anon_sym_AMP_AMP, - ACTIONS(3669), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(4023), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4037), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4045), 2, - anon_sym_GT, - anon_sym_LT, - STATE(1593), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4025), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4043), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3665), 16, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - 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_SQUOTE, - [37692] = 6, + [37154] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4079), 1, - anon_sym_DASH_GT, - STATE(1594), 2, + STATE(1588), 2, sym_line_comment, sym_block_comment, - ACTIONS(3414), 15, + ACTIONS(1234), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141882,7 +141487,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3412), 23, + ACTIONS(1232), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -141906,15 +141511,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [37748] = 5, + anon_sym_else, + [37208] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1595), 2, + ACTIONS(4075), 1, + anon_sym_DASH_GT, + STATE(1589), 2, sym_line_comment, sym_block_comment, - ACTIONS(1208), 15, + ACTIONS(3374), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141930,7 +141538,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1206), 24, + ACTIONS(3372), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -141954,18 +141562,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - anon_sym_else, - [37802] = 6, + [37264] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4081), 1, - anon_sym_COLON_COLON, - STATE(1596), 2, + ACTIONS(4077), 1, + anon_sym_LPAREN, + STATE(1752), 1, + sym_arguments, + STATE(1590), 2, sym_line_comment, sym_block_comment, - ACTIONS(3301), 15, + ACTIONS(3426), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141981,8 +141590,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3299), 23, - anon_sym_LPAREN, + ACTIONS(3422), 22, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, @@ -142005,17 +141613,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [37858] = 6, + [37322] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4083), 1, + ACTIONS(4079), 1, anon_sym_COLON_COLON, - STATE(1597), 2, + STATE(1591), 2, sym_line_comment, sym_block_comment, - ACTIONS(3289), 15, + ACTIONS(3293), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142031,7 +141639,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3287), 23, + ACTIONS(3291), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -142055,17 +141663,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [37914] = 6, + [37378] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4085), 1, - anon_sym_DASH_GT, - STATE(1598), 2, + ACTIONS(4081), 1, + anon_sym_COLON_COLON, + STATE(1592), 2, sym_line_comment, sym_block_comment, - ACTIONS(3523), 15, + ACTIONS(1406), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142081,7 +141689,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3521), 23, + ACTIONS(1408), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -142105,15 +141713,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [37970] = 5, + [37434] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1599), 2, + ACTIONS(4083), 1, + anon_sym_DASH_GT, + STATE(1593), 2, sym_line_comment, sym_block_comment, - ACTIONS(3402), 15, + ACTIONS(3380), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142129,7 +141739,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3400), 24, + ACTIONS(3378), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -142152,19 +141762,16 @@ 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, - [38024] = 6, + [37490] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4083), 1, - anon_sym_COLON_COLON, - STATE(1600), 2, + STATE(1594), 2, sym_line_comment, sym_block_comment, - ACTIONS(3305), 15, + ACTIONS(3493), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142180,7 +141787,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3303), 23, + ACTIONS(3491), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -142203,61 +141810,66 @@ 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, - [38080] = 21, + [37544] = 24, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(342), 1, - anon_sym_EQ, - ACTIONS(3667), 1, + ACTIONS(3561), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3565), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3567), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3791), 1, anon_sym_as, - ACTIONS(4027), 1, + ACTIONS(3899), 1, anon_sym_CARET, - ACTIONS(4029), 1, + ACTIONS(3901), 1, anon_sym_AMP, - ACTIONS(4031), 1, + ACTIONS(3903), 1, anon_sym_PIPE, - ACTIONS(4033), 1, + ACTIONS(3905), 1, anon_sym_AMP_AMP, - ACTIONS(4035), 1, + ACTIONS(3907), 1, anon_sym_PIPE_PIPE, - ACTIONS(4063), 1, + ACTIONS(3913), 1, + anon_sym_EQ, + ACTIONS(4033), 1, anon_sym_DOT_DOT, - ACTIONS(4023), 2, + ACTIONS(4085), 1, + anon_sym_RPAREN, + ACTIONS(4087), 1, + anon_sym_COMMA, + STATE(2957), 1, + aux_sym_arguments_repeat1, + ACTIONS(3895), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4037), 2, + ACTIONS(3909), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4045), 2, + ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4065), 2, + ACTIONS(4035), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1601), 2, + STATE(1595), 2, sym_line_comment, sym_block_comment, - ACTIONS(4025), 3, + ACTIONS(3897), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4043), 4, + ACTIONS(3915), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(336), 13, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(3911), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142268,40 +141880,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_SQUOTE, - [38166] = 6, + [37636] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4087), 1, - anon_sym_DASH_GT, - STATE(1602), 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, + ACTIONS(3561), 1, + anon_sym_LBRACK, + ACTIONS(3565), 1, + anon_sym_QMARK, + ACTIONS(3567), 1, + anon_sym_DOT, + ACTIONS(3791), 1, + anon_sym_as, + ACTIONS(4007), 1, anon_sym_CARET, + ACTIONS(4009), 1, anon_sym_AMP, + ACTIONS(4011), 1, anon_sym_PIPE, + ACTIONS(4013), 1, + anon_sym_AMP_AMP, + ACTIONS(4015), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4021), 1, + anon_sym_EQ, + ACTIONS(4065), 1, + anon_sym_DOT_DOT, + ACTIONS(4003), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4017), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4025), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3533), 23, + ACTIONS(4067), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1596), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3689), 3, 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_SQUOTE, + ACTIONS(4005), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4023), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4019), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142312,42 +141946,45 @@ 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, - [38222] = 5, + [37724] = 14, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1603), 2, + ACTIONS(3561), 1, + anon_sym_LBRACK, + ACTIONS(3565), 1, + anon_sym_QMARK, + ACTIONS(3567), 1, + anon_sym_DOT, + ACTIONS(3791), 1, + anon_sym_as, + ACTIONS(4007), 1, + anon_sym_CARET, + ACTIONS(4009), 1, + anon_sym_AMP, + ACTIONS(4003), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4017), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1597), 2, sym_line_comment, sym_block_comment, - ACTIONS(1234), 15, - anon_sym_PLUS, + ACTIONS(4005), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(3789), 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(1232), 24, + ACTIONS(3787), 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, @@ -142366,21 +142003,16 @@ 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, - anon_sym_else, - [38276] = 7, + anon_sym_SQUOTE, + [37796] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4089), 1, - anon_sym_LPAREN, - STATE(1652), 1, - sym_arguments, - STATE(1604), 2, + STATE(1598), 2, sym_line_comment, sym_block_comment, - ACTIONS(3396), 15, + ACTIONS(3480), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142396,7 +142028,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3392), 22, + ACTIONS(3478), 24, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, @@ -142418,16 +142051,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, - [38334] = 5, + [37850] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1605), 2, + STATE(1599), 2, sym_line_comment, sym_block_comment, - ACTIONS(3445), 15, + ACTIONS(3464), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142443,7 +142077,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3443), 24, + ACTIONS(3462), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -142466,32 +142100,90 @@ 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_COLON_COLON, anon_sym_as, - [38388] = 11, + [37904] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3561), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3565), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3567), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3791), 1, anon_sym_as, - ACTIONS(4023), 2, + ACTIONS(4007), 1, + anon_sym_CARET, + ACTIONS(4009), 1, + anon_sym_AMP, + ACTIONS(4011), 1, + anon_sym_PIPE, + ACTIONS(4013), 1, + anon_sym_AMP_AMP, + ACTIONS(4015), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4021), 1, + anon_sym_EQ, + ACTIONS(4065), 1, + anon_sym_DOT_DOT, + ACTIONS(4003), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1606), 2, + ACTIONS(4017), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4025), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4067), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1600), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3617), 3, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_SQUOTE, + ACTIONS(4005), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4023), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4019), 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, + [37992] = 6, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(4061), 1, + anon_sym_COLON_COLON, + STATE(1601), 2, sym_line_comment, sym_block_comment, - ACTIONS(4025), 3, + ACTIONS(3328), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3669), 9, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -142500,10 +142192,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(3665), 21, + ACTIONS(3326), 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, @@ -142522,63 +142217,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, - [38454] = 22, + anon_sym_as, + [38048] = 19, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3561), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3565), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3567), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3791), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(4007), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4009), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4011), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(4013), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4015), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(3965), 2, anon_sym_EQ, - ACTIONS(4005), 1, anon_sym_DOT_DOT, - ACTIONS(3897), 2, + ACTIONS(4003), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4017), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4025), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1607), 2, + STATE(1602), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4005), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4091), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(3915), 4, + ACTIONS(4023), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(3963), 15, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142589,17 +142278,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38542] = 6, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, + [38130] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4083), 1, - anon_sym_COLON_COLON, - STATE(1608), 2, + STATE(1603), 2, sym_line_comment, sym_block_comment, - ACTIONS(3301), 15, + ACTIONS(3342), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142615,7 +142305,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3299), 23, + ACTIONS(3340), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -142638,16 +142328,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_DASH_GT, anon_sym_as, - [38598] = 5, + [38184] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1609), 2, + ACTIONS(4089), 1, + anon_sym_DASH_GT, + STATE(1604), 2, sym_line_comment, sym_block_comment, - ACTIONS(1238), 15, + ACTIONS(3505), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142663,7 +142356,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1236), 24, + ACTIONS(3503), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -142687,63 +142380,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - anon_sym_else, - [38652] = 22, + [38240] = 6, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(4091), 1, + anon_sym_COLON_COLON, + STATE(1605), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3293), 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(3291), 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, + [38296] = 21, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3561), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3565), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3567), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3791), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(3929), 1, + anon_sym_EQ, + ACTIONS(4007), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4009), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4011), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(4013), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4015), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, - anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4065), 1, anon_sym_DOT_DOT, - ACTIONS(3897), 2, + ACTIONS(4003), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4017), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4025), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4067), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1610), 2, + STATE(1606), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4005), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4093), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(3915), 4, + ACTIONS(4023), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(3927), 13, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142754,15 +142494,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38740] = 5, + anon_sym_SQUOTE, + [38382] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1611), 2, + ACTIONS(4093), 1, + anon_sym_DASH_GT, + STATE(1607), 2, sym_line_comment, sym_block_comment, - ACTIONS(3372), 15, + ACTIONS(3497), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142778,7 +142521,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3370), 24, + ACTIONS(3495), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -142801,19 +142544,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_DASH_GT, anon_sym_as, - [38794] = 6, + [38438] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, ACTIONS(4095), 1, anon_sym_COLON_COLON, - STATE(1612), 2, + STATE(1608), 2, sym_line_comment, sym_block_comment, - ACTIONS(3301), 15, + ACTIONS(3293), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142829,7 +142571,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3299), 23, + ACTIONS(3291), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -142853,83 +142595,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [38850] = 22, - ACTIONS(29), 1, - anon_sym_LT, + [38494] = 24, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1298), 1, - anon_sym_extern, - ACTIONS(3487), 1, - anon_sym_COLON_COLON, - ACTIONS(3491), 1, - anon_sym_union, - ACTIONS(3497), 1, - sym_metavariable, - ACTIONS(3503), 1, - anon_sym_default, + ACTIONS(1021), 1, + anon_sym_RPAREN, + ACTIONS(3561), 1, + anon_sym_LBRACK, + ACTIONS(3565), 1, + anon_sym_QMARK, + ACTIONS(3567), 1, + anon_sym_DOT, + ACTIONS(3791), 1, + anon_sym_as, + ACTIONS(3899), 1, + anon_sym_CARET, + ACTIONS(3901), 1, + anon_sym_AMP, + ACTIONS(3903), 1, + anon_sym_PIPE, + ACTIONS(3905), 1, + anon_sym_AMP_AMP, + ACTIONS(3907), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3913), 1, + anon_sym_EQ, + ACTIONS(4033), 1, + anon_sym_DOT_DOT, ACTIONS(4097), 1, - sym_identifier, - ACTIONS(4099), 1, - anon_sym_fn, - STATE(2206), 1, - aux_sym_function_modifiers_repeat1, - STATE(2320), 1, - sym_extern_modifier, - STATE(2603), 1, - sym_scoped_type_identifier, - STATE(3340), 1, - sym_generic_type_with_turbofish, - STATE(3385), 1, - sym_scoped_identifier, - STATE(3403), 1, - sym_generic_type, - STATE(3469), 1, - sym_bracketed_type, - STATE(3484), 1, - sym_function_modifiers, - STATE(1613), 2, + anon_sym_COMMA, + STATE(2738), 1, + aux_sym_arguments_repeat1, + ACTIONS(3895), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3909), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3917), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4035), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1609), 2, sym_line_comment, sym_block_comment, - ACTIONS(1284), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3495), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(3501), 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, - [38938] = 6, + ACTIONS(3897), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3915), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3911), 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, + [38586] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4101), 1, - anon_sym_DASH_GT, - STATE(1614), 2, + STATE(1610), 2, sym_line_comment, sym_block_comment, - ACTIONS(3529), 15, + ACTIONS(3468), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142945,7 +142687,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3527), 23, + ACTIONS(3466), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -142968,61 +142710,64 @@ 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, - [38994] = 21, + [38640] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3561), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3565), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3567), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3791), 1, anon_sym_as, - ACTIONS(3949), 1, - anon_sym_EQ, - ACTIONS(4027), 1, + ACTIONS(3899), 1, anon_sym_CARET, - ACTIONS(4029), 1, + ACTIONS(3901), 1, anon_sym_AMP, - ACTIONS(4031), 1, + ACTIONS(3903), 1, anon_sym_PIPE, - ACTIONS(4033), 1, + ACTIONS(3905), 1, anon_sym_AMP_AMP, - ACTIONS(4035), 1, + ACTIONS(3907), 1, anon_sym_PIPE_PIPE, - ACTIONS(4063), 1, + ACTIONS(3913), 1, + anon_sym_EQ, + ACTIONS(4033), 1, anon_sym_DOT_DOT, - ACTIONS(4023), 2, + ACTIONS(3895), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4037), 2, + ACTIONS(3909), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4045), 2, + ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4065), 2, + ACTIONS(4035), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1615), 2, + STATE(1611), 2, sym_line_comment, sym_block_comment, - ACTIONS(4025), 3, + ACTIONS(3897), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4043), 4, + ACTIONS(4099), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(3915), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3947), 13, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(3911), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143033,61 +142778,45 @@ 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, - [39080] = 21, + [38728] = 12, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3561), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3565), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3567), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3791), 1, anon_sym_as, - ACTIONS(3961), 1, - anon_sym_EQ, - ACTIONS(4027), 1, - anon_sym_CARET, - ACTIONS(4029), 1, - anon_sym_AMP, - ACTIONS(4031), 1, - anon_sym_PIPE, - ACTIONS(4033), 1, - anon_sym_AMP_AMP, - ACTIONS(4035), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4063), 1, - anon_sym_DOT_DOT, - ACTIONS(4023), 2, + ACTIONS(4003), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4037), 2, + ACTIONS(4017), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4045), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4065), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1616), 2, + STATE(1612), 2, sym_line_comment, sym_block_comment, - ACTIONS(4025), 3, + ACTIONS(4005), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4043), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3959), 13, + ACTIONS(3789), 7, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(3787), 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, @@ -143098,16 +142827,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_EQ_EQ, + 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, - [39166] = 5, + [38796] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1617), 2, + ACTIONS(4079), 1, + anon_sym_COLON_COLON, + STATE(1613), 2, sym_line_comment, sym_block_comment, - ACTIONS(3509), 15, + ACTIONS(3281), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -143123,7 +142860,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3507), 24, + ACTIONS(3279), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -143146,57 +142883,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_DASH_GT, anon_sym_as, - [39220] = 22, + [38852] = 22, ACTIONS(29), 1, anon_sym_LT, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1298), 1, + ACTIONS(1310), 1, anon_sym_extern, - ACTIONS(3487), 1, + ACTIONS(3356), 1, anon_sym_COLON_COLON, - ACTIONS(3491), 1, + ACTIONS(3360), 1, anon_sym_union, - ACTIONS(3497), 1, + ACTIONS(3366), 1, sym_metavariable, - ACTIONS(3503), 1, + ACTIONS(3474), 1, anon_sym_default, - ACTIONS(4103), 1, + ACTIONS(4101), 1, sym_identifier, - ACTIONS(4105), 1, + ACTIONS(4103), 1, anon_sym_fn, - STATE(2206), 1, + STATE(2220), 1, aux_sym_function_modifiers_repeat1, - STATE(2320), 1, + STATE(2321), 1, sym_extern_modifier, - STATE(2578), 1, + STATE(2708), 1, sym_scoped_type_identifier, - STATE(3330), 1, - sym_function_modifiers, - STATE(3340), 1, + STATE(3341), 1, sym_generic_type_with_turbofish, - STATE(3385), 1, + STATE(3362), 1, sym_scoped_identifier, - STATE(3403), 1, - sym_generic_type, - STATE(3469), 1, + STATE(3372), 1, + sym_function_modifiers, + STATE(3476), 1, sym_bracketed_type, - STATE(1618), 2, + STATE(3487), 1, + sym_generic_type, + STATE(1614), 2, sym_line_comment, sym_block_comment, - ACTIONS(1284), 3, + ACTIONS(1296), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(3495), 3, + ACTIONS(3364), 3, sym_self, sym_super, sym_crate, - ACTIONS(3501), 17, + ACTIONS(3472), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -143214,48 +142950,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [39308] = 15, + [38940] = 21, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(342), 1, + anon_sym_EQ, + ACTIONS(3561), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3565), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3567), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3791), 1, anon_sym_as, - ACTIONS(4027), 1, + ACTIONS(4007), 1, anon_sym_CARET, - ACTIONS(4029), 1, + ACTIONS(4009), 1, anon_sym_AMP, - ACTIONS(4031), 1, + ACTIONS(4011), 1, anon_sym_PIPE, - ACTIONS(4023), 2, + ACTIONS(4013), 1, + anon_sym_AMP_AMP, + ACTIONS(4015), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4065), 1, + anon_sym_DOT_DOT, + ACTIONS(4003), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4037), 2, + ACTIONS(4017), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1619), 2, + ACTIONS(4025), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4067), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1615), 2, sym_line_comment, sym_block_comment, - ACTIONS(4025), 3, + ACTIONS(4005), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3669), 4, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3665), 21, + ACTIONS(4023), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(336), 13, 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, @@ -143266,44 +143014,45 @@ 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, - [39382] = 6, + [39026] = 13, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4107), 1, - anon_sym_COLON_COLON, - STATE(1620), 2, + ACTIONS(3561), 1, + anon_sym_LBRACK, + ACTIONS(3565), 1, + anon_sym_QMARK, + ACTIONS(3567), 1, + anon_sym_DOT, + ACTIONS(3791), 1, + anon_sym_as, + ACTIONS(4009), 1, + anon_sym_AMP, + ACTIONS(4003), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4017), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1616), 2, sym_line_comment, sym_block_comment, - ACTIONS(1416), 15, - anon_sym_PLUS, + ACTIONS(4005), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3789), 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(1418), 23, + ACTIONS(3787), 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, @@ -143322,21 +143071,30 @@ 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, - [39438] = 5, + anon_sym_SQUOTE, + [39096] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1621), 2, + ACTIONS(3561), 1, + anon_sym_LBRACK, + ACTIONS(3565), 1, + anon_sym_QMARK, + ACTIONS(3567), 1, + anon_sym_DOT, + ACTIONS(3791), 1, + anon_sym_as, + STATE(1617), 2, sym_line_comment, sym_block_comment, - ACTIONS(3368), 15, - anon_sym_PLUS, + ACTIONS(4005), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3789), 11, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -143345,13 +143103,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(3366), 24, + ACTIONS(3787), 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, @@ -143370,19 +143125,16 @@ 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, - [39492] = 6, + anon_sym_SQUOTE, + [39160] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4109), 1, - anon_sym_DASH_GT, - STATE(1622), 2, + STATE(1618), 2, sym_line_comment, sym_block_comment, - ACTIONS(3515), 15, + ACTIONS(1208), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -143398,7 +143150,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3513), 23, + ACTIONS(1206), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -143422,87 +143174,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [39548] = 6, + anon_sym_else, + [39214] = 21, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4111), 1, - anon_sym_DASH_GT, - STATE(1623), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3358), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3561), 1, + anon_sym_LBRACK, + ACTIONS(3565), 1, + anon_sym_QMARK, + ACTIONS(3567), 1, + anon_sym_DOT, + ACTIONS(3791), 1, + anon_sym_as, + ACTIONS(3937), 1, + anon_sym_EQ, + ACTIONS(4007), 1, anon_sym_CARET, + ACTIONS(4009), 1, anon_sym_AMP, + ACTIONS(4011), 1, anon_sym_PIPE, + ACTIONS(4013), 1, + anon_sym_AMP_AMP, + ACTIONS(4015), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4065), 1, + anon_sym_DOT_DOT, + ACTIONS(4003), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4017), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4025), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3356), 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(4067), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [39604] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1624), 2, + STATE(1619), 2, sym_line_comment, sym_block_comment, - ACTIONS(3420), 15, - anon_sym_PLUS, + ACTIONS(4005), 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(3418), 24, + ACTIONS(4023), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3935), 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, @@ -143513,66 +143239,55 @@ 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, - [39658] = 21, + anon_sym_SQUOTE, + [39300] = 19, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3561), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3565), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3567), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3791), 1, anon_sym_as, - ACTIONS(3921), 1, - anon_sym_EQ, - ACTIONS(4027), 1, + ACTIONS(4007), 1, anon_sym_CARET, - ACTIONS(4029), 1, + ACTIONS(4009), 1, anon_sym_AMP, - ACTIONS(4031), 1, + ACTIONS(4011), 1, anon_sym_PIPE, - ACTIONS(4033), 1, + ACTIONS(4013), 1, anon_sym_AMP_AMP, - ACTIONS(4035), 1, + ACTIONS(4015), 1, anon_sym_PIPE_PIPE, - ACTIONS(4063), 1, + ACTIONS(392), 2, + anon_sym_EQ, anon_sym_DOT_DOT, - ACTIONS(4023), 2, + ACTIONS(4003), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4037), 2, + ACTIONS(4017), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4045), 2, + ACTIONS(4025), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4065), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1625), 2, + STATE(1620), 2, sym_line_comment, sym_block_comment, - ACTIONS(4025), 3, + ACTIONS(4005), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4043), 4, + ACTIONS(4023), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3919), 13, + ACTIONS(390), 15, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_PLUS_EQ, @@ -143585,18 +143300,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_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_SQUOTE, - [39744] = 6, + [39382] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4113), 1, + ACTIONS(4105), 1, anon_sym_DASH_GT, - STATE(1626), 2, + STATE(1621), 2, sym_line_comment, sym_block_comment, - ACTIONS(3449), 15, + ACTIONS(3388), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -143612,7 +143329,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3447), 23, + ACTIONS(3386), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -143636,118 +143353,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [39800] = 19, + [39438] = 24, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3561), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3565), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3567), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3791), 1, anon_sym_as, - ACTIONS(4027), 1, + ACTIONS(3899), 1, anon_sym_CARET, - ACTIONS(4029), 1, - anon_sym_AMP, - ACTIONS(4031), 1, - anon_sym_PIPE, - ACTIONS(4033), 1, - anon_sym_AMP_AMP, - ACTIONS(4035), 1, - anon_sym_PIPE_PIPE, - ACTIONS(370), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(4023), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4037), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4045), 2, - anon_sym_GT, - anon_sym_LT, - STATE(1627), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4025), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4043), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(368), 15, - 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_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, - [39882] = 24, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, ACTIONS(3901), 1, - anon_sym_CARET, - ACTIONS(3903), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3903), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3905), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3907), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(3913), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4033), 1, anon_sym_DOT_DOT, - ACTIONS(4115), 1, + ACTIONS(4107), 1, anon_sym_RPAREN, - ACTIONS(4117), 1, + ACTIONS(4109), 1, anon_sym_COMMA, - STATE(2830), 1, + STATE(2867), 1, aux_sym_arguments_repeat1, - ACTIONS(3897), 2, + ACTIONS(3895), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3909), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4035), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1628), 2, + STATE(1622), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3897), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -143756,7 +143410,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(3911), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143767,98 +143421,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39974] = 10, + [39530] = 22, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - STATE(1629), 2, + ACTIONS(1310), 1, + anon_sym_extern, + ACTIONS(3356), 1, + anon_sym_COLON_COLON, + ACTIONS(3360), 1, + anon_sym_union, + ACTIONS(3366), 1, + sym_metavariable, + ACTIONS(3474), 1, + anon_sym_default, + ACTIONS(4111), 1, + sym_identifier, + ACTIONS(4113), 1, + anon_sym_fn, + STATE(2220), 1, + aux_sym_function_modifiers_repeat1, + STATE(2321), 1, + sym_extern_modifier, + STATE(2545), 1, + sym_scoped_type_identifier, + STATE(3341), 1, + sym_generic_type_with_turbofish, + STATE(3362), 1, + sym_scoped_identifier, + STATE(3476), 1, + sym_bracketed_type, + STATE(3487), 1, + sym_generic_type, + STATE(3491), 1, + sym_function_modifiers, + STATE(1623), 2, sym_line_comment, sym_block_comment, - ACTIONS(4025), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3669), 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_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3665), 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, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, - [40038] = 13, + ACTIONS(1296), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(3364), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(3472), 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, + [39618] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(4029), 1, - anon_sym_AMP, - ACTIONS(4023), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4037), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1630), 2, + ACTIONS(4115), 1, + anon_sym_DASH_GT, + STATE(1624), 2, sym_line_comment, sym_block_comment, - ACTIONS(4025), 3, + ACTIONS(3438), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3669), 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(3665), 21, + ACTIONS(3436), 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, @@ -143877,16 +143536,16 @@ 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, - [40108] = 5, + anon_sym_as, + [39674] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1631), 2, + STATE(1625), 2, sym_line_comment, sym_block_comment, - ACTIONS(1246), 15, + ACTIONS(1242), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -143902,7 +143561,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1244), 24, + ACTIONS(1240), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -143927,107 +143586,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_as, anon_sym_else, - [40162] = 24, + [39728] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3561), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3565), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3567), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3791), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(3899), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(3901), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3903), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3905), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3907), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(3913), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4033), 1, anon_sym_DOT_DOT, - ACTIONS(4119), 1, - anon_sym_RPAREN, - ACTIONS(4121), 1, - anon_sym_COMMA, - STATE(3004), 1, - aux_sym_arguments_repeat1, - ACTIONS(3897), 2, + ACTIONS(3895), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3909), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4035), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1632), 2, + STATE(1626), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3897), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(4117), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_COMMA, ACTIONS(3915), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 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, - [40254] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4083), 1, - anon_sym_COLON_COLON, - STATE(1633), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3285), 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(3283), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3911), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144038,112 +143652,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_EQ_EQ, - 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, - [40310] = 22, + [39816] = 24, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(1023), 1, + anon_sym_RBRACK, + ACTIONS(3561), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3565), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3567), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3791), 1, anon_sym_as, - ACTIONS(4027), 1, + ACTIONS(3899), 1, anon_sym_CARET, - ACTIONS(4029), 1, + ACTIONS(3901), 1, anon_sym_AMP, - ACTIONS(4031), 1, + ACTIONS(3903), 1, anon_sym_PIPE, - ACTIONS(4033), 1, + ACTIONS(3905), 1, anon_sym_AMP_AMP, - ACTIONS(4035), 1, + ACTIONS(3907), 1, anon_sym_PIPE_PIPE, - ACTIONS(4041), 1, + ACTIONS(3913), 1, anon_sym_EQ, - ACTIONS(4063), 1, + ACTIONS(4033), 1, anon_sym_DOT_DOT, - ACTIONS(4023), 2, + ACTIONS(4119), 1, + anon_sym_COMMA, + STATE(2883), 1, + aux_sym_arguments_repeat1, + ACTIONS(3895), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4037), 2, + ACTIONS(3909), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4045), 2, + ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4065), 2, + ACTIONS(4035), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1634), 2, + STATE(1627), 2, sym_line_comment, sym_block_comment, - ACTIONS(3661), 3, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_SQUOTE, - ACTIONS(4025), 3, + ACTIONS(3897), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4043), 4, + ACTIONS(3915), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4039), 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, - [40398] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4123), 1, - anon_sym_COLON_COLON, - STATE(1635), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1416), 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(1418), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3911), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144154,60 +143720,55 @@ 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, - [40454] = 23, + [39908] = 24, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(1007), 1, + anon_sym_RBRACK, + ACTIONS(3561), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3565), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3567), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3791), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(3899), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(3901), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3903), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3905), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3907), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(3913), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4033), 1, anon_sym_DOT_DOT, - ACTIONS(4125), 1, - anon_sym_SEMI, - ACTIONS(4127), 1, - anon_sym_RBRACE, - ACTIONS(3897), 2, + ACTIONS(4121), 1, + anon_sym_COMMA, + STATE(2913), 1, + aux_sym_arguments_repeat1, + ACTIONS(3895), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3909), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4035), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1636), 2, + STATE(1628), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3897), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -144216,48 +143777,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 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, - [40543] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1637), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1416), 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(1418), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3911), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144268,67 +143788,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_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [40596] = 21, + [40000] = 24, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(1025), 1, + anon_sym_RPAREN, + ACTIONS(3561), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3565), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3567), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3791), 1, anon_sym_as, - ACTIONS(4027), 1, + ACTIONS(3899), 1, anon_sym_CARET, - ACTIONS(4029), 1, + ACTIONS(3901), 1, anon_sym_AMP, - ACTIONS(4031), 1, + ACTIONS(3903), 1, anon_sym_PIPE, - ACTIONS(4035), 1, + ACTIONS(3905), 1, + anon_sym_AMP_AMP, + ACTIONS(3907), 1, anon_sym_PIPE_PIPE, - ACTIONS(4041), 1, + ACTIONS(3913), 1, anon_sym_EQ, - ACTIONS(4047), 1, + ACTIONS(4033), 1, anon_sym_DOT_DOT, - ACTIONS(4023), 2, + ACTIONS(4123), 1, + anon_sym_COMMA, + STATE(2956), 1, + aux_sym_arguments_repeat1, + ACTIONS(3895), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4037), 2, + ACTIONS(3909), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4045), 2, + ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4049), 2, + ACTIONS(4035), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1638), 2, + STATE(1629), 2, sym_line_comment, sym_block_comment, - ACTIONS(4025), 3, + ACTIONS(3897), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4129), 3, - anon_sym_LBRACE, - anon_sym_AMP_AMP, - anon_sym_SQUOTE, - ACTIONS(4043), 4, + ACTIONS(3915), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4039), 10, + ACTIONS(3911), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144339,15 +143856,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40681] = 5, + [40092] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1639), 2, + STATE(1630), 2, sym_line_comment, sym_block_comment, - ACTIONS(3396), 15, + ACTIONS(3338), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144363,7 +143880,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3392), 23, + ACTIONS(3336), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -144386,16 +143903,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_DASH_GT, anon_sym_as, - [40734] = 5, + [40146] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1640), 2, + ACTIONS(4079), 1, + anon_sym_COLON_COLON, + STATE(1631), 2, sym_line_comment, sym_block_comment, - ACTIONS(3635), 15, + ACTIONS(3313), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144411,7 +143931,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3633), 23, + ACTIONS(3311), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -144435,15 +143955,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [40787] = 5, + [40202] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1641), 2, + STATE(1632), 2, sym_line_comment, sym_block_comment, - ACTIONS(1416), 15, + ACTIONS(3527), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144459,7 +143979,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1418), 23, + ACTIONS(3525), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -144482,38 +144002,64 @@ 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, - [40840] = 5, + [40256] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1642), 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, + ACTIONS(3561), 1, + anon_sym_LBRACK, + ACTIONS(3565), 1, + anon_sym_QMARK, + ACTIONS(3567), 1, + anon_sym_DOT, + ACTIONS(3791), 1, + anon_sym_as, + ACTIONS(4007), 1, anon_sym_CARET, + ACTIONS(4009), 1, anon_sym_AMP, + ACTIONS(4011), 1, anon_sym_PIPE, + ACTIONS(4013), 1, + anon_sym_AMP_AMP, + ACTIONS(4015), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4021), 1, + anon_sym_EQ, + ACTIONS(4065), 1, + anon_sym_DOT_DOT, + ACTIONS(4003), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4017), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4025), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3717), 23, + ACTIONS(4067), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1633), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3661), 3, 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_SQUOTE, + ACTIONS(4005), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4023), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4019), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144524,28 +144070,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, - [40893] = 8, + [40344] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4131), 1, - anon_sym_LBRACK, - ACTIONS(4133), 1, - anon_sym_QMARK, - ACTIONS(4135), 1, - anon_sym_DOT, - STATE(1643), 2, + STATE(1634), 2, sym_line_comment, sym_block_comment, - ACTIONS(3789), 14, + ACTIONS(1246), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144559,10 +144092,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(3787), 21, + ACTIONS(1244), 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, @@ -144582,21 +144118,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [40952] = 8, + anon_sym_else, + [40398] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4131), 1, - anon_sym_LBRACK, - ACTIONS(4133), 1, - anon_sym_QMARK, - ACTIONS(4135), 1, - anon_sym_DOT, - STATE(1644), 2, + ACTIONS(4079), 1, + anon_sym_COLON_COLON, + STATE(1635), 2, sym_line_comment, sym_block_comment, - ACTIONS(3805), 14, + ACTIONS(3269), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144610,10 +144143,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(3803), 21, + ACTIONS(3267), 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, @@ -144633,56 +144169,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [41011] = 19, + [40454] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4131), 1, + ACTIONS(294), 1, + anon_sym_RBRACE, + ACTIONS(3561), 1, anon_sym_LBRACK, - ACTIONS(4133), 1, + ACTIONS(3565), 1, anon_sym_QMARK, - ACTIONS(4135), 1, + ACTIONS(3567), 1, anon_sym_DOT, - ACTIONS(4141), 1, + ACTIONS(3791), 1, + anon_sym_as, + ACTIONS(3899), 1, anon_sym_CARET, - ACTIONS(4143), 1, + ACTIONS(3901), 1, anon_sym_AMP, - ACTIONS(4145), 1, + ACTIONS(3903), 1, anon_sym_PIPE, - ACTIONS(4147), 1, + ACTIONS(3905), 1, anon_sym_AMP_AMP, - ACTIONS(4149), 1, + ACTIONS(3907), 1, anon_sym_PIPE_PIPE, - ACTIONS(4157), 1, - anon_sym_as, - ACTIONS(370), 2, + ACTIONS(3913), 1, anon_sym_EQ, + ACTIONS(4033), 1, anon_sym_DOT_DOT, - ACTIONS(4137), 2, + ACTIONS(4125), 1, + anon_sym_SEMI, + ACTIONS(3895), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4151), 2, + ACTIONS(3909), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4155), 2, + ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - STATE(1645), 2, + ACTIONS(4035), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1636), 2, sym_line_comment, sym_block_comment, - ACTIONS(4139), 3, + ACTIONS(3897), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4153), 4, + ACTIONS(3915), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(368), 14, - anon_sym_LPAREN, - anon_sym_EQ_GT, + ACTIONS(3911), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144693,62 +144235,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, - [41092] = 21, + [40543] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(342), 1, - anon_sym_EQ, - ACTIONS(4131), 1, + ACTIONS(3561), 1, anon_sym_LBRACK, - ACTIONS(4133), 1, + ACTIONS(3565), 1, anon_sym_QMARK, - ACTIONS(4135), 1, + ACTIONS(3567), 1, anon_sym_DOT, - ACTIONS(4141), 1, + ACTIONS(3791), 1, + anon_sym_as, + ACTIONS(3899), 1, anon_sym_CARET, - ACTIONS(4143), 1, + ACTIONS(3901), 1, anon_sym_AMP, - ACTIONS(4145), 1, + ACTIONS(3903), 1, anon_sym_PIPE, - ACTIONS(4147), 1, + ACTIONS(3905), 1, anon_sym_AMP_AMP, - ACTIONS(4149), 1, + ACTIONS(3907), 1, anon_sym_PIPE_PIPE, - ACTIONS(4157), 1, - anon_sym_as, - ACTIONS(4159), 1, + ACTIONS(3913), 1, + anon_sym_EQ, + ACTIONS(4033), 1, anon_sym_DOT_DOT, - ACTIONS(4137), 2, + ACTIONS(4125), 1, + anon_sym_SEMI, + ACTIONS(4127), 1, + anon_sym_RBRACE, + ACTIONS(3895), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4151), 2, + ACTIONS(3909), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4155), 2, + ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4161), 2, + ACTIONS(4035), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1646), 2, + STATE(1637), 2, sym_line_comment, sym_block_comment, - ACTIONS(4139), 3, + ACTIONS(3897), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4153), 4, + ACTIONS(3915), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(336), 12, - anon_sym_LPAREN, - anon_sym_EQ_GT, + ACTIONS(3911), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144759,20 +144301,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41177] = 5, + [40632] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1647), 2, + ACTIONS(4129), 1, + anon_sym_LBRACK, + ACTIONS(4133), 1, + anon_sym_QMARK, + ACTIONS(4135), 1, + anon_sym_DOT, + ACTIONS(4137), 1, + anon_sym_as, + STATE(1638), 2, sym_line_comment, sym_block_comment, - ACTIONS(3847), 15, - anon_sym_PLUS, + ACTIONS(4131), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3789), 11, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -144781,13 +144332,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(3845), 23, + ACTIONS(3787), 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, @@ -144806,125 +144354,37 @@ 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, - [41230] = 21, + [40695] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3935), 1, - anon_sym_EQ, - ACTIONS(4131), 1, - anon_sym_LBRACK, - ACTIONS(4133), 1, - anon_sym_QMARK, - ACTIONS(4135), 1, - anon_sym_DOT, - ACTIONS(4141), 1, - anon_sym_CARET, - ACTIONS(4143), 1, - anon_sym_AMP, - ACTIONS(4145), 1, - anon_sym_PIPE, - ACTIONS(4147), 1, - anon_sym_AMP_AMP, - ACTIONS(4149), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4157), 1, - anon_sym_as, - ACTIONS(4159), 1, - anon_sym_DOT_DOT, - ACTIONS(4137), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4151), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4155), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4161), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1648), 2, + STATE(1639), 2, sym_line_comment, sym_block_comment, - ACTIONS(4139), 3, + ACTIONS(3755), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4153), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3933), 12, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [41315] = 21, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3957), 1, - anon_sym_EQ, - ACTIONS(4131), 1, - anon_sym_LBRACK, - ACTIONS(4133), 1, - anon_sym_QMARK, - ACTIONS(4135), 1, - anon_sym_DOT, - ACTIONS(4141), 1, anon_sym_CARET, - ACTIONS(4143), 1, anon_sym_AMP, - ACTIONS(4145), 1, anon_sym_PIPE, - ACTIONS(4147), 1, - anon_sym_AMP_AMP, - ACTIONS(4149), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4157), 1, - anon_sym_as, - ACTIONS(4159), 1, - anon_sym_DOT_DOT, - ACTIONS(4137), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4151), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4155), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4161), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1649), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4139), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4153), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3955), 12, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3753), 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, @@ -144935,15 +144395,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41400] = 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, + [40748] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1650), 2, + STATE(1640), 2, sym_line_comment, sym_block_comment, - ACTIONS(3561), 15, + ACTIONS(3603), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144959,7 +144426,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3559), 23, + ACTIONS(3601), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -144983,15 +144450,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [41453] = 5, + [40801] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1651), 2, + STATE(1641), 2, sym_line_comment, sym_block_comment, - ACTIONS(3573), 15, + ACTIONS(3599), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145007,7 +144474,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3571), 23, + ACTIONS(3597), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -145031,15 +144498,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [41506] = 5, + [40854] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1652), 2, + STATE(1642), 2, sym_line_comment, sym_block_comment, - ACTIONS(3577), 15, + ACTIONS(3595), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145055,7 +144522,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3575), 23, + ACTIONS(3593), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -145079,15 +144546,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [41559] = 5, + [40907] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1653), 2, + STATE(1643), 2, sym_line_comment, sym_block_comment, - ACTIONS(3607), 15, + ACTIONS(3635), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145103,7 +144570,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3605), 23, + ACTIONS(3633), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -145127,62 +144594,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [41612] = 23, + [40960] = 21, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3561), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3565), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3567), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3791), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(4007), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4009), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4011), 1, anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4015), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4021), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4027), 1, anon_sym_DOT_DOT, - ACTIONS(4163), 1, - anon_sym_SEMI, - ACTIONS(4165), 1, - anon_sym_else, - ACTIONS(3897), 2, + ACTIONS(4003), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4017), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4025), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4029), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1654), 2, + STATE(1644), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4005), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4139), 3, + anon_sym_LBRACE, + anon_sym_AMP_AMP, + anon_sym_SQUOTE, + ACTIONS(4023), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4019), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145193,15 +144658,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41701] = 5, + [41045] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1655), 2, + STATE(1645), 2, sym_line_comment, sym_block_comment, - ACTIONS(3773), 15, + ACTIONS(3579), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145217,7 +144682,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3771), 23, + ACTIONS(3577), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -145241,37 +144706,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [41754] = 5, + [41098] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1656), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1416), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3561), 1, + anon_sym_LBRACK, + ACTIONS(3565), 1, + anon_sym_QMARK, + ACTIONS(3567), 1, + anon_sym_DOT, + ACTIONS(3791), 1, + anon_sym_as, + ACTIONS(3899), 1, anon_sym_CARET, + ACTIONS(3901), 1, anon_sym_AMP, + ACTIONS(3903), 1, anon_sym_PIPE, + ACTIONS(3905), 1, + anon_sym_AMP_AMP, + ACTIONS(3907), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3913), 1, + anon_sym_EQ, + ACTIONS(4033), 1, + anon_sym_DOT_DOT, + ACTIONS(4141), 1, + anon_sym_SEMI, + ACTIONS(4143), 1, + anon_sym_else, + ACTIONS(3895), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3909), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1418), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4035), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1646), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3897), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3915), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3911), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145282,22 +144772,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, - [41807] = 5, + [41187] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1657), 2, + STATE(1647), 2, sym_line_comment, sym_block_comment, - ACTIONS(3785), 15, + ACTIONS(3667), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145313,7 +144796,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3783), 23, + ACTIONS(3665), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -145337,15 +144820,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [41860] = 5, + [41240] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1658), 2, + ACTIONS(3561), 1, + anon_sym_LBRACK, + ACTIONS(3565), 1, + anon_sym_QMARK, + ACTIONS(3567), 1, + anon_sym_DOT, + ACTIONS(3791), 1, + anon_sym_as, + ACTIONS(3899), 1, + anon_sym_CARET, + ACTIONS(3901), 1, + anon_sym_AMP, + ACTIONS(3903), 1, + anon_sym_PIPE, + ACTIONS(3905), 1, + anon_sym_AMP_AMP, + ACTIONS(3907), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3913), 1, + anon_sym_EQ, + ACTIONS(4033), 1, + anon_sym_DOT_DOT, + ACTIONS(4145), 1, + anon_sym_SEMI, + ACTIONS(4147), 1, + anon_sym_else, + ACTIONS(3895), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3909), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3917), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4035), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1648), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3897), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3915), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3911), 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, + [41329] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1649), 2, sym_line_comment, sym_block_comment, - ACTIONS(3801), 15, + ACTIONS(3571), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145361,7 +144910,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3799), 23, + ACTIONS(3569), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -145385,40 +144934,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [41913] = 8, + [41382] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4131), 1, + ACTIONS(328), 1, + anon_sym_RBRACE, + ACTIONS(3561), 1, anon_sym_LBRACK, - ACTIONS(4133), 1, + ACTIONS(3565), 1, anon_sym_QMARK, - ACTIONS(4135), 1, + ACTIONS(3567), 1, anon_sym_DOT, - STATE(1659), 2, + ACTIONS(3791), 1, + anon_sym_as, + ACTIONS(3899), 1, + anon_sym_CARET, + ACTIONS(3901), 1, + anon_sym_AMP, + ACTIONS(3903), 1, + anon_sym_PIPE, + ACTIONS(3905), 1, + anon_sym_AMP_AMP, + ACTIONS(3907), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3913), 1, + anon_sym_EQ, + ACTIONS(4033), 1, + anon_sym_DOT_DOT, + ACTIONS(4125), 1, + anon_sym_SEMI, + ACTIONS(3895), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3909), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3917), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4035), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1650), 2, sym_line_comment, sym_block_comment, - ACTIONS(3809), 14, - anon_sym_PLUS, + ACTIONS(3897), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3915), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3911), 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, + [41471] = 23, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(1188), 1, + anon_sym_RPAREN, + ACTIONS(3561), 1, + anon_sym_LBRACK, + ACTIONS(3565), 1, + anon_sym_QMARK, + ACTIONS(3567), 1, + anon_sym_DOT, + ACTIONS(3791), 1, + anon_sym_as, + ACTIONS(3899), 1, anon_sym_CARET, + ACTIONS(3901), 1, anon_sym_AMP, + ACTIONS(3903), 1, anon_sym_PIPE, + ACTIONS(3905), 1, + anon_sym_AMP_AMP, + ACTIONS(3907), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3913), 1, + anon_sym_EQ, + ACTIONS(4033), 1, + anon_sym_DOT_DOT, + ACTIONS(4149), 1, + anon_sym_COMMA, + ACTIONS(3895), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3909), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3807), 21, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4035), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1651), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3897), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3915), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3911), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145429,60 +145066,183 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, + [41560] = 23, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(1073), 1, + anon_sym_RPAREN, + ACTIONS(3561), 1, + anon_sym_LBRACK, + ACTIONS(3565), 1, + anon_sym_QMARK, + ACTIONS(3567), 1, + anon_sym_DOT, + ACTIONS(3791), 1, + anon_sym_as, + ACTIONS(3899), 1, + anon_sym_CARET, + ACTIONS(3901), 1, + anon_sym_AMP, + ACTIONS(3903), 1, + anon_sym_PIPE, + ACTIONS(3905), 1, + anon_sym_AMP_AMP, + ACTIONS(3907), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3913), 1, + anon_sym_EQ, + ACTIONS(4033), 1, + anon_sym_DOT_DOT, + ACTIONS(4149), 1, + anon_sym_COMMA, + ACTIONS(3895), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3909), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3917), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4035), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1652), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3897), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3915), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(3911), 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, + [41649] = 22, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(3561), 1, + anon_sym_LBRACK, + ACTIONS(3565), 1, + anon_sym_QMARK, + ACTIONS(3567), 1, + anon_sym_DOT, + ACTIONS(3791), 1, + anon_sym_as, + ACTIONS(3899), 1, + anon_sym_CARET, + ACTIONS(3901), 1, + anon_sym_AMP, + ACTIONS(3903), 1, + anon_sym_PIPE, + ACTIONS(3905), 1, + anon_sym_AMP_AMP, + ACTIONS(3907), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3913), 1, + anon_sym_EQ, + ACTIONS(4033), 1, + anon_sym_DOT_DOT, + ACTIONS(3895), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3909), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3917), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4035), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [41972] = 23, + ACTIONS(4151), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1653), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3897), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3915), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3911), 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, + [41736] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(286), 1, - anon_sym_RBRACE, - ACTIONS(3667), 1, + ACTIONS(3561), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3565), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3567), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3791), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(3899), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(3901), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3903), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3905), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3907), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(3913), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4033), 1, anon_sym_DOT_DOT, - ACTIONS(4125), 1, - anon_sym_SEMI, - ACTIONS(3897), 2, + ACTIONS(3895), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3909), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4035), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1660), 2, + ACTIONS(4153), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1654), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3897), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -145491,7 +145251,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(3911), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145502,15 +145262,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42061] = 5, + [41823] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1661), 2, + STATE(1655), 2, sym_line_comment, sym_block_comment, - ACTIONS(3741), 15, + ACTIONS(3553), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145526,7 +145286,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3739), 23, + ACTIONS(3551), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -145550,37 +145310,194 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42114] = 5, + [41876] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1662), 2, + ACTIONS(3561), 1, + anon_sym_LBRACK, + ACTIONS(3565), 1, + anon_sym_QMARK, + ACTIONS(3567), 1, + anon_sym_DOT, + ACTIONS(3791), 1, + anon_sym_as, + ACTIONS(3899), 1, + anon_sym_CARET, + ACTIONS(3901), 1, + anon_sym_AMP, + ACTIONS(3903), 1, + anon_sym_PIPE, + ACTIONS(3905), 1, + anon_sym_AMP_AMP, + ACTIONS(3907), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3913), 1, + anon_sym_EQ, + ACTIONS(4033), 1, + anon_sym_DOT_DOT, + ACTIONS(4125), 1, + anon_sym_SEMI, + ACTIONS(4155), 1, + anon_sym_RBRACE, + ACTIONS(3895), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3909), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3917), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4035), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1656), 2, sym_line_comment, sym_block_comment, - ACTIONS(1416), 15, - anon_sym_PLUS, + ACTIONS(3897), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3915), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3911), 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, + [41965] = 23, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(1190), 1, + anon_sym_RPAREN, + ACTIONS(3561), 1, + anon_sym_LBRACK, + ACTIONS(3565), 1, + anon_sym_QMARK, + ACTIONS(3567), 1, + anon_sym_DOT, + ACTIONS(3791), 1, + anon_sym_as, + ACTIONS(3899), 1, anon_sym_CARET, + ACTIONS(3901), 1, anon_sym_AMP, + ACTIONS(3903), 1, anon_sym_PIPE, + ACTIONS(3905), 1, + anon_sym_AMP_AMP, + ACTIONS(3907), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3913), 1, + anon_sym_EQ, + ACTIONS(4033), 1, + anon_sym_DOT_DOT, + ACTIONS(4149), 1, + anon_sym_COMMA, + ACTIONS(3895), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3909), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1418), 23, - anon_sym_LPAREN, + ACTIONS(4035), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1657), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3897), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3915), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3911), 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, + [42054] = 23, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(3561), 1, anon_sym_LBRACK, - anon_sym_EQ_GT, + ACTIONS(3565), 1, anon_sym_QMARK, + ACTIONS(3567), 1, + anon_sym_DOT, + ACTIONS(3791), 1, + anon_sym_as, + ACTIONS(3899), 1, + anon_sym_CARET, + ACTIONS(3901), 1, + anon_sym_AMP, + ACTIONS(3903), 1, + anon_sym_PIPE, + ACTIONS(3905), 1, anon_sym_AMP_AMP, + ACTIONS(3907), 1, anon_sym_PIPE_PIPE, + ACTIONS(3913), 1, + anon_sym_EQ, + ACTIONS(4033), 1, + anon_sym_DOT_DOT, + ACTIONS(4149), 1, + anon_sym_COMMA, + ACTIONS(4157), 1, + anon_sym_RPAREN, + ACTIONS(3895), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3909), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3917), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4035), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1658), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3897), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3915), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3911), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145591,44 +145508,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, - [42167] = 5, + [42143] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1663), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3835), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3561), 1, + anon_sym_LBRACK, + ACTIONS(3565), 1, + anon_sym_QMARK, + ACTIONS(3567), 1, + anon_sym_DOT, + ACTIONS(3791), 1, + anon_sym_as, + ACTIONS(3899), 1, anon_sym_CARET, + ACTIONS(3901), 1, anon_sym_AMP, + ACTIONS(3903), 1, anon_sym_PIPE, + ACTIONS(3905), 1, + anon_sym_AMP_AMP, + ACTIONS(3907), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3913), 1, + anon_sym_EQ, + ACTIONS(4033), 1, + anon_sym_DOT_DOT, + ACTIONS(4159), 1, + anon_sym_SEMI, + ACTIONS(4161), 1, + anon_sym_else, + ACTIONS(3895), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3909), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3833), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4035), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1659), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3897), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3915), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3911), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145639,22 +145574,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, - [42220] = 5, + [42232] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1664), 2, + STATE(1660), 2, sym_line_comment, sym_block_comment, - ACTIONS(3619), 15, + ACTIONS(3639), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145670,7 +145598,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3617), 23, + ACTIONS(3637), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -145694,89 +145622,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42273] = 9, + [42285] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4131), 1, + ACTIONS(280), 1, + anon_sym_RBRACE, + ACTIONS(3561), 1, anon_sym_LBRACK, - ACTIONS(4133), 1, + ACTIONS(3565), 1, anon_sym_QMARK, - ACTIONS(4135), 1, + ACTIONS(3567), 1, anon_sym_DOT, - ACTIONS(4157), 1, + ACTIONS(3791), 1, anon_sym_as, - STATE(1665), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3669), 14, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3899), 1, anon_sym_CARET, + ACTIONS(3901), 1, anon_sym_AMP, + ACTIONS(3903), 1, anon_sym_PIPE, + ACTIONS(3905), 1, + anon_sym_AMP_AMP, + ACTIONS(3907), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3913), 1, + anon_sym_EQ, + ACTIONS(4033), 1, + anon_sym_DOT_DOT, + ACTIONS(4125), 1, + anon_sym_SEMI, + ACTIONS(3895), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3909), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3665), 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, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_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(4035), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [42334] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1666), 2, + STATE(1661), 2, sym_line_comment, sym_block_comment, - ACTIONS(3651), 15, - anon_sym_PLUS, + ACTIONS(3897), 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(3649), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3915), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3911), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145787,42 +145688,43 @@ 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, - [42387] = 5, + [42374] = 12, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1667), 2, + ACTIONS(4129), 1, + anon_sym_LBRACK, + ACTIONS(4133), 1, + anon_sym_QMARK, + ACTIONS(4135), 1, + anon_sym_DOT, + ACTIONS(4137), 1, + anon_sym_as, + ACTIONS(4163), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4165), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1662), 2, sym_line_comment, sym_block_comment, - ACTIONS(3777), 15, - anon_sym_PLUS, + ACTIONS(4131), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3789), 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(3775), 23, + ACTIONS(3787), 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, @@ -145841,38 +145743,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, - [42440] = 5, + [42441] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1668), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3545), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3561), 1, + anon_sym_LBRACK, + ACTIONS(3565), 1, + anon_sym_QMARK, + ACTIONS(3567), 1, + anon_sym_DOT, + ACTIONS(3791), 1, + anon_sym_as, + ACTIONS(3899), 1, anon_sym_CARET, + ACTIONS(3901), 1, anon_sym_AMP, + ACTIONS(3903), 1, anon_sym_PIPE, + ACTIONS(3905), 1, + anon_sym_AMP_AMP, + ACTIONS(3907), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3913), 1, + anon_sym_EQ, + ACTIONS(4033), 1, + anon_sym_DOT_DOT, + ACTIONS(4125), 1, + anon_sym_SEMI, + ACTIONS(4167), 1, + anon_sym_RBRACE, + ACTIONS(3895), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3909), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3543), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4035), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1663), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3897), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3915), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3911), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145883,44 +145809,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, - [42493] = 5, + [42530] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1669), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3549), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3561), 1, + anon_sym_LBRACK, + ACTIONS(3565), 1, + anon_sym_QMARK, + ACTIONS(3567), 1, + anon_sym_DOT, + ACTIONS(3791), 1, + anon_sym_as, + ACTIONS(3899), 1, anon_sym_CARET, + ACTIONS(3901), 1, anon_sym_AMP, + ACTIONS(3903), 1, anon_sym_PIPE, + ACTIONS(3905), 1, + anon_sym_AMP_AMP, + ACTIONS(3907), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3913), 1, + anon_sym_EQ, + ACTIONS(4033), 1, + anon_sym_DOT_DOT, + ACTIONS(4149), 1, + anon_sym_COMMA, + ACTIONS(4169), 1, + anon_sym_RPAREN, + ACTIONS(3895), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3909), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3547), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4035), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1664), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3897), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3915), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3911), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145931,22 +145875,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, - [42546] = 5, + [42619] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1670), 2, + STATE(1665), 2, sym_line_comment, sym_block_comment, - ACTIONS(3553), 15, + ACTIONS(3711), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145962,7 +145899,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3551), 23, + ACTIONS(3709), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -145986,80 +145923,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42599] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3901), 1, - anon_sym_CARET, - ACTIONS(3903), 1, - anon_sym_AMP, - ACTIONS(3905), 1, - anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, - anon_sym_EQ, - ACTIONS(4005), 1, - anon_sym_DOT_DOT, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3917), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4007), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4167), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1671), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3899), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3929), 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, - [42686] = 5, + [42672] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1672), 2, + STATE(1666), 2, sym_line_comment, sym_block_comment, - ACTIONS(3663), 15, + ACTIONS(3281), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -146075,7 +145947,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3661), 23, + ACTIONS(3279), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -146099,15 +145971,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42739] = 5, + [42725] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1673), 2, + STATE(1667), 2, sym_line_comment, sym_block_comment, - ACTIONS(1416), 15, + ACTIONS(3747), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -146123,7 +145995,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1418), 23, + ACTIONS(3745), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -146147,53 +146019,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42792] = 23, + [42778] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(288), 1, - anon_sym_RBRACE, - ACTIONS(3667), 1, + ACTIONS(3561), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3565), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3567), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3791), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(3899), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(3901), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3903), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3905), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3907), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(3913), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4033), 1, anon_sym_DOT_DOT, - ACTIONS(4125), 1, - anon_sym_SEMI, - ACTIONS(3897), 2, + ACTIONS(3895), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3909), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4035), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1674), 2, + ACTIONS(4171), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1668), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3897), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -146202,7 +146073,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(3911), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146213,15 +146084,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42881] = 5, + [42865] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1675), 2, + STATE(1669), 2, sym_line_comment, sym_block_comment, - ACTIONS(3715), 15, + ACTIONS(3671), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -146237,7 +146108,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3713), 23, + ACTIONS(3669), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -146261,15 +146132,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42934] = 5, + [42918] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1676), 2, + STATE(1670), 2, sym_line_comment, sym_block_comment, - ACTIONS(3749), 15, + ACTIONS(3751), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -146285,7 +146156,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3747), 23, + ACTIONS(3749), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -146309,15 +146180,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42987] = 5, + [42971] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1677), 2, + STATE(1671), 2, sym_line_comment, sym_block_comment, - ACTIONS(3753), 15, + ACTIONS(1360), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -146333,7 +146204,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3751), 23, + ACTIONS(1358), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -146357,37 +146228,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [43040] = 5, + [43024] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1678), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3765), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4129), 1, + anon_sym_LBRACK, + ACTIONS(4133), 1, + anon_sym_QMARK, + ACTIONS(4135), 1, + anon_sym_DOT, + ACTIONS(4137), 1, + anon_sym_as, + ACTIONS(4173), 1, anon_sym_CARET, + ACTIONS(4175), 1, anon_sym_AMP, + ACTIONS(4177), 1, anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(4179), 1, + anon_sym_AMP_AMP, + ACTIONS(4181), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4185), 1, anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, + ACTIONS(4191), 1, anon_sym_DOT_DOT, - ACTIONS(3763), 23, + ACTIONS(3617), 2, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4163), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4165), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4189), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4193), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1672), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4131), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4187), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4183), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146398,22 +146293,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, - [43093] = 5, + [43111] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1679), 2, + STATE(1673), 2, sym_line_comment, sym_block_comment, - ACTIONS(3781), 15, + ACTIONS(3647), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -146429,7 +146317,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3779), 23, + ACTIONS(3645), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -146453,15 +146341,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [43146] = 5, + [43164] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1680), 2, + STATE(1674), 2, sym_line_comment, sym_block_comment, - ACTIONS(3793), 15, + ACTIONS(3293), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -146477,7 +146365,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3791), 23, + ACTIONS(3291), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -146501,37 +146389,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [43199] = 5, + [43217] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1681), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3797), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(286), 1, + anon_sym_RBRACE, + ACTIONS(3561), 1, + anon_sym_LBRACK, + ACTIONS(3565), 1, + anon_sym_QMARK, + ACTIONS(3567), 1, + anon_sym_DOT, + ACTIONS(3791), 1, + anon_sym_as, + ACTIONS(3899), 1, anon_sym_CARET, + ACTIONS(3901), 1, anon_sym_AMP, + ACTIONS(3903), 1, anon_sym_PIPE, + ACTIONS(3905), 1, + anon_sym_AMP_AMP, + ACTIONS(3907), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3913), 1, + anon_sym_EQ, + ACTIONS(4033), 1, + anon_sym_DOT_DOT, + ACTIONS(4125), 1, + anon_sym_SEMI, + ACTIONS(3895), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3909), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3795), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4035), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1675), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3897), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3915), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3911), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146542,60 +146455,53 @@ 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, - [43252] = 23, + [43306] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1174), 1, - anon_sym_RPAREN, - ACTIONS(3667), 1, + ACTIONS(318), 1, + anon_sym_RBRACE, + ACTIONS(3561), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3565), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3567), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3791), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(3899), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(3901), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3903), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3905), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3907), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(3913), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4033), 1, anon_sym_DOT_DOT, - ACTIONS(4169), 1, - anon_sym_COMMA, - ACTIONS(3897), 2, + ACTIONS(4125), 1, + anon_sym_SEMI, + ACTIONS(3895), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3909), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4035), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1682), 2, + STATE(1676), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3897), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -146604,7 +146510,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(3911), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146615,15 +146521,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43341] = 5, + [43395] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1683), 2, + STATE(1677), 2, sym_line_comment, sym_block_comment, - ACTIONS(3839), 15, + ACTIONS(1396), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -146639,7 +146545,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3837), 23, + ACTIONS(1394), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -146663,15 +146569,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [43394] = 5, + [43448] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1684), 2, + STATE(1678), 2, sym_line_comment, sym_block_comment, - ACTIONS(3871), 15, + ACTIONS(1368), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -146687,7 +146593,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3869), 23, + ACTIONS(1366), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -146711,133 +146617,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [43447] = 5, + [43501] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1685), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3883), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3561), 1, + anon_sym_LBRACK, + ACTIONS(3565), 1, + anon_sym_QMARK, + ACTIONS(3567), 1, + anon_sym_DOT, + ACTIONS(3791), 1, + anon_sym_as, + ACTIONS(3899), 1, anon_sym_CARET, + ACTIONS(3901), 1, anon_sym_AMP, + ACTIONS(3903), 1, anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3881), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, + ACTIONS(3905), 1, anon_sym_AMP_AMP, + ACTIONS(3907), 1, anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [43500] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1686), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3679), 15, + ACTIONS(3913), 1, + anon_sym_EQ, + ACTIONS(4033), 1, + anon_sym_DOT_DOT, + ACTIONS(3617), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3895), 2, anon_sym_PLUS, - anon_sym_STAR, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(3909), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3677), 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(4035), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [43553] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1687), 2, + STATE(1679), 2, sym_line_comment, sym_block_comment, - ACTIONS(3691), 15, - anon_sym_PLUS, + ACTIONS(3897), 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(3689), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3915), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3911), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146848,22 +146682,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, - [43606] = 5, + [43588] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1688), 2, + STATE(1680), 2, sym_line_comment, sym_block_comment, - ACTIONS(3695), 15, + ACTIONS(1432), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -146879,7 +146706,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3693), 23, + ACTIONS(1430), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -146903,15 +146730,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [43659] = 5, + [43641] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1689), 2, + STATE(1681), 2, sym_line_comment, sym_block_comment, - ACTIONS(3557), 15, + ACTIONS(3699), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -146927,7 +146754,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3555), 23, + ACTIONS(3697), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -146951,60 +146778,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [43712] = 21, + [43694] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3561), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3565), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3567), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3791), 1, anon_sym_as, - ACTIONS(4027), 1, + ACTIONS(3899), 1, anon_sym_CARET, - ACTIONS(4029), 1, + ACTIONS(3901), 1, anon_sym_AMP, - ACTIONS(4031), 1, + ACTIONS(3903), 1, anon_sym_PIPE, - ACTIONS(4035), 1, + ACTIONS(3905), 1, + anon_sym_AMP_AMP, + ACTIONS(3907), 1, anon_sym_PIPE_PIPE, - ACTIONS(4041), 1, + ACTIONS(3913), 1, anon_sym_EQ, - ACTIONS(4047), 1, + ACTIONS(4033), 1, anon_sym_DOT_DOT, - ACTIONS(4023), 2, + ACTIONS(3661), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3895), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4037), 2, + ACTIONS(3909), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4045), 2, + ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4049), 2, + ACTIONS(4035), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1690), 2, + STATE(1682), 2, sym_line_comment, sym_block_comment, - ACTIONS(4025), 3, + ACTIONS(3897), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4171), 3, - anon_sym_LBRACE, - anon_sym_AMP_AMP, - anon_sym_SQUOTE, - ACTIONS(4043), 4, + ACTIONS(3915), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4039), 10, + ACTIONS(3911), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147015,15 +146843,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43797] = 5, + [43781] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1691), 2, + STATE(1683), 2, sym_line_comment, sym_block_comment, - ACTIONS(3707), 15, + ACTIONS(3695), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147039,7 +146867,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3705), 23, + ACTIONS(3693), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -147063,15 +146891,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [43850] = 5, + [43834] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1692), 2, + STATE(1684), 2, sym_line_comment, sym_block_comment, - ACTIONS(3825), 15, + ACTIONS(3651), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147087,7 +146915,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3823), 23, + ACTIONS(3649), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -147111,15 +146939,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [43903] = 5, + [43887] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1693), 2, + STATE(1685), 2, sym_line_comment, sym_block_comment, - ACTIONS(3611), 15, + ACTIONS(3687), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147135,7 +146963,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3609), 23, + ACTIONS(3685), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -147159,15 +146987,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [43956] = 5, + [43940] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1694), 2, + STATE(1686), 2, sym_line_comment, sym_block_comment, - ACTIONS(3615), 15, + ACTIONS(3575), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147183,7 +147011,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3613), 23, + ACTIONS(3573), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -147207,101 +147035,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [44009] = 23, + [43993] = 14, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(4129), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(4133), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(4135), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(4137), 1, anon_sym_as, - ACTIONS(3901), 1, - anon_sym_CARET, - ACTIONS(3903), 1, - anon_sym_AMP, - ACTIONS(3905), 1, - anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, - anon_sym_EQ, - ACTIONS(4005), 1, - anon_sym_DOT_DOT, ACTIONS(4173), 1, - anon_sym_SEMI, + anon_sym_CARET, ACTIONS(4175), 1, - anon_sym_else, - ACTIONS(3897), 2, + anon_sym_AMP, + ACTIONS(4163), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4165), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4007), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1695), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3899), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3929), 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, - [44098] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1696), 2, + STATE(1687), 2, sym_line_comment, sym_block_comment, - ACTIONS(3565), 15, - anon_sym_PLUS, + ACTIONS(4131), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(3789), 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(3563), 23, + ACTIONS(3787), 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, @@ -147320,62 +147092,37 @@ 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, - [44151] = 22, + [44064] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3901), 1, - anon_sym_CARET, - ACTIONS(3903), 1, - anon_sym_AMP, - ACTIONS(3905), 1, - anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, - anon_sym_EQ, - ACTIONS(4005), 1, - anon_sym_DOT_DOT, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3917), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4007), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4177), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1697), 2, + STATE(1688), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3655), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3929), 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(3653), 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, @@ -147386,61 +147133,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44238] = 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, + [44117] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3901), 1, + STATE(1689), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3583), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3903), 1, anon_sym_AMP, - ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, - anon_sym_EQ, - ACTIONS(4005), 1, - anon_sym_DOT_DOT, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4179), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1698), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3899), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3929), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3581), 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, @@ -147451,61 +147181,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44325] = 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, + [44170] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(4027), 1, + STATE(1690), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3587), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4029), 1, anon_sym_AMP, - ACTIONS(4031), 1, anon_sym_PIPE, - ACTIONS(4035), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4041), 1, - anon_sym_EQ, - ACTIONS(4047), 1, - anon_sym_DOT_DOT, - ACTIONS(4183), 1, - anon_sym_AMP_AMP, - ACTIONS(4023), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4037), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4045), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4049), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4181), 2, - anon_sym_LBRACE, - anon_sym_SQUOTE, - STATE(1699), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4025), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4043), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4039), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3585), 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, @@ -147516,15 +147229,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44412] = 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, + [44223] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1700), 2, + STATE(1691), 2, sym_line_comment, sym_block_comment, - ACTIONS(3867), 15, + ACTIONS(3591), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147540,7 +147260,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3865), 23, + ACTIONS(3589), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -147564,35 +147284,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [44465] = 5, + [44276] = 13, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1701), 2, + ACTIONS(4129), 1, + anon_sym_LBRACK, + ACTIONS(4133), 1, + anon_sym_QMARK, + ACTIONS(4135), 1, + anon_sym_DOT, + ACTIONS(4137), 1, + anon_sym_as, + ACTIONS(4175), 1, + anon_sym_AMP, + ACTIONS(4163), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4165), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1692), 2, sym_line_comment, sym_block_comment, - ACTIONS(3301), 15, - anon_sym_PLUS, + ACTIONS(4131), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3789), 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(3299), 23, + ACTIONS(3787), 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, @@ -147611,63 +147340,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, - [44518] = 23, + [44345] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3561), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3565), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3567), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3791), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(4199), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4201), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4203), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(4205), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4207), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4213), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4219), 1, anon_sym_DOT_DOT, - ACTIONS(4125), 1, - anon_sym_SEMI, - ACTIONS(4185), 1, - anon_sym_RBRACE, - ACTIONS(3897), 2, + ACTIONS(3617), 2, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(4195), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4209), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4217), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4221), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1702), 2, + STATE(1693), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4197), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4215), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4211), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147678,61 +147405,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44607] = 22, + [44432] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3561), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3565), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3567), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3791), 1, anon_sym_as, - ACTIONS(4191), 1, + ACTIONS(3899), 1, anon_sym_CARET, - ACTIONS(4193), 1, + ACTIONS(3901), 1, anon_sym_AMP, - ACTIONS(4195), 1, + ACTIONS(3903), 1, anon_sym_PIPE, - ACTIONS(4197), 1, + ACTIONS(3905), 1, anon_sym_AMP_AMP, - ACTIONS(4199), 1, + ACTIONS(3907), 1, anon_sym_PIPE_PIPE, - ACTIONS(4205), 1, + ACTIONS(3913), 1, anon_sym_EQ, - ACTIONS(4211), 1, + ACTIONS(4033), 1, anon_sym_DOT_DOT, - ACTIONS(3771), 2, - anon_sym_LPAREN, - anon_sym_LBRACE, - ACTIONS(4187), 2, + ACTIONS(3895), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4201), 2, + ACTIONS(3909), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4209), 2, + ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4213), 2, + ACTIONS(4035), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1703), 2, + ACTIONS(4223), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1694), 2, sym_line_comment, sym_block_comment, - ACTIONS(4189), 3, + ACTIONS(3897), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4207), 4, + ACTIONS(3915), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4203), 10, + ACTIONS(3911), 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, + [44519] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1695), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1406), 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(1408), 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, @@ -147743,53 +147511,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44694] = 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, + [44572] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3561), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3565), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3567), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3791), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(3899), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(3901), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3903), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3905), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3907), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(3913), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4033), 1, anon_sym_DOT_DOT, - ACTIONS(4169), 1, - anon_sym_COMMA, - ACTIONS(4215), 1, - anon_sym_RPAREN, - ACTIONS(3897), 2, + ACTIONS(3895), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3909), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4035), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1704), 2, + ACTIONS(4225), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1696), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3897), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -147798,7 +147572,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(3911), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147809,15 +147583,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44783] = 5, + [44659] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1705), 2, + STATE(1697), 2, sym_line_comment, sym_block_comment, - ACTIONS(3623), 15, + ACTIONS(3607), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147833,7 +147607,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3621), 23, + ACTIONS(3605), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -147857,15 +147631,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [44836] = 5, + [44712] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1706), 2, + STATE(1698), 2, sym_line_comment, sym_block_comment, - ACTIONS(3631), 15, + ACTIONS(3611), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147881,7 +147655,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3629), 23, + ACTIONS(3609), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -147905,15 +147679,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [44889] = 5, + [44765] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1707), 2, + STATE(1699), 2, sym_line_comment, sym_block_comment, - ACTIONS(3213), 15, + ACTIONS(3426), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147929,7 +147703,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3215), 23, + ACTIONS(3422), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -147953,15 +147727,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [44942] = 5, + [44818] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1708), 2, + STATE(1700), 2, sym_line_comment, sym_block_comment, - ACTIONS(3289), 15, + ACTIONS(3615), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147977,7 +147751,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3287), 23, + ACTIONS(3613), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -148001,15 +147775,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [44995] = 5, + [44871] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1709), 2, + ACTIONS(3561), 1, + anon_sym_LBRACK, + ACTIONS(3565), 1, + anon_sym_QMARK, + ACTIONS(3567), 1, + anon_sym_DOT, + ACTIONS(3791), 1, + anon_sym_as, + ACTIONS(3899), 1, + anon_sym_CARET, + ACTIONS(3901), 1, + anon_sym_AMP, + ACTIONS(3903), 1, + anon_sym_PIPE, + ACTIONS(3905), 1, + anon_sym_AMP_AMP, + ACTIONS(3907), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3913), 1, + anon_sym_EQ, + ACTIONS(4033), 1, + anon_sym_DOT_DOT, + ACTIONS(4227), 1, + anon_sym_SEMI, + ACTIONS(4229), 1, + anon_sym_else, + ACTIONS(3895), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3909), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3917), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4035), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1701), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3897), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3915), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3911), 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, + [44960] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1702), 2, sym_line_comment, sym_block_comment, - ACTIONS(3305), 15, + ACTIONS(3775), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -148025,7 +147865,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3303), 23, + ACTIONS(3773), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -148049,60 +147889,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [45048] = 21, + [45013] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3561), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3565), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3567), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3791), 1, anon_sym_as, - ACTIONS(3921), 1, - anon_sym_EQ, - ACTIONS(4191), 1, + ACTIONS(3899), 1, anon_sym_CARET, - ACTIONS(4193), 1, + ACTIONS(3901), 1, anon_sym_AMP, - ACTIONS(4195), 1, + ACTIONS(3903), 1, anon_sym_PIPE, - ACTIONS(4197), 1, + ACTIONS(3905), 1, anon_sym_AMP_AMP, - ACTIONS(4199), 1, + ACTIONS(3907), 1, anon_sym_PIPE_PIPE, - ACTIONS(4211), 1, + ACTIONS(3913), 1, + anon_sym_EQ, + ACTIONS(4033), 1, anon_sym_DOT_DOT, - ACTIONS(4187), 2, + ACTIONS(4231), 1, + anon_sym_SEMI, + ACTIONS(4233), 1, + anon_sym_else, + ACTIONS(3895), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4201), 2, + ACTIONS(3909), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4209), 2, + ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4213), 2, + ACTIONS(4035), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1710), 2, + STATE(1703), 2, sym_line_comment, sym_block_comment, - ACTIONS(4189), 3, + ACTIONS(3897), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4207), 4, + ACTIONS(3915), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3919), 12, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(3911), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148113,61 +147955,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45133] = 22, + [45102] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3561), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3565), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3567), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3791), 1, anon_sym_as, - ACTIONS(4191), 1, + ACTIONS(3899), 1, anon_sym_CARET, - ACTIONS(4193), 1, + ACTIONS(3901), 1, anon_sym_AMP, - ACTIONS(4195), 1, + ACTIONS(3903), 1, anon_sym_PIPE, - ACTIONS(4197), 1, + ACTIONS(3905), 1, anon_sym_AMP_AMP, - ACTIONS(4199), 1, + ACTIONS(3907), 1, anon_sym_PIPE_PIPE, - ACTIONS(4205), 1, + ACTIONS(3913), 1, anon_sym_EQ, - ACTIONS(4211), 1, + ACTIONS(4033), 1, anon_sym_DOT_DOT, - ACTIONS(3739), 2, - anon_sym_LPAREN, - anon_sym_LBRACE, - ACTIONS(4187), 2, + ACTIONS(4125), 1, + anon_sym_SEMI, + ACTIONS(4235), 1, + anon_sym_RBRACE, + ACTIONS(3895), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4201), 2, + ACTIONS(3909), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4209), 2, + ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4213), 2, + ACTIONS(4035), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1711), 2, + STATE(1704), 2, sym_line_comment, sym_block_comment, - ACTIONS(4189), 3, + ACTIONS(3897), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4207), 4, + ACTIONS(3915), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4203), 10, + ACTIONS(3911), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148178,29 +148021,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45220] = 10, + [45191] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - STATE(1712), 2, + STATE(1705), 2, sym_line_comment, sym_block_comment, - ACTIONS(4189), 3, + ACTIONS(1406), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3669), 11, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -148209,10 +148043,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(3665), 20, + ACTIONS(1408), 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, @@ -148231,44 +148068,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [45283] = 13, + anon_sym_as, + [45244] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(4193), 1, - anon_sym_AMP, - ACTIONS(4187), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4201), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1713), 2, + STATE(1706), 2, sym_line_comment, sym_block_comment, - ACTIONS(4189), 3, + ACTIONS(3883), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3669), 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(3665), 20, + ACTIONS(3881), 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, @@ -148287,43 +148116,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [45352] = 12, + anon_sym_as, + [45297] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(290), 1, + anon_sym_RBRACE, + ACTIONS(3561), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3565), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3567), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3791), 1, anon_sym_as, - ACTIONS(4187), 2, + ACTIONS(3899), 1, + anon_sym_CARET, + ACTIONS(3901), 1, + anon_sym_AMP, + ACTIONS(3903), 1, + anon_sym_PIPE, + ACTIONS(3905), 1, + anon_sym_AMP_AMP, + ACTIONS(3907), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3913), 1, + anon_sym_EQ, + ACTIONS(4033), 1, + anon_sym_DOT_DOT, + ACTIONS(4125), 1, + anon_sym_SEMI, + ACTIONS(3895), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4201), 2, + ACTIONS(3909), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1714), 2, + ACTIONS(3917), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4035), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1707), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3897), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3915), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3911), 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, + [45386] = 8, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(4129), 1, + anon_sym_LBRACK, + ACTIONS(4133), 1, + anon_sym_QMARK, + ACTIONS(4135), 1, + anon_sym_DOT, + STATE(1708), 2, sym_line_comment, sym_block_comment, - ACTIONS(4189), 3, + ACTIONS(3871), 14, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3669), 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_DOT, - ACTIONS(3665), 20, + ACTIONS(3869), 21, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -148342,47 +148233,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [45419] = 14, + anon_sym_as, + [45445] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(278), 1, + anon_sym_RBRACE, + ACTIONS(3561), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3565), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3567), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3791), 1, anon_sym_as, - ACTIONS(4191), 1, + ACTIONS(3899), 1, anon_sym_CARET, - ACTIONS(4193), 1, + ACTIONS(3901), 1, anon_sym_AMP, - ACTIONS(4187), 2, + ACTIONS(3903), 1, + anon_sym_PIPE, + ACTIONS(3905), 1, + anon_sym_AMP_AMP, + ACTIONS(3907), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3913), 1, + anon_sym_EQ, + ACTIONS(4033), 1, + anon_sym_DOT_DOT, + ACTIONS(4125), 1, + anon_sym_SEMI, + ACTIONS(3895), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4201), 2, + ACTIONS(3909), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1715), 2, + ACTIONS(3917), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4035), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1709), 2, sym_line_comment, sym_block_comment, - ACTIONS(4189), 3, + ACTIONS(3897), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3669), 5, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3665), 20, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3915), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3911), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148393,58 +148300,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_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [45490] = 17, + [45534] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(4129), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(4133), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(4135), 1, anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(4191), 1, + STATE(1710), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3867), 14, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4193), 1, anon_sym_AMP, - ACTIONS(4195), 1, anon_sym_PIPE, - ACTIONS(3669), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(4187), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4201), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4209), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - STATE(1716), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4189), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4207), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3665), 16, + anon_sym_DOT_DOT, + ACTIONS(3865), 21, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -148457,57 +148344,68 @@ 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, - [45567] = 18, + anon_sym_as, + [45593] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3561), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3565), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3567), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3791), 1, anon_sym_as, - ACTIONS(4191), 1, + ACTIONS(4199), 1, anon_sym_CARET, - ACTIONS(4193), 1, + ACTIONS(4201), 1, anon_sym_AMP, - ACTIONS(4195), 1, + ACTIONS(4203), 1, anon_sym_PIPE, - ACTIONS(4197), 1, + ACTIONS(4205), 1, anon_sym_AMP_AMP, - ACTIONS(3669), 2, + ACTIONS(4207), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4213), 1, anon_sym_EQ, + ACTIONS(4219), 1, anon_sym_DOT_DOT, - ACTIONS(4187), 2, + ACTIONS(3689), 2, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(4195), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4201), 2, + ACTIONS(4209), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4209), 2, + ACTIONS(4217), 2, anon_sym_GT, anon_sym_LT, - STATE(1717), 2, + ACTIONS(4221), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1711), 2, sym_line_comment, sym_block_comment, - ACTIONS(4189), 3, + ACTIONS(4197), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4207), 4, + ACTIONS(4215), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3665), 15, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PIPE_PIPE, + ACTIONS(4211), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148518,32 +148416,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_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [45646] = 11, + [45680] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(4187), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1718), 2, + STATE(1712), 2, sym_line_comment, sym_block_comment, - ACTIONS(4189), 3, + ACTIONS(3623), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3669), 9, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -148552,10 +148438,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(3665), 20, + ACTIONS(3621), 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, @@ -148574,60 +148463,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [45711] = 21, + anon_sym_as, + [45733] = 21, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3961), 1, + anon_sym_EQ, + ACTIONS(4129), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(4133), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(4135), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(4137), 1, anon_sym_as, - ACTIONS(3949), 1, - anon_sym_EQ, - ACTIONS(4191), 1, + ACTIONS(4173), 1, anon_sym_CARET, - ACTIONS(4193), 1, + ACTIONS(4175), 1, anon_sym_AMP, - ACTIONS(4195), 1, + ACTIONS(4177), 1, anon_sym_PIPE, - ACTIONS(4197), 1, + ACTIONS(4179), 1, anon_sym_AMP_AMP, - ACTIONS(4199), 1, + ACTIONS(4181), 1, anon_sym_PIPE_PIPE, - ACTIONS(4211), 1, + ACTIONS(4191), 1, anon_sym_DOT_DOT, - ACTIONS(4187), 2, + ACTIONS(4163), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4201), 2, + ACTIONS(4165), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4209), 2, + ACTIONS(4189), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4213), 2, + ACTIONS(4193), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1719), 2, + STATE(1713), 2, sym_line_comment, sym_block_comment, - ACTIONS(4189), 3, + ACTIONS(4131), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4207), 4, + ACTIONS(4187), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3947), 12, + ACTIONS(3959), 12, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148638,60 +148528,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45796] = 21, + [45818] = 21, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3957), 1, + anon_sym_EQ, + ACTIONS(4129), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(4133), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(4135), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(4137), 1, anon_sym_as, - ACTIONS(3961), 1, - anon_sym_EQ, - ACTIONS(4191), 1, + ACTIONS(4173), 1, anon_sym_CARET, - ACTIONS(4193), 1, + ACTIONS(4175), 1, anon_sym_AMP, - ACTIONS(4195), 1, + ACTIONS(4177), 1, anon_sym_PIPE, - ACTIONS(4197), 1, + ACTIONS(4179), 1, anon_sym_AMP_AMP, - ACTIONS(4199), 1, + ACTIONS(4181), 1, anon_sym_PIPE_PIPE, - ACTIONS(4211), 1, + ACTIONS(4191), 1, anon_sym_DOT_DOT, - ACTIONS(4187), 2, + ACTIONS(4163), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4201), 2, + ACTIONS(4165), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4209), 2, + ACTIONS(4189), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4213), 2, + ACTIONS(4193), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1720), 2, + STATE(1714), 2, sym_line_comment, sym_block_comment, - ACTIONS(4189), 3, + ACTIONS(4131), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4207), 4, + ACTIONS(4187), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3959), 12, + ACTIONS(3955), 12, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148702,46 +148592,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45881] = 15, + [45903] = 15, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(4129), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(4133), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(4135), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(4137), 1, anon_sym_as, - ACTIONS(4191), 1, + ACTIONS(4173), 1, anon_sym_CARET, - ACTIONS(4193), 1, + ACTIONS(4175), 1, anon_sym_AMP, - ACTIONS(4195), 1, + ACTIONS(4177), 1, anon_sym_PIPE, - ACTIONS(4187), 2, + ACTIONS(4163), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4201), 2, + ACTIONS(4165), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1721), 2, + STATE(1715), 2, sym_line_comment, sym_block_comment, - ACTIONS(4189), 3, + ACTIONS(4131), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3669), 4, + ACTIONS(3789), 4, anon_sym_EQ, anon_sym_GT, anon_sym_LT, anon_sym_DOT_DOT, - ACTIONS(3665), 20, + ACTIONS(3787), 20, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -148760,56 +148650,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [45954] = 19, + [45976] = 19, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(4129), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(4133), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(4135), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(4137), 1, anon_sym_as, - ACTIONS(4191), 1, + ACTIONS(4173), 1, anon_sym_CARET, - ACTIONS(4193), 1, + ACTIONS(4175), 1, anon_sym_AMP, - ACTIONS(4195), 1, + ACTIONS(4177), 1, anon_sym_PIPE, - ACTIONS(4197), 1, + ACTIONS(4179), 1, anon_sym_AMP_AMP, - ACTIONS(4199), 1, + ACTIONS(4181), 1, anon_sym_PIPE_PIPE, - ACTIONS(3913), 2, + ACTIONS(3965), 2, anon_sym_EQ, anon_sym_DOT_DOT, - ACTIONS(4187), 2, + ACTIONS(4163), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4201), 2, + ACTIONS(4165), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4209), 2, + ACTIONS(4189), 2, anon_sym_GT, anon_sym_LT, - STATE(1722), 2, + STATE(1716), 2, sym_line_comment, sym_block_comment, - ACTIONS(4189), 3, + ACTIONS(4131), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4207), 4, + ACTIONS(4187), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3895), 14, + ACTIONS(3963), 14, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148822,37 +148712,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [46035] = 5, + [46057] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1723), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3569), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3561), 1, + anon_sym_LBRACK, + ACTIONS(3565), 1, + anon_sym_QMARK, + ACTIONS(3567), 1, + anon_sym_DOT, + ACTIONS(3791), 1, + anon_sym_as, + ACTIONS(3899), 1, anon_sym_CARET, + ACTIONS(3901), 1, anon_sym_AMP, + ACTIONS(3903), 1, anon_sym_PIPE, + ACTIONS(3905), 1, + anon_sym_AMP_AMP, + ACTIONS(3907), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3913), 1, + anon_sym_EQ, + ACTIONS(4033), 1, + anon_sym_DOT_DOT, + ACTIONS(4237), 1, + anon_sym_SEMI, + ACTIONS(4239), 1, + anon_sym_else, + ACTIONS(3895), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3909), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3567), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4035), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1717), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3897), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3915), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3911), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148863,22 +148778,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, - [46088] = 5, + [46146] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1724), 2, + STATE(1718), 2, sym_line_comment, sym_block_comment, - ACTIONS(3585), 15, + ACTIONS(3849), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -148894,7 +148802,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3583), 23, + ACTIONS(3847), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -148918,15 +148826,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46141] = 5, + [46199] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1725), 2, + STATE(1719), 2, sym_line_comment, sym_block_comment, - ACTIONS(3627), 15, + ACTIONS(1406), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -148942,7 +148850,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3625), 23, + ACTIONS(1408), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -148966,15 +148874,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46194] = 5, + [46252] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1726), 2, + ACTIONS(3561), 1, + anon_sym_LBRACK, + ACTIONS(3565), 1, + anon_sym_QMARK, + ACTIONS(3567), 1, + anon_sym_DOT, + ACTIONS(3791), 1, + anon_sym_as, + ACTIONS(3899), 1, + anon_sym_CARET, + ACTIONS(3901), 1, + anon_sym_AMP, + ACTIONS(3903), 1, + anon_sym_PIPE, + ACTIONS(3905), 1, + anon_sym_AMP_AMP, + ACTIONS(3907), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3913), 1, + anon_sym_EQ, + ACTIONS(4033), 1, + anon_sym_DOT_DOT, + ACTIONS(4241), 1, + anon_sym_SEMI, + ACTIONS(4243), 1, + anon_sym_else, + ACTIONS(3895), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3909), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3917), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4035), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1720), 2, sym_line_comment, sym_block_comment, - ACTIONS(3627), 15, + ACTIONS(3897), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3915), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3911), 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, + [46341] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1721), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3739), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -148990,7 +148964,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3625), 23, + ACTIONS(3737), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -149014,61 +148988,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46247] = 22, + [46394] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(302), 1, + anon_sym_RBRACE, + ACTIONS(3561), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3565), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3567), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3791), 1, anon_sym_as, - ACTIONS(4191), 1, + ACTIONS(3899), 1, anon_sym_CARET, - ACTIONS(4193), 1, + ACTIONS(3901), 1, anon_sym_AMP, - ACTIONS(4195), 1, + ACTIONS(3903), 1, anon_sym_PIPE, - ACTIONS(4197), 1, + ACTIONS(3905), 1, anon_sym_AMP_AMP, - ACTIONS(4199), 1, + ACTIONS(3907), 1, anon_sym_PIPE_PIPE, - ACTIONS(4205), 1, + ACTIONS(3913), 1, anon_sym_EQ, - ACTIONS(4211), 1, + ACTIONS(4033), 1, anon_sym_DOT_DOT, - ACTIONS(3661), 2, - anon_sym_LPAREN, - anon_sym_LBRACE, - ACTIONS(4187), 2, + ACTIONS(4125), 1, + anon_sym_SEMI, + ACTIONS(3895), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4201), 2, + ACTIONS(3909), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4209), 2, + ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4213), 2, + ACTIONS(4035), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1727), 2, + STATE(1722), 2, sym_line_comment, sym_block_comment, - ACTIONS(4189), 3, + ACTIONS(3897), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4207), 4, + ACTIONS(3915), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4203), 10, + ACTIONS(3911), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149079,15 +149054,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46334] = 5, + [46483] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1728), 2, + STATE(1723), 2, sym_line_comment, sym_block_comment, - ACTIONS(3729), 15, + ACTIONS(3619), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149103,7 +149078,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3727), 23, + ACTIONS(3617), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -149127,37 +149102,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46387] = 5, + [46536] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1729), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3737), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3561), 1, + anon_sym_LBRACK, + ACTIONS(3565), 1, + anon_sym_QMARK, + ACTIONS(3567), 1, + anon_sym_DOT, + ACTIONS(3791), 1, + anon_sym_as, + ACTIONS(3899), 1, anon_sym_CARET, + ACTIONS(3901), 1, anon_sym_AMP, + ACTIONS(3903), 1, anon_sym_PIPE, + ACTIONS(3905), 1, + anon_sym_AMP_AMP, + ACTIONS(3907), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3913), 1, + anon_sym_EQ, + ACTIONS(4033), 1, + anon_sym_DOT_DOT, + ACTIONS(4125), 1, + anon_sym_SEMI, + ACTIONS(4245), 1, + anon_sym_RBRACE, + ACTIONS(3895), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3909), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3735), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4035), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1724), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3897), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3915), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3911), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149168,44 +149168,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, - [46440] = 5, + [46625] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1730), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3285), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3561), 1, + anon_sym_LBRACK, + ACTIONS(3565), 1, + anon_sym_QMARK, + ACTIONS(3567), 1, + anon_sym_DOT, + ACTIONS(3791), 1, + anon_sym_as, + ACTIONS(4199), 1, anon_sym_CARET, + ACTIONS(4201), 1, anon_sym_AMP, + ACTIONS(4203), 1, anon_sym_PIPE, + ACTIONS(4205), 1, + anon_sym_AMP_AMP, + ACTIONS(4207), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4213), 1, + anon_sym_EQ, + ACTIONS(4247), 1, + anon_sym_LBRACE, + ACTIONS(4249), 1, + anon_sym_DOT_DOT, + STATE(1457), 1, + sym_match_block, + ACTIONS(4195), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4209), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4217), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3283), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4251), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1725), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4197), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4215), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4211), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149216,22 +149234,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, - [46493] = 5, + [46714] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1731), 2, + STATE(1726), 2, sym_line_comment, sym_block_comment, - ACTIONS(3745), 15, + ACTIONS(3759), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149247,7 +149258,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3743), 23, + ACTIONS(3757), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -149271,37 +149282,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46546] = 5, + [46767] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1732), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3769), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3561), 1, + anon_sym_LBRACK, + ACTIONS(3565), 1, + anon_sym_QMARK, + ACTIONS(3567), 1, + anon_sym_DOT, + ACTIONS(3791), 1, + anon_sym_as, + ACTIONS(3899), 1, anon_sym_CARET, + ACTIONS(3901), 1, anon_sym_AMP, + ACTIONS(3903), 1, anon_sym_PIPE, + ACTIONS(3905), 1, + anon_sym_AMP_AMP, + ACTIONS(3907), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3913), 1, + anon_sym_EQ, + ACTIONS(4033), 1, + anon_sym_DOT_DOT, + ACTIONS(4253), 1, + anon_sym_RBRACE, + ACTIONS(4255), 1, + anon_sym_COMMA, + ACTIONS(3895), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3909), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3767), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4035), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1727), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3897), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3915), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3911), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149312,59 +149348,53 @@ 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, - [46599] = 22, + [46856] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(304), 1, + anon_sym_RBRACE, + ACTIONS(3561), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3565), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3567), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3791), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(3899), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(3901), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3903), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3905), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3907), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(3913), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4033), 1, anon_sym_DOT_DOT, - ACTIONS(3897), 2, + ACTIONS(4125), 1, + anon_sym_SEMI, + ACTIONS(3895), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3909), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4035), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4217), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1733), 2, + STATE(1728), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3897), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -149373,7 +149403,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(3911), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149384,37 +149414,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46686] = 5, + [46945] = 19, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1734), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3831), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4129), 1, + anon_sym_LBRACK, + ACTIONS(4133), 1, + anon_sym_QMARK, + ACTIONS(4135), 1, + anon_sym_DOT, + ACTIONS(4137), 1, + anon_sym_as, + ACTIONS(4173), 1, anon_sym_CARET, + ACTIONS(4175), 1, anon_sym_AMP, + ACTIONS(4177), 1, anon_sym_PIPE, + ACTIONS(4179), 1, + anon_sym_AMP_AMP, + ACTIONS(4181), 1, + anon_sym_PIPE_PIPE, + ACTIONS(392), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4163), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4165), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4189), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3829), 23, + STATE(1729), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4131), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4187), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(390), 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, @@ -149425,22 +149474,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, - [46739] = 5, + [47026] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1735), 2, + STATE(1730), 2, sym_line_comment, sym_block_comment, - ACTIONS(3843), 15, + ACTIONS(3879), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149456,7 +149500,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3841), 23, + ACTIONS(3877), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -149480,15 +149524,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46792] = 5, + [47079] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1736), 2, + STATE(1731), 2, sym_line_comment, sym_block_comment, - ACTIONS(3851), 15, + ACTIONS(3875), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149504,7 +149548,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3849), 23, + ACTIONS(3873), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -149528,15 +149572,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46845] = 5, + [47132] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1737), 2, + STATE(1732), 2, sym_line_comment, sym_block_comment, - ACTIONS(3855), 15, + ACTIONS(3841), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149552,7 +149596,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3853), 23, + ACTIONS(3839), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -149576,15 +149620,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46898] = 5, + [47185] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1738), 2, + STATE(1733), 2, sym_line_comment, sym_block_comment, - ACTIONS(3859), 15, + ACTIONS(981), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149600,7 +149644,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3857), 23, + ACTIONS(983), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -149624,37 +149668,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46951] = 5, + [47238] = 21, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1739), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3875), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(342), 1, + anon_sym_EQ, + ACTIONS(4129), 1, + anon_sym_LBRACK, + ACTIONS(4133), 1, + anon_sym_QMARK, + ACTIONS(4135), 1, + anon_sym_DOT, + ACTIONS(4137), 1, + anon_sym_as, + ACTIONS(4173), 1, anon_sym_CARET, + ACTIONS(4175), 1, anon_sym_AMP, + ACTIONS(4177), 1, anon_sym_PIPE, + ACTIONS(4179), 1, + anon_sym_AMP_AMP, + ACTIONS(4181), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4191), 1, + anon_sym_DOT_DOT, + ACTIONS(4163), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4165), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4189), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3873), 23, + ACTIONS(4193), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1734), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4131), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4187), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(336), 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, @@ -149665,69 +149732,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, + [47323] = 23, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(298), 1, + anon_sym_RBRACE, + ACTIONS(3561), 1, + anon_sym_LBRACK, + ACTIONS(3565), 1, + anon_sym_QMARK, + ACTIONS(3567), 1, + anon_sym_DOT, + ACTIONS(3791), 1, + anon_sym_as, + ACTIONS(3899), 1, + anon_sym_CARET, + ACTIONS(3901), 1, + anon_sym_AMP, + ACTIONS(3903), 1, + anon_sym_PIPE, + ACTIONS(3905), 1, + anon_sym_AMP_AMP, + ACTIONS(3907), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3913), 1, + anon_sym_EQ, + ACTIONS(4033), 1, + anon_sym_DOT_DOT, + ACTIONS(4125), 1, + anon_sym_SEMI, + ACTIONS(3895), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3909), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3917), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4035), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1735), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3897), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3915), 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, - [47004] = 23, + ACTIONS(3911), 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, + [47412] = 21, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3561), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3565), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3567), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3791), 1, anon_sym_as, - ACTIONS(4191), 1, + ACTIONS(4007), 1, anon_sym_CARET, - ACTIONS(4193), 1, + ACTIONS(4009), 1, anon_sym_AMP, - ACTIONS(4195), 1, + ACTIONS(4011), 1, anon_sym_PIPE, - ACTIONS(4197), 1, - anon_sym_AMP_AMP, - ACTIONS(4199), 1, + ACTIONS(4015), 1, anon_sym_PIPE_PIPE, - ACTIONS(4205), 1, + ACTIONS(4021), 1, anon_sym_EQ, - ACTIONS(4219), 1, - anon_sym_LBRACE, - ACTIONS(4221), 1, + ACTIONS(4027), 1, anon_sym_DOT_DOT, - STATE(388), 1, - sym_match_block, - ACTIONS(4187), 2, + ACTIONS(4003), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4201), 2, + ACTIONS(4017), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4209), 2, + ACTIONS(4025), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4223), 2, + ACTIONS(4029), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1740), 2, + STATE(1736), 2, sym_line_comment, sym_block_comment, - ACTIONS(4189), 3, + ACTIONS(4005), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4207), 4, + ACTIONS(4257), 3, + anon_sym_LBRACE, + anon_sym_AMP_AMP, + anon_sym_SQUOTE, + ACTIONS(4023), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4203), 10, + ACTIONS(4019), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149738,15 +149862,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47093] = 5, + [47497] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1741), 2, + STATE(1737), 2, sym_line_comment, sym_block_comment, - ACTIONS(1546), 15, + ACTIONS(3781), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149762,7 +149886,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1548), 23, + ACTIONS(3779), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -149786,15 +149910,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [47146] = 5, + [47550] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1742), 2, + STATE(1738), 2, sym_line_comment, sym_block_comment, - ACTIONS(1404), 15, + ACTIONS(1001), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149810,7 +149934,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1402), 23, + ACTIONS(1003), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -149834,15 +149958,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [47199] = 5, + [47603] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1743), 2, + STATE(1739), 2, sym_line_comment, sym_block_comment, - ACTIONS(1376), 15, + ACTIONS(1546), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149858,7 +149982,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1374), 23, + ACTIONS(1548), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -149882,37 +150006,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [47252] = 5, + [47656] = 19, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1744), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1384), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3561), 1, + anon_sym_LBRACK, + ACTIONS(3565), 1, + anon_sym_QMARK, + ACTIONS(3567), 1, + anon_sym_DOT, + ACTIONS(3791), 1, + anon_sym_as, + ACTIONS(4199), 1, anon_sym_CARET, + ACTIONS(4201), 1, anon_sym_AMP, + ACTIONS(4203), 1, anon_sym_PIPE, + ACTIONS(4205), 1, + anon_sym_AMP_AMP, + ACTIONS(4207), 1, + anon_sym_PIPE_PIPE, + ACTIONS(392), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4195), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4209), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4217), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1382), 23, + STATE(1740), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4197), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4215), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(390), 14, 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, @@ -149923,22 +150066,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, - [47305] = 5, + [47737] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1745), 2, + STATE(1741), 2, sym_line_comment, sym_block_comment, - ACTIONS(1422), 15, + ACTIONS(3739), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149954,7 +150092,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1420), 23, + ACTIONS(3737), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -149978,61 +150116,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [47358] = 22, + [47790] = 21, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3929), 1, + anon_sym_EQ, + ACTIONS(4129), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(4133), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(4135), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(4137), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(4173), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4175), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4177), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(4179), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4181), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, - anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4191), 1, anon_sym_DOT_DOT, - ACTIONS(3771), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(3897), 2, + ACTIONS(4163), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4165), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4189), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4193), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1746), 2, + STATE(1742), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4131), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4187), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(3927), 12, + anon_sym_LPAREN, + anon_sym_EQ_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150043,15 +150180,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47445] = 5, + [47875] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1747), 2, + STATE(1743), 2, sym_line_comment, sym_block_comment, - ACTIONS(3639), 15, + ACTIONS(1364), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -150067,7 +150204,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3637), 23, + ACTIONS(1362), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -150091,53 +150228,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [47498] = 23, + [47928] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(127), 1, + ACTIONS(306), 1, anon_sym_RBRACE, - ACTIONS(3667), 1, + ACTIONS(3561), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3565), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3567), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3791), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(3899), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(3901), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3903), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3905), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3907), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(3913), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4033), 1, anon_sym_DOT_DOT, ACTIONS(4125), 1, anon_sym_SEMI, - ACTIONS(3897), 2, + ACTIONS(3895), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3909), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4035), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1748), 2, + STATE(1744), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3897), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -150146,7 +150283,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(3911), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150157,101 +150294,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47587] = 21, + [48017] = 21, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3921), 1, + ACTIONS(3933), 1, anon_sym_EQ, - ACTIONS(4131), 1, + ACTIONS(4129), 1, anon_sym_LBRACK, ACTIONS(4133), 1, anon_sym_QMARK, ACTIONS(4135), 1, anon_sym_DOT, - ACTIONS(4141), 1, + ACTIONS(4137), 1, + anon_sym_as, + ACTIONS(4173), 1, anon_sym_CARET, - ACTIONS(4143), 1, + ACTIONS(4175), 1, anon_sym_AMP, - ACTIONS(4145), 1, + ACTIONS(4177), 1, anon_sym_PIPE, - ACTIONS(4147), 1, + ACTIONS(4179), 1, anon_sym_AMP_AMP, - ACTIONS(4149), 1, + ACTIONS(4181), 1, anon_sym_PIPE_PIPE, - ACTIONS(4157), 1, - anon_sym_as, - ACTIONS(4159), 1, + ACTIONS(4191), 1, anon_sym_DOT_DOT, - ACTIONS(4137), 2, + ACTIONS(4163), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4151), 2, + ACTIONS(4165), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4155), 2, + ACTIONS(4189), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4161), 2, + ACTIONS(4193), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1749), 2, + STATE(1745), 2, sym_line_comment, sym_block_comment, - ACTIONS(4139), 3, + ACTIONS(4131), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4153), 4, + ACTIONS(4187), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3919), 12, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [47672] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1750), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1400), 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(1398), 23, + ACTIONS(3931), 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, @@ -150262,59 +150358,53 @@ 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, - [47725] = 22, + [48102] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3561), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3565), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3567), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3791), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(3899), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(3901), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3903), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3905), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3907), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(3913), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4033), 1, anon_sym_DOT_DOT, - ACTIONS(3739), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(3897), 2, + ACTIONS(4125), 1, + anon_sym_SEMI, + ACTIONS(4259), 1, + anon_sym_RBRACE, + ACTIONS(3895), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3909), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4035), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1751), 2, + STATE(1746), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3897), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -150323,7 +150413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(3911), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150334,15 +150424,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47812] = 5, + [48191] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1752), 2, + STATE(1747), 2, sym_line_comment, sym_block_comment, - ACTIONS(1452), 15, + ACTIONS(3213), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -150358,7 +150448,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1450), 23, + ACTIONS(3215), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -150382,29 +150472,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [47865] = 10, + [48244] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4131), 1, - anon_sym_LBRACK, - ACTIONS(4133), 1, - anon_sym_QMARK, - ACTIONS(4135), 1, - anon_sym_DOT, - ACTIONS(4157), 1, - anon_sym_as, - STATE(1753), 2, + STATE(1748), 2, sym_line_comment, sym_block_comment, - ACTIONS(4139), 3, + ACTIONS(3727), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3669), 11, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -150413,10 +150494,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(3665), 20, + ACTIONS(3725), 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, @@ -150435,44 +150519,160 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [47928] = 13, + anon_sym_as, + [48297] = 17, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4131), 1, + ACTIONS(4129), 1, anon_sym_LBRACK, ACTIONS(4133), 1, anon_sym_QMARK, ACTIONS(4135), 1, anon_sym_DOT, - ACTIONS(4143), 1, + ACTIONS(4137), 1, + anon_sym_as, + ACTIONS(4173), 1, + anon_sym_CARET, + ACTIONS(4175), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4177), 1, + anon_sym_PIPE, + ACTIONS(3789), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4163), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4165), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4189), 2, + anon_sym_GT, + anon_sym_LT, + STATE(1749), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4131), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4187), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3787), 16, + 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_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [48374] = 21, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(342), 1, + anon_sym_EQ, + ACTIONS(3561), 1, + anon_sym_LBRACK, + ACTIONS(3565), 1, + anon_sym_QMARK, + ACTIONS(3567), 1, + anon_sym_DOT, + ACTIONS(3791), 1, anon_sym_as, - ACTIONS(4137), 2, + ACTIONS(4199), 1, + anon_sym_CARET, + ACTIONS(4201), 1, + anon_sym_AMP, + ACTIONS(4203), 1, + anon_sym_PIPE, + ACTIONS(4205), 1, + anon_sym_AMP_AMP, + ACTIONS(4207), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4219), 1, + anon_sym_DOT_DOT, + ACTIONS(4195), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4151), 2, + ACTIONS(4209), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1754), 2, + ACTIONS(4217), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4221), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1750), 2, sym_line_comment, sym_block_comment, - ACTIONS(4139), 3, + ACTIONS(4197), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4215), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(336), 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, + [48459] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1751), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3659), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3669), 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(3665), 20, + ACTIONS(3657), 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, @@ -150491,43 +150691,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [47997] = 12, + anon_sym_as, + [48512] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4131), 1, - anon_sym_LBRACK, - ACTIONS(4133), 1, - anon_sym_QMARK, - ACTIONS(4135), 1, - anon_sym_DOT, - ACTIONS(4157), 1, - anon_sym_as, - ACTIONS(4137), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4151), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1755), 2, + STATE(1752), 2, sym_line_comment, sym_block_comment, - ACTIONS(4139), 3, + ACTIONS(3707), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3669), 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(3665), 20, + ACTIONS(3705), 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, @@ -150546,45 +150739,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [48064] = 14, + anon_sym_as, + [48565] = 18, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(4261), 1, + sym_identifier, + ACTIONS(4263), 1, + anon_sym_LBRACE, + ACTIONS(4265), 1, + anon_sym_RBRACE, + ACTIONS(4267), 1, + anon_sym_STAR, + ACTIONS(4271), 1, + anon_sym_COMMA, + ACTIONS(4273), 1, + anon_sym_COLON_COLON, + ACTIONS(4277), 1, + sym_metavariable, + STATE(2449), 1, + sym_scoped_identifier, + STATE(2765), 1, + sym__use_clause, + STATE(3432), 1, + sym_generic_type_with_turbofish, + STATE(3562), 1, + sym_bracketed_type, + STATE(1753), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4275), 3, + sym_self, + sym_super, + sym_crate, + STATE(2811), 4, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(4269), 19, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_default, + anon_sym_union, + [48644] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4131), 1, - anon_sym_LBRACK, - ACTIONS(4133), 1, - anon_sym_QMARK, - ACTIONS(4135), 1, - anon_sym_DOT, - ACTIONS(4141), 1, - anon_sym_CARET, - ACTIONS(4143), 1, - anon_sym_AMP, - ACTIONS(4157), 1, - anon_sym_as, - ACTIONS(4137), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4151), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1756), 2, + STATE(1754), 2, sym_line_comment, sym_block_comment, - ACTIONS(4139), 3, + ACTIONS(1254), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3669), 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(3665), 20, + ACTIONS(1252), 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, @@ -150603,114 +150848,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [48135] = 17, + anon_sym_as, + [48697] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4131), 1, - anon_sym_LBRACK, - ACTIONS(4133), 1, - anon_sym_QMARK, - ACTIONS(4135), 1, - anon_sym_DOT, - ACTIONS(4141), 1, - anon_sym_CARET, - ACTIONS(4143), 1, - anon_sym_AMP, - ACTIONS(4145), 1, - anon_sym_PIPE, - ACTIONS(4157), 1, - anon_sym_as, - ACTIONS(3669), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(4137), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4151), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4155), 2, - anon_sym_GT, - anon_sym_LT, - STATE(1757), 2, + STATE(1755), 2, sym_line_comment, sym_block_comment, - ACTIONS(4139), 3, + ACTIONS(3703), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4153), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3665), 16, - 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_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [48212] = 18, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4131), 1, - anon_sym_LBRACK, - ACTIONS(4133), 1, - anon_sym_QMARK, - ACTIONS(4135), 1, - anon_sym_DOT, - ACTIONS(4141), 1, anon_sym_CARET, - ACTIONS(4143), 1, anon_sym_AMP, - ACTIONS(4145), 1, anon_sym_PIPE, - ACTIONS(4147), 1, - anon_sym_AMP_AMP, - ACTIONS(4157), 1, - anon_sym_as, - ACTIONS(3669), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(4137), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4151), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4155), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - STATE(1758), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4139), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4153), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3665), 15, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3701), 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, @@ -150722,32 +150890,27 @@ 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, - [48291] = 11, + anon_sym_as, + [48750] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4131), 1, - anon_sym_LBRACK, - ACTIONS(4133), 1, - anon_sym_QMARK, - ACTIONS(4135), 1, - anon_sym_DOT, - ACTIONS(4157), 1, - anon_sym_as, - ACTIONS(4137), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1759), 2, + STATE(1756), 2, sym_line_comment, sym_block_comment, - ACTIONS(4139), 3, + ACTIONS(1372), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3669), 9, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -150756,10 +150919,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(3665), 20, + ACTIONS(1370), 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, @@ -150778,60 +150944,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [48356] = 21, + anon_sym_as, + [48803] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3949), 1, - anon_sym_EQ, - ACTIONS(4131), 1, + ACTIONS(117), 1, + anon_sym_RBRACE, + ACTIONS(3561), 1, anon_sym_LBRACK, - ACTIONS(4133), 1, + ACTIONS(3565), 1, anon_sym_QMARK, - ACTIONS(4135), 1, + ACTIONS(3567), 1, anon_sym_DOT, - ACTIONS(4141), 1, + ACTIONS(3791), 1, + anon_sym_as, + ACTIONS(3899), 1, anon_sym_CARET, - ACTIONS(4143), 1, + ACTIONS(3901), 1, anon_sym_AMP, - ACTIONS(4145), 1, + ACTIONS(3903), 1, anon_sym_PIPE, - ACTIONS(4147), 1, + ACTIONS(3905), 1, anon_sym_AMP_AMP, - ACTIONS(4149), 1, + ACTIONS(3907), 1, anon_sym_PIPE_PIPE, - ACTIONS(4157), 1, - anon_sym_as, - ACTIONS(4159), 1, + ACTIONS(3913), 1, + anon_sym_EQ, + ACTIONS(4033), 1, anon_sym_DOT_DOT, - ACTIONS(4137), 2, + ACTIONS(4125), 1, + anon_sym_SEMI, + ACTIONS(3895), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4151), 2, + ACTIONS(3909), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4155), 2, + ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4161), 2, + ACTIONS(4035), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1760), 2, + STATE(1757), 2, sym_line_comment, sym_block_comment, - ACTIONS(4139), 3, + ACTIONS(3897), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4153), 4, + ACTIONS(3915), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3947), 12, - anon_sym_LPAREN, - anon_sym_EQ_GT, + ACTIONS(3911), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150842,60 +151011,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48441] = 21, + [48892] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3961), 1, - anon_sym_EQ, - ACTIONS(4131), 1, + ACTIONS(3561), 1, anon_sym_LBRACK, - ACTIONS(4133), 1, + ACTIONS(3565), 1, anon_sym_QMARK, - ACTIONS(4135), 1, + ACTIONS(3567), 1, anon_sym_DOT, - ACTIONS(4141), 1, + ACTIONS(3791), 1, + anon_sym_as, + ACTIONS(4199), 1, anon_sym_CARET, - ACTIONS(4143), 1, + ACTIONS(4201), 1, anon_sym_AMP, - ACTIONS(4145), 1, + ACTIONS(4203), 1, anon_sym_PIPE, - ACTIONS(4147), 1, + ACTIONS(4205), 1, anon_sym_AMP_AMP, - ACTIONS(4149), 1, + ACTIONS(4207), 1, anon_sym_PIPE_PIPE, - ACTIONS(4157), 1, - anon_sym_as, - ACTIONS(4159), 1, + ACTIONS(4213), 1, + anon_sym_EQ, + ACTIONS(4249), 1, anon_sym_DOT_DOT, - ACTIONS(4137), 2, + ACTIONS(4279), 1, + anon_sym_LBRACE, + STATE(386), 1, + sym_match_block, + ACTIONS(4195), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4151), 2, + ACTIONS(4209), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4155), 2, + ACTIONS(4217), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4161), 2, + ACTIONS(4251), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1761), 2, + STATE(1758), 2, sym_line_comment, sym_block_comment, - ACTIONS(4139), 3, + ACTIONS(4197), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4153), 4, + ACTIONS(4215), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3959), 12, - anon_sym_LPAREN, - anon_sym_EQ_GT, + ACTIONS(4211), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150906,46 +151077,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48526] = 15, + [48981] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4131), 1, - anon_sym_LBRACK, - ACTIONS(4133), 1, - anon_sym_QMARK, - ACTIONS(4135), 1, - anon_sym_DOT, - ACTIONS(4141), 1, - anon_sym_CARET, - ACTIONS(4143), 1, - anon_sym_AMP, - ACTIONS(4145), 1, - anon_sym_PIPE, - ACTIONS(4157), 1, - anon_sym_as, - ACTIONS(4137), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4151), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1762), 2, + STATE(1759), 2, sym_line_comment, sym_block_comment, - ACTIONS(4139), 3, + ACTIONS(1420), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3669), 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(3665), 20, + ACTIONS(1418), 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, @@ -150964,56 +151124,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [48599] = 19, + anon_sym_as, + [49034] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4131), 1, + ACTIONS(3561), 1, anon_sym_LBRACK, - ACTIONS(4133), 1, + ACTIONS(3565), 1, anon_sym_QMARK, - ACTIONS(4135), 1, + ACTIONS(3567), 1, anon_sym_DOT, - ACTIONS(4141), 1, + ACTIONS(3791), 1, + anon_sym_as, + ACTIONS(4199), 1, anon_sym_CARET, - ACTIONS(4143), 1, + ACTIONS(4201), 1, anon_sym_AMP, - ACTIONS(4145), 1, + ACTIONS(4203), 1, anon_sym_PIPE, - ACTIONS(4147), 1, + ACTIONS(4205), 1, anon_sym_AMP_AMP, - ACTIONS(4149), 1, + ACTIONS(4207), 1, anon_sym_PIPE_PIPE, - ACTIONS(4157), 1, - anon_sym_as, - ACTIONS(3913), 2, + ACTIONS(4213), 1, anon_sym_EQ, + ACTIONS(4249), 1, anon_sym_DOT_DOT, - ACTIONS(4137), 2, + ACTIONS(4281), 1, + anon_sym_LBRACE, + STATE(463), 1, + sym_match_block, + ACTIONS(4195), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4151), 2, + ACTIONS(4209), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4155), 2, + ACTIONS(4217), 2, anon_sym_GT, anon_sym_LT, - STATE(1763), 2, + ACTIONS(4251), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1760), 2, sym_line_comment, sym_block_comment, - ACTIONS(4139), 3, + ACTIONS(4197), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4153), 4, + ACTIONS(4215), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3895), 14, - anon_sym_LPAREN, - anon_sym_EQ_GT, + ACTIONS(4211), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151024,17 +151191,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_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [48680] = 5, + [49123] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1764), 2, + STATE(1761), 2, sym_line_comment, sym_block_comment, - ACTIONS(3589), 15, + ACTIONS(3857), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151050,7 +151215,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3587), 23, + ACTIONS(3855), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151074,37 +151239,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [48733] = 5, + [49176] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1765), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3593), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3561), 1, + anon_sym_LBRACK, + ACTIONS(3565), 1, + anon_sym_QMARK, + ACTIONS(3567), 1, + anon_sym_DOT, + ACTIONS(3791), 1, + anon_sym_as, + ACTIONS(4007), 1, anon_sym_CARET, + ACTIONS(4009), 1, anon_sym_AMP, + ACTIONS(4011), 1, anon_sym_PIPE, + ACTIONS(4015), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4021), 1, + anon_sym_EQ, + ACTIONS(4027), 1, + anon_sym_DOT_DOT, + ACTIONS(4285), 1, + anon_sym_AMP_AMP, + ACTIONS(4003), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4017), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4025), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3591), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4029), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4283), 2, + anon_sym_LBRACE, + anon_sym_SQUOTE, + STATE(1762), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4005), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4023), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4019), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151115,43 +151304,54 @@ 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, - [48786] = 5, + [49263] = 18, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1766), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1388), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4129), 1, + anon_sym_LBRACK, + ACTIONS(4133), 1, + anon_sym_QMARK, + ACTIONS(4135), 1, + anon_sym_DOT, + ACTIONS(4137), 1, + anon_sym_as, + ACTIONS(4173), 1, anon_sym_CARET, + ACTIONS(4175), 1, anon_sym_AMP, + ACTIONS(4177), 1, anon_sym_PIPE, + ACTIONS(4179), 1, + anon_sym_AMP_AMP, + ACTIONS(3789), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4163), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4165), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4189), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1386), 23, + STATE(1763), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4131), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4187), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3787), 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, @@ -151163,22 +151363,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, - [48839] = 5, + [49342] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1767), 2, + STATE(1764), 2, sym_line_comment, sym_block_comment, - ACTIONS(1396), 15, + ACTIONS(3763), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151194,7 +151389,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1394), 23, + ACTIONS(3761), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151218,61 +151413,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [48892] = 22, + [49395] = 21, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3561), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3565), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3567), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3791), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(3929), 1, + anon_sym_EQ, + ACTIONS(4199), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4201), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4203), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(4205), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4207), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, - anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4219), 1, anon_sym_DOT_DOT, - ACTIONS(3661), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(3897), 2, + ACTIONS(4195), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4209), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4217), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4221), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1768), 2, + STATE(1765), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4197), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4215), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(3927), 12, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151283,15 +151477,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48979] = 5, + [49480] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1769), 2, + STATE(1766), 2, sym_line_comment, sym_block_comment, - ACTIONS(1426), 15, + ACTIONS(3767), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151307,7 +151501,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1424), 23, + ACTIONS(3765), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151331,15 +151525,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [49032] = 5, + [49533] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1770), 2, + STATE(1767), 2, sym_line_comment, sym_block_comment, - ACTIONS(3733), 15, + ACTIONS(3691), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151355,7 +151549,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3731), 23, + ACTIONS(3689), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151379,85 +151573,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [49085] = 5, + [49586] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1771), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3581), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(324), 1, + anon_sym_RBRACE, + ACTIONS(3561), 1, + anon_sym_LBRACK, + ACTIONS(3565), 1, + anon_sym_QMARK, + ACTIONS(3567), 1, + anon_sym_DOT, + ACTIONS(3791), 1, + anon_sym_as, + ACTIONS(3899), 1, anon_sym_CARET, + ACTIONS(3901), 1, anon_sym_AMP, + ACTIONS(3903), 1, anon_sym_PIPE, + ACTIONS(3905), 1, + anon_sym_AMP_AMP, + ACTIONS(3907), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3913), 1, + anon_sym_EQ, + ACTIONS(4033), 1, + anon_sym_DOT_DOT, + ACTIONS(4125), 1, + anon_sym_SEMI, + ACTIONS(3895), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3909), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3579), 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(4035), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [49138] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1772), 2, + STATE(1768), 2, sym_line_comment, sym_block_comment, - ACTIONS(1352), 15, - anon_sym_PLUS, + ACTIONS(3897), 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(1350), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3915), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3911), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151468,22 +151639,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, - [49191] = 5, + [49675] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1773), 2, + STATE(1769), 2, sym_line_comment, sym_block_comment, - ACTIONS(1356), 15, + ACTIONS(1406), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151499,7 +151663,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1354), 23, + ACTIONS(1408), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151523,37 +151687,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [49244] = 5, + [49728] = 21, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1774), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1364), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3561), 1, + anon_sym_LBRACK, + ACTIONS(3565), 1, + anon_sym_QMARK, + ACTIONS(3567), 1, + anon_sym_DOT, + ACTIONS(3791), 1, + anon_sym_as, + ACTIONS(3933), 1, + anon_sym_EQ, + ACTIONS(4199), 1, anon_sym_CARET, + ACTIONS(4201), 1, anon_sym_AMP, + ACTIONS(4203), 1, anon_sym_PIPE, + ACTIONS(4205), 1, + anon_sym_AMP_AMP, + ACTIONS(4207), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4219), 1, + anon_sym_DOT_DOT, + ACTIONS(4195), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4209), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4217), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1362), 23, + ACTIONS(4221), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1770), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4197), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4215), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3931), 12, 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, @@ -151564,22 +151751,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, - [49297] = 5, + [49813] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1775), 2, + STATE(1771), 2, sym_line_comment, sym_block_comment, - ACTIONS(1380), 15, + ACTIONS(3643), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151595,7 +151775,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1378), 23, + ACTIONS(3641), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151619,15 +151799,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [49350] = 5, + [49866] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1776), 2, + STATE(1772), 2, sym_line_comment, sym_block_comment, - ACTIONS(1392), 15, + ACTIONS(1400), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151643,7 +151823,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1390), 23, + ACTIONS(1398), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151667,15 +151847,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [49403] = 5, + [49919] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1777), 2, + STATE(1773), 2, sym_line_comment, sym_block_comment, - ACTIONS(1430), 15, + ACTIONS(3735), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151691,7 +151871,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1428), 23, + ACTIONS(3733), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151715,15 +151895,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [49456] = 5, + [49972] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1778), 2, + STATE(1774), 2, sym_line_comment, sym_block_comment, - ACTIONS(935), 15, + ACTIONS(3723), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151739,7 +151919,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(937), 23, + ACTIONS(3721), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151763,15 +151943,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [49509] = 5, + [50025] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1779), 2, + STATE(1775), 2, sym_line_comment, sym_block_comment, - ACTIONS(967), 15, + ACTIONS(1376), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151787,7 +151967,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(969), 23, + ACTIONS(1374), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151811,15 +151991,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [49562] = 5, + [50078] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1780), 2, + STATE(1776), 2, sym_line_comment, sym_block_comment, - ACTIONS(1368), 15, + ACTIONS(1436), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151835,7 +152015,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1366), 23, + ACTIONS(1434), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151859,15 +152039,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [49615] = 5, + [50131] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1781), 2, + ACTIONS(4129), 1, + anon_sym_LBRACK, + ACTIONS(4133), 1, + anon_sym_QMARK, + ACTIONS(4135), 1, + anon_sym_DOT, + STATE(1777), 2, sym_line_comment, sym_block_comment, - ACTIONS(753), 15, + ACTIONS(3563), 14, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151881,13 +152067,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(755), 23, + ACTIONS(3559), 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, @@ -151907,53 +152090,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [49668] = 23, + [50190] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(320), 1, + anon_sym_RBRACE, + ACTIONS(3561), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3565), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3567), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3791), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(3899), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(3901), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3903), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3905), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3907), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(3913), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4033), 1, anon_sym_DOT_DOT, - ACTIONS(4225), 1, + ACTIONS(4125), 1, anon_sym_SEMI, - ACTIONS(4227), 1, - anon_sym_else, - ACTIONS(3897), 2, + ACTIONS(3895), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3909), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4035), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1782), 2, + STATE(1778), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3897), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -151962,72 +152145,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 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, - [49757] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4131), 1, - anon_sym_LBRACK, - ACTIONS(4133), 1, - anon_sym_QMARK, - ACTIONS(4135), 1, - anon_sym_DOT, - ACTIONS(4141), 1, - anon_sym_CARET, - ACTIONS(4143), 1, - anon_sym_AMP, - ACTIONS(4145), 1, - anon_sym_PIPE, - ACTIONS(4147), 1, - anon_sym_AMP_AMP, - ACTIONS(4149), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4157), 1, - anon_sym_as, - ACTIONS(4159), 1, - anon_sym_DOT_DOT, - ACTIONS(4231), 1, - anon_sym_EQ, - ACTIONS(3771), 2, - anon_sym_LPAREN, - anon_sym_EQ_GT, - ACTIONS(4137), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4151), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4155), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4161), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1783), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4139), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4153), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4229), 10, + ACTIONS(3911), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152038,15 +152156,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49844] = 5, + [50279] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1784), 2, + STATE(1779), 2, sym_line_comment, sym_block_comment, - ACTIONS(767), 15, + ACTIONS(3313), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152062,7 +152180,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(769), 23, + ACTIONS(3311), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -152086,15 +152204,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [49897] = 5, + [50332] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1785), 2, + STATE(1780), 2, sym_line_comment, sym_block_comment, - ACTIONS(1444), 15, + ACTIONS(3269), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152110,7 +152228,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1442), 23, + ACTIONS(3267), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -152134,53 +152252,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [49950] = 23, + [50385] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3561), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3565), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3567), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3791), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(3899), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(3901), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3903), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3905), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3907), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(3913), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4033), 1, anon_sym_DOT_DOT, - ACTIONS(4233), 1, + ACTIONS(4287), 1, anon_sym_RBRACE, - ACTIONS(4235), 1, + ACTIONS(4289), 1, anon_sym_COMMA, - ACTIONS(3897), 2, + ACTIONS(3895), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3909), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4035), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1786), 2, + STATE(1781), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3897), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -152189,72 +152307,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 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, - [50039] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4131), 1, - anon_sym_LBRACK, - ACTIONS(4133), 1, - anon_sym_QMARK, - ACTIONS(4135), 1, - anon_sym_DOT, - ACTIONS(4141), 1, - anon_sym_CARET, - ACTIONS(4143), 1, - anon_sym_AMP, - ACTIONS(4145), 1, - anon_sym_PIPE, - ACTIONS(4147), 1, - anon_sym_AMP_AMP, - ACTIONS(4149), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4157), 1, - anon_sym_as, - ACTIONS(4159), 1, - anon_sym_DOT_DOT, - ACTIONS(4231), 1, - anon_sym_EQ, - ACTIONS(3739), 2, - anon_sym_LPAREN, - anon_sym_EQ_GT, - ACTIONS(4137), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4151), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4155), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4161), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1787), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4139), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4153), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4229), 10, + ACTIONS(3911), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152265,15 +152318,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50126] = 5, + [50474] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1788), 2, + STATE(1782), 2, sym_line_comment, sym_block_comment, - ACTIONS(771), 15, + ACTIONS(1416), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152289,7 +152342,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(773), 23, + ACTIONS(1414), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -152313,37 +152366,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [50179] = 5, + [50527] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1789), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1322), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3561), 1, + anon_sym_LBRACK, + ACTIONS(3565), 1, + anon_sym_QMARK, + ACTIONS(3567), 1, + anon_sym_DOT, + ACTIONS(3791), 1, + anon_sym_as, + ACTIONS(3899), 1, anon_sym_CARET, + ACTIONS(3901), 1, anon_sym_AMP, + ACTIONS(3903), 1, anon_sym_PIPE, + ACTIONS(3905), 1, + anon_sym_AMP_AMP, + ACTIONS(3907), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3913), 1, + anon_sym_EQ, + ACTIONS(4033), 1, + anon_sym_DOT_DOT, + ACTIONS(4291), 1, + anon_sym_SEMI, + ACTIONS(4293), 1, + anon_sym_else, + ACTIONS(3895), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3909), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1320), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4035), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1783), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3897), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3915), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3911), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152354,109 +152432,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, - [50232] = 22, + [50616] = 21, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4131), 1, + ACTIONS(3937), 1, + anon_sym_EQ, + ACTIONS(4129), 1, anon_sym_LBRACK, ACTIONS(4133), 1, anon_sym_QMARK, ACTIONS(4135), 1, anon_sym_DOT, - ACTIONS(4141), 1, + ACTIONS(4137), 1, + anon_sym_as, + ACTIONS(4173), 1, anon_sym_CARET, - ACTIONS(4143), 1, + ACTIONS(4175), 1, anon_sym_AMP, - ACTIONS(4145), 1, + ACTIONS(4177), 1, anon_sym_PIPE, - ACTIONS(4147), 1, + ACTIONS(4179), 1, anon_sym_AMP_AMP, - ACTIONS(4149), 1, + ACTIONS(4181), 1, anon_sym_PIPE_PIPE, - ACTIONS(4157), 1, - anon_sym_as, - ACTIONS(4159), 1, + ACTIONS(4191), 1, anon_sym_DOT_DOT, - ACTIONS(4231), 1, - anon_sym_EQ, - ACTIONS(3661), 2, - anon_sym_LPAREN, - anon_sym_EQ_GT, - ACTIONS(4137), 2, + ACTIONS(4163), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4151), 2, + ACTIONS(4165), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4155), 2, + ACTIONS(4189), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4161), 2, + ACTIONS(4193), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1790), 2, + STATE(1784), 2, sym_line_comment, sym_block_comment, - ACTIONS(4139), 3, + ACTIONS(4131), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4153), 4, + ACTIONS(4187), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4229), 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, - [50319] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1791), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(985), 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(987), 23, + ACTIONS(3935), 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, @@ -152467,22 +152496,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, - [50372] = 5, + [50701] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1792), 2, + STATE(1785), 2, sym_line_comment, sym_block_comment, - ACTIONS(989), 15, + ACTIONS(937), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152498,7 +152520,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(991), 23, + ACTIONS(939), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -152522,62 +152544,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [50425] = 23, + [50754] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(4129), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(4133), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(4135), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(4137), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(4173), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4175), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4177), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(4179), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4181), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4185), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4191), 1, anon_sym_DOT_DOT, - ACTIONS(4237), 1, - anon_sym_RPAREN, - ACTIONS(4239), 1, - anon_sym_COMMA, - ACTIONS(3897), 2, + ACTIONS(3661), 2, + anon_sym_LPAREN, + anon_sym_EQ_GT, + ACTIONS(4163), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4165), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4189), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4193), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1793), 2, + STATE(1786), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4131), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4187), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4183), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152588,62 +152609,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50514] = 23, + [50841] = 21, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(292), 1, - anon_sym_RBRACE, - ACTIONS(3667), 1, + ACTIONS(3561), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3565), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3567), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3791), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(3937), 1, + anon_sym_EQ, + ACTIONS(4199), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4201), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4203), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(4205), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4207), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, - anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4219), 1, anon_sym_DOT_DOT, - ACTIONS(4125), 1, - anon_sym_SEMI, - ACTIONS(3897), 2, + ACTIONS(4195), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4209), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4217), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4221), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1794), 2, + STATE(1787), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4197), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4215), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(3935), 12, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152654,123 +152673,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50603] = 18, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4241), 1, - sym_identifier, - ACTIONS(4243), 1, - anon_sym_LBRACE, - ACTIONS(4245), 1, - anon_sym_RBRACE, - ACTIONS(4247), 1, - anon_sym_STAR, - ACTIONS(4251), 1, - anon_sym_COMMA, - ACTIONS(4253), 1, - anon_sym_COLON_COLON, - ACTIONS(4257), 1, - sym_metavariable, - STATE(2488), 1, - sym_scoped_identifier, - STATE(2852), 1, - sym__use_clause, - STATE(3374), 1, - sym_generic_type_with_turbofish, - STATE(3495), 1, - sym_bracketed_type, - STATE(1795), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4255), 3, - sym_self, - sym_super, - sym_crate, - STATE(2966), 4, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(4249), 19, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_default, - anon_sym_union, - [50682] = 23, + [50926] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3561), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3565), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3567), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3791), 1, anon_sym_as, - ACTIONS(4191), 1, + ACTIONS(3899), 1, anon_sym_CARET, - ACTIONS(4193), 1, + ACTIONS(3901), 1, anon_sym_AMP, - ACTIONS(4195), 1, + ACTIONS(3903), 1, anon_sym_PIPE, - ACTIONS(4197), 1, + ACTIONS(3905), 1, anon_sym_AMP_AMP, - ACTIONS(4199), 1, + ACTIONS(3907), 1, anon_sym_PIPE_PIPE, - ACTIONS(4205), 1, + ACTIONS(3913), 1, anon_sym_EQ, - ACTIONS(4221), 1, + ACTIONS(4033), 1, anon_sym_DOT_DOT, - ACTIONS(4259), 1, - anon_sym_LBRACE, - STATE(1130), 1, - sym_match_block, - ACTIONS(4187), 2, + ACTIONS(3895), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4201), 2, + ACTIONS(3909), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4209), 2, + ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4223), 2, + ACTIONS(4035), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1796), 2, + ACTIONS(4295), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1788), 2, sym_line_comment, sym_block_comment, - ACTIONS(4189), 3, + ACTIONS(3897), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4207), 4, + ACTIONS(3915), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4203), 10, + ACTIONS(3911), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152781,62 +152738,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50771] = 23, + [51013] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(294), 1, - anon_sym_RBRACE, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3901), 1, + STATE(1789), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1428), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3903), 1, anon_sym_AMP, - ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, - anon_sym_EQ, - ACTIONS(4005), 1, - anon_sym_DOT_DOT, - ACTIONS(4125), 1, - anon_sym_SEMI, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1797), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3899), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3929), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1426), 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, @@ -152847,52 +152779,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50860] = 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, + [51066] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(326), 1, + anon_sym_RBRACE, + ACTIONS(3561), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3565), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3567), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3791), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(3899), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(3901), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3903), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3905), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3907), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(3913), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4033), 1, anon_sym_DOT_DOT, - ACTIONS(3897), 2, + ACTIONS(4125), 1, + anon_sym_SEMI, + ACTIONS(3895), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3909), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4035), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4261), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1798), 2, + STATE(1790), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3897), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -152901,7 +152841,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(3911), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152912,52 +152852,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50947] = 22, + [51155] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3561), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3565), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3567), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3791), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(3899), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(3901), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3903), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3905), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3907), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(3913), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4033), 1, anon_sym_DOT_DOT, - ACTIONS(3897), 2, + ACTIONS(4125), 1, + anon_sym_SEMI, + ACTIONS(4297), 1, + anon_sym_RBRACE, + ACTIONS(3895), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3909), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4035), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4263), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1799), 2, + STATE(1791), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3897), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -152966,7 +152907,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(3911), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152977,53 +152918,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51034] = 23, + [51244] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1051), 1, - anon_sym_RPAREN, - ACTIONS(3667), 1, + ACTIONS(292), 1, + anon_sym_RBRACE, + ACTIONS(3561), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3565), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3567), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3791), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(3899), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(3901), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3903), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3905), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3907), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(3913), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4033), 1, anon_sym_DOT_DOT, - ACTIONS(4169), 1, - anon_sym_COMMA, - ACTIONS(3897), 2, + ACTIONS(4125), 1, + anon_sym_SEMI, + ACTIONS(3895), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3909), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4035), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1800), 2, + STATE(1792), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3897), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -153032,7 +152973,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(3911), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153043,62 +152984,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51123] = 23, + [51333] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3901), 1, + STATE(1793), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1452), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3903), 1, anon_sym_AMP, - ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, - anon_sym_EQ, - ACTIONS(4005), 1, - anon_sym_DOT_DOT, - ACTIONS(4265), 1, - anon_sym_SEMI, - ACTIONS(4267), 1, - anon_sym_else, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1450), 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(1801), 2, + anon_sym_as, + [51386] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1794), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(1440), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3929), 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(1438), 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, @@ -153109,62 +153073,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51212] = 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, + [51439] = 19, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(296), 1, - anon_sym_RBRACE, - ACTIONS(3667), 1, + ACTIONS(3561), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3565), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3567), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3791), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(4199), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4201), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4203), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(4205), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4207), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(3965), 2, anon_sym_EQ, - ACTIONS(4005), 1, anon_sym_DOT_DOT, - ACTIONS(4125), 1, - anon_sym_SEMI, - ACTIONS(3897), 2, + ACTIONS(4195), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4209), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4217), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1802), 2, + STATE(1795), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4197), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4215), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(3963), 14, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153175,62 +153140,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51301] = 23, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [51520] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1168), 1, - anon_sym_RPAREN, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3901), 1, + STATE(1796), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3853), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3903), 1, anon_sym_AMP, - ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, - anon_sym_EQ, - ACTIONS(4005), 1, - anon_sym_DOT_DOT, - ACTIONS(4169), 1, - anon_sym_COMMA, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1803), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3899), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3929), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3851), 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, @@ -153241,62 +153183,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51390] = 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, + [51573] = 15, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3561), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3565), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3567), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3791), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(4199), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4201), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4203), 1, anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, - anon_sym_EQ, - ACTIONS(4005), 1, - anon_sym_DOT_DOT, - ACTIONS(4269), 1, - anon_sym_SEMI, - ACTIONS(4271), 1, - anon_sym_else, - ACTIONS(3897), 2, + ACTIONS(4195), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4209), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4007), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1804), 2, + STATE(1797), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4197), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(3789), 4, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(3787), 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, - ACTIONS(3929), 10, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [51646] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1798), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1448), 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(1446), 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, @@ -153307,53 +153289,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51479] = 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, + [51699] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3561), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3565), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3567), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3791), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(3899), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(3901), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3903), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3905), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3907), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(3913), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4033), 1, anon_sym_DOT_DOT, - ACTIONS(4125), 1, - anon_sym_SEMI, - ACTIONS(4273), 1, - anon_sym_RBRACE, - ACTIONS(3897), 2, + ACTIONS(3895), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3909), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4035), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1805), 2, + ACTIONS(4299), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1799), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3897), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -153362,7 +153350,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(3911), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153373,62 +153361,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51568] = 23, + [51786] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1059), 1, - anon_sym_RPAREN, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3901), 1, + STATE(1800), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1444), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3903), 1, anon_sym_AMP, - ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, - anon_sym_EQ, - ACTIONS(4005), 1, - anon_sym_DOT_DOT, - ACTIONS(4169), 1, - anon_sym_COMMA, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1442), 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(1806), 2, + anon_sym_as, + [51839] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1801), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(903), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3929), 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(905), 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, @@ -153439,53 +153450,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51657] = 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, + [51892] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(1037), 1, + anon_sym_RPAREN, + ACTIONS(3561), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3565), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3567), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3791), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(3899), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(3901), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3903), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3905), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3907), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(3913), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4033), 1, anon_sym_DOT_DOT, - ACTIONS(4169), 1, + ACTIONS(4149), 1, anon_sym_COMMA, - ACTIONS(4275), 1, - anon_sym_RPAREN, - ACTIONS(3897), 2, + ACTIONS(3895), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3909), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4035), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1807), 2, + STATE(1802), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3897), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -153494,7 +153512,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(3911), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153505,53 +153523,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51746] = 23, + [51981] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(330), 1, + anon_sym_RBRACE, + ACTIONS(3561), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3565), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3567), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3791), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(3899), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(3901), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3903), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3905), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3907), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(3913), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4033), 1, anon_sym_DOT_DOT, - ACTIONS(4277), 1, + ACTIONS(4125), 1, anon_sym_SEMI, - ACTIONS(4279), 1, - anon_sym_else, - ACTIONS(3897), 2, + ACTIONS(3895), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3909), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4035), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1808), 2, + STATE(1803), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3897), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -153560,7 +153578,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(3911), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153571,53 +153589,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51835] = 23, + [52070] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3561), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3565), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3567), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3791), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(3899), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(3901), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3903), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3905), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3907), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(3913), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4033), 1, anon_sym_DOT_DOT, - ACTIONS(4281), 1, - anon_sym_SEMI, - ACTIONS(4283), 1, - anon_sym_else, - ACTIONS(3897), 2, + ACTIONS(3895), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3909), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4035), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1809), 2, + ACTIONS(4301), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1804), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3897), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -153626,7 +153643,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(3911), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153637,62 +153654,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51924] = 23, + [52157] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(300), 1, - anon_sym_RBRACE, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3901), 1, + STATE(1805), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(885), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3903), 1, anon_sym_AMP, - ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, - anon_sym_EQ, - ACTIONS(4005), 1, - anon_sym_DOT_DOT, - ACTIONS(4125), 1, - anon_sym_SEMI, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(887), 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(1810), 2, + anon_sym_as, + [52210] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1806), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(1258), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3929), 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(1256), 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, @@ -153703,56 +153743,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52013] = 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, + [52263] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(4191), 1, + STATE(1807), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(945), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4193), 1, anon_sym_AMP, - ACTIONS(4195), 1, anon_sym_PIPE, - ACTIONS(4197), 1, - anon_sym_AMP_AMP, - ACTIONS(4199), 1, - anon_sym_PIPE_PIPE, - ACTIONS(370), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(4187), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4201), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4209), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - STATE(1811), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4189), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4207), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(368), 14, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(947), 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, @@ -153763,62 +153791,68 @@ 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, - [52094] = 21, + anon_sym_as, + [52316] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(342), 1, - anon_sym_EQ, - ACTIONS(3667), 1, + ACTIONS(3561), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3565), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3567), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3791), 1, anon_sym_as, - ACTIONS(4191), 1, + ACTIONS(3899), 1, anon_sym_CARET, - ACTIONS(4193), 1, + ACTIONS(3901), 1, anon_sym_AMP, - ACTIONS(4195), 1, + ACTIONS(3903), 1, anon_sym_PIPE, - ACTIONS(4197), 1, + ACTIONS(3905), 1, anon_sym_AMP_AMP, - ACTIONS(4199), 1, + ACTIONS(3907), 1, anon_sym_PIPE_PIPE, - ACTIONS(4211), 1, + ACTIONS(3913), 1, + anon_sym_EQ, + ACTIONS(4033), 1, anon_sym_DOT_DOT, - ACTIONS(4187), 2, + ACTIONS(3689), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3895), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4201), 2, + ACTIONS(3909), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4209), 2, + ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4213), 2, + ACTIONS(4035), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1812), 2, + STATE(1808), 2, sym_line_comment, sym_block_comment, - ACTIONS(4189), 3, + ACTIONS(3897), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4207), 4, + ACTIONS(3915), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(336), 12, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(3911), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153829,62 +153863,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52179] = 23, + [52403] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3561), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3565), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3567), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3791), 1, anon_sym_as, - ACTIONS(4191), 1, + ACTIONS(3899), 1, anon_sym_CARET, - ACTIONS(4193), 1, + ACTIONS(3901), 1, anon_sym_AMP, - ACTIONS(4195), 1, + ACTIONS(3903), 1, anon_sym_PIPE, - ACTIONS(4197), 1, + ACTIONS(3905), 1, anon_sym_AMP_AMP, - ACTIONS(4199), 1, + ACTIONS(3907), 1, anon_sym_PIPE_PIPE, - ACTIONS(4205), 1, + ACTIONS(3913), 1, anon_sym_EQ, - ACTIONS(4221), 1, + ACTIONS(4033), 1, anon_sym_DOT_DOT, - ACTIONS(4285), 1, - anon_sym_LBRACE, - STATE(460), 1, - sym_match_block, - ACTIONS(4187), 2, + ACTIONS(3895), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4201), 2, + ACTIONS(3909), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4209), 2, + ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4223), 2, + ACTIONS(4035), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1813), 2, + ACTIONS(4303), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1809), 2, sym_line_comment, sym_block_comment, - ACTIONS(4189), 3, + ACTIONS(3897), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4207), 4, + ACTIONS(3915), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4203), 10, + ACTIONS(3911), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153895,60 +153928,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52268] = 21, + [52490] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(4129), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(4133), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(4135), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(4137), 1, anon_sym_as, - ACTIONS(3935), 1, - anon_sym_EQ, - ACTIONS(4191), 1, + ACTIONS(4173), 1, anon_sym_CARET, - ACTIONS(4193), 1, + ACTIONS(4175), 1, anon_sym_AMP, - ACTIONS(4195), 1, + ACTIONS(4177), 1, anon_sym_PIPE, - ACTIONS(4197), 1, + ACTIONS(4179), 1, anon_sym_AMP_AMP, - ACTIONS(4199), 1, + ACTIONS(4181), 1, anon_sym_PIPE_PIPE, - ACTIONS(4211), 1, + ACTIONS(4185), 1, + anon_sym_EQ, + ACTIONS(4191), 1, anon_sym_DOT_DOT, - ACTIONS(4187), 2, + ACTIONS(3689), 2, + anon_sym_LPAREN, + anon_sym_EQ_GT, + ACTIONS(4163), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4201), 2, + ACTIONS(4165), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4209), 2, + ACTIONS(4189), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4213), 2, + ACTIONS(4193), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1814), 2, + STATE(1810), 2, sym_line_comment, sym_block_comment, - ACTIONS(4189), 3, + ACTIONS(4131), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4207), 4, + ACTIONS(4187), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3933), 12, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(4183), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153959,60 +153993,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52353] = 21, + [52577] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3561), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3565), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3567), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3791), 1, anon_sym_as, - ACTIONS(3957), 1, - anon_sym_EQ, - ACTIONS(4191), 1, - anon_sym_CARET, - ACTIONS(4193), 1, - anon_sym_AMP, - ACTIONS(4195), 1, - anon_sym_PIPE, - ACTIONS(4197), 1, - anon_sym_AMP_AMP, - ACTIONS(4199), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4211), 1, - anon_sym_DOT_DOT, - ACTIONS(4187), 2, + ACTIONS(4195), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4201), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4209), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4213), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1815), 2, + STATE(1811), 2, sym_line_comment, sym_block_comment, - ACTIONS(4189), 3, + ACTIONS(4197), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4207), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3955), 12, + ACTIONS(3789), 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(3787), 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, @@ -154023,62 +154041,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52438] = 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, + [52642] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(302), 1, - anon_sym_RBRACE, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3901), 1, + STATE(1812), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(933), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3903), 1, anon_sym_AMP, - ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, - anon_sym_EQ, - ACTIONS(4005), 1, - anon_sym_DOT_DOT, - ACTIONS(4125), 1, - anon_sym_SEMI, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1816), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3899), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3929), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(935), 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, @@ -154089,61 +154088,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52527] = 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, + [52695] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3901), 1, + STATE(1813), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3863), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3903), 1, anon_sym_AMP, - ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, - anon_sym_EQ, - ACTIONS(4005), 1, - anon_sym_DOT_DOT, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3861), 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(4287), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1817), 2, + anon_sym_as, + [52748] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1814), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(1250), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3929), 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(1248), 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, @@ -154154,61 +154184,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52614] = 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, + [52801] = 21, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3561), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3565), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3567), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3791), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(3961), 1, + anon_sym_EQ, + ACTIONS(4199), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4201), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4203), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(4205), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4207), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, - anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4219), 1, anon_sym_DOT_DOT, - ACTIONS(3897), 2, + ACTIONS(4195), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4209), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4217), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4221), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4289), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1818), 2, + STATE(1815), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4197), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4215), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(3959), 12, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154219,62 +154255,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52701] = 23, + [52886] = 21, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(304), 1, - anon_sym_RBRACE, - ACTIONS(3667), 1, + ACTIONS(3561), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3565), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3567), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3791), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(3957), 1, + anon_sym_EQ, + ACTIONS(4199), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4201), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4203), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(4205), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4207), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, - anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4219), 1, anon_sym_DOT_DOT, - ACTIONS(4125), 1, - anon_sym_SEMI, - ACTIONS(3897), 2, + ACTIONS(4195), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4209), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4217), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4221), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1819), 2, + STATE(1816), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4197), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4215), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(3955), 12, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154285,62 +154319,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52790] = 23, + [52971] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3901), 1, + STATE(1817), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3845), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3903), 1, anon_sym_AMP, - ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, - anon_sym_EQ, - ACTIONS(4005), 1, - anon_sym_DOT_DOT, - ACTIONS(4125), 1, - anon_sym_SEMI, - ACTIONS(4291), 1, - anon_sym_RBRACE, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1820), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3899), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3929), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3843), 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, @@ -154351,62 +154360,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52879] = 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, + [53024] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(308), 1, - anon_sym_RBRACE, - ACTIONS(3667), 1, + ACTIONS(4129), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(4133), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(4135), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(4137), 1, anon_sym_as, - ACTIONS(3901), 1, - anon_sym_CARET, - ACTIONS(3903), 1, - anon_sym_AMP, - ACTIONS(3905), 1, - anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, - anon_sym_EQ, - ACTIONS(4005), 1, - anon_sym_DOT_DOT, - ACTIONS(4125), 1, - anon_sym_SEMI, - ACTIONS(3897), 2, + ACTIONS(4163), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3917), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4007), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1821), 2, + STATE(1818), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4131), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(3789), 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(3787), 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, @@ -154417,62 +154415,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52968] = 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, + [53089] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(296), 1, + anon_sym_RBRACE, + ACTIONS(3561), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3565), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3567), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3791), 1, anon_sym_as, - ACTIONS(4191), 1, + ACTIONS(3899), 1, anon_sym_CARET, - ACTIONS(4193), 1, + ACTIONS(3901), 1, anon_sym_AMP, - ACTIONS(4195), 1, + ACTIONS(3903), 1, anon_sym_PIPE, - ACTIONS(4197), 1, + ACTIONS(3905), 1, anon_sym_AMP_AMP, - ACTIONS(4199), 1, + ACTIONS(3907), 1, anon_sym_PIPE_PIPE, - ACTIONS(4205), 1, + ACTIONS(3913), 1, anon_sym_EQ, - ACTIONS(4221), 1, + ACTIONS(4033), 1, anon_sym_DOT_DOT, - ACTIONS(4293), 1, - anon_sym_LBRACE, - STATE(1750), 1, - sym_match_block, - ACTIONS(4187), 2, + ACTIONS(4125), 1, + anon_sym_SEMI, + ACTIONS(3895), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4201), 2, + ACTIONS(3909), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4209), 2, + ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4223), 2, + ACTIONS(4035), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1822), 2, + STATE(1819), 2, sym_line_comment, sym_block_comment, - ACTIONS(4189), 3, + ACTIONS(3897), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4207), 4, + ACTIONS(3915), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4203), 10, + ACTIONS(3911), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154483,62 +154487,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53057] = 23, + [53178] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(310), 1, - anon_sym_RBRACE, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3901), 1, + STATE(1820), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3821), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3903), 1, anon_sym_AMP, - ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, - anon_sym_EQ, - ACTIONS(4005), 1, - anon_sym_DOT_DOT, - ACTIONS(4125), 1, - anon_sym_SEMI, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1823), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3899), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3929), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3817), 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, @@ -154549,62 +154528,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53146] = 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, + [53231] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(312), 1, - anon_sym_RBRACE, - ACTIONS(3667), 1, + ACTIONS(3561), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3565), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3567), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3791), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(4199), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4201), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4203), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(4205), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4207), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4213), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4219), 1, anon_sym_DOT_DOT, - ACTIONS(4125), 1, - anon_sym_SEMI, - ACTIONS(3897), 2, + ACTIONS(3661), 2, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(4195), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4209), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4217), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4221), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1824), 2, + STATE(1821), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4197), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4215), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4211), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154615,62 +154600,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53235] = 23, + [53318] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3901), 1, + STATE(1822), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3815), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3903), 1, anon_sym_AMP, - ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, - anon_sym_EQ, - ACTIONS(4005), 1, - anon_sym_DOT_DOT, - ACTIONS(4295), 1, - anon_sym_SEMI, - ACTIONS(4297), 1, - anon_sym_else, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3813), 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(1825), 2, + anon_sym_as, + [53371] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1823), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3811), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3929), 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(3809), 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, @@ -154681,53 +154689,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53324] = 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, + [53424] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(316), 1, + ACTIONS(314), 1, anon_sym_RBRACE, - ACTIONS(3667), 1, + ACTIONS(3561), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3565), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3567), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3791), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(3899), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(3901), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3903), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3905), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3907), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(3913), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4033), 1, anon_sym_DOT_DOT, ACTIONS(4125), 1, anon_sym_SEMI, - ACTIONS(3897), 2, + ACTIONS(3895), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3909), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4035), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1826), 2, + STATE(1824), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3897), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -154736,7 +154751,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(3911), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154747,53 +154762,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53413] = 23, + [53513] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(318), 1, - anon_sym_RBRACE, - ACTIONS(3667), 1, + ACTIONS(3561), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3565), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3567), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3791), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(3899), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(3901), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3903), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3905), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3907), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(3913), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4033), 1, anon_sym_DOT_DOT, - ACTIONS(4125), 1, - anon_sym_SEMI, - ACTIONS(3897), 2, + ACTIONS(4305), 1, + anon_sym_RPAREN, + ACTIONS(4307), 1, + anon_sym_COMMA, + ACTIONS(3895), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3909), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4035), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1827), 2, + STATE(1825), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3897), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -154802,7 +154817,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(3911), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154813,62 +154828,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53502] = 23, + [53602] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(320), 1, - anon_sym_RBRACE, - ACTIONS(3667), 1, + ACTIONS(4129), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(4133), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(4135), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(4137), 1, anon_sym_as, - ACTIONS(3901), 1, + STATE(1826), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3789), 14, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3903), 1, anon_sym_AMP, - ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, - anon_sym_EQ, - ACTIONS(4005), 1, - anon_sym_DOT_DOT, - ACTIONS(4125), 1, - anon_sym_SEMI, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1828), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3899), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3929), 10, + anon_sym_DOT_DOT, + ACTIONS(3787), 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, @@ -154879,62 +154874,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53591] = 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, + [53663] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3901), 1, + STATE(1827), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3771), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3903), 1, anon_sym_AMP, - ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, - anon_sym_EQ, - ACTIONS(4005), 1, - anon_sym_DOT_DOT, - ACTIONS(4299), 1, - anon_sym_RBRACE, - ACTIONS(4301), 1, - anon_sym_COMMA, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3769), 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(1829), 2, + anon_sym_as, + [53716] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1828), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3785), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3929), 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(3783), 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, @@ -154945,53 +154969,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53680] = 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, + [53769] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(312), 1, + anon_sym_RBRACE, + ACTIONS(3561), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3565), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3567), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3791), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(3899), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(3901), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3903), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3905), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3907), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(3913), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4033), 1, anon_sym_DOT_DOT, ACTIONS(4125), 1, anon_sym_SEMI, - ACTIONS(4303), 1, - anon_sym_RBRACE, - ACTIONS(3897), 2, + ACTIONS(3895), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3909), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4035), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1830), 2, + STATE(1829), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3897), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -155000,7 +155031,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(3911), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155011,53 +155042,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53769] = 23, + [53858] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(324), 1, - anon_sym_RBRACE, - ACTIONS(3667), 1, + ACTIONS(3561), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3565), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3567), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3791), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(3899), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(3901), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3903), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3905), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3907), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(3913), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4033), 1, anon_sym_DOT_DOT, - ACTIONS(4125), 1, - anon_sym_SEMI, - ACTIONS(3897), 2, + ACTIONS(4309), 1, + anon_sym_RPAREN, + ACTIONS(4311), 1, + anon_sym_COMMA, + ACTIONS(3895), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3909), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4035), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1831), 2, + STATE(1830), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3897), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -155066,7 +155097,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(3911), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155077,62 +155108,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53858] = 23, + [53947] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(326), 1, - anon_sym_RBRACE, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3901), 1, + STATE(1831), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3663), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3903), 1, anon_sym_AMP, - ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, - anon_sym_EQ, - ACTIONS(4005), 1, - anon_sym_DOT_DOT, - ACTIONS(4125), 1, - anon_sym_SEMI, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1832), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3899), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3929), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3661), 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, @@ -155143,62 +155149,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53947] = 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, + [54000] = 18, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(328), 1, - anon_sym_RBRACE, - ACTIONS(3667), 1, + ACTIONS(3561), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3565), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3567), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3791), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(4199), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4201), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4203), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(4205), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(3789), 2, anon_sym_EQ, - ACTIONS(4005), 1, anon_sym_DOT_DOT, - ACTIONS(4125), 1, - anon_sym_SEMI, - ACTIONS(3897), 2, + ACTIONS(4195), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4209), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4217), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1833), 2, + STATE(1832), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4197), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4215), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(3787), 15, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155209,62 +155215,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54036] = 23, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [54079] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3901), 1, + STATE(1833), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1406), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3903), 1, anon_sym_AMP, - ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, - anon_sym_EQ, - ACTIONS(4005), 1, - anon_sym_DOT_DOT, - ACTIONS(4125), 1, - anon_sym_SEMI, - ACTIONS(4305), 1, - anon_sym_RBRACE, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1834), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3899), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3929), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1408), 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, @@ -155275,62 +155258,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54125] = 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, + [54132] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(332), 1, - anon_sym_RBRACE, - ACTIONS(3667), 1, + ACTIONS(3561), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3565), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3567), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3791), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(4199), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4201), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4203), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(4205), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4207), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4213), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4249), 1, anon_sym_DOT_DOT, - ACTIONS(4125), 1, - anon_sym_SEMI, - ACTIONS(3897), 2, + ACTIONS(4313), 1, + anon_sym_LBRACE, + STATE(1772), 1, + sym_match_block, + ACTIONS(4195), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4209), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4217), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4251), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1835), 2, + STATE(1834), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4197), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4215), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4211), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155341,62 +155331,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54214] = 23, + [54221] = 17, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(121), 1, - anon_sym_RBRACE, - ACTIONS(3667), 1, + ACTIONS(3561), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3565), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3567), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3791), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(4199), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4201), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4203), 1, anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(3789), 2, anon_sym_EQ, - ACTIONS(4005), 1, anon_sym_DOT_DOT, - ACTIONS(4125), 1, - anon_sym_SEMI, - ACTIONS(3897), 2, + ACTIONS(4195), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4209), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4217), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1836), 2, + STATE(1835), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4197), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4215), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(3787), 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, @@ -155407,53 +155389,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54303] = 23, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [54298] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(117), 1, + ACTIONS(332), 1, anon_sym_RBRACE, - ACTIONS(3667), 1, + ACTIONS(3561), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3565), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3567), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3791), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(3899), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(3901), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3903), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3905), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3907), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(3913), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4033), 1, anon_sym_DOT_DOT, ACTIONS(4125), 1, anon_sym_SEMI, - ACTIONS(3897), 2, + ACTIONS(3895), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3909), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4035), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1837), 2, + STATE(1836), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3897), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -155462,7 +155446,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(3911), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155473,62 +155457,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54392] = 23, + [54387] = 14, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3561), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3565), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3567), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3791), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(4199), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4201), 1, anon_sym_AMP, - ACTIONS(3905), 1, - anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, - anon_sym_EQ, - ACTIONS(4005), 1, - anon_sym_DOT_DOT, - ACTIONS(4125), 1, - anon_sym_SEMI, - ACTIONS(4307), 1, - anon_sym_RBRACE, - ACTIONS(3897), 2, + ACTIONS(4195), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4209), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4007), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1838), 2, + STATE(1837), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4197), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(3789), 5, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(3787), 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, @@ -155539,61 +155508,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54481] = 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, + [54458] = 12, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3561), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3565), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3567), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3791), 1, anon_sym_as, - ACTIONS(3901), 1, - anon_sym_CARET, - ACTIONS(3903), 1, - anon_sym_AMP, - ACTIONS(3905), 1, - anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, - anon_sym_EQ, - ACTIONS(4005), 1, - anon_sym_DOT_DOT, - ACTIONS(3897), 2, + ACTIONS(4195), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4209), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4007), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4309), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1839), 2, + STATE(1838), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4197), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(3789), 7, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(3787), 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, @@ -155604,62 +155563,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54568] = 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, + [54525] = 13, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3561), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3565), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3567), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3791), 1, anon_sym_as, - ACTIONS(3901), 1, - anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4201), 1, anon_sym_AMP, - ACTIONS(3905), 1, - anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, - anon_sym_EQ, - ACTIONS(4005), 1, - anon_sym_DOT_DOT, - ACTIONS(4311), 1, - anon_sym_RPAREN, - ACTIONS(4313), 1, - anon_sym_COMMA, - ACTIONS(3897), 2, + ACTIONS(4195), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4209), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + STATE(1839), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4197), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3789), 6, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + anon_sym_DOT_DOT, + ACTIONS(3787), 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, + [54594] = 10, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(3561), 1, + anon_sym_LBRACK, + ACTIONS(3565), 1, + anon_sym_QMARK, + ACTIONS(3567), 1, + anon_sym_DOT, + ACTIONS(3791), 1, + anon_sym_as, STATE(1840), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4197), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(3789), 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_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(3787), 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, @@ -155670,6 +155672,12 @@ 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, [54657] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, @@ -155678,7 +155686,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1841), 2, sym_line_comment, sym_block_comment, - ACTIONS(1372), 15, + ACTIONS(3731), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -155694,7 +155702,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1370), 23, + ACTIONS(3729), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -155723,46 +155731,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3561), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3565), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3567), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3791), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(3899), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(3901), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3903), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3905), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3907), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(3913), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4033), 1, anon_sym_DOT_DOT, ACTIONS(4315), 1, anon_sym_SEMI, - ACTIONS(3897), 2, + ACTIONS(3895), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3909), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4035), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, STATE(1842), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3897), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -155771,7 +155779,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(3911), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155787,46 +155795,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3561), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3565), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3567), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3791), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(3899), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(3901), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3903), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3905), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3907), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(3913), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4033), 1, anon_sym_DOT_DOT, ACTIONS(4317), 1, anon_sym_RBRACK, - ACTIONS(3897), 2, + ACTIONS(3895), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3909), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4035), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, STATE(1843), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3897), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -155835,7 +155843,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(3911), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155851,46 +155859,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3561), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3565), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3567), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3791), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(3899), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(3901), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3903), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3905), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3907), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(3913), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4033), 1, anon_sym_DOT_DOT, ACTIONS(4319), 1, anon_sym_RBRACK, - ACTIONS(3897), 2, + ACTIONS(3895), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3909), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4035), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, STATE(1844), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3897), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -155899,7 +155907,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(3911), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155915,46 +155923,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3561), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3565), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3567), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3791), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(3899), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(3901), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3903), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3905), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3907), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(3913), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4033), 1, anon_sym_DOT_DOT, - ACTIONS(4125), 1, + ACTIONS(4321), 1, anon_sym_SEMI, - ACTIONS(3897), 2, + ACTIONS(3895), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3909), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4035), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, STATE(1845), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3897), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -155963,7 +155971,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(3911), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155974,118 +155982,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55054] = 17, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4241), 1, - sym_identifier, - ACTIONS(4243), 1, - anon_sym_LBRACE, - ACTIONS(4247), 1, - anon_sym_STAR, - ACTIONS(4253), 1, - anon_sym_COLON_COLON, - ACTIONS(4257), 1, - sym_metavariable, - ACTIONS(4321), 1, - anon_sym_RBRACE, - STATE(2488), 1, - sym_scoped_identifier, - STATE(3073), 1, - sym__use_clause, - STATE(3374), 1, - sym_generic_type_with_turbofish, - STATE(3495), 1, - sym_bracketed_type, - STATE(1846), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4255), 3, - sym_self, - sym_super, - sym_crate, - STATE(2966), 4, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(4249), 19, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_default, - anon_sym_union, - [55130] = 21, + [55054] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4131), 1, + ACTIONS(3561), 1, anon_sym_LBRACK, - ACTIONS(4133), 1, + ACTIONS(3565), 1, anon_sym_QMARK, - ACTIONS(4135), 1, + ACTIONS(3567), 1, anon_sym_DOT, - ACTIONS(4141), 1, + ACTIONS(3791), 1, + anon_sym_as, + ACTIONS(3899), 1, anon_sym_CARET, - ACTIONS(4143), 1, + ACTIONS(3901), 1, anon_sym_AMP, - ACTIONS(4145), 1, + ACTIONS(3903), 1, anon_sym_PIPE, - ACTIONS(4149), 1, + ACTIONS(3905), 1, + anon_sym_AMP_AMP, + ACTIONS(3907), 1, anon_sym_PIPE_PIPE, - ACTIONS(4157), 1, - anon_sym_as, - ACTIONS(4231), 1, + ACTIONS(3913), 1, anon_sym_EQ, - ACTIONS(4323), 1, + ACTIONS(4033), 1, anon_sym_DOT_DOT, - ACTIONS(4129), 2, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - ACTIONS(4137), 2, + ACTIONS(4323), 1, + anon_sym_COMMA, + ACTIONS(3895), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4151), 2, + ACTIONS(3909), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4155), 2, + ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4325), 2, + ACTIONS(4035), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1847), 2, + STATE(1846), 2, sym_line_comment, sym_block_comment, - ACTIONS(4139), 3, + ACTIONS(3897), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4153), 4, + ACTIONS(3915), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4229), 10, + ACTIONS(3911), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156096,51 +156046,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55214] = 22, + [55140] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3561), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3565), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3567), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3791), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(3899), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(3901), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3903), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3905), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3907), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(3913), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4033), 1, anon_sym_DOT_DOT, - ACTIONS(4169), 1, - anon_sym_COMMA, - ACTIONS(3897), 2, + ACTIONS(4325), 1, + anon_sym_RBRACK, + ACTIONS(3895), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3909), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4035), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1848), 2, + STATE(1847), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3897), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -156149,7 +156099,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(3911), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156160,51 +156110,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55300] = 22, + [55226] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3561), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3565), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3567), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3791), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(3899), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(3901), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3903), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3905), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3907), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(3913), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4033), 1, anon_sym_DOT_DOT, ACTIONS(4327), 1, - anon_sym_SEMI, - ACTIONS(3897), 2, + anon_sym_RBRACK, + ACTIONS(3895), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3909), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4035), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1849), 2, + STATE(1848), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3897), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -156213,7 +156163,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(3911), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156224,51 +156174,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55386] = 22, + [55312] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3561), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3565), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3567), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3791), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(3899), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(3901), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3903), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3905), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3907), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(3913), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4033), 1, anon_sym_DOT_DOT, ACTIONS(4329), 1, - anon_sym_RBRACK, - ACTIONS(3897), 2, + anon_sym_SEMI, + ACTIONS(3895), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3909), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4035), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1850), 2, + STATE(1849), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3897), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -156277,7 +156227,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(3911), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156288,51 +156238,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55472] = 22, + [55398] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3561), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3565), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3567), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3791), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(3899), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(3901), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3903), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3905), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3907), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(3913), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4033), 1, anon_sym_DOT_DOT, ACTIONS(4331), 1, anon_sym_RBRACK, - ACTIONS(3897), 2, + ACTIONS(3895), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3909), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4035), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1851), 2, + STATE(1850), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3897), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -156341,7 +156291,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(3911), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156352,51 +156302,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55558] = 22, + [55484] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3561), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3565), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3567), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3791), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(3899), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(3901), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3903), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3905), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3907), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(3913), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4033), 1, anon_sym_DOT_DOT, ACTIONS(4333), 1, anon_sym_RBRACK, - ACTIONS(3897), 2, + ACTIONS(3895), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3909), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4035), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1852), 2, + STATE(1851), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3897), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -156405,7 +156355,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(3911), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156416,51 +156366,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55644] = 22, + [55570] = 17, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 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(4335), 1, + anon_sym_RBRACE, + STATE(2449), 1, + sym_scoped_identifier, + STATE(3268), 1, + sym__use_clause, + STATE(3432), 1, + sym_generic_type_with_turbofish, + STATE(3562), 1, + sym_bracketed_type, + STATE(1852), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4275), 3, + sym_self, + sym_super, + sym_crate, + STATE(2811), 4, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(4269), 19, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_default, + anon_sym_union, + [55646] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3561), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3565), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3567), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3791), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(3899), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(3901), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3903), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3905), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3907), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(3913), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4033), 1, anon_sym_DOT_DOT, - ACTIONS(4335), 1, - anon_sym_COMMA, - ACTIONS(3897), 2, + ACTIONS(4337), 1, + anon_sym_SEMI, + ACTIONS(3895), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3909), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4035), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, STATE(1853), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3897), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -156469,7 +156478,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(3911), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156480,51 +156489,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55730] = 22, + [55732] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3561), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3565), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3567), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3791), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(3899), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(3901), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3903), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3905), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3907), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(3913), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4033), 1, anon_sym_DOT_DOT, - ACTIONS(4337), 1, + ACTIONS(4339), 1, anon_sym_COMMA, - ACTIONS(3897), 2, + ACTIONS(3895), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3909), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4035), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, STATE(1854), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3897), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -156533,7 +156542,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(3911), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156544,51 +156553,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55816] = 22, + [55818] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3561), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3565), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3567), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3791), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(3899), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(3901), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3903), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3905), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3907), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(3913), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4033), 1, anon_sym_DOT_DOT, - ACTIONS(4339), 1, + ACTIONS(4341), 1, anon_sym_RBRACK, - ACTIONS(3897), 2, + ACTIONS(3895), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3909), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4035), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, STATE(1855), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3897), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -156597,7 +156606,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(3911), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156608,51 +156617,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55902] = 22, + [55904] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3561), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3565), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3567), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3791), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(3899), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(3901), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3903), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3905), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3907), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(3913), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4033), 1, anon_sym_DOT_DOT, - ACTIONS(4341), 1, + ACTIONS(4343), 1, anon_sym_RBRACK, - ACTIONS(3897), 2, + ACTIONS(3895), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3909), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4035), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, STATE(1856), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3897), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -156661,7 +156670,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(3911), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156672,51 +156681,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55988] = 22, + [55990] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3561), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3565), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3567), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3791), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(3899), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(3901), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3903), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3905), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3907), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(3913), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4033), 1, anon_sym_DOT_DOT, - ACTIONS(4343), 1, - anon_sym_RBRACK, - ACTIONS(3897), 2, + ACTIONS(4345), 1, + anon_sym_SEMI, + ACTIONS(3895), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3909), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4035), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, STATE(1857), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3897), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -156725,7 +156734,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(3911), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156736,51 +156745,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56074] = 22, + [56076] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3561), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3565), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3567), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3791), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(3899), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(3901), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3903), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3905), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3907), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(3913), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4033), 1, anon_sym_DOT_DOT, - ACTIONS(4345), 1, + ACTIONS(4125), 1, anon_sym_SEMI, - ACTIONS(3897), 2, + ACTIONS(3895), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3909), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4035), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, STATE(1858), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3897), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -156789,7 +156798,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(3911), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156800,51 +156809,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56160] = 22, + [56162] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3561), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3565), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3567), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3791), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(3899), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(3901), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3903), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3905), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3907), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(3913), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4033), 1, anon_sym_DOT_DOT, ACTIONS(4347), 1, - anon_sym_SEMI, - ACTIONS(3897), 2, + anon_sym_RBRACK, + ACTIONS(3895), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3909), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4035), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, STATE(1859), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3897), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -156853,7 +156862,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(3911), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156864,51 +156873,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56246] = 22, + [56248] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3561), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3565), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3567), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3791), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(3899), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(3901), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3903), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3905), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3907), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(3913), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4033), 1, anon_sym_DOT_DOT, ACTIONS(4349), 1, anon_sym_RBRACK, - ACTIONS(3897), 2, + ACTIONS(3895), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3909), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4035), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, STATE(1860), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3897), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -156917,7 +156926,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(3911), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156928,60 +156937,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56332] = 22, + [56334] = 21, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(4129), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(4133), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(4135), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(4137), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(4173), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4175), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4177), 1, anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4181), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4185), 1, anon_sym_EQ, - ACTIONS(4005), 1, - anon_sym_DOT_DOT, ACTIONS(4351), 1, - anon_sym_SEMI, - ACTIONS(3897), 2, + anon_sym_DOT_DOT, + ACTIONS(4139), 2, + anon_sym_EQ_GT, + anon_sym_AMP_AMP, + ACTIONS(4163), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4165), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4189), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4353), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, STATE(1861), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4131), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4187), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4183), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156997,46 +157005,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3561), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3565), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3567), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3791), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(3899), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(3901), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3903), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3905), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3907), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(3913), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4033), 1, anon_sym_DOT_DOT, - ACTIONS(4353), 1, + ACTIONS(4355), 1, anon_sym_SEMI, - ACTIONS(3897), 2, + ACTIONS(3895), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3909), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4035), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, STATE(1862), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3897), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -157045,7 +157053,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(3911), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157061,46 +157069,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3561), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3565), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3567), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3791), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(3899), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(3901), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3903), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3905), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3907), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(3913), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4033), 1, anon_sym_DOT_DOT, - ACTIONS(4355), 1, + ACTIONS(4357), 1, anon_sym_SEMI, - ACTIONS(3897), 2, + ACTIONS(3895), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3909), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4035), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, STATE(1863), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3897), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -157109,7 +157117,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(3911), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157125,46 +157133,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3561), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3565), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3567), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3791), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(3899), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(3901), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3903), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3905), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3907), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(3913), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4033), 1, anon_sym_DOT_DOT, - ACTIONS(4357), 1, + ACTIONS(4359), 1, anon_sym_SEMI, - ACTIONS(3897), 2, + ACTIONS(3895), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3909), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4035), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, STATE(1864), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3897), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -157173,7 +157181,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(3911), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157184,59 +157192,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56676] = 21, + [56676] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4131), 1, + ACTIONS(3561), 1, anon_sym_LBRACK, - ACTIONS(4133), 1, + ACTIONS(3565), 1, anon_sym_QMARK, - ACTIONS(4135), 1, + ACTIONS(3567), 1, anon_sym_DOT, - ACTIONS(4141), 1, + ACTIONS(3791), 1, + anon_sym_as, + ACTIONS(3899), 1, anon_sym_CARET, - ACTIONS(4143), 1, + ACTIONS(3901), 1, anon_sym_AMP, - ACTIONS(4145), 1, + ACTIONS(3903), 1, anon_sym_PIPE, - ACTIONS(4149), 1, + ACTIONS(3905), 1, + anon_sym_AMP_AMP, + ACTIONS(3907), 1, anon_sym_PIPE_PIPE, - ACTIONS(4157), 1, - anon_sym_as, - ACTIONS(4231), 1, + ACTIONS(3913), 1, anon_sym_EQ, - ACTIONS(4323), 1, + ACTIONS(4033), 1, anon_sym_DOT_DOT, - ACTIONS(4137), 2, + ACTIONS(4361), 1, + anon_sym_SEMI, + ACTIONS(3895), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4151), 2, + ACTIONS(3909), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4155), 2, + ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4171), 2, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - ACTIONS(4325), 2, + ACTIONS(4035), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, STATE(1865), 2, sym_line_comment, sym_block_comment, - ACTIONS(4139), 3, + ACTIONS(3897), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4153), 4, + ACTIONS(3915), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4229), 10, + ACTIONS(3911), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157247,51 +157256,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56760] = 22, + [56762] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3561), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3565), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3567), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3791), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(3899), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(3901), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3903), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3905), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3907), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(3913), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4033), 1, anon_sym_DOT_DOT, - ACTIONS(4359), 1, - anon_sym_RBRACK, - ACTIONS(3897), 2, + ACTIONS(4363), 1, + anon_sym_SEMI, + ACTIONS(3895), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3909), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4035), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, STATE(1866), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3897), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -157300,7 +157309,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(3911), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157311,60 +157320,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56846] = 22, + [56848] = 21, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(4129), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(4133), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(4135), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(4137), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(4173), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4175), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4177), 1, anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4181), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4185), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4351), 1, anon_sym_DOT_DOT, - ACTIONS(4361), 1, - anon_sym_RBRACK, - ACTIONS(3897), 2, + ACTIONS(4163), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4165), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4189), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4257), 2, + anon_sym_EQ_GT, + anon_sym_AMP_AMP, + ACTIONS(4353), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, STATE(1867), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4131), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4187), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4183), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157380,46 +157388,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3561), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3565), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3567), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3791), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(3899), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(3901), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3903), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3905), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3907), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(3913), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4033), 1, anon_sym_DOT_DOT, - ACTIONS(4363), 1, - anon_sym_SEMI, - ACTIONS(3897), 2, + ACTIONS(4149), 1, + anon_sym_COMMA, + ACTIONS(3895), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3909), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4035), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, STATE(1868), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3897), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -157428,7 +157436,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(3911), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157444,46 +157452,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3561), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3565), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3567), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3791), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(3899), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(3901), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3903), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3905), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3907), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(3913), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4033), 1, anon_sym_DOT_DOT, ACTIONS(4365), 1, - anon_sym_SEMI, - ACTIONS(3897), 2, + anon_sym_COMMA, + ACTIONS(3895), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3909), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4035), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, STATE(1869), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3897), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -157492,7 +157500,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(3911), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157508,46 +157516,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3561), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3565), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3567), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3791), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(3899), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(3901), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3903), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3905), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3907), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(3913), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4033), 1, anon_sym_DOT_DOT, ACTIONS(4367), 1, - anon_sym_SEMI, - ACTIONS(3897), 2, + anon_sym_COMMA, + ACTIONS(3895), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3909), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4035), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, STATE(1870), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3897), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -157556,7 +157564,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(3911), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157572,55 +157580,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(4129), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(4133), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(4135), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(4137), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(4173), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4175), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4177), 1, anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4181), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4185), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4283), 1, + anon_sym_EQ_GT, + ACTIONS(4351), 1, anon_sym_DOT_DOT, ACTIONS(4369), 1, - anon_sym_COMMA, - ACTIONS(3897), 2, + anon_sym_AMP_AMP, + ACTIONS(4163), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4165), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4189), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4353), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, STATE(1871), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4131), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4187), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4183), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157636,46 +157644,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3561), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3565), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3567), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3791), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(3899), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(3901), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3903), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3905), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3907), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(3913), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4033), 1, anon_sym_DOT_DOT, ACTIONS(4371), 1, - anon_sym_SEMI, - ACTIONS(3897), 2, + anon_sym_RBRACK, + ACTIONS(3895), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3909), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4035), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, STATE(1872), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3897), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -157684,7 +157692,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(3911), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157700,46 +157708,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3561), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3565), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3567), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3791), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(3899), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(3901), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3903), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3905), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3907), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(3913), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4033), 1, anon_sym_DOT_DOT, ACTIONS(4373), 1, - anon_sym_COMMA, - ACTIONS(3897), 2, + anon_sym_SEMI, + ACTIONS(3895), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3909), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4035), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, STATE(1873), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3897), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -157748,7 +157756,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(3911), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157766,39 +157774,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4241), 1, + ACTIONS(4261), 1, sym_identifier, - ACTIONS(4243), 1, + ACTIONS(4263), 1, anon_sym_LBRACE, - ACTIONS(4247), 1, + ACTIONS(4267), 1, anon_sym_STAR, - ACTIONS(4253), 1, + ACTIONS(4273), 1, anon_sym_COLON_COLON, - ACTIONS(4257), 1, + ACTIONS(4277), 1, sym_metavariable, ACTIONS(4375), 1, anon_sym_RBRACE, - STATE(2488), 1, + STATE(2449), 1, sym_scoped_identifier, - STATE(3073), 1, + STATE(3268), 1, sym__use_clause, - STATE(3374), 1, + STATE(3432), 1, sym_generic_type_with_turbofish, - STATE(3495), 1, + STATE(3562), 1, sym_bracketed_type, STATE(1874), 2, sym_line_comment, sym_block_comment, - ACTIONS(4255), 3, + ACTIONS(4275), 3, sym_self, sym_super, sym_crate, - STATE(2966), 4, + STATE(2811), 4, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(4249), 19, + ACTIONS(4269), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -157823,55 +157831,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4131), 1, + ACTIONS(3561), 1, anon_sym_LBRACK, - ACTIONS(4133), 1, + ACTIONS(3565), 1, anon_sym_QMARK, - ACTIONS(4135), 1, + ACTIONS(3567), 1, anon_sym_DOT, - ACTIONS(4141), 1, + ACTIONS(3791), 1, + anon_sym_as, + ACTIONS(3899), 1, anon_sym_CARET, - ACTIONS(4143), 1, + ACTIONS(3901), 1, anon_sym_AMP, - ACTIONS(4145), 1, + ACTIONS(3903), 1, anon_sym_PIPE, - ACTIONS(4149), 1, + ACTIONS(3905), 1, + anon_sym_AMP_AMP, + ACTIONS(3907), 1, anon_sym_PIPE_PIPE, - ACTIONS(4157), 1, - anon_sym_as, - ACTIONS(4181), 1, - anon_sym_EQ_GT, - ACTIONS(4231), 1, + ACTIONS(3913), 1, anon_sym_EQ, - ACTIONS(4323), 1, + ACTIONS(4033), 1, anon_sym_DOT_DOT, ACTIONS(4377), 1, - anon_sym_AMP_AMP, - ACTIONS(4137), 2, + anon_sym_SEMI, + ACTIONS(3895), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4151), 2, + ACTIONS(3909), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4155), 2, + ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4325), 2, + ACTIONS(4035), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, STATE(1875), 2, sym_line_comment, sym_block_comment, - ACTIONS(4139), 3, + ACTIONS(3897), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4153), 4, + ACTIONS(3915), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4229), 10, + ACTIONS(3911), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157889,37 +157897,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4241), 1, + ACTIONS(4261), 1, sym_identifier, - ACTIONS(4243), 1, + ACTIONS(4263), 1, anon_sym_LBRACE, - ACTIONS(4247), 1, + ACTIONS(4267), 1, anon_sym_STAR, - ACTIONS(4253), 1, + ACTIONS(4273), 1, anon_sym_COLON_COLON, - ACTIONS(4257), 1, + ACTIONS(4277), 1, sym_metavariable, - STATE(2488), 1, + STATE(2449), 1, sym_scoped_identifier, - STATE(3374), 1, - sym_generic_type_with_turbofish, - STATE(3487), 1, + STATE(3330), 1, sym__use_clause, - STATE(3495), 1, + STATE(3432), 1, + sym_generic_type_with_turbofish, + STATE(3562), 1, sym_bracketed_type, STATE(1876), 2, sym_line_comment, sym_block_comment, - ACTIONS(4255), 3, + ACTIONS(4275), 3, sym_self, sym_super, sym_crate, - STATE(2966), 4, + STATE(2811), 4, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(4249), 19, + ACTIONS(4269), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -157946,37 +157954,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4241), 1, + ACTIONS(4261), 1, sym_identifier, - ACTIONS(4243), 1, + ACTIONS(4263), 1, anon_sym_LBRACE, - ACTIONS(4247), 1, + ACTIONS(4267), 1, anon_sym_STAR, - ACTIONS(4253), 1, + ACTIONS(4273), 1, anon_sym_COLON_COLON, - ACTIONS(4257), 1, + ACTIONS(4277), 1, sym_metavariable, - STATE(2488), 1, + STATE(2449), 1, sym_scoped_identifier, - STATE(3348), 1, - sym__use_clause, - STATE(3374), 1, + STATE(3432), 1, sym_generic_type_with_turbofish, - STATE(3495), 1, + STATE(3434), 1, + sym__use_clause, + STATE(3562), 1, sym_bracketed_type, STATE(1877), 2, sym_line_comment, sym_block_comment, - ACTIONS(4255), 3, + ACTIONS(4275), 3, sym_self, sym_super, sym_crate, - STATE(2966), 4, + STATE(2811), 4, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(4249), 19, + ACTIONS(4269), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -158003,37 +158011,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4241), 1, + ACTIONS(4261), 1, sym_identifier, - ACTIONS(4243), 1, + ACTIONS(4263), 1, anon_sym_LBRACE, - ACTIONS(4247), 1, + ACTIONS(4267), 1, anon_sym_STAR, - ACTIONS(4253), 1, + ACTIONS(4273), 1, anon_sym_COLON_COLON, - ACTIONS(4257), 1, + ACTIONS(4277), 1, sym_metavariable, - STATE(2488), 1, + STATE(2449), 1, sym_scoped_identifier, - STATE(3374), 1, + STATE(3422), 1, + sym__use_clause, + STATE(3432), 1, sym_generic_type_with_turbofish, - STATE(3495), 1, + STATE(3562), 1, sym_bracketed_type, - STATE(3597), 1, - sym__use_clause, STATE(1878), 2, sym_line_comment, sym_block_comment, - ACTIONS(4255), 3, + ACTIONS(4275), 3, sym_self, sym_super, sym_crate, - STATE(2966), 4, + STATE(2811), 4, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(4249), 19, + ACTIONS(4269), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -158060,37 +158068,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4241), 1, + ACTIONS(4261), 1, sym_identifier, - ACTIONS(4243), 1, + ACTIONS(4263), 1, anon_sym_LBRACE, - ACTIONS(4247), 1, + ACTIONS(4267), 1, anon_sym_STAR, - ACTIONS(4253), 1, + ACTIONS(4273), 1, anon_sym_COLON_COLON, - ACTIONS(4257), 1, + ACTIONS(4277), 1, sym_metavariable, - STATE(2488), 1, + STATE(2449), 1, sym_scoped_identifier, - STATE(3073), 1, + STATE(3382), 1, sym__use_clause, - STATE(3374), 1, + STATE(3432), 1, sym_generic_type_with_turbofish, - STATE(3495), 1, + STATE(3562), 1, sym_bracketed_type, STATE(1879), 2, sym_line_comment, sym_block_comment, - ACTIONS(4255), 3, + ACTIONS(4275), 3, sym_self, sym_super, sym_crate, - STATE(2966), 4, + STATE(2811), 4, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(4249), 19, + ACTIONS(4269), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -158117,37 +158125,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4241), 1, + ACTIONS(4261), 1, sym_identifier, - ACTIONS(4243), 1, + ACTIONS(4263), 1, anon_sym_LBRACE, - ACTIONS(4247), 1, + ACTIONS(4267), 1, anon_sym_STAR, - ACTIONS(4253), 1, + ACTIONS(4273), 1, anon_sym_COLON_COLON, - ACTIONS(4257), 1, + ACTIONS(4277), 1, sym_metavariable, - STATE(2488), 1, + STATE(2449), 1, sym_scoped_identifier, - STATE(3328), 1, + STATE(3268), 1, sym__use_clause, - STATE(3374), 1, + STATE(3432), 1, sym_generic_type_with_turbofish, - STATE(3495), 1, + STATE(3562), 1, sym_bracketed_type, STATE(1880), 2, sym_line_comment, sym_block_comment, - ACTIONS(4255), 3, + ACTIONS(4275), 3, sym_self, sym_super, sym_crate, - STATE(2966), 4, + STATE(2811), 4, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(4249), 19, + ACTIONS(4269), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -158174,7 +158182,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3867), 1, + ACTIONS(3711), 1, anon_sym_where, ACTIONS(4379), 1, sym_identifier, @@ -158182,15 +158190,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, ACTIONS(4389), 1, sym_metavariable, - STATE(3025), 1, + STATE(2776), 1, sym_scoped_type_identifier, - STATE(3297), 1, + STATE(3262), 1, sym_generic_type, - STATE(3369), 1, + STATE(3371), 1, sym_scoped_identifier, - STATE(3475), 1, + STATE(3482), 1, sym_generic_type_with_turbofish, - STATE(3501), 1, + STATE(3509), 1, sym_bracketed_type, ACTIONS(4385), 2, anon_sym_default, @@ -158198,7 +158206,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1881), 2, sym_line_comment, sym_block_comment, - ACTIONS(3865), 3, + ACTIONS(3709), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, @@ -158231,7 +158239,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3867), 1, + ACTIONS(3711), 1, anon_sym_where, ACTIONS(4383), 1, anon_sym_COLON_COLON, @@ -158239,15 +158247,15 @@ static const uint16_t ts_small_parse_table[] = { sym_metavariable, ACTIONS(4391), 1, sym_identifier, - STATE(3029), 1, + STATE(2863), 1, sym_scoped_type_identifier, - STATE(3306), 1, + STATE(3084), 1, sym_generic_type, - STATE(3369), 1, + STATE(3371), 1, sym_scoped_identifier, - STATE(3475), 1, + STATE(3482), 1, sym_generic_type_with_turbofish, - STATE(3501), 1, + STATE(3509), 1, sym_bracketed_type, ACTIONS(4385), 2, anon_sym_default, @@ -158255,7 +158263,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1882), 2, sym_line_comment, sym_block_comment, - ACTIONS(3865), 3, + ACTIONS(3709), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, @@ -158288,7 +158296,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3867), 1, + ACTIONS(3711), 1, anon_sym_where, ACTIONS(4383), 1, anon_sym_COLON_COLON, @@ -158296,15 +158304,15 @@ static const uint16_t ts_small_parse_table[] = { sym_metavariable, ACTIONS(4393), 1, sym_identifier, - STATE(2865), 1, + STATE(2998), 1, sym_scoped_type_identifier, - STATE(3043), 1, + STATE(3077), 1, sym_generic_type, - STATE(3369), 1, + STATE(3371), 1, sym_scoped_identifier, - STATE(3475), 1, + STATE(3482), 1, sym_generic_type_with_turbofish, - STATE(3501), 1, + STATE(3509), 1, sym_bracketed_type, ACTIONS(4385), 2, anon_sym_default, @@ -158312,7 +158320,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1883), 2, sym_line_comment, sym_block_comment, - ACTIONS(3865), 3, + ACTIONS(3709), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, @@ -158345,7 +158353,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3867), 1, + ACTIONS(3711), 1, anon_sym_where, ACTIONS(4383), 1, anon_sym_COLON_COLON, @@ -158353,15 +158361,15 @@ static const uint16_t ts_small_parse_table[] = { sym_metavariable, ACTIONS(4395), 1, sym_identifier, - STATE(2942), 1, + STATE(2906), 1, sym_scoped_type_identifier, - STATE(3227), 1, + STATE(3080), 1, sym_generic_type, - STATE(3369), 1, + STATE(3371), 1, sym_scoped_identifier, - STATE(3475), 1, + STATE(3482), 1, sym_generic_type_with_turbofish, - STATE(3501), 1, + STATE(3509), 1, sym_bracketed_type, ACTIONS(4385), 2, anon_sym_default, @@ -158369,7 +158377,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1884), 2, sym_line_comment, sym_block_comment, - ACTIONS(3865), 3, + ACTIONS(3709), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, @@ -158402,7 +158410,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3867), 1, + ACTIONS(3711), 1, anon_sym_where, ACTIONS(4383), 1, anon_sym_COLON_COLON, @@ -158410,15 +158418,15 @@ static const uint16_t ts_small_parse_table[] = { sym_metavariable, ACTIONS(4397), 1, sym_identifier, - STATE(2979), 1, + STATE(2946), 1, sym_scoped_type_identifier, - STATE(3095), 1, + STATE(3074), 1, sym_generic_type, - STATE(3369), 1, + STATE(3371), 1, sym_scoped_identifier, - STATE(3475), 1, + STATE(3482), 1, sym_generic_type_with_turbofish, - STATE(3501), 1, + STATE(3509), 1, sym_bracketed_type, ACTIONS(4385), 2, anon_sym_default, @@ -158426,7 +158434,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1885), 2, sym_line_comment, sym_block_comment, - ACTIONS(3865), 3, + ACTIONS(3709), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, @@ -158459,7 +158467,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3867), 1, + ACTIONS(3711), 1, anon_sym_where, ACTIONS(4383), 1, anon_sym_COLON_COLON, @@ -158467,15 +158475,15 @@ static const uint16_t ts_small_parse_table[] = { sym_metavariable, ACTIONS(4399), 1, sym_identifier, - STATE(3013), 1, + STATE(2732), 1, sym_scoped_type_identifier, - STATE(3287), 1, + STATE(3034), 1, sym_generic_type, - STATE(3369), 1, + STATE(3371), 1, sym_scoped_identifier, - STATE(3475), 1, + STATE(3482), 1, sym_generic_type_with_turbofish, - STATE(3501), 1, + STATE(3509), 1, sym_bracketed_type, ACTIONS(4385), 2, anon_sym_default, @@ -158483,7 +158491,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1886), 2, sym_line_comment, sym_block_comment, - ACTIONS(3865), 3, + ACTIONS(3709), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, @@ -158516,7 +158524,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3867), 1, + ACTIONS(3711), 1, anon_sym_where, ACTIONS(4383), 1, anon_sym_COLON_COLON, @@ -158524,15 +158532,15 @@ static const uint16_t ts_small_parse_table[] = { sym_metavariable, ACTIONS(4401), 1, sym_identifier, - STATE(3019), 1, + STATE(3030), 1, sym_scoped_type_identifier, - STATE(3292), 1, + STATE(3060), 1, sym_generic_type, - STATE(3369), 1, + STATE(3371), 1, sym_scoped_identifier, - STATE(3475), 1, + STATE(3482), 1, sym_generic_type_with_turbofish, - STATE(3501), 1, + STATE(3509), 1, sym_bracketed_type, ACTIONS(4385), 2, anon_sym_default, @@ -158540,7 +158548,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1887), 2, sym_line_comment, sym_block_comment, - ACTIONS(3865), 3, + ACTIONS(3709), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, @@ -158573,7 +158581,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3867), 1, + ACTIONS(3711), 1, anon_sym_where, ACTIONS(4383), 1, anon_sym_COLON_COLON, @@ -158581,15 +158589,15 @@ static const uint16_t ts_small_parse_table[] = { sym_metavariable, ACTIONS(4403), 1, sym_identifier, - STATE(3021), 1, + STATE(2982), 1, sym_scoped_type_identifier, - STATE(3294), 1, + STATE(3063), 1, sym_generic_type, - STATE(3369), 1, + STATE(3371), 1, sym_scoped_identifier, - STATE(3475), 1, + STATE(3482), 1, sym_generic_type_with_turbofish, - STATE(3501), 1, + STATE(3509), 1, sym_bracketed_type, ACTIONS(4385), 2, anon_sym_default, @@ -158597,7 +158605,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1888), 2, sym_line_comment, sym_block_comment, - ACTIONS(3865), 3, + ACTIONS(3709), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, @@ -158753,20 +158761,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(2340), 1, + ACTIONS(1930), 1, anon_sym_COLON_COLON, ACTIONS(4417), 1, sym_identifier, ACTIONS(4423), 1, sym_metavariable, - STATE(2271), 1, + STATE(2250), 1, sym_scoped_identifier, - STATE(3324), 1, + STATE(3312), 1, sym_bracketed_type, - STATE(3336), 1, - sym_attribute, - STATE(3350), 1, + STATE(3351), 1, sym_generic_type_with_turbofish, + STATE(3384), 1, + sym_attribute, STATE(1892), 2, sym_line_comment, sym_block_comment, @@ -158801,19 +158809,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(2340), 1, + ACTIONS(1930), 1, anon_sym_COLON_COLON, ACTIONS(4417), 1, sym_identifier, ACTIONS(4423), 1, sym_metavariable, - STATE(2271), 1, + STATE(2250), 1, sym_scoped_identifier, - STATE(3324), 1, + STATE(3312), 1, sym_bracketed_type, - STATE(3350), 1, + STATE(3351), 1, sym_generic_type_with_turbofish, - STATE(3468), 1, + STATE(3513), 1, sym_attribute, STATE(1893), 2, sym_line_comment, @@ -158849,19 +158857,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(2340), 1, + ACTIONS(1930), 1, anon_sym_COLON_COLON, ACTIONS(4417), 1, sym_identifier, ACTIONS(4423), 1, sym_metavariable, - STATE(2271), 1, + STATE(2250), 1, sym_scoped_identifier, - STATE(3324), 1, + STATE(3312), 1, sym_bracketed_type, - STATE(3350), 1, + STATE(3351), 1, sym_generic_type_with_turbofish, - STATE(3401), 1, + STATE(3481), 1, sym_attribute, STATE(1894), 2, sym_line_comment, @@ -158897,19 +158905,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(2340), 1, + ACTIONS(1930), 1, anon_sym_COLON_COLON, ACTIONS(4417), 1, sym_identifier, ACTIONS(4423), 1, sym_metavariable, - STATE(2271), 1, + STATE(2250), 1, sym_scoped_identifier, - STATE(3324), 1, + STATE(3312), 1, sym_bracketed_type, - STATE(3350), 1, + STATE(3351), 1, sym_generic_type_with_turbofish, - STATE(3408), 1, + STATE(3429), 1, sym_attribute, STATE(1895), 2, sym_line_comment, @@ -158945,20 +158953,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(2340), 1, + ACTIONS(1930), 1, anon_sym_COLON_COLON, ACTIONS(4417), 1, sym_identifier, ACTIONS(4423), 1, sym_metavariable, - STATE(2271), 1, + STATE(2250), 1, sym_scoped_identifier, - STATE(3324), 1, + STATE(3312), 1, sym_bracketed_type, - STATE(3350), 1, - sym_generic_type_with_turbofish, - STATE(3392), 1, + STATE(3346), 1, sym_attribute, + STATE(3351), 1, + sym_generic_type_with_turbofish, STATE(1896), 2, sym_line_comment, sym_block_comment, @@ -158993,19 +159001,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(2340), 1, + ACTIONS(1930), 1, anon_sym_COLON_COLON, ACTIONS(4417), 1, sym_identifier, ACTIONS(4423), 1, sym_metavariable, - STATE(2271), 1, + STATE(2250), 1, sym_scoped_identifier, - STATE(3321), 1, - sym_attribute, - STATE(3324), 1, + STATE(3312), 1, sym_bracketed_type, - STATE(3350), 1, + STATE(3349), 1, + sym_attribute, + STATE(3351), 1, sym_generic_type_with_turbofish, STATE(1897), 2, sym_line_comment, @@ -159041,19 +159049,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(2340), 1, + ACTIONS(1930), 1, anon_sym_COLON_COLON, ACTIONS(4417), 1, sym_identifier, ACTIONS(4423), 1, sym_metavariable, - STATE(2271), 1, + STATE(2250), 1, sym_scoped_identifier, - STATE(3324), 1, + STATE(3312), 1, sym_bracketed_type, - STATE(3350), 1, + STATE(3351), 1, sym_generic_type_with_turbofish, - STATE(3411), 1, + STATE(3386), 1, sym_attribute, STATE(1898), 2, sym_line_comment, @@ -159089,20 +159097,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(2340), 1, + ACTIONS(1930), 1, anon_sym_COLON_COLON, ACTIONS(4417), 1, sym_identifier, ACTIONS(4423), 1, sym_metavariable, - STATE(2271), 1, + STATE(2250), 1, sym_scoped_identifier, - STATE(3324), 1, + STATE(3312), 1, sym_bracketed_type, - STATE(3326), 1, - sym_attribute, - STATE(3350), 1, + STATE(3351), 1, sym_generic_type_with_turbofish, + STATE(3505), 1, + sym_attribute, STATE(1899), 2, sym_line_comment, sym_block_comment, @@ -159143,11 +159151,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, ACTIONS(4433), 1, sym_metavariable, - STATE(3107), 1, + STATE(3036), 1, sym_scoped_identifier, - STATE(3374), 1, + STATE(3432), 1, sym_generic_type_with_turbofish, - STATE(3495), 1, + STATE(3562), 1, sym_bracketed_type, STATE(1900), 2, sym_line_comment, @@ -159189,11 +159197,11 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(4441), 1, sym_metavariable, - STATE(3209), 1, + STATE(3201), 1, sym_scoped_identifier, - STATE(3374), 1, + STATE(3432), 1, sym_generic_type_with_turbofish, - STATE(3495), 1, + STATE(3562), 1, sym_bracketed_type, STATE(1901), 2, sym_line_comment, @@ -159227,12 +159235,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(771), 1, + ACTIONS(945), 1, anon_sym_DOT_DOT, STATE(1902), 2, sym_line_comment, sym_block_comment, - ACTIONS(773), 20, + ACTIONS(947), 20, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -159268,9 +159276,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, ACTIONS(4449), 1, anon_sym_LT2, - STATE(1931), 1, + STATE(1935), 1, sym_type_arguments, - STATE(1945), 1, + STATE(1947), 1, sym_parameters, STATE(1903), 2, sym_line_comment, @@ -159295,12 +159303,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(753), 1, + ACTIONS(937), 1, anon_sym_DOT_DOT, STATE(1904), 2, sym_line_comment, sym_block_comment, - ACTIONS(755), 20, + ACTIONS(939), 20, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -159321,28 +159329,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, anon_sym_else, anon_sym_in, - [59429] = 10, + [59429] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3261), 1, + ACTIONS(3305), 1, anon_sym_COLON, - ACTIONS(4443), 1, - anon_sym_LPAREN, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4451), 1, + ACTIONS(3309), 2, + anon_sym_BANG, anon_sym_COLON_COLON, - STATE(1931), 1, - sym_type_arguments, - STATE(1945), 1, - sym_parameters, STATE(1905), 2, sym_line_comment, sym_block_comment, - ACTIONS(3259), 14, + ACTIONS(3303), 17, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, @@ -159354,61 +159356,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, + anon_sym_for, anon_sym_where, anon_sym_else, - [59474] = 6, + anon_sym_LT2, + [59466] = 14, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3269), 1, - anon_sym_COLON, - ACTIONS(3273), 2, + ACTIONS(4445), 1, anon_sym_BANG, + ACTIONS(4449), 1, + anon_sym_LT2, + ACTIONS(4453), 1, + anon_sym_LPAREN, + ACTIONS(4455), 1, + anon_sym_LBRACE, + ACTIONS(4457), 1, + anon_sym_COLON, + ACTIONS(4459), 1, + anon_sym_AT, + ACTIONS(4461), 1, + anon_sym_DOT_DOT, + ACTIONS(4465), 1, anon_sym_COLON_COLON, + STATE(1935), 1, + sym_type_arguments, + ACTIONS(4463), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(1906), 2, sym_line_comment, sym_block_comment, - ACTIONS(3267), 17, + ACTIONS(4451), 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, - [59511] = 10, + anon_sym_in, + [59519] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3255), 1, + ACTIONS(3273), 1, anon_sym_COLON, - ACTIONS(4443), 1, - anon_sym_LPAREN, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4451), 1, + ACTIONS(3277), 2, + anon_sym_BANG, anon_sym_COLON_COLON, - STATE(1931), 1, - sym_type_arguments, - STATE(1945), 1, - sym_parameters, STATE(1907), 2, sym_line_comment, sym_block_comment, - ACTIONS(3253), 14, + ACTIONS(3271), 17, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, @@ -159420,24 +159426,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, + anon_sym_for, anon_sym_where, anon_sym_else, - [59556] = 6, + anon_sym_LT2, + [59556] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3293), 1, + ACTIONS(3265), 1, anon_sym_COLON, - ACTIONS(3297), 2, - anon_sym_BANG, + ACTIONS(4443), 1, + anon_sym_LPAREN, + ACTIONS(4449), 1, + anon_sym_LT2, + ACTIONS(4467), 1, anon_sym_COLON_COLON, + STATE(1935), 1, + sym_type_arguments, + STATE(1947), 1, + sym_parameters, STATE(1908), 2, sym_line_comment, sym_block_comment, - ACTIONS(3291), 17, + ACTIONS(3263), 14, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, @@ -159449,24 +159463,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, - anon_sym_for, anon_sym_where, anon_sym_else, - anon_sym_LT2, - [59593] = 6, + [59601] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3309), 1, + ACTIONS(3297), 1, anon_sym_COLON, - ACTIONS(3313), 2, + ACTIONS(3301), 2, anon_sym_BANG, anon_sym_COLON_COLON, STATE(1909), 2, sym_line_comment, sym_block_comment, - ACTIONS(3307), 17, + ACTIONS(3295), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -159484,66 +159496,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_else, anon_sym_LT2, - [59630] = 14, + [59638] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4445), 1, - anon_sym_BANG, + ACTIONS(3261), 1, + anon_sym_COLON, + ACTIONS(4443), 1, + anon_sym_LPAREN, ACTIONS(4449), 1, anon_sym_LT2, - ACTIONS(4455), 1, - anon_sym_LPAREN, - ACTIONS(4457), 1, - anon_sym_LBRACE, - ACTIONS(4459), 1, - anon_sym_COLON, - ACTIONS(4461), 1, - anon_sym_AT, - ACTIONS(4463), 1, - anon_sym_DOT_DOT, ACTIONS(4467), 1, anon_sym_COLON_COLON, - STATE(1931), 1, + STATE(1935), 1, sym_type_arguments, - ACTIONS(4465), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + STATE(1947), 1, + sym_parameters, STATE(1910), 2, sym_line_comment, sym_block_comment, - ACTIONS(4453), 9, + ACTIONS(3259), 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, [59683] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3265), 1, + ACTIONS(3255), 1, anon_sym_COLON, ACTIONS(4443), 1, anon_sym_LPAREN, ACTIONS(4449), 1, anon_sym_LT2, - ACTIONS(4451), 1, + ACTIONS(4467), 1, anon_sym_COLON_COLON, - STATE(1931), 1, + STATE(1935), 1, sym_type_arguments, - STATE(1945), 1, + STATE(1947), 1, sym_parameters, STATE(1911), 2, sym_line_comment, sym_block_comment, - ACTIONS(3263), 14, + ACTIONS(3253), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -159563,15 +159571,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3277), 1, + ACTIONS(3285), 1, anon_sym_COLON, - ACTIONS(3281), 2, + ACTIONS(3289), 2, anon_sym_BANG, anon_sym_COLON_COLON, STATE(1912), 2, sym_line_comment, sym_block_comment, - ACTIONS(3275), 17, + ACTIONS(3283), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -159589,37 +159597,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_else, anon_sym_LT2, - [59765] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3295), 2, - anon_sym_COLON, - anon_sym_DOT_DOT, - STATE(1913), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3291), 3, - anon_sym_LBRACE, - anon_sym_for, - anon_sym_LT2, - ACTIONS(3297), 14, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_in, - [59801] = 8, + [59765] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -159628,14 +159606,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(4449), 1, anon_sym_LT2, - STATE(1933), 1, + STATE(1931), 1, sym_type_arguments, - STATE(1947), 1, + STATE(1942), 1, sym_parameters, - STATE(1914), 2, + STATE(1913), 2, sym_line_comment, sym_block_comment, - ACTIONS(3287), 15, + ACTIONS(3311), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -159651,22 +159629,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [59841] = 6, + [59805] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3271), 2, + ACTIONS(3307), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(1915), 2, + STATE(1914), 2, sym_line_comment, sym_block_comment, - ACTIONS(3267), 3, + ACTIONS(3303), 3, anon_sym_LBRACE, anon_sym_for, anon_sym_LT2, - ACTIONS(3273), 14, + ACTIONS(3309), 14, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -159681,7 +159659,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_else, anon_sym_in, - [59877] = 8, + [59841] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -159690,14 +159668,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(4449), 1, anon_sym_LT2, - STATE(1933), 1, + STATE(1931), 1, sym_type_arguments, - STATE(1947), 1, + STATE(1942), 1, sym_parameters, - STATE(1916), 2, + STATE(1915), 2, sym_line_comment, sym_block_comment, - ACTIONS(3283), 15, + ACTIONS(3267), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -159713,7 +159691,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [59917] = 8, + [59881] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -159722,14 +159700,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(4449), 1, anon_sym_LT2, - STATE(1933), 1, + STATE(1931), 1, sym_type_arguments, - STATE(1947), 1, + STATE(1942), 1, sym_parameters, - STATE(1917), 2, + STATE(1916), 2, sym_line_comment, sym_block_comment, - ACTIONS(3303), 15, + ACTIONS(3279), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -159745,22 +159723,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [59957] = 6, + [59921] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3279), 2, + ACTIONS(3287), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(1918), 2, + STATE(1917), 2, sym_line_comment, sym_block_comment, - ACTIONS(3275), 3, + ACTIONS(3283), 3, anon_sym_LBRACE, anon_sym_for, anon_sym_LT2, - ACTIONS(3281), 14, + ACTIONS(3289), 14, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -159775,22 +159753,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_else, anon_sym_in, - [59993] = 6, + [59957] = 8, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(4443), 1, + anon_sym_LPAREN, + ACTIONS(4449), 1, + anon_sym_LT2, + STATE(1931), 1, + sym_type_arguments, + STATE(1942), 1, + sym_parameters, + STATE(1918), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3291), 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, + [59997] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3311), 2, + ACTIONS(3275), 2, anon_sym_COLON, anon_sym_DOT_DOT, STATE(1919), 2, sym_line_comment, sym_block_comment, - ACTIONS(3307), 3, + ACTIONS(3271), 3, anon_sym_LBRACE, anon_sym_for, anon_sym_LT2, - ACTIONS(3313), 14, + ACTIONS(3277), 14, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -159805,105 +159815,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_else, anon_sym_in, - [60029] = 8, + [60033] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, - anon_sym_LPAREN, - ACTIONS(4449), 1, - anon_sym_LT2, - STATE(1933), 1, - sym_type_arguments, - STATE(1947), 1, - sym_parameters, + ACTIONS(3299), 2, + anon_sym_COLON, + anon_sym_DOT_DOT, STATE(1920), 2, sym_line_comment, sym_block_comment, - ACTIONS(3299), 15, + ACTIONS(3295), 3, + anon_sym_LBRACE, + anon_sym_for, + anon_sym_LT2, + ACTIONS(3301), 14, 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_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_SQUOTE, - anon_sym_as, - anon_sym_where, + anon_sym_COLON_COLON, anon_sym_else, + anon_sym_in, [60069] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3295), 2, + ACTIONS(3484), 1, anon_sym_COLON, - anon_sym_DOT_DOT, STATE(1921), 2, sym_line_comment, sym_block_comment, - ACTIONS(3297), 16, + ACTIONS(3482), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACK, 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, [60102] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3406), 1, + ACTIONS(3287), 2, anon_sym_COLON, + anon_sym_DOT_DOT, STATE(1922), 2, sym_line_comment, sym_block_comment, - ACTIONS(3404), 17, + ACTIONS(3289), 16, 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_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, [60135] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3410), 1, + ACTIONS(3416), 1, anon_sym_COLON, STATE(1923), 2, sym_line_comment, sym_block_comment, - ACTIONS(3408), 17, + ACTIONS(3414), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -159921,46 +159929,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_where, anon_sym_else, - [60168] = 5, + [60168] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3279), 2, - anon_sym_COLON, - anon_sym_DOT_DOT, STATE(1924), 2, sym_line_comment, sym_block_comment, - ACTIONS(3281), 16, + ACTIONS(3271), 18, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_BANG, + anon_sym_COLON, + 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, - [60201] = 5, + anon_sym_LT2, + [60199] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3311), 2, + ACTIONS(3275), 2, anon_sym_COLON, anon_sym_DOT_DOT, STATE(1925), 2, sym_line_comment, sym_block_comment, - ACTIONS(3313), 16, + ACTIONS(3277), 16, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -159977,44 +159984,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_else, anon_sym_in, - [60234] = 4, + [60232] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(3420), 1, + anon_sym_COLON, STATE(1926), 2, sym_line_comment, sym_block_comment, - ACTIONS(3307), 18, + ACTIONS(3418), 17, 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_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, anon_sym_for, anon_sym_where, anon_sym_else, - anon_sym_LT2, [60265] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3350), 1, + ACTIONS(3450), 1, anon_sym_COLON, STATE(1927), 2, sym_line_comment, sym_block_comment, - ACTIONS(3348), 17, + ACTIONS(3448), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -160037,41 +160045,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3463), 1, + ACTIONS(3307), 2, anon_sym_COLON, + anon_sym_DOT_DOT, STATE(1928), 2, sym_line_comment, sym_block_comment, - ACTIONS(3461), 17, + ACTIONS(3309), 16, 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_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, [60331] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3271), 2, + ACTIONS(3299), 2, anon_sym_COLON, anon_sym_DOT_DOT, STATE(1929), 2, sym_line_comment, sym_block_comment, - ACTIONS(3273), 16, + ACTIONS(3301), 16, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -160088,44 +160096,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_else, anon_sym_in, - [60364] = 5, + [60364] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3354), 1, + ACTIONS(4449), 1, + anon_sym_LT2, + ACTIONS(4471), 1, anon_sym_COLON, + ACTIONS(4473), 1, + anon_sym_BANG, + ACTIONS(4475), 1, + anon_sym_DOT_DOT, + ACTIONS(4479), 1, + anon_sym_COLON_COLON, + STATE(1936), 1, + sym_type_arguments, + ACTIONS(4477), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(1930), 2, sym_line_comment, sym_block_comment, - ACTIONS(3352), 16, + ACTIONS(4469), 9, 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_COLON_COLON, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_for, - anon_sym_where, anon_sym_else, - [60396] = 5, + anon_sym_in, + [60408] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3459), 1, + ACTIONS(3458), 1, anon_sym_COLON, STATE(1931), 2, sym_line_comment, sym_block_comment, - ACTIONS(3457), 16, + ACTIONS(3456), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -160142,227 +160156,160 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_where, anon_sym_else, - [60428] = 19, + [60440] = 19, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4471), 1, + ACTIONS(4483), 1, anon_sym_const, - ACTIONS(4473), 1, + ACTIONS(4485), 1, anon_sym_enum, - ACTIONS(4475), 1, + ACTIONS(4487), 1, anon_sym_fn, - ACTIONS(4477), 1, + ACTIONS(4489), 1, anon_sym_mod, - ACTIONS(4479), 1, + ACTIONS(4491), 1, anon_sym_static, - ACTIONS(4481), 1, + ACTIONS(4493), 1, anon_sym_struct, - ACTIONS(4483), 1, + ACTIONS(4495), 1, anon_sym_trait, - ACTIONS(4485), 1, + ACTIONS(4497), 1, anon_sym_type, - ACTIONS(4487), 1, + ACTIONS(4499), 1, anon_sym_union, - ACTIONS(4489), 1, + ACTIONS(4501), 1, anon_sym_unsafe, - ACTIONS(4491), 1, + ACTIONS(4503), 1, anon_sym_use, - ACTIONS(4493), 1, + ACTIONS(4505), 1, anon_sym_extern, - STATE(2133), 1, + STATE(2174), 1, sym_extern_modifier, - STATE(2206), 1, + STATE(2220), 1, aux_sym_function_modifiers_repeat1, - STATE(3407), 1, + STATE(3409), 1, sym_function_modifiers, - ACTIONS(4469), 2, + ACTIONS(4481), 2, anon_sym_async, anon_sym_default, STATE(1932), 2, sym_line_comment, sym_block_comment, - [60488] = 5, + [60500] = 19, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3471), 1, - anon_sym_COLON, - STATE(1933), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3469), 16, - 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_COLON_COLON, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_for, - anon_sym_where, - anon_sym_else, - [60520] = 19, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4495), 1, + ACTIONS(4507), 1, anon_sym_const, - ACTIONS(4497), 1, + ACTIONS(4509), 1, anon_sym_enum, - ACTIONS(4499), 1, + ACTIONS(4511), 1, anon_sym_fn, - ACTIONS(4501), 1, + ACTIONS(4513), 1, anon_sym_mod, - ACTIONS(4503), 1, + ACTIONS(4515), 1, anon_sym_static, - ACTIONS(4505), 1, + ACTIONS(4517), 1, anon_sym_struct, - ACTIONS(4507), 1, + ACTIONS(4519), 1, anon_sym_trait, - ACTIONS(4509), 1, + ACTIONS(4521), 1, anon_sym_type, - ACTIONS(4511), 1, + ACTIONS(4523), 1, anon_sym_union, - ACTIONS(4513), 1, + ACTIONS(4525), 1, anon_sym_unsafe, - ACTIONS(4515), 1, + ACTIONS(4527), 1, anon_sym_use, - ACTIONS(4517), 1, + ACTIONS(4529), 1, anon_sym_extern, - STATE(2175), 1, + STATE(2171), 1, sym_extern_modifier, - STATE(2206), 1, + STATE(2220), 1, aux_sym_function_modifiers_repeat1, - STATE(3600), 1, + STATE(3608), 1, sym_function_modifiers, - ACTIONS(4469), 2, + ACTIONS(4481), 2, anon_sym_async, anon_sym_default, - STATE(1934), 2, - sym_line_comment, - sym_block_comment, - [60580] = 11, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4521), 1, - anon_sym_COLON, - ACTIONS(4523), 1, - anon_sym_BANG, - ACTIONS(4525), 1, - anon_sym_DOT_DOT, - ACTIONS(4529), 1, - anon_sym_COLON_COLON, - STATE(1930), 1, - sym_type_arguments, - ACTIONS(4527), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1935), 2, + STATE(1933), 2, sym_line_comment, sym_block_comment, - ACTIONS(4519), 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, - [60624] = 12, + [60560] = 12, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, ACTIONS(4449), 1, anon_sym_LT2, - ACTIONS(4521), 1, + ACTIONS(4471), 1, anon_sym_COLON, - ACTIONS(4523), 1, + ACTIONS(4473), 1, anon_sym_BANG, - ACTIONS(4525), 1, + ACTIONS(4475), 1, anon_sym_DOT_DOT, ACTIONS(4531), 1, anon_sym_COLON_COLON, - STATE(1930), 1, + STATE(1936), 1, sym_type_arguments, - ACTIONS(4527), 2, + ACTIONS(4477), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1936), 2, + STATE(1934), 2, sym_line_comment, sym_block_comment, - ACTIONS(4519), 3, + ACTIONS(4469), 3, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_COMMA, - ACTIONS(3323), 6, + ACTIONS(3334), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [60670] = 11, + [60606] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4523), 1, - anon_sym_BANG, - ACTIONS(4525), 1, - anon_sym_DOT_DOT, - ACTIONS(4533), 1, - anon_sym_COLON_COLON, - STATE(1930), 1, - sym_type_arguments, - ACTIONS(4527), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1937), 2, + ACTIONS(3464), 1, + anon_sym_COLON, + STATE(1935), 2, sym_line_comment, sym_block_comment, - ACTIONS(4519), 3, + ACTIONS(3462), 16, + 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, - ACTIONS(3323), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [60713] = 6, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_for, + anon_sym_where, + anon_sym_else, + [60638] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3301), 1, + ACTIONS(3480), 1, anon_sym_COLON, - ACTIONS(4535), 1, - anon_sym_COLON_COLON, - STATE(1938), 2, + STATE(1936), 2, sym_line_comment, sym_block_comment, - ACTIONS(3299), 14, + ACTIONS(3478), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -160373,25 +160320,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_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, - [60746] = 4, + [60670] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1939), 2, + ACTIONS(3293), 1, + anon_sym_COLON, + ACTIONS(4533), 1, + anon_sym_COLON_COLON, + STATE(1937), 2, sym_line_comment, sym_block_comment, - ACTIONS(987), 16, + ACTIONS(3291), 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, @@ -160401,25 +160353,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - anon_sym_in, - [60775] = 6, + [60703] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3285), 1, - anon_sym_COLON, - ACTIONS(4537), 1, - anon_sym_COLON_COLON, - STATE(1940), 2, + STATE(1938), 2, sym_line_comment, sym_block_comment, - ACTIONS(3283), 14, + ACTIONS(983), 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, @@ -160429,17 +160377,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [60808] = 5, + anon_sym_in, + [60732] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4539), 1, + ACTIONS(4535), 1, anon_sym_DASH_GT, - STATE(1941), 2, + STATE(1939), 2, sym_line_comment, sym_block_comment, - ACTIONS(3521), 15, + ACTIONS(3436), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -160455,53 +160404,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [60839] = 17, + [60763] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3241), 1, - anon_sym_PLUS, - ACTIONS(4445), 1, - anon_sym_BANG, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4453), 1, - anon_sym_PIPE, - ACTIONS(4457), 1, - anon_sym_LBRACE, - ACTIONS(4459), 1, + ACTIONS(3313), 1, anon_sym_COLON, - ACTIONS(4461), 1, - anon_sym_AT, - ACTIONS(4463), 1, - anon_sym_DOT_DOT, - ACTIONS(4541), 1, - anon_sym_LPAREN, - ACTIONS(4546), 1, + ACTIONS(4533), 1, anon_sym_COLON_COLON, - STATE(1931), 1, - sym_type_arguments, - STATE(1945), 1, - sym_parameters, - ACTIONS(4465), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4543), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(1942), 2, + STATE(1940), 2, sym_line_comment, sym_block_comment, - [60894] = 4, + ACTIONS(3311), 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, + [60796] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1943), 2, + STATE(1941), 2, sym_line_comment, sym_block_comment, - ACTIONS(991), 16, + ACTIONS(3525), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -160513,29 +160451,28 @@ 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, - [60923] = 6, + [60825] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3305), 1, - anon_sym_COLON, ACTIONS(4537), 1, - anon_sym_COLON_COLON, - STATE(1944), 2, + anon_sym_DASH_GT, + STATE(1942), 2, sym_line_comment, sym_block_comment, - ACTIONS(3303), 14, + ACTIONS(3372), 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, @@ -160545,17 +160482,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [60956] = 5, + [60856] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4548), 1, + ACTIONS(4539), 1, anon_sym_DASH_GT, - STATE(1945), 2, + STATE(1943), 2, sym_line_comment, sym_block_comment, - ACTIONS(3533), 15, + ACTIONS(3386), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -160571,15 +160508,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [60987] = 4, + [60887] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1946), 2, + STATE(1944), 2, sym_line_comment, sym_block_comment, - ACTIONS(3418), 16, + ACTIONS(3336), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -160596,7 +160533,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [61016] = 5, + [60916] = 16, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(4445), 1, + anon_sym_BANG, + ACTIONS(4449), 1, + anon_sym_LT2, + ACTIONS(4455), 1, + anon_sym_LBRACE, + ACTIONS(4459), 1, + anon_sym_AT, + ACTIONS(4461), 1, + anon_sym_DOT_DOT, + ACTIONS(4541), 1, + anon_sym_LPAREN, + ACTIONS(4543), 1, + anon_sym_RBRACK, + ACTIONS(4546), 1, + anon_sym_COLON_COLON, + STATE(1935), 1, + sym_type_arguments, + STATE(1947), 1, + sym_parameters, + ACTIONS(3241), 2, + anon_sym_SEMI, + anon_sym_PLUS, + ACTIONS(4451), 2, + anon_sym_PIPE, + anon_sym_COMMA, + ACTIONS(4463), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1945), 2, + sym_line_comment, + sym_block_comment, + [60969] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(4548), 1, + anon_sym_LPAREN, + STATE(1946), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3979), 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, + [61000] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -160606,7 +160606,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1947), 2, sym_line_comment, sym_block_comment, - ACTIONS(3527), 15, + ACTIONS(3378), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -160622,23 +160622,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [61047] = 5, + [61031] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4552), 1, - anon_sym_DASH_GT, + ACTIONS(3269), 1, + anon_sym_COLON, + ACTIONS(4533), 1, + anon_sym_COLON_COLON, STATE(1948), 2, sym_line_comment, sym_block_comment, - ACTIONS(3447), 15, + ACTIONS(3267), 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, @@ -160648,19 +160649,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [61078] = 6, + [61064] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3301), 1, + ACTIONS(3281), 1, anon_sym_COLON, - ACTIONS(4537), 1, + ACTIONS(4533), 1, anon_sym_COLON_COLON, STATE(1949), 2, sym_line_comment, sym_block_comment, - ACTIONS(3299), 14, + ACTIONS(3279), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -160675,7 +160676,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [61111] = 4, + [61097] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -160683,7 +160684,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1950), 2, sym_line_comment, sym_block_comment, - ACTIONS(3443), 16, + ACTIONS(3491), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -160700,19 +160701,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [61140] = 6, + [61126] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3289), 1, + ACTIONS(3293), 1, anon_sym_COLON, - ACTIONS(4537), 1, + ACTIONS(4552), 1, anon_sym_COLON_COLON, STATE(1951), 2, sym_line_comment, sym_block_comment, - ACTIONS(3287), 14, + ACTIONS(3291), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -160727,19 +160728,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [61173] = 6, + [61159] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3301), 1, + ACTIONS(3293), 1, anon_sym_COLON, ACTIONS(4554), 1, anon_sym_COLON_COLON, STATE(1952), 2, sym_line_comment, sym_block_comment, - ACTIONS(3299), 14, + ACTIONS(3291), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -160754,40 +160755,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [61206] = 4, + [61192] = 16, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(4445), 1, + anon_sym_BANG, + ACTIONS(4449), 1, + anon_sym_LT2, + ACTIONS(4451), 1, + anon_sym_PIPE, + ACTIONS(4455), 1, + anon_sym_LBRACE, + ACTIONS(4457), 1, + anon_sym_COLON, + ACTIONS(4459), 1, + anon_sym_AT, + ACTIONS(4461), 1, + anon_sym_DOT_DOT, + ACTIONS(4556), 1, + anon_sym_LPAREN, + ACTIONS(4558), 1, + anon_sym_COLON_COLON, + STATE(1935), 1, + sym_type_arguments, + STATE(1947), 1, + sym_parameters, + ACTIONS(4463), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(1953), 2, sym_line_comment, sym_block_comment, - ACTIONS(3336), 16, + ACTIONS(3241), 3, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + [61245] = 10, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(4445), 1, + anon_sym_BANG, + ACTIONS(4453), 1, + anon_sym_LPAREN, + ACTIONS(4457), 1, + anon_sym_COLON, + ACTIONS(4461), 1, + anon_sym_DOT_DOT, + ACTIONS(4560), 1, + anon_sym_COLON_COLON, + ACTIONS(4463), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1954), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4451), 9, 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, - [61235] = 4, + anon_sym_in, + [61286] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1954), 2, + STATE(1955), 2, sym_line_comment, sym_block_comment, - ACTIONS(3370), 16, + ACTIONS(3466), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -160804,52 +160848,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [61264] = 16, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4445), 1, - anon_sym_BANG, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4457), 1, - anon_sym_LBRACE, - ACTIONS(4461), 1, - anon_sym_AT, - ACTIONS(4463), 1, - anon_sym_DOT_DOT, - ACTIONS(4543), 1, - anon_sym_RBRACK, - ACTIONS(4556), 1, - anon_sym_LPAREN, - ACTIONS(4558), 1, - anon_sym_COLON_COLON, - STATE(1931), 1, - sym_type_arguments, - STATE(1945), 1, - sym_parameters, - ACTIONS(3241), 2, - anon_sym_SEMI, - anon_sym_PLUS, - ACTIONS(4453), 2, - anon_sym_PIPE, - anon_sym_COMMA, - ACTIONS(4465), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1955), 2, - sym_line_comment, - sym_block_comment, - [61317] = 4, + [61315] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(4562), 1, + anon_sym_DASH_GT, STATE(1956), 2, sym_line_comment, sym_block_comment, - ACTIONS(3507), 16, + ACTIONS(3537), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -160861,7 +160870,6 @@ 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, @@ -160874,7 +160882,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1957), 2, sym_line_comment, sym_block_comment, - ACTIONS(1442), 16, + ACTIONS(3340), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -160886,49 +160894,38 @@ 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, - [61375] = 16, + [61375] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4445), 1, - anon_sym_BANG, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4453), 1, - anon_sym_PIPE, - ACTIONS(4457), 1, - anon_sym_LBRACE, - ACTIONS(4459), 1, - anon_sym_COLON, - ACTIONS(4461), 1, - anon_sym_AT, - ACTIONS(4463), 1, - anon_sym_DOT_DOT, - ACTIONS(4560), 1, - anon_sym_LPAREN, - ACTIONS(4562), 1, - anon_sym_COLON_COLON, - STATE(1931), 1, - sym_type_arguments, - STATE(1945), 1, - sym_parameters, - ACTIONS(4465), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(4564), 1, + anon_sym_DASH_GT, STATE(1958), 2, sym_line_comment, sym_block_comment, - ACTIONS(3241), 3, + ACTIONS(3495), 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, - [61428] = 4, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_where, + anon_sym_else, + [61406] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -160936,7 +160933,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1959), 2, sym_line_comment, sym_block_comment, - ACTIONS(1320), 16, + ACTIONS(1248), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -160953,17 +160950,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_else, anon_sym_in, - [61457] = 5, + [61435] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4564), 1, - anon_sym_DASH_GT, STATE(1960), 2, sym_line_comment, sym_block_comment, - ACTIONS(3513), 15, + ACTIONS(1003), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -160979,48 +160974,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [61488] = 10, + anon_sym_in, + [61464] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4445), 1, + ACTIONS(4449), 1, + anon_sym_LT2, + ACTIONS(4473), 1, anon_sym_BANG, - ACTIONS(4455), 1, - anon_sym_LPAREN, - ACTIONS(4459), 1, - anon_sym_COLON, - ACTIONS(4463), 1, + ACTIONS(4475), 1, anon_sym_DOT_DOT, ACTIONS(4566), 1, anon_sym_COLON_COLON, - ACTIONS(4465), 2, + STATE(1936), 1, + sym_type_arguments, + ACTIONS(4477), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, STATE(1961), 2, sym_line_comment, sym_block_comment, - ACTIONS(4453), 9, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(4469), 3, anon_sym_RBRACK, - anon_sym_RBRACE, anon_sym_PIPE, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [61529] = 5, + ACTIONS(3334), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [61507] = 17, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(3241), 1, + anon_sym_PLUS, + ACTIONS(4445), 1, + anon_sym_BANG, + ACTIONS(4449), 1, + anon_sym_LT2, + ACTIONS(4451), 1, + anon_sym_PIPE, + ACTIONS(4455), 1, + anon_sym_LBRACE, + ACTIONS(4457), 1, + anon_sym_COLON, + ACTIONS(4459), 1, + anon_sym_AT, + ACTIONS(4461), 1, + anon_sym_DOT_DOT, ACTIONS(4568), 1, - anon_sym_DASH_GT, + anon_sym_LPAREN, + ACTIONS(4570), 1, + anon_sym_COLON_COLON, + STATE(1935), 1, + sym_type_arguments, + STATE(1947), 1, + sym_parameters, + ACTIONS(4463), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4543), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(1962), 2, sym_line_comment, sym_block_comment, - ACTIONS(3356), 15, + [61562] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(4572), 1, + anon_sym_DASH_GT, + STATE(1963), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3503), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -161036,17 +161071,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [61560] = 5, + [61593] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4570), 1, - anon_sym_DASH_GT, - STATE(1963), 2, + STATE(1964), 2, sym_line_comment, sym_block_comment, - ACTIONS(3412), 15, + ACTIONS(1414), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -161062,17 +161095,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [61591] = 5, + anon_sym_in, + [61622] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4572), 1, - anon_sym_LPAREN, - STATE(1964), 2, + STATE(1965), 2, sym_line_comment, sym_block_comment, - ACTIONS(3977), 15, + ACTIONS(3999), 15, anon_sym_async, anon_sym_const, anon_sym_default, @@ -161088,30 +161120,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_extern, sym_identifier, - [61622] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1965), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3583), 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, [61650] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, @@ -161120,7 +161128,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1966), 2, sym_line_comment, sym_block_comment, - ACTIONS(3287), 15, + ACTIONS(3573), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -161144,7 +161152,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1967), 2, sym_line_comment, sym_block_comment, - ACTIONS(3841), 15, + ACTIONS(3737), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -161168,7 +161176,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1968), 2, sym_line_comment, sym_block_comment, - ACTIONS(3731), 15, + ACTIONS(3745), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -161192,7 +161200,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1969), 2, sym_line_comment, sym_block_comment, - ACTIONS(3621), 15, + ACTIONS(3761), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -161216,7 +161224,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1970), 2, sym_line_comment, sym_block_comment, - ACTIONS(3727), 15, + ACTIONS(3749), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -161240,7 +161248,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1971), 2, sym_line_comment, sym_block_comment, - ACTIONS(3629), 15, + ACTIONS(3633), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -161264,22 +161272,22 @@ static const uint16_t ts_small_parse_table[] = { STATE(1972), 2, sym_line_comment, sym_block_comment, - ACTIONS(3857), 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, + ACTIONS(3986), 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, [61846] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, @@ -161288,7 +161296,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1973), 2, sym_line_comment, sym_block_comment, - ACTIONS(3567), 15, + ACTIONS(3653), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -161312,7 +161320,33 @@ static const uint16_t ts_small_parse_table[] = { STATE(1974), 2, sym_line_comment, sym_block_comment, - ACTIONS(3995), 15, + ACTIONS(3649), 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, + [61902] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(3885), 1, + anon_sym_COLON_COLON, + STATE(1975), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3984), 14, anon_sym_async, anon_sym_const, anon_sym_default, @@ -161327,16 +161361,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, - sym_identifier, - [61902] = 4, + [61932] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1975), 2, + STATE(1976), 2, sym_line_comment, sym_block_comment, - ACTIONS(3587), 15, + ACTIONS(3291), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -161352,15 +161385,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [61930] = 4, + [61960] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1976), 2, + STATE(1977), 2, sym_line_comment, sym_block_comment, - ACTIONS(3591), 15, + ACTIONS(3685), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -161376,15 +161409,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [61958] = 4, + [61988] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1977), 2, + STATE(1978), 2, sym_line_comment, sym_block_comment, - ACTIONS(3991), 15, + ACTIONS(3995), 15, anon_sym_async, anon_sym_const, anon_sym_default, @@ -161400,15 +161433,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_extern, sym_identifier, - [61986] = 4, + [62016] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1978), 2, + STATE(1979), 2, sym_line_comment, sym_block_comment, - ACTIONS(3299), 15, + ACTIONS(3669), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -161424,15 +161457,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [62014] = 4, + [62044] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1979), 2, + STATE(1980), 2, sym_line_comment, sym_block_comment, - ACTIONS(3283), 15, + ACTIONS(3839), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -161448,73 +161481,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [62042] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1980), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3999), 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, - [62070] = 12, + [62072] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4519), 1, - anon_sym_PIPE, - ACTIONS(4521), 1, - anon_sym_COLON, - ACTIONS(4523), 1, - anon_sym_BANG, - ACTIONS(4525), 1, - anon_sym_DOT_DOT, - ACTIONS(4574), 1, - anon_sym_COLON_COLON, - STATE(1930), 1, - sym_type_arguments, - ACTIONS(4527), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, STATE(1981), 2, sym_line_comment, sym_block_comment, - ACTIONS(3323), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [62114] = 5, + ACTIONS(3709), 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, + [62100] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4576), 1, + ACTIONS(4574), 1, anon_sym_COLON_COLON, STATE(1982), 2, sym_line_comment, sym_block_comment, - ACTIONS(3979), 14, + ACTIONS(3984), 14, anon_sym_async, anon_sym_const, anon_sym_default, @@ -161529,7 +161530,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, - [62144] = 4, + [62130] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -161537,7 +161538,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1983), 2, sym_line_comment, sym_block_comment, - ACTIONS(3637), 15, + ACTIONS(3645), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -161553,7 +161554,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [62172] = 4, + [62158] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -161561,7 +161562,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1984), 2, sym_line_comment, sym_block_comment, - ACTIONS(3303), 15, + ACTIONS(3847), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -161577,15 +161578,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [62200] = 4, + [62186] = 12, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(4449), 1, + anon_sym_LT2, + ACTIONS(4469), 1, + anon_sym_PIPE, + ACTIONS(4471), 1, + anon_sym_COLON, + ACTIONS(4473), 1, + anon_sym_BANG, + ACTIONS(4475), 1, + anon_sym_DOT_DOT, + ACTIONS(4576), 1, + anon_sym_COLON_COLON, + STATE(1936), 1, + sym_type_arguments, + ACTIONS(4477), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(1985), 2, sym_line_comment, sym_block_comment, - ACTIONS(3743), 15, + ACTIONS(3334), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [62230] = 4, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1986), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3267), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -161601,15 +161634,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [62228] = 4, + [62258] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1986), 2, + STATE(1987), 2, sym_line_comment, sym_block_comment, - ACTIONS(3829), 15, + ACTIONS(3279), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -161625,31 +161658,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [62256] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3889), 1, - anon_sym_COLON_COLON, - STATE(1987), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3979), 14, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_mod, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, [62286] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, @@ -161658,7 +161666,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1988), 2, sym_line_comment, sym_block_comment, - ACTIONS(3865), 15, + ACTIONS(3693), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -161682,7 +161690,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1989), 2, sym_line_comment, sym_block_comment, - ACTIONS(3735), 15, + ACTIONS(3697), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -161706,7 +161714,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1990), 2, sym_line_comment, sym_block_comment, - ACTIONS(3625), 15, + ACTIONS(3765), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -161730,7 +161738,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1991), 2, sym_line_comment, sym_block_comment, - ACTIONS(3625), 15, + ACTIONS(3311), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -161754,7 +161762,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1992), 2, sym_line_comment, sym_block_comment, - ACTIONS(3873), 15, + ACTIONS(3851), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -161778,7 +161786,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1993), 2, sym_line_comment, sym_block_comment, - ACTIONS(3849), 15, + ACTIONS(3737), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -161802,7 +161810,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1994), 2, sym_line_comment, sym_block_comment, - ACTIONS(3767), 15, + ACTIONS(3637), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -161826,7 +161834,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1995), 2, sym_line_comment, sym_block_comment, - ACTIONS(3853), 15, + ACTIONS(3753), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -161850,7 +161858,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1996), 2, sym_line_comment, sym_block_comment, - ACTIONS(3579), 15, + ACTIONS(3757), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -161866,17 +161874,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [62538] = 5, + [62538] = 16, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(967), 1, - anon_sym_DOT_DOT, + ACTIONS(4443), 1, + anon_sym_LPAREN, + ACTIONS(4445), 1, + anon_sym_BANG, + ACTIONS(4447), 1, + anon_sym_COLON_COLON, + ACTIONS(4449), 1, + anon_sym_LT2, + ACTIONS(4578), 1, + anon_sym_COLON, + ACTIONS(4580), 1, + anon_sym_EQ, + ACTIONS(4582), 1, + anon_sym_GT, + ACTIONS(4584), 1, + anon_sym_COMMA, + STATE(1935), 1, + sym_type_arguments, + STATE(1947), 1, + sym_parameters, + STATE(2990), 1, + sym_trait_bounds, + STATE(2996), 1, + aux_sym_type_parameters_repeat1, + ACTIONS(3241), 2, + anon_sym_PLUS, + anon_sym_as, STATE(1997), 2, sym_line_comment, sym_block_comment, - ACTIONS(969), 13, + [62589] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(933), 1, + anon_sym_DOT_DOT, + STATE(1998), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(935), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -161890,19 +161933,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [62567] = 6, + [62618] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4580), 1, + ACTIONS(885), 1, + anon_sym_DOT_DOT, + STATE(1999), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(887), 13, + 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_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [62647] = 6, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(4588), 1, anon_sym_pat, - STATE(144), 1, + STATE(138), 1, sym_fragment_specifier, - STATE(1998), 2, + STATE(2000), 2, sym_line_comment, sym_block_comment, - ACTIONS(4578), 12, + ACTIONS(4586), 12, anon_sym_block, anon_sym_expr, anon_sym_ident, @@ -161915,24 +161982,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_tt, anon_sym_ty, anon_sym_vis, - [62598] = 8, + [62678] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4521), 1, + ACTIONS(4471), 1, anon_sym_COLON, - ACTIONS(4525), 1, + ACTIONS(4475), 1, anon_sym_DOT_DOT, - ACTIONS(4529), 1, + ACTIONS(4479), 1, anon_sym_COLON_COLON, - ACTIONS(4527), 2, + ACTIONS(4477), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1999), 2, + STATE(2001), 2, sym_line_comment, sym_block_comment, - ACTIONS(4519), 9, + ACTIONS(4469), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -161942,152 +162009,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [62633] = 16, + [62713] = 13, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, + ACTIONS(4449), 1, + anon_sym_LT2, + ACTIONS(4590), 1, anon_sym_LPAREN, - ACTIONS(4445), 1, + ACTIONS(4592), 1, + anon_sym_LBRACE, + ACTIONS(4594), 1, anon_sym_BANG, - ACTIONS(4447), 1, + ACTIONS(4596), 1, + anon_sym_AT, + ACTIONS(4598), 1, + anon_sym_DOT_DOT, + ACTIONS(4602), 1, anon_sym_COLON_COLON, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4582), 1, - anon_sym_COLON, - ACTIONS(4584), 1, - anon_sym_EQ, - ACTIONS(4586), 1, - anon_sym_GT, - ACTIONS(4588), 1, - anon_sym_COMMA, - STATE(1931), 1, + STATE(1935), 1, sym_type_arguments, - STATE(1945), 1, - sym_parameters, - STATE(2746), 1, - sym_trait_bounds, - STATE(2907), 1, - aux_sym_type_parameters_repeat1, - ACTIONS(3241), 2, - anon_sym_PLUS, - anon_sym_as, - STATE(2000), 2, + ACTIONS(4600), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2002), 2, sym_line_comment, sym_block_comment, - [62684] = 5, + ACTIONS(4451), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [62757] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(767), 1, + ACTIONS(4604), 1, + anon_sym_LPAREN, + ACTIONS(3275), 2, + anon_sym_COLON, anon_sym_DOT_DOT, - STATE(2001), 2, + STATE(2003), 2, sym_line_comment, sym_block_comment, - ACTIONS(769), 13, - anon_sym_SEMI, + ACTIONS(3271), 5, anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_LT2, + ACTIONS(3277), 5, + 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_else, - anon_sym_in, - [62713] = 7, + anon_sym_COLON_COLON, + [62789] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3311), 1, + ACTIONS(3287), 1, anon_sym_DOT_DOT, - ACTIONS(4590), 2, + ACTIONS(4607), 2, anon_sym_LPAREN, anon_sym_RBRACK, - STATE(2002), 2, + STATE(2004), 2, sym_line_comment, sym_block_comment, - ACTIONS(3307), 4, + ACTIONS(3283), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(3313), 6, + ACTIONS(3289), 6, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_COLON_COLON, - [62745] = 7, + [62821] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3271), 1, + ACTIONS(3307), 1, anon_sym_DOT_DOT, - ACTIONS(4593), 2, + ACTIONS(4610), 2, anon_sym_LPAREN, anon_sym_RBRACK, - STATE(2003), 2, + STATE(2005), 2, sym_line_comment, sym_block_comment, - ACTIONS(3267), 4, + ACTIONS(3303), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(3273), 6, + ACTIONS(3309), 6, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_COLON_COLON, - [62777] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4598), 1, - anon_sym_DOT_DOT, - STATE(2004), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4596), 12, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - 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, - [62805] = 6, + [62853] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4463), 1, + ACTIONS(4461), 1, anon_sym_DOT_DOT, - ACTIONS(4465), 2, + ACTIONS(4463), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2005), 2, + STATE(2006), 2, sym_line_comment, sym_block_comment, - ACTIONS(4453), 10, + ACTIONS(4451), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -162098,180 +162139,147 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [62835] = 7, + [62883] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4600), 1, + ACTIONS(4610), 1, anon_sym_LPAREN, - ACTIONS(3295), 2, + ACTIONS(3307), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(2006), 2, + STATE(2007), 2, sym_line_comment, sym_block_comment, - ACTIONS(3291), 5, + ACTIONS(3303), 5, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_COMMA, anon_sym_LT2, - ACTIONS(3297), 5, + ACTIONS(3309), 5, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - [62867] = 13, + [62915] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4605), 1, - anon_sym_LBRACE, - ACTIONS(4607), 1, - anon_sym_BANG, - ACTIONS(4609), 1, - anon_sym_AT, - ACTIONS(4611), 1, - anon_sym_DOT_DOT, ACTIONS(4615), 1, - anon_sym_COLON_COLON, - STATE(1931), 1, - sym_type_arguments, - ACTIONS(4613), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2007), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4453), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [62911] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3279), 1, anon_sym_DOT_DOT, - ACTIONS(4617), 2, - anon_sym_LPAREN, - anon_sym_RBRACK, STATE(2008), 2, sym_line_comment, sym_block_comment, - ACTIONS(3275), 4, + ACTIONS(4613), 12, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(3281), 6, - anon_sym_BANG, + anon_sym_RPAREN, + anon_sym_RBRACK, + 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_COLON_COLON, - [62943] = 7, + anon_sym_else, + anon_sym_in, + [62943] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4590), 1, - anon_sym_LPAREN, - ACTIONS(3311), 2, - anon_sym_COLON, + ACTIONS(4619), 1, anon_sym_DOT_DOT, STATE(2009), 2, sym_line_comment, sym_block_comment, - ACTIONS(3307), 5, + ACTIONS(4617), 12, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_LT2, - ACTIONS(3313), 5, - anon_sym_BANG, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_PIPE, + anon_sym_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - [62975] = 7, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [62971] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4617), 1, - anon_sym_LPAREN, - ACTIONS(3279), 2, + ACTIONS(3299), 2, anon_sym_COLON, anon_sym_DOT_DOT, STATE(2010), 2, sym_line_comment, sym_block_comment, - ACTIONS(3275), 5, - anon_sym_RPAREN, + ACTIONS(3295), 3, anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_COMMA, anon_sym_LT2, - ACTIONS(3281), 5, + ACTIONS(4621), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3301), 5, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - [63007] = 5, + [63003] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4622), 1, + ACTIONS(4607), 1, + anon_sym_LPAREN, + ACTIONS(3287), 2, + anon_sym_COLON, anon_sym_DOT_DOT, STATE(2011), 2, sym_line_comment, sym_block_comment, - ACTIONS(4620), 12, - anon_sym_SEMI, + ACTIONS(3283), 5, anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_LT2, + ACTIONS(3289), 5, + anon_sym_BANG, 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, + anon_sym_COLON_COLON, [63035] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3295), 2, + ACTIONS(3275), 2, anon_sym_COLON, anon_sym_DOT_DOT, STATE(2012), 2, sym_line_comment, sym_block_comment, - ACTIONS(3291), 3, + ACTIONS(3271), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(4600), 3, + ACTIONS(4604), 3, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(3297), 5, + ACTIONS(3277), 5, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, @@ -162282,21 +162290,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3271), 2, + ACTIONS(3307), 2, anon_sym_COLON, anon_sym_DOT_DOT, STATE(2013), 2, sym_line_comment, sym_block_comment, - ACTIONS(3267), 3, + ACTIONS(3303), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(4593), 3, + ACTIONS(4610), 3, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(3273), 5, + ACTIONS(3309), 5, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, @@ -162307,96 +162315,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3311), 2, - anon_sym_COLON, + ACTIONS(3275), 1, anon_sym_DOT_DOT, + ACTIONS(4604), 2, + anon_sym_LPAREN, + anon_sym_RBRACK, STATE(2014), 2, sym_line_comment, sym_block_comment, - ACTIONS(3307), 3, + ACTIONS(3271), 4, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(4590), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(3313), 5, + ACTIONS(3277), 6, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, anon_sym_COLON_COLON, [63131] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3279), 2, - anon_sym_COLON, + ACTIONS(3299), 1, anon_sym_DOT_DOT, + ACTIONS(4621), 2, + anon_sym_LPAREN, + anon_sym_RBRACK, STATE(2015), 2, sym_line_comment, sym_block_comment, - ACTIONS(3275), 3, + ACTIONS(3295), 4, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(4617), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(3281), 5, + ACTIONS(3301), 6, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, anon_sym_COLON_COLON, [63163] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3295), 1, + ACTIONS(3287), 2, + anon_sym_COLON, anon_sym_DOT_DOT, - ACTIONS(4600), 2, - anon_sym_LPAREN, - anon_sym_RBRACK, STATE(2016), 2, sym_line_comment, sym_block_comment, - ACTIONS(3291), 4, - anon_sym_SEMI, + ACTIONS(3283), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(3297), 6, + ACTIONS(4607), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3289), 5, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, anon_sym_COLON_COLON, [63195] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4593), 1, + ACTIONS(4621), 1, anon_sym_LPAREN, - ACTIONS(3271), 2, + ACTIONS(3299), 2, anon_sym_COLON, anon_sym_DOT_DOT, STATE(2017), 2, sym_line_comment, sym_block_comment, - ACTIONS(3267), 5, + ACTIONS(3295), 5, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_COMMA, anon_sym_LT2, - ACTIONS(3273), 5, + ACTIONS(3301), 5, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, @@ -162407,9 +162415,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, + ACTIONS(2959), 1, anon_sym_POUND, - ACTIONS(2957), 1, + ACTIONS(2969), 1, anon_sym_SQUOTE, ACTIONS(4624), 1, sym_identifier, @@ -162419,18 +162427,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_const, ACTIONS(4630), 1, sym_metavariable, - STATE(1476), 1, + STATE(1477), 1, sym_attribute_item, - STATE(2075), 1, + STATE(2062), 1, aux_sym_enum_variant_list_repeat1, - STATE(2605), 1, + STATE(2592), 1, sym_lifetime, - STATE(2847), 1, + STATE(2771), 1, sym_constrained_type_parameter, STATE(2018), 2, sym_line_comment, sym_block_comment, - STATE(3120), 2, + STATE(3182), 2, sym_const_parameter, sym_optional_type_parameter, [63272] = 14, @@ -162438,9 +162446,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, + ACTIONS(2959), 1, anon_sym_POUND, - ACTIONS(2957), 1, + ACTIONS(2969), 1, anon_sym_SQUOTE, ACTIONS(4624), 1, sym_identifier, @@ -162450,18 +162458,18 @@ static const uint16_t ts_small_parse_table[] = { sym_metavariable, ACTIONS(4632), 1, anon_sym_GT, - STATE(1476), 1, + STATE(1477), 1, sym_attribute_item, - STATE(2075), 1, + STATE(2062), 1, aux_sym_enum_variant_list_repeat1, - STATE(2632), 1, + STATE(2592), 1, sym_lifetime, - STATE(2847), 1, + STATE(2771), 1, sym_constrained_type_parameter, STATE(2019), 2, sym_line_comment, sym_block_comment, - STATE(3120), 2, + STATE(3182), 2, sym_const_parameter, sym_optional_type_parameter, [63317] = 14, @@ -162469,9 +162477,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, + ACTIONS(2959), 1, anon_sym_POUND, - ACTIONS(2957), 1, + ACTIONS(2969), 1, anon_sym_SQUOTE, ACTIONS(4624), 1, sym_identifier, @@ -162481,18 +162489,18 @@ static const uint16_t ts_small_parse_table[] = { sym_metavariable, ACTIONS(4634), 1, anon_sym_GT, - STATE(1476), 1, + STATE(1477), 1, sym_attribute_item, - STATE(2075), 1, + STATE(2062), 1, aux_sym_enum_variant_list_repeat1, - STATE(2632), 1, + STATE(2592), 1, sym_lifetime, - STATE(2847), 1, + STATE(2771), 1, sym_constrained_type_parameter, STATE(2020), 2, sym_line_comment, sym_block_comment, - STATE(3120), 2, + STATE(3182), 2, sym_const_parameter, sym_optional_type_parameter, [63362] = 14, @@ -162500,9 +162508,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, + ACTIONS(2959), 1, anon_sym_POUND, - ACTIONS(2957), 1, + ACTIONS(2969), 1, anon_sym_SQUOTE, ACTIONS(4624), 1, sym_identifier, @@ -162512,18 +162520,18 @@ static const uint16_t ts_small_parse_table[] = { sym_metavariable, ACTIONS(4636), 1, anon_sym_GT, - STATE(1476), 1, + STATE(1477), 1, sym_attribute_item, - STATE(2075), 1, + STATE(2062), 1, aux_sym_enum_variant_list_repeat1, - STATE(2632), 1, + STATE(2592), 1, sym_lifetime, - STATE(2847), 1, + STATE(2771), 1, sym_constrained_type_parameter, STATE(2021), 2, sym_line_comment, sym_block_comment, - STATE(3120), 2, + STATE(3182), 2, sym_const_parameter, sym_optional_type_parameter, [63407] = 14, @@ -162531,9 +162539,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, + ACTIONS(2959), 1, anon_sym_POUND, - ACTIONS(2957), 1, + ACTIONS(2969), 1, anon_sym_SQUOTE, ACTIONS(4624), 1, sym_identifier, @@ -162543,18 +162551,18 @@ static const uint16_t ts_small_parse_table[] = { sym_metavariable, ACTIONS(4638), 1, anon_sym_GT, - STATE(1476), 1, + STATE(1477), 1, sym_attribute_item, - STATE(2075), 1, + STATE(2062), 1, aux_sym_enum_variant_list_repeat1, - STATE(2632), 1, + STATE(2592), 1, sym_lifetime, - STATE(2847), 1, + STATE(2771), 1, sym_constrained_type_parameter, STATE(2022), 2, sym_line_comment, sym_block_comment, - STATE(3120), 2, + STATE(3182), 2, sym_const_parameter, sym_optional_type_parameter, [63452] = 14, @@ -162562,9 +162570,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, + ACTIONS(2959), 1, anon_sym_POUND, - ACTIONS(2957), 1, + ACTIONS(2969), 1, anon_sym_SQUOTE, ACTIONS(4624), 1, sym_identifier, @@ -162574,18 +162582,18 @@ static const uint16_t ts_small_parse_table[] = { sym_metavariable, ACTIONS(4640), 1, anon_sym_GT, - STATE(1476), 1, + STATE(1477), 1, sym_attribute_item, - STATE(2075), 1, + STATE(2062), 1, aux_sym_enum_variant_list_repeat1, - STATE(2632), 1, + STATE(2592), 1, sym_lifetime, - STATE(2847), 1, + STATE(2771), 1, sym_constrained_type_parameter, STATE(2023), 2, sym_line_comment, sym_block_comment, - STATE(3120), 2, + STATE(3182), 2, sym_const_parameter, sym_optional_type_parameter, [63497] = 14, @@ -162593,9 +162601,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, + ACTIONS(2959), 1, anon_sym_POUND, - ACTIONS(2957), 1, + ACTIONS(2969), 1, anon_sym_SQUOTE, ACTIONS(4624), 1, sym_identifier, @@ -162605,18 +162613,18 @@ static const uint16_t ts_small_parse_table[] = { sym_metavariable, ACTIONS(4642), 1, anon_sym_GT, - STATE(1476), 1, + STATE(1477), 1, sym_attribute_item, - STATE(2075), 1, + STATE(2062), 1, aux_sym_enum_variant_list_repeat1, - STATE(2632), 1, + STATE(2592), 1, sym_lifetime, - STATE(2847), 1, + STATE(2771), 1, sym_constrained_type_parameter, STATE(2024), 2, sym_line_comment, sym_block_comment, - STATE(3120), 2, + STATE(3182), 2, sym_const_parameter, sym_optional_type_parameter, [63542] = 14, @@ -162624,9 +162632,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, + ACTIONS(2959), 1, anon_sym_POUND, - ACTIONS(2957), 1, + ACTIONS(2969), 1, anon_sym_SQUOTE, ACTIONS(4624), 1, sym_identifier, @@ -162636,55 +162644,28 @@ static const uint16_t ts_small_parse_table[] = { sym_metavariable, ACTIONS(4644), 1, anon_sym_GT, - STATE(1476), 1, + STATE(1477), 1, sym_attribute_item, - STATE(2075), 1, + STATE(2062), 1, aux_sym_enum_variant_list_repeat1, - STATE(2632), 1, + STATE(2592), 1, sym_lifetime, - STATE(2847), 1, + STATE(2771), 1, sym_constrained_type_parameter, STATE(2025), 2, sym_line_comment, sym_block_comment, - STATE(3120), 2, + STATE(3182), 2, sym_const_parameter, sym_optional_type_parameter, - [63587] = 10, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(4483), 1, - anon_sym_trait, - ACTIONS(4646), 1, - anon_sym_impl, - STATE(384), 1, - sym_block, - STATE(3510), 1, - sym_label, - STATE(2026), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3323), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [63624] = 14, + [63587] = 14, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, + ACTIONS(2959), 1, anon_sym_POUND, - ACTIONS(2957), 1, + ACTIONS(2969), 1, anon_sym_SQUOTE, ACTIONS(4624), 1, sym_identifier, @@ -162692,30 +162673,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_const, ACTIONS(4630), 1, sym_metavariable, - ACTIONS(4648), 1, + ACTIONS(4646), 1, anon_sym_GT, - STATE(1476), 1, + STATE(1477), 1, sym_attribute_item, - STATE(2075), 1, + STATE(2062), 1, aux_sym_enum_variant_list_repeat1, - STATE(2632), 1, + STATE(2592), 1, sym_lifetime, - STATE(2847), 1, + STATE(2771), 1, sym_constrained_type_parameter, - STATE(2027), 2, + STATE(2026), 2, sym_line_comment, sym_block_comment, - STATE(3120), 2, + STATE(3182), 2, sym_const_parameter, sym_optional_type_parameter, - [63669] = 14, + [63632] = 14, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, + ACTIONS(2959), 1, anon_sym_POUND, - ACTIONS(2957), 1, + ACTIONS(2969), 1, anon_sym_SQUOTE, ACTIONS(4624), 1, sym_identifier, @@ -162723,30 +162704,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_const, ACTIONS(4630), 1, sym_metavariable, - ACTIONS(4650), 1, + ACTIONS(4648), 1, anon_sym_GT, - STATE(1476), 1, + STATE(1477), 1, sym_attribute_item, - STATE(2075), 1, + STATE(2062), 1, aux_sym_enum_variant_list_repeat1, - STATE(2632), 1, + STATE(2592), 1, sym_lifetime, - STATE(2847), 1, + STATE(2771), 1, sym_constrained_type_parameter, - STATE(2028), 2, + STATE(2027), 2, sym_line_comment, sym_block_comment, - STATE(3120), 2, + STATE(3182), 2, sym_const_parameter, sym_optional_type_parameter, + [63677] = 10, + ACTIONS(19), 1, + anon_sym_LBRACE, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(3446), 1, + anon_sym_SQUOTE, + ACTIONS(4495), 1, + anon_sym_trait, + ACTIONS(4650), 1, + anon_sym_impl, + STATE(380), 1, + sym_block, + STATE(3457), 1, + sym_label, + STATE(2028), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3334), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, [63714] = 14, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, + ACTIONS(2959), 1, anon_sym_POUND, - ACTIONS(2957), 1, + ACTIONS(2969), 1, anon_sym_SQUOTE, ACTIONS(4624), 1, sym_identifier, @@ -162756,18 +162764,18 @@ static const uint16_t ts_small_parse_table[] = { sym_metavariable, ACTIONS(4652), 1, anon_sym_GT, - STATE(1476), 1, + STATE(1477), 1, sym_attribute_item, - STATE(2075), 1, + STATE(2062), 1, aux_sym_enum_variant_list_repeat1, - STATE(2632), 1, + STATE(2592), 1, sym_lifetime, - STATE(2847), 1, + STATE(2771), 1, sym_constrained_type_parameter, STATE(2029), 2, sym_line_comment, sym_block_comment, - STATE(3120), 2, + STATE(3182), 2, sym_const_parameter, sym_optional_type_parameter, [63759] = 14, @@ -162775,9 +162783,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, + ACTIONS(2959), 1, anon_sym_POUND, - ACTIONS(2957), 1, + ACTIONS(2969), 1, anon_sym_SQUOTE, ACTIONS(4624), 1, sym_identifier, @@ -162787,18 +162795,18 @@ static const uint16_t ts_small_parse_table[] = { sym_metavariable, ACTIONS(4654), 1, anon_sym_GT, - STATE(1476), 1, + STATE(1477), 1, sym_attribute_item, - STATE(2075), 1, + STATE(2062), 1, aux_sym_enum_variant_list_repeat1, - STATE(2632), 1, + STATE(2585), 1, sym_lifetime, - STATE(2847), 1, + STATE(2771), 1, sym_constrained_type_parameter, STATE(2030), 2, sym_line_comment, sym_block_comment, - STATE(3120), 2, + STATE(3182), 2, sym_const_parameter, sym_optional_type_parameter, [63804] = 14, @@ -162806,9 +162814,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, + ACTIONS(2959), 1, anon_sym_POUND, - ACTIONS(2957), 1, + ACTIONS(2969), 1, anon_sym_SQUOTE, ACTIONS(4624), 1, sym_identifier, @@ -162818,18 +162826,18 @@ static const uint16_t ts_small_parse_table[] = { sym_metavariable, ACTIONS(4656), 1, anon_sym_GT, - STATE(1476), 1, + STATE(1477), 1, sym_attribute_item, - STATE(2075), 1, + STATE(2062), 1, aux_sym_enum_variant_list_repeat1, - STATE(2632), 1, + STATE(2592), 1, sym_lifetime, - STATE(2847), 1, + STATE(2771), 1, sym_constrained_type_parameter, STATE(2031), 2, sym_line_comment, sym_block_comment, - STATE(3120), 2, + STATE(3182), 2, sym_const_parameter, sym_optional_type_parameter, [63849] = 14, @@ -162837,9 +162845,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, + ACTIONS(2959), 1, anon_sym_POUND, - ACTIONS(2957), 1, + ACTIONS(2969), 1, anon_sym_SQUOTE, ACTIONS(4624), 1, sym_identifier, @@ -162849,18 +162857,18 @@ static const uint16_t ts_small_parse_table[] = { sym_metavariable, ACTIONS(4658), 1, anon_sym_GT, - STATE(1476), 1, + STATE(1477), 1, sym_attribute_item, - STATE(2075), 1, + STATE(2062), 1, aux_sym_enum_variant_list_repeat1, - STATE(2632), 1, + STATE(2592), 1, sym_lifetime, - STATE(2847), 1, + STATE(2771), 1, sym_constrained_type_parameter, STATE(2032), 2, sym_line_comment, sym_block_comment, - STATE(3120), 2, + STATE(3182), 2, sym_const_parameter, sym_optional_type_parameter, [63894] = 14, @@ -162868,9 +162876,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, + ACTIONS(2959), 1, anon_sym_POUND, - ACTIONS(2957), 1, + ACTIONS(2969), 1, anon_sym_SQUOTE, ACTIONS(4624), 1, sym_identifier, @@ -162880,119 +162888,70 @@ static const uint16_t ts_small_parse_table[] = { sym_metavariable, ACTIONS(4660), 1, anon_sym_GT, - STATE(1476), 1, + STATE(1477), 1, sym_attribute_item, - STATE(2075), 1, + STATE(2062), 1, aux_sym_enum_variant_list_repeat1, - STATE(2632), 1, + STATE(2592), 1, sym_lifetime, - STATE(2847), 1, + STATE(2771), 1, sym_constrained_type_parameter, STATE(2033), 2, sym_line_comment, sym_block_comment, - STATE(3120), 2, + STATE(3182), 2, sym_const_parameter, sym_optional_type_parameter, - [63939] = 11, + [63939] = 13, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, - anon_sym_LPAREN, - ACTIONS(4445), 1, - anon_sym_BANG, - ACTIONS(4447), 1, - anon_sym_COLON_COLON, - ACTIONS(4449), 1, - anon_sym_LT2, + ACTIONS(2959), 1, + anon_sym_POUND, + ACTIONS(2969), 1, + anon_sym_SQUOTE, + ACTIONS(4628), 1, + anon_sym_const, ACTIONS(4662), 1, - anon_sym_for, - STATE(1931), 1, - sym_type_arguments, - STATE(1945), 1, - sym_parameters, + sym_identifier, + ACTIONS(4664), 1, + sym_metavariable, + STATE(1078), 1, + aux_sym_enum_variant_list_repeat1, + STATE(1477), 1, + sym_attribute_item, + STATE(2395), 1, + sym_lifetime, + STATE(2635), 1, + sym_constrained_type_parameter, STATE(2034), 2, sym_line_comment, sym_block_comment, - ACTIONS(3241), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [63977] = 6, + STATE(2820), 2, + sym_const_parameter, + sym_optional_type_parameter, + [63981] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4576), 1, - anon_sym_COLON_COLON, - ACTIONS(4666), 1, - anon_sym_COLON, STATE(2035), 2, sym_line_comment, sym_block_comment, - ACTIONS(4664), 9, + ACTIONS(1244), 11, 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, - [64005] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4666), 1, anon_sym_COLON, - ACTIONS(4668), 1, - anon_sym_COLON_COLON, - STATE(2036), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4664), 9, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, anon_sym_PIPE, anon_sym_EQ, + anon_sym_GT, anon_sym_COMMA, anon_sym_else, anon_sym_in, - [64033] = 11, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4443), 1, - anon_sym_LPAREN, - ACTIONS(4445), 1, - anon_sym_BANG, - ACTIONS(4447), 1, - anon_sym_COLON_COLON, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4670), 1, - anon_sym_for, - STATE(1931), 1, - sym_type_arguments, - STATE(1945), 1, - sym_parameters, - STATE(2037), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3241), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [64071] = 12, + [64005] = 12, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -163007,74 +162966,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, ACTIONS(4449), 1, anon_sym_LT2, - ACTIONS(4672), 1, + ACTIONS(4666), 1, anon_sym_EQ, - STATE(1945), 1, + STATE(1947), 1, sym_parameters, - STATE(2365), 1, + STATE(2306), 1, sym_type_arguments, - STATE(2038), 2, + STATE(2036), 2, sym_line_comment, sym_block_comment, ACTIONS(3241), 3, anon_sym_PLUS, anon_sym_GT, anon_sym_COMMA, - [64111] = 4, + [64045] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2039), 2, + ACTIONS(4670), 1, + anon_sym_COLON, + ACTIONS(4672), 1, + anon_sym_COLON_COLON, + STATE(2037), 2, sym_line_comment, sym_block_comment, - ACTIONS(1240), 11, + ACTIONS(4668), 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, - [64135] = 6, + [64073] = 12, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3271), 1, + ACTIONS(2959), 1, + anon_sym_POUND, + ACTIONS(4674), 1, + sym_identifier, + ACTIONS(4676), 1, + anon_sym_RBRACE, + ACTIONS(4678), 1, anon_sym_DOT_DOT, - ACTIONS(3267), 2, - anon_sym_LBRACE, - anon_sym_LT2, - STATE(2040), 2, + ACTIONS(4680), 1, + anon_sym_COMMA, + ACTIONS(4682), 1, + sym_integer_literal, + STATE(1477), 1, + sym_attribute_item, + STATE(2393), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2038), 2, sym_line_comment, sym_block_comment, - ACTIONS(3273), 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, - [64163] = 6, + STATE(2743), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [64113] = 13, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4676), 1, - anon_sym_COLON, - ACTIONS(4678), 1, + ACTIONS(2959), 1, + anon_sym_POUND, + ACTIONS(2969), 1, + anon_sym_SQUOTE, + ACTIONS(4624), 1, + sym_identifier, + ACTIONS(4628), 1, + anon_sym_const, + ACTIONS(4630), 1, + sym_metavariable, + STATE(1477), 1, + sym_attribute_item, + STATE(2062), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2592), 1, + sym_lifetime, + STATE(2771), 1, + sym_constrained_type_parameter, + STATE(2039), 2, + sym_line_comment, + sym_block_comment, + STATE(3182), 2, + sym_const_parameter, + sym_optional_type_parameter, + [64155] = 6, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(4574), 1, anon_sym_COLON_COLON, - STATE(2041), 2, + ACTIONS(4670), 1, + anon_sym_COLON, + STATE(2040), 2, sym_line_comment, sym_block_comment, - ACTIONS(4674), 9, + ACTIONS(4668), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -163084,57 +163080,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [64191] = 12, + [64183] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, - anon_sym_POUND, - ACTIONS(4680), 1, - sym_identifier, - ACTIONS(4682), 1, - anon_sym_RBRACE, + ACTIONS(4670), 1, + anon_sym_COLON, ACTIONS(4684), 1, - anon_sym_DOT_DOT, - ACTIONS(4686), 1, - anon_sym_COMMA, - ACTIONS(4688), 1, - sym_integer_literal, - STATE(1476), 1, - sym_attribute_item, - STATE(2395), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2042), 2, + anon_sym_COLON_COLON, + STATE(2041), 2, sym_line_comment, sym_block_comment, - STATE(2851), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [64231] = 6, + ACTIONS(4668), 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, + [64211] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4692), 1, - anon_sym_COLON, - ACTIONS(4694), 1, - anon_sym_COLON_COLON, - STATE(2043), 2, + STATE(2042), 2, sym_line_comment, sym_block_comment, - ACTIONS(4690), 9, + ACTIONS(1232), 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, - [64259] = 11, + [64235] = 11, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(4443), 1, + anon_sym_LPAREN, + ACTIONS(4445), 1, + anon_sym_BANG, + ACTIONS(4447), 1, + anon_sym_COLON_COLON, + ACTIONS(4449), 1, + anon_sym_LT2, + ACTIONS(4686), 1, + anon_sym_for, + STATE(1935), 1, + sym_type_arguments, + STATE(1947), 1, + sym_parameters, + STATE(2043), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3241), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [64273] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -163147,11 +163162,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, ACTIONS(4449), 1, anon_sym_LT2, - ACTIONS(4696), 1, + ACTIONS(4688), 1, anon_sym_for, - STATE(1931), 1, + STATE(1935), 1, sym_type_arguments, - STATE(1945), 1, + STATE(1947), 1, sym_parameters, STATE(2044), 2, sym_line_comment, @@ -163161,41 +163176,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [64297] = 6, + [64311] = 13, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3295), 1, - anon_sym_DOT_DOT, - ACTIONS(3291), 2, - anon_sym_LBRACE, - anon_sym_LT2, + ACTIONS(2959), 1, + anon_sym_POUND, + ACTIONS(2969), 1, + anon_sym_SQUOTE, + ACTIONS(4628), 1, + anon_sym_const, + ACTIONS(4690), 1, + sym_identifier, + ACTIONS(4692), 1, + sym_metavariable, + STATE(1477), 1, + sym_attribute_item, + STATE(2052), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2451), 1, + sym_lifetime, + STATE(2728), 1, + sym_constrained_type_parameter, STATE(2045), 2, sym_line_comment, sym_block_comment, - ACTIONS(3297), 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, - [64325] = 6, + STATE(2733), 2, + sym_const_parameter, + sym_optional_type_parameter, + [64353] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4576), 1, + ACTIONS(4574), 1, anon_sym_COLON_COLON, - ACTIONS(4692), 1, + ACTIONS(4696), 1, anon_sym_COLON, STATE(2046), 2, sym_line_comment, sym_block_comment, - ACTIONS(4690), 9, + ACTIONS(4694), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -163205,91 +163227,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [64353] = 4, + [64381] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(1320), 1, + aux_sym_string_literal_token1, + ACTIONS(4700), 1, + sym_crate, + STATE(2191), 1, + sym_string_literal, STATE(2047), 2, sym_line_comment, sym_block_comment, - ACTIONS(1236), 11, + ACTIONS(4698), 8, 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, - [64377] = 6, + anon_sym_LBRACE, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [64411] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4668), 1, - anon_sym_COLON_COLON, - ACTIONS(4692), 1, - anon_sym_COLON, + ACTIONS(3275), 1, + anon_sym_DOT_DOT, + ACTIONS(3271), 2, + anon_sym_LBRACE, + anon_sym_LT2, STATE(2048), 2, sym_line_comment, sym_block_comment, - ACTIONS(4690), 9, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, + ACTIONS(3277), 8, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_BANG, anon_sym_PIPE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [64405] = 12, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(2955), 1, - anon_sym_POUND, - ACTIONS(4680), 1, - sym_identifier, - ACTIONS(4684), 1, - anon_sym_DOT_DOT, - ACTIONS(4688), 1, - sym_integer_literal, - ACTIONS(4698), 1, - anon_sym_RBRACE, - ACTIONS(4700), 1, - anon_sym_COMMA, - STATE(1476), 1, - sym_attribute_item, - STATE(2395), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2049), 2, - sym_line_comment, - sym_block_comment, - STATE(2770), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [64445] = 7, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_if, + [64439] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1308), 1, + ACTIONS(1320), 1, aux_sym_string_literal_token1, - ACTIONS(4704), 1, + ACTIONS(4702), 1, sym_crate, - STATE(2179), 1, + STATE(2191), 1, sym_string_literal, - STATE(2050), 2, + STATE(2049), 2, sym_line_comment, sym_block_comment, - ACTIONS(4702), 8, + ACTIONS(4698), 8, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_async, @@ -163298,14 +163295,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [64475] = 13, + [64469] = 11, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(4443), 1, + anon_sym_LPAREN, + ACTIONS(4445), 1, + anon_sym_BANG, + ACTIONS(4447), 1, + anon_sym_COLON_COLON, + ACTIONS(4449), 1, + anon_sym_LT2, + ACTIONS(4704), 1, + anon_sym_for, + STATE(1935), 1, + sym_type_arguments, + STATE(1947), 1, + sym_parameters, + STATE(2050), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3241), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [64507] = 13, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, + ACTIONS(2959), 1, anon_sym_POUND, - ACTIONS(2957), 1, + ACTIONS(2969), 1, anon_sym_SQUOTE, ACTIONS(4628), 1, anon_sym_const, @@ -163313,28 +163337,28 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(4708), 1, sym_metavariable, - STATE(1476), 1, + STATE(1477), 1, sym_attribute_item, - STATE(2052), 1, + STATE(2034), 1, aux_sym_enum_variant_list_repeat1, - STATE(2436), 1, + STATE(2407), 1, sym_lifetime, - STATE(2512), 1, + STATE(2720), 1, sym_constrained_type_parameter, STATE(2051), 2, sym_line_comment, sym_block_comment, - STATE(2778), 2, + STATE(2742), 2, sym_const_parameter, sym_optional_type_parameter, - [64517] = 13, + [64549] = 13, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, + ACTIONS(2959), 1, anon_sym_POUND, - ACTIONS(2957), 1, + ACTIONS(2969), 1, anon_sym_SQUOTE, ACTIONS(4628), 1, anon_sym_const, @@ -163342,176 +163366,207 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(4712), 1, sym_metavariable, - STATE(1065), 1, + STATE(1078), 1, aux_sym_enum_variant_list_repeat1, - STATE(1476), 1, + STATE(1477), 1, sym_attribute_item, - STATE(2447), 1, + STATE(2462), 1, sym_lifetime, - STATE(2534), 1, + STATE(2509), 1, sym_constrained_type_parameter, STATE(2052), 2, sym_line_comment, sym_block_comment, - STATE(2775), 2, + STATE(3002), 2, sym_const_parameter, sym_optional_type_parameter, - [64559] = 4, + [64591] = 12, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(2959), 1, + anon_sym_POUND, + ACTIONS(4674), 1, + sym_identifier, + ACTIONS(4678), 1, + anon_sym_DOT_DOT, + ACTIONS(4682), 1, + sym_integer_literal, + ACTIONS(4714), 1, + anon_sym_RBRACE, + ACTIONS(4716), 1, + anon_sym_COMMA, + STATE(1477), 1, + sym_attribute_item, + STATE(2393), 1, + aux_sym_enum_variant_list_repeat1, STATE(2053), 2, sym_line_comment, sym_block_comment, - ACTIONS(1232), 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, - [64583] = 6, + STATE(2779), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [64631] = 9, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4666), 1, - anon_sym_COLON, - ACTIONS(4694), 1, - anon_sym_COLON_COLON, + ACTIONS(3446), 1, + anon_sym_SQUOTE, + ACTIONS(4718), 1, + anon_sym_move, + STATE(377), 1, + sym_block, + STATE(3457), 1, + sym_label, STATE(2054), 2, sym_line_comment, sym_block_comment, - ACTIONS(4664), 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, - [64611] = 13, + ACTIONS(3334), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [64665] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, - anon_sym_POUND, - ACTIONS(2957), 1, - anon_sym_SQUOTE, - ACTIONS(4628), 1, - anon_sym_const, - ACTIONS(4714), 1, - sym_identifier, - ACTIONS(4716), 1, - sym_metavariable, - STATE(1065), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1476), 1, - sym_attribute_item, - STATE(2390), 1, - sym_lifetime, - STATE(2531), 1, - sym_constrained_type_parameter, + ACTIONS(4443), 1, + anon_sym_LPAREN, + ACTIONS(4445), 1, + anon_sym_BANG, + ACTIONS(4447), 1, + anon_sym_COLON_COLON, + ACTIONS(4449), 1, + anon_sym_LT2, + ACTIONS(4720), 1, + anon_sym_for, + STATE(1935), 1, + sym_type_arguments, + STATE(1947), 1, + sym_parameters, STATE(2055), 2, sym_line_comment, sym_block_comment, - STATE(3011), 2, - sym_const_parameter, - sym_optional_type_parameter, - [64653] = 4, + ACTIONS(3241), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [64703] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(4443), 1, + anon_sym_LPAREN, + ACTIONS(4445), 1, + anon_sym_BANG, + ACTIONS(4447), 1, + anon_sym_COLON_COLON, + ACTIONS(4449), 1, + anon_sym_LT2, + ACTIONS(4722), 1, + anon_sym_for, + STATE(1935), 1, + sym_type_arguments, + STATE(1947), 1, + sym_parameters, STATE(2056), 2, sym_line_comment, sym_block_comment, - ACTIONS(1244), 11, + ACTIONS(3241), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [64741] = 6, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(4684), 1, + anon_sym_COLON_COLON, + ACTIONS(4696), 1, + anon_sym_COLON, + STATE(2057), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4694), 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, - [64677] = 13, + [64769] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, - anon_sym_POUND, - ACTIONS(2957), 1, - anon_sym_SQUOTE, - ACTIONS(4628), 1, - anon_sym_const, - ACTIONS(4718), 1, - sym_identifier, - ACTIONS(4720), 1, - sym_metavariable, - STATE(1476), 1, - sym_attribute_item, - STATE(2055), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2401), 1, - sym_lifetime, - STATE(2693), 1, - sym_constrained_type_parameter, - STATE(2057), 2, + ACTIONS(4672), 1, + anon_sym_COLON_COLON, + ACTIONS(4696), 1, + anon_sym_COLON, + STATE(2058), 2, sym_line_comment, sym_block_comment, - STATE(2959), 2, - sym_const_parameter, - sym_optional_type_parameter, - [64719] = 11, + ACTIONS(4694), 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, + [64797] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4521), 1, - anon_sym_COLON, - ACTIONS(4523), 1, + ACTIONS(4443), 1, + anon_sym_LPAREN, + ACTIONS(4445), 1, anon_sym_BANG, - ACTIONS(4525), 1, - anon_sym_DOT_DOT, - ACTIONS(4531), 1, + ACTIONS(4447), 1, anon_sym_COLON_COLON, - STATE(1930), 1, + ACTIONS(4449), 1, + anon_sym_LT2, + ACTIONS(4724), 1, + anon_sym_for, + STATE(1935), 1, sym_type_arguments, - ACTIONS(4527), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2058), 2, + STATE(1947), 1, + sym_parameters, + STATE(2059), 2, sym_line_comment, sym_block_comment, - ACTIONS(4519), 3, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COMMA, - [64757] = 4, + ACTIONS(3241), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [64835] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2059), 2, + STATE(2060), 2, sym_line_comment, sym_block_comment, - ACTIONS(1206), 11, + ACTIONS(1240), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -163523,129 +163578,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [64781] = 13, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(2955), 1, - anon_sym_POUND, - ACTIONS(2957), 1, - anon_sym_SQUOTE, - ACTIONS(4624), 1, - sym_identifier, - ACTIONS(4628), 1, - anon_sym_const, - ACTIONS(4630), 1, - sym_metavariable, - STATE(1476), 1, - sym_attribute_item, - STATE(2075), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2632), 1, - sym_lifetime, - STATE(2847), 1, - sym_constrained_type_parameter, - STATE(2060), 2, - sym_line_comment, - sym_block_comment, - STATE(3120), 2, - sym_const_parameter, - sym_optional_type_parameter, - [64823] = 9, - ACTIONS(19), 1, - anon_sym_LBRACE, + [64859] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(4722), 1, - sym_identifier, - STATE(380), 1, - sym_block, - STATE(3510), 1, - sym_label, + ACTIONS(4728), 1, + anon_sym_COLON, + ACTIONS(4730), 1, + anon_sym_COLON_COLON, STATE(2061), 2, sym_line_comment, sym_block_comment, - ACTIONS(4724), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [64857] = 13, + ACTIONS(4726), 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, + [64887] = 13, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, + ACTIONS(2959), 1, anon_sym_POUND, - ACTIONS(2957), 1, + ACTIONS(2969), 1, anon_sym_SQUOTE, ACTIONS(4628), 1, anon_sym_const, - ACTIONS(4718), 1, + ACTIONS(4732), 1, sym_identifier, - ACTIONS(4720), 1, + ACTIONS(4734), 1, sym_metavariable, - STATE(1476), 1, - sym_attribute_item, - STATE(2055), 1, + STATE(1078), 1, aux_sym_enum_variant_list_repeat1, - STATE(2326), 1, + STATE(1477), 1, + sym_attribute_item, + STATE(2657), 1, sym_lifetime, - STATE(2693), 1, + STATE(2801), 1, sym_constrained_type_parameter, STATE(2062), 2, sym_line_comment, sym_block_comment, - STATE(2959), 2, + STATE(3200), 2, sym_const_parameter, sym_optional_type_parameter, - [64899] = 9, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(4726), 1, - anon_sym_move, - STATE(389), 1, - sym_block, - STATE(3510), 1, - sym_label, - STATE(2063), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3323), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [64933] = 7, + [64929] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1308), 1, + ACTIONS(1320), 1, aux_sym_string_literal_token1, - ACTIONS(4728), 1, + ACTIONS(4736), 1, sym_crate, - STATE(2179), 1, + STATE(2191), 1, sym_string_literal, - STATE(2064), 2, + STATE(2063), 2, sym_line_comment, sym_block_comment, - ACTIONS(4702), 8, + ACTIONS(4698), 8, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_async, @@ -163654,123 +163652,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [64963] = 11, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4443), 1, - anon_sym_LPAREN, - ACTIONS(4445), 1, - anon_sym_BANG, - ACTIONS(4447), 1, - anon_sym_COLON_COLON, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4730), 1, - anon_sym_for, - STATE(1931), 1, - sym_type_arguments, - STATE(1945), 1, - sym_parameters, - STATE(2065), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3241), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [65001] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3311), 1, - anon_sym_DOT_DOT, - ACTIONS(3307), 2, - anon_sym_LBRACE, - anon_sym_LT2, - STATE(2066), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3313), 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, - [65029] = 6, + [64959] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3279), 1, + ACTIONS(3299), 1, anon_sym_DOT_DOT, - ACTIONS(3275), 2, + ACTIONS(3295), 2, anon_sym_LBRACE, anon_sym_LT2, - STATE(2067), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3281), 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, - [65057] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(1308), 1, - aux_sym_string_literal_token1, - ACTIONS(4732), 1, - sym_crate, - STATE(2179), 1, - sym_string_literal, - STATE(2068), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4702), 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, - [65087] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4678), 1, - anon_sym_COLON_COLON, - ACTIONS(4736), 1, - anon_sym_COLON, - STATE(2069), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4734), 9, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, + STATE(2064), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3301), 8, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_BANG, anon_sym_PIPE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [65115] = 11, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_if, + [64987] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -163785,11 +163689,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT2, ACTIONS(4738), 1, anon_sym_for, - STATE(1931), 1, + STATE(1935), 1, sym_type_arguments, - STATE(1945), 1, + STATE(1947), 1, sym_parameters, - STATE(2070), 2, + STATE(2065), 2, sym_line_comment, sym_block_comment, ACTIONS(3241), 4, @@ -163797,30 +163701,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [65153] = 7, + [65025] = 9, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1308), 1, - aux_sym_string_literal_token1, + ACTIONS(3446), 1, + anon_sym_SQUOTE, ACTIONS(4740), 1, - sym_crate, - STATE(2179), 1, - sym_string_literal, - STATE(2071), 2, + sym_identifier, + STATE(373), 1, + sym_block, + STATE(3457), 1, + sym_label, + STATE(2066), 2, sym_line_comment, sym_block_comment, - ACTIONS(4702), 8, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(4742), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [65183] = 11, + [65059] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -163833,13 +163739,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, ACTIONS(4449), 1, anon_sym_LT2, - ACTIONS(4742), 1, + ACTIONS(4744), 1, anon_sym_for, - STATE(1931), 1, + STATE(1935), 1, sym_type_arguments, - STATE(1945), 1, + STATE(1947), 1, sym_parameters, - STATE(2072), 2, + STATE(2067), 2, sym_line_comment, sym_block_comment, ACTIONS(3241), 4, @@ -163847,98 +163753,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [65221] = 11, + [65097] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, - anon_sym_LPAREN, - ACTIONS(4445), 1, - anon_sym_BANG, - ACTIONS(4447), 1, - anon_sym_COLON_COLON, - ACTIONS(4449), 1, + ACTIONS(3307), 1, + anon_sym_DOT_DOT, + ACTIONS(3303), 2, + anon_sym_LBRACE, anon_sym_LT2, - ACTIONS(4744), 1, - anon_sym_for, - STATE(1931), 1, - sym_type_arguments, - STATE(1945), 1, - sym_parameters, - STATE(2073), 2, + STATE(2068), 2, sym_line_comment, sym_block_comment, - ACTIONS(3241), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [65259] = 11, + ACTIONS(3309), 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, + [65125] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, - anon_sym_LPAREN, - ACTIONS(4445), 1, - anon_sym_BANG, - ACTIONS(4447), 1, - anon_sym_COLON_COLON, - ACTIONS(4449), 1, - anon_sym_LT2, + ACTIONS(1320), 1, + aux_sym_string_literal_token1, ACTIONS(4746), 1, - anon_sym_for, - STATE(1931), 1, - sym_type_arguments, - STATE(1945), 1, - sym_parameters, - STATE(2074), 2, + sym_crate, + STATE(2191), 1, + sym_string_literal, + STATE(2069), 2, sym_line_comment, sym_block_comment, - ACTIONS(3241), 4, + ACTIONS(4698), 8, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [65297] = 13, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [65155] = 13, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, + ACTIONS(2959), 1, anon_sym_POUND, - ACTIONS(2957), 1, + ACTIONS(2969), 1, anon_sym_SQUOTE, ACTIONS(4628), 1, anon_sym_const, - ACTIONS(4748), 1, + ACTIONS(4690), 1, sym_identifier, - ACTIONS(4750), 1, + ACTIONS(4692), 1, sym_metavariable, - STATE(1065), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1476), 1, + STATE(1477), 1, sym_attribute_item, - STATE(2564), 1, + STATE(2052), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2370), 1, sym_lifetime, - STATE(2945), 1, + STATE(2728), 1, sym_constrained_type_parameter, - STATE(2075), 2, + STATE(2070), 2, sym_line_comment, sym_block_comment, - STATE(3089), 2, + STATE(2733), 2, sym_const_parameter, sym_optional_type_parameter, - [65339] = 4, + [65197] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2076), 2, + STATE(2071), 2, sym_line_comment, sym_block_comment, - ACTIONS(4752), 10, + ACTIONS(1236), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -163946,18 +163843,46 @@ 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, - [65362] = 4, + [65221] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2077), 2, + ACTIONS(4449), 1, + anon_sym_LT2, + ACTIONS(4471), 1, + anon_sym_COLON, + ACTIONS(4473), 1, + anon_sym_BANG, + ACTIONS(4475), 1, + anon_sym_DOT_DOT, + ACTIONS(4531), 1, + anon_sym_COLON_COLON, + STATE(1936), 1, + sym_type_arguments, + ACTIONS(4477), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2072), 2, sym_line_comment, sym_block_comment, - ACTIONS(4754), 10, + ACTIONS(4469), 3, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + [65259] = 4, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(2073), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1206), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -163965,37 +163890,63 @@ 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, - [65385] = 4, + [65283] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2078), 2, + ACTIONS(4730), 1, + anon_sym_COLON_COLON, + ACTIONS(4750), 1, + anon_sym_COLON, + STATE(2074), 2, sym_line_comment, sym_block_comment, - ACTIONS(4756), 10, + ACTIONS(4748), 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, - [65408] = 4, + [65311] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2079), 2, + ACTIONS(3287), 1, + anon_sym_DOT_DOT, + ACTIONS(3283), 2, + anon_sym_LBRACE, + anon_sym_LT2, + STATE(2075), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3289), 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, + [65339] = 4, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(2076), 2, sym_line_comment, sym_block_comment, - ACTIONS(4453), 10, + ACTIONS(4752), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164006,15 +163957,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65431] = 4, + [65362] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2080), 2, + STATE(2077), 2, sym_line_comment, sym_block_comment, - ACTIONS(4664), 10, + ACTIONS(4754), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164025,15 +163976,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65454] = 4, + [65385] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2081), 2, + ACTIONS(4449), 1, + anon_sym_LT2, + ACTIONS(4473), 1, + anon_sym_BANG, + ACTIONS(4475), 1, + anon_sym_DOT_DOT, + ACTIONS(4566), 1, + anon_sym_COLON_COLON, + STATE(1936), 1, + sym_type_arguments, + ACTIONS(4477), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2078), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4469), 3, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_COMMA, + [65420] = 4, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(2079), 2, sym_line_comment, sym_block_comment, - ACTIONS(4758), 10, + ACTIONS(4451), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164044,15 +164020,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65477] = 4, + [65443] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2082), 2, + STATE(2080), 2, sym_line_comment, sym_block_comment, - ACTIONS(4760), 10, + ACTIONS(4756), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164063,7 +164039,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65500] = 4, + [65466] = 8, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(4449), 1, + anon_sym_LT2, + ACTIONS(4473), 1, + anon_sym_BANG, + ACTIONS(4552), 1, + anon_sym_COLON_COLON, + STATE(1936), 1, + sym_type_arguments, + STATE(2081), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3334), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [65497] = 10, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(4445), 1, + anon_sym_BANG, + ACTIONS(4453), 1, + anon_sym_LPAREN, + ACTIONS(4457), 1, + anon_sym_COLON, + ACTIONS(4461), 1, + anon_sym_DOT_DOT, + ACTIONS(4758), 1, + anon_sym_COLON_COLON, + ACTIONS(4463), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2082), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4451), 3, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + [65532] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -164071,7 +164095,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2083), 2, sym_line_comment, sym_block_comment, - ACTIONS(4762), 10, + ACTIONS(4760), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164082,7 +164106,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65523] = 4, + [65555] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -164090,7 +164114,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2084), 2, sym_line_comment, sym_block_comment, - ACTIONS(4764), 10, + ACTIONS(4762), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164101,7 +164125,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65546] = 4, + [65578] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -164109,7 +164133,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2085), 2, sym_line_comment, sym_block_comment, - ACTIONS(4766), 10, + ACTIONS(4764), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164120,7 +164144,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65569] = 4, + [65601] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -164128,7 +164152,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2086), 2, sym_line_comment, sym_block_comment, - ACTIONS(4768), 10, + ACTIONS(4766), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164139,41 +164163,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65592] = 11, + [65624] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, - anon_sym_POUND, - ACTIONS(4680), 1, - sym_identifier, - ACTIONS(4684), 1, - anon_sym_DOT_DOT, - ACTIONS(4688), 1, - sym_integer_literal, - ACTIONS(4770), 1, - anon_sym_RBRACE, - STATE(1476), 1, - sym_attribute_item, - STATE(2395), 1, - aux_sym_enum_variant_list_repeat1, STATE(2087), 2, sym_line_comment, sym_block_comment, - STATE(3232), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [65629] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(2088), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4772), 10, + ACTIONS(4768), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164184,71 +164182,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65652] = 13, + [65647] = 13, ACTIONS(67), 1, anon_sym_pub, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, + ACTIONS(2959), 1, anon_sym_POUND, - ACTIONS(4774), 1, + ACTIONS(4770), 1, sym_identifier, - ACTIONS(4776), 1, + ACTIONS(4772), 1, anon_sym_RBRACE, - ACTIONS(4778), 1, + ACTIONS(4774), 1, anon_sym_COMMA, - ACTIONS(4780), 1, + ACTIONS(4776), 1, sym_crate, - STATE(1476), 1, + STATE(1477), 1, sym_attribute_item, - STATE(2181), 1, + STATE(2223), 1, aux_sym_enum_variant_list_repeat1, - STATE(2762), 1, + STATE(2945), 1, sym_enum_variant, - STATE(3603), 1, + STATE(3514), 1, sym_visibility_modifier, + STATE(2088), 2, + sym_line_comment, + sym_block_comment, + [65688] = 4, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, STATE(2089), 2, sym_line_comment, sym_block_comment, - [65693] = 13, + ACTIONS(4778), 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, + [65711] = 13, ACTIONS(67), 1, anon_sym_pub, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, + ACTIONS(2959), 1, anon_sym_POUND, - ACTIONS(4780), 1, + ACTIONS(4776), 1, sym_crate, - ACTIONS(4782), 1, + ACTIONS(4780), 1, sym_identifier, - ACTIONS(4784), 1, + ACTIONS(4782), 1, anon_sym_RBRACE, - ACTIONS(4786), 1, + ACTIONS(4784), 1, anon_sym_COMMA, - STATE(1476), 1, + STATE(1477), 1, sym_attribute_item, - STATE(2187), 1, + STATE(2181), 1, aux_sym_enum_variant_list_repeat1, - STATE(2791), 1, + STATE(3015), 1, sym_field_declaration, - STATE(3560), 1, + STATE(3581), 1, sym_visibility_modifier, STATE(2090), 2, sym_line_comment, sym_block_comment, - [65734] = 4, + [65752] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(4449), 1, + anon_sym_LT2, + ACTIONS(4786), 1, + anon_sym_BANG, + ACTIONS(4788), 1, + anon_sym_DOT_DOT, + ACTIONS(4792), 1, + anon_sym_COLON_COLON, + STATE(1936), 1, + sym_type_arguments, + ACTIONS(4790), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(2091), 2, sym_line_comment, sym_block_comment, - ACTIONS(4690), 10, + ACTIONS(4469), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [65787] = 4, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(2092), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4794), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164259,15 +164301,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65757] = 4, + [65810] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2092), 2, + STATE(2093), 2, sym_line_comment, sym_block_comment, - ACTIONS(4788), 10, + ACTIONS(4668), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164278,15 +164320,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65780] = 4, + [65833] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2093), 2, + STATE(2094), 2, sym_line_comment, sym_block_comment, - ACTIONS(4790), 10, + ACTIONS(4796), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164297,15 +164339,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65803] = 4, + [65856] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2094), 2, + STATE(2095), 2, sym_line_comment, sym_block_comment, - ACTIONS(4792), 10, + ACTIONS(4798), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164316,15 +164358,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65826] = 4, + [65879] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2095), 2, + STATE(2096), 2, sym_line_comment, sym_block_comment, - ACTIONS(4794), 10, + ACTIONS(4800), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164335,15 +164377,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65849] = 4, + [65902] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2096), 2, + STATE(2097), 2, sym_line_comment, sym_block_comment, - ACTIONS(4796), 10, + ACTIONS(4802), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164354,15 +164396,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65872] = 4, + [65925] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2097), 2, + STATE(2098), 2, sym_line_comment, sym_block_comment, - ACTIONS(4798), 10, + ACTIONS(4694), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164373,15 +164415,161 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65895] = 4, + [65948] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2098), 2, + STATE(2099), 2, sym_line_comment, sym_block_comment, - ACTIONS(4800), 10, + ACTIONS(4804), 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, + [65971] = 4, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(2100), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4806), 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, + [65994] = 4, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(2101), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4808), 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, + [66017] = 4, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(2102), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4810), 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, + [66040] = 8, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(1564), 1, + anon_sym_LBRACE, + ACTIONS(3446), 1, + anon_sym_SQUOTE, + STATE(2106), 1, + sym_block, + STATE(3590), 1, + sym_label, + STATE(2103), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3334), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [66071] = 9, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(4443), 1, + anon_sym_LPAREN, + ACTIONS(4449), 1, + anon_sym_LT2, + ACTIONS(4812), 1, + anon_sym_LBRACE, + STATE(1931), 1, + sym_type_arguments, + STATE(1942), 1, + sym_parameters, + STATE(2104), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3291), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_PLUS, + anon_sym_COMMA, + [66104] = 8, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(3947), 1, + anon_sym_LT2, + ACTIONS(4095), 1, + anon_sym_COLON_COLON, + ACTIONS(4814), 1, + anon_sym_BANG, + STATE(1598), 1, + sym_type_arguments, + STATE(2105), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3334), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [66135] = 4, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(2106), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1256), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164392,15 +164580,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65918] = 4, + [66158] = 11, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(2959), 1, + anon_sym_POUND, + ACTIONS(4674), 1, + sym_identifier, + ACTIONS(4678), 1, + anon_sym_DOT_DOT, + ACTIONS(4682), 1, + sym_integer_literal, + ACTIONS(4816), 1, + anon_sym_RBRACE, + STATE(1477), 1, + sym_attribute_item, + STATE(2393), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2107), 2, + sym_line_comment, + sym_block_comment, + STATE(3272), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [66195] = 11, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(2959), 1, + anon_sym_POUND, + ACTIONS(4674), 1, + sym_identifier, + ACTIONS(4678), 1, + anon_sym_DOT_DOT, + ACTIONS(4682), 1, + sym_integer_literal, + ACTIONS(4818), 1, + anon_sym_RBRACE, + STATE(1477), 1, + sym_attribute_item, + STATE(2393), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2108), 2, + sym_line_comment, + sym_block_comment, + STATE(3272), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [66232] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2099), 2, + STATE(2109), 2, sym_line_comment, sym_block_comment, - ACTIONS(4802), 10, + ACTIONS(4820), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164411,15 +164651,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65941] = 4, + [66255] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2100), 2, + STATE(2110), 2, sym_line_comment, sym_block_comment, - ACTIONS(1366), 10, + ACTIONS(4822), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164430,15 +164670,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65964] = 4, + [66278] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2101), 2, + STATE(2111), 2, sym_line_comment, sym_block_comment, - ACTIONS(4804), 10, + ACTIONS(4824), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164449,15 +164689,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65987] = 4, + [66301] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2102), 2, + STATE(2112), 2, sym_line_comment, sym_block_comment, - ACTIONS(4806), 10, + ACTIONS(4826), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164468,15 +164708,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66010] = 4, + [66324] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2103), 2, + STATE(2113), 2, sym_line_comment, sym_block_comment, - ACTIONS(4808), 10, + ACTIONS(4828), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164487,15 +164727,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66033] = 4, + [66347] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2104), 2, + STATE(2114), 2, sym_line_comment, sym_block_comment, - ACTIONS(4810), 10, + ACTIONS(4830), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164506,60 +164746,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66056] = 11, + [66370] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, + ACTIONS(2959), 1, anon_sym_POUND, - ACTIONS(4680), 1, + ACTIONS(4674), 1, sym_identifier, - ACTIONS(4684), 1, + ACTIONS(4678), 1, anon_sym_DOT_DOT, - ACTIONS(4688), 1, + ACTIONS(4682), 1, sym_integer_literal, - ACTIONS(4812), 1, + ACTIONS(4832), 1, anon_sym_RBRACE, - STATE(1476), 1, + STATE(1477), 1, sym_attribute_item, - STATE(2395), 1, + STATE(2393), 1, aux_sym_enum_variant_list_repeat1, - STATE(2105), 2, + STATE(2115), 2, sym_line_comment, sym_block_comment, - STATE(3232), 3, + STATE(3272), 3, sym_shorthand_field_initializer, sym_field_initializer, sym_base_field_initializer, - [66093] = 4, + [66407] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2106), 2, + ACTIONS(2959), 1, + anon_sym_POUND, + ACTIONS(4674), 1, + sym_identifier, + ACTIONS(4678), 1, + anon_sym_DOT_DOT, + ACTIONS(4682), 1, + sym_integer_literal, + ACTIONS(4834), 1, + anon_sym_RBRACE, + STATE(1477), 1, + sym_attribute_item, + STATE(2393), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2116), 2, sym_line_comment, sym_block_comment, - ACTIONS(4814), 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, - [66116] = 4, + STATE(3272), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [66444] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2107), 2, + STATE(2117), 2, sym_line_comment, sym_block_comment, - ACTIONS(4816), 10, + ACTIONS(4836), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164570,66 +164817,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66139] = 13, - ACTIONS(67), 1, - anon_sym_pub, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(2955), 1, - anon_sym_POUND, - ACTIONS(4774), 1, - sym_identifier, - ACTIONS(4780), 1, - sym_crate, - ACTIONS(4818), 1, - anon_sym_RBRACE, - ACTIONS(4820), 1, - anon_sym_COMMA, - STATE(1476), 1, - sym_attribute_item, - STATE(2188), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3012), 1, - sym_enum_variant, - STATE(3603), 1, - sym_visibility_modifier, - STATE(2108), 2, - sym_line_comment, - sym_block_comment, - [66180] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(1564), 1, - anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - STATE(2100), 1, - sym_block, - STATE(3582), 1, - sym_label, - STATE(2109), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3323), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [66211] = 4, + [66467] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2110), 2, + STATE(2118), 2, sym_line_comment, sym_block_comment, - ACTIONS(4822), 10, + ACTIONS(4838), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164640,41 +164836,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66234] = 11, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(2955), 1, - anon_sym_POUND, - ACTIONS(4680), 1, - sym_identifier, - ACTIONS(4684), 1, - anon_sym_DOT_DOT, - ACTIONS(4688), 1, - sym_integer_literal, - ACTIONS(4824), 1, - anon_sym_RBRACE, - STATE(1476), 1, - sym_attribute_item, - STATE(2395), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2111), 2, - sym_line_comment, - sym_block_comment, - STATE(3232), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [66271] = 4, + [66490] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2112), 2, + STATE(2119), 2, sym_line_comment, sym_block_comment, - ACTIONS(4826), 10, + ACTIONS(4840), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164685,64 +164855,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66294] = 10, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4445), 1, - anon_sym_BANG, - ACTIONS(4455), 1, - anon_sym_LPAREN, - ACTIONS(4459), 1, - anon_sym_COLON, - ACTIONS(4463), 1, - anon_sym_DOT_DOT, - ACTIONS(4828), 1, - anon_sym_COLON_COLON, - ACTIONS(4465), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2113), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4453), 3, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COMMA, - [66329] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4443), 1, - anon_sym_LPAREN, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4830), 1, - anon_sym_LBRACE, - STATE(1933), 1, - sym_type_arguments, - STATE(1947), 1, - sym_parameters, - STATE(2114), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3299), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_PLUS, - anon_sym_COMMA, - [66362] = 4, + [66513] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2115), 2, + STATE(2120), 2, sym_line_comment, sym_block_comment, - ACTIONS(4832), 10, + ACTIONS(4842), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164753,150 +164874,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66385] = 13, - ACTIONS(67), 1, - anon_sym_pub, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(2955), 1, - anon_sym_POUND, - ACTIONS(4780), 1, - sym_crate, - ACTIONS(4782), 1, - sym_identifier, - ACTIONS(4834), 1, - anon_sym_RBRACE, - ACTIONS(4836), 1, - anon_sym_COMMA, - STATE(1476), 1, - sym_attribute_item, - STATE(2226), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2814), 1, - sym_field_declaration, - STATE(3560), 1, - sym_visibility_modifier, - STATE(2116), 2, - sym_line_comment, - sym_block_comment, - [66426] = 10, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4838), 1, - anon_sym_BANG, - ACTIONS(4840), 1, - anon_sym_DOT_DOT, - ACTIONS(4844), 1, - anon_sym_COLON_COLON, - STATE(1930), 1, - sym_type_arguments, - ACTIONS(4842), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2117), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4519), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [66461] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3945), 1, - anon_sym_LT2, - ACTIONS(4095), 1, - anon_sym_COLON_COLON, - ACTIONS(4846), 1, - anon_sym_BANG, - STATE(1581), 1, - sym_type_arguments, - STATE(2118), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3323), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [66492] = 8, + [66536] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, ACTIONS(3251), 1, anon_sym_LT2, - ACTIONS(3541), 1, + ACTIONS(3392), 1, anon_sym_COLON_COLON, - ACTIONS(4848), 1, + ACTIONS(4844), 1, anon_sym_BANG, - STATE(1048), 1, + STATE(1075), 1, sym_type_arguments, - STATE(2119), 2, + STATE(2121), 2, sym_line_comment, sym_block_comment, - ACTIONS(3323), 6, + ACTIONS(3334), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [66523] = 10, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4523), 1, - anon_sym_BANG, - ACTIONS(4525), 1, - anon_sym_DOT_DOT, - ACTIONS(4533), 1, - anon_sym_COLON_COLON, - STATE(1930), 1, - sym_type_arguments, - ACTIONS(4527), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2120), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4519), 3, - anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_COMMA, - [66558] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(2121), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4850), 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, - [66581] = 4, + [66567] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -164904,7 +164905,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2122), 2, sym_line_comment, sym_block_comment, - ACTIONS(4852), 10, + ACTIONS(4846), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164915,55 +164916,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66604] = 11, + [66590] = 13, + ACTIONS(67), 1, + anon_sym_pub, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, + ACTIONS(2959), 1, anon_sym_POUND, - ACTIONS(4680), 1, + ACTIONS(4770), 1, sym_identifier, - ACTIONS(4684), 1, - anon_sym_DOT_DOT, - ACTIONS(4688), 1, - sym_integer_literal, - ACTIONS(4854), 1, + ACTIONS(4776), 1, + sym_crate, + ACTIONS(4848), 1, anon_sym_RBRACE, - STATE(1476), 1, + ACTIONS(4850), 1, + anon_sym_COMMA, + STATE(1477), 1, sym_attribute_item, - STATE(2395), 1, + STATE(2185), 1, aux_sym_enum_variant_list_repeat1, + STATE(2807), 1, + sym_enum_variant, + STATE(3514), 1, + sym_visibility_modifier, STATE(2123), 2, sym_line_comment, sym_block_comment, - STATE(3232), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [66641] = 8, + [66631] = 13, + ACTIONS(67), 1, + anon_sym_pub, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4523), 1, - anon_sym_BANG, - ACTIONS(4554), 1, - anon_sym_COLON_COLON, - STATE(1930), 1, - sym_type_arguments, + ACTIONS(2959), 1, + anon_sym_POUND, + ACTIONS(4776), 1, + sym_crate, + ACTIONS(4780), 1, + sym_identifier, + ACTIONS(4852), 1, + anon_sym_RBRACE, + ACTIONS(4854), 1, + anon_sym_COMMA, + STATE(1477), 1, + sym_attribute_item, + STATE(2187), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2837), 1, + sym_field_declaration, + STATE(3581), 1, + sym_visibility_modifier, STATE(2124), 2, sym_line_comment, sym_block_comment, - ACTIONS(3323), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, [66672] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, @@ -165021,240 +165029,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66741] = 5, + [66741] = 12, + ACTIONS(67), 1, + anon_sym_pub, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3271), 1, - anon_sym_DOT_DOT, + ACTIONS(2959), 1, + anon_sym_POUND, + ACTIONS(4770), 1, + sym_identifier, + ACTIONS(4776), 1, + sym_crate, + ACTIONS(4862), 1, + anon_sym_RBRACE, + STATE(1477), 1, + sym_attribute_item, + STATE(2229), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3145), 1, + sym_enum_variant, + STATE(3514), 1, + sym_visibility_modifier, STATE(2128), 2, sym_line_comment, sym_block_comment, - ACTIONS(3273), 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, - [66765] = 10, + [66779] = 12, + ACTIONS(67), 1, + anon_sym_pub, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, + ACTIONS(2959), 1, anon_sym_POUND, - ACTIONS(4680), 1, + ACTIONS(4776), 1, + sym_crate, + ACTIONS(4780), 1, sym_identifier, - ACTIONS(4684), 1, - anon_sym_DOT_DOT, - ACTIONS(4688), 1, - sym_integer_literal, - STATE(1476), 1, + ACTIONS(4864), 1, + anon_sym_RBRACE, + STATE(1477), 1, sym_attribute_item, - STATE(2395), 1, + STATE(2179), 1, aux_sym_enum_variant_list_repeat1, + STATE(3167), 1, + sym_field_declaration, + STATE(3581), 1, + sym_visibility_modifier, STATE(2129), 2, - sym_line_comment, - sym_block_comment, - STATE(3232), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [66799] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4607), 1, - anon_sym_BANG, - ACTIONS(4611), 1, - anon_sym_DOT_DOT, - ACTIONS(4862), 1, - anon_sym_COLON_COLON, - ACTIONS(4613), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2130), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4453), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [66831] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4443), 1, - anon_sym_LPAREN, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4864), 1, - anon_sym_for, - STATE(1933), 1, - sym_type_arguments, - STATE(1947), 1, - sym_parameters, - STATE(2131), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3299), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [66863] = 12, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4866), 1, - anon_sym_SEMI, - ACTIONS(4868), 1, - anon_sym_LPAREN, - ACTIONS(4870), 1, - anon_sym_LBRACE, - ACTIONS(4872), 1, - anon_sym_LT, - ACTIONS(4874), 1, - anon_sym_where, - STATE(697), 1, - sym_field_declaration_list, - STATE(2239), 1, - sym_type_parameters, - STATE(2875), 1, - sym_ordered_field_declaration_list, - STATE(3060), 1, - sym_where_clause, - STATE(2132), 2, - sym_line_comment, - sym_block_comment, - [66901] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4876), 1, - anon_sym_SEMI, - ACTIONS(4878), 1, - anon_sym_LBRACE, - STATE(648), 1, - sym_declaration_list, - STATE(2133), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3323), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [66929] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3311), 1, - anon_sym_DOT_DOT, - STATE(2134), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3313), 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, - [66953] = 10, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3299), 1, - anon_sym_PLUS, - ACTIONS(4519), 1, - anon_sym_PIPE, - ACTIONS(4521), 1, - anon_sym_COLON, - ACTIONS(4525), 1, - anon_sym_DOT_DOT, - ACTIONS(4531), 1, - anon_sym_COLON_COLON, - ACTIONS(4527), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4880), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2135), 2, - sym_line_comment, - sym_block_comment, - [66987] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4519), 1, - anon_sym_PIPE, - ACTIONS(4521), 1, - anon_sym_COLON, - ACTIONS(4525), 1, - anon_sym_DOT_DOT, - ACTIONS(4574), 1, - anon_sym_COLON_COLON, - ACTIONS(4527), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2136), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3299), 3, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - [67019] = 7, + sym_line_comment, + sym_block_comment, + [66817] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3251), 1, + ACTIONS(3947), 1, anon_sym_LT2, - ACTIONS(4883), 1, + ACTIONS(4866), 1, anon_sym_COLON_COLON, - STATE(1048), 1, + STATE(1598), 1, sym_type_arguments, - STATE(2137), 2, + STATE(2130), 2, sym_line_comment, sym_block_comment, - ACTIONS(3323), 6, + ACTIONS(3334), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [67047] = 5, + [66845] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3279), 1, + ACTIONS(3299), 1, anon_sym_DOT_DOT, - STATE(2138), 2, + STATE(2131), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3301), 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, + [66869] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(3275), 1, + anon_sym_DOT_DOT, + STATE(2132), 2, sym_line_comment, sym_block_comment, - ACTIONS(3281), 8, + ACTIONS(3277), 8, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_BANG, @@ -165263,33 +165140,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_if, - [67071] = 12, + [66893] = 9, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(4443), 1, + anon_sym_LPAREN, + ACTIONS(4449), 1, + anon_sym_LT2, + ACTIONS(4868), 1, + anon_sym_for, + STATE(1931), 1, + sym_type_arguments, + STATE(1942), 1, + sym_parameters, + STATE(2133), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3291), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [66925] = 12, ACTIONS(67), 1, anon_sym_pub, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, + ACTIONS(2959), 1, anon_sym_POUND, - ACTIONS(4774), 1, + ACTIONS(4770), 1, sym_identifier, - ACTIONS(4780), 1, + ACTIONS(4776), 1, sym_crate, - ACTIONS(4885), 1, + ACTIONS(4870), 1, anon_sym_RBRACE, - STATE(1476), 1, + STATE(1477), 1, sym_attribute_item, - STATE(2212), 1, + STATE(2229), 1, aux_sym_enum_variant_list_repeat1, - STATE(3256), 1, + STATE(3145), 1, sym_enum_variant, - STATE(3603), 1, + STATE(3514), 1, sym_visibility_modifier, - STATE(2139), 2, + STATE(2134), 2, + sym_line_comment, + sym_block_comment, + [66963] = 9, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(4469), 1, + anon_sym_PIPE, + ACTIONS(4471), 1, + anon_sym_COLON, + ACTIONS(4475), 1, + anon_sym_DOT_DOT, + ACTIONS(4576), 1, + anon_sym_COLON_COLON, + ACTIONS(4477), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2135), 2, sym_line_comment, sym_block_comment, - [67109] = 9, + ACTIONS(3291), 3, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + [66995] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -165298,171 +165221,234 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(4449), 1, anon_sym_LT2, - ACTIONS(4887), 1, + ACTIONS(4872), 1, anon_sym_for, - STATE(1933), 1, + STATE(1931), 1, sym_type_arguments, - STATE(1947), 1, + STATE(1942), 1, sym_parameters, - STATE(2140), 2, + STATE(2136), 2, sym_line_comment, sym_block_comment, - ACTIONS(3299), 4, + ACTIONS(3291), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [67141] = 12, + [67027] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4868), 1, + ACTIONS(4443), 1, anon_sym_LPAREN, - ACTIONS(4872), 1, - anon_sym_LT, + ACTIONS(4449), 1, + anon_sym_LT2, ACTIONS(4874), 1, + anon_sym_for, + STATE(1931), 1, + sym_type_arguments, + STATE(1942), 1, + sym_parameters, + STATE(2137), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3291), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_where, - ACTIONS(4889), 1, + [67059] = 7, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(4876), 1, anon_sym_SEMI, - ACTIONS(4891), 1, + ACTIONS(4878), 1, anon_sym_LBRACE, - STATE(1283), 1, - sym_field_declaration_list, - STATE(2255), 1, - sym_type_parameters, - STATE(2826), 1, - sym_ordered_field_declaration_list, - STATE(3136), 1, - sym_where_clause, - STATE(2141), 2, + STATE(712), 1, + sym_declaration_list, + STATE(2138), 2, sym_line_comment, sym_block_comment, - [67179] = 12, + ACTIONS(3334), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [67087] = 12, ACTIONS(67), 1, anon_sym_pub, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, + ACTIONS(2959), 1, anon_sym_POUND, - ACTIONS(4774), 1, - sym_identifier, - ACTIONS(4780), 1, + ACTIONS(4776), 1, sym_crate, - ACTIONS(4893), 1, + ACTIONS(4780), 1, + sym_identifier, + ACTIONS(4880), 1, anon_sym_RBRACE, - STATE(1476), 1, + STATE(1477), 1, sym_attribute_item, - STATE(2212), 1, + STATE(2179), 1, aux_sym_enum_variant_list_repeat1, - STATE(3256), 1, - sym_enum_variant, - STATE(3603), 1, + STATE(3167), 1, + sym_field_declaration, + STATE(3581), 1, sym_visibility_modifier, - STATE(2142), 2, + STATE(2139), 2, + sym_line_comment, + sym_block_comment, + [67125] = 7, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(4882), 1, + anon_sym_SEMI, + ACTIONS(4884), 1, + anon_sym_LBRACE, + STATE(1392), 1, + sym_declaration_list, + STATE(2140), 2, sym_line_comment, sym_block_comment, - [67217] = 12, + ACTIONS(3334), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [67153] = 12, ACTIONS(67), 1, anon_sym_pub, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, + ACTIONS(2959), 1, anon_sym_POUND, - ACTIONS(4774), 1, + ACTIONS(4770), 1, sym_identifier, - ACTIONS(4780), 1, + ACTIONS(4776), 1, sym_crate, - ACTIONS(4895), 1, + ACTIONS(4886), 1, anon_sym_RBRACE, - STATE(1476), 1, + STATE(1477), 1, sym_attribute_item, - STATE(2212), 1, + STATE(2229), 1, aux_sym_enum_variant_list_repeat1, - STATE(3256), 1, + STATE(3145), 1, sym_enum_variant, - STATE(3603), 1, + STATE(3514), 1, sym_visibility_modifier, - STATE(2143), 2, + STATE(2141), 2, sym_line_comment, sym_block_comment, - [67255] = 12, - ACTIONS(67), 1, - anon_sym_pub, + [67191] = 12, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, - anon_sym_POUND, - ACTIONS(4780), 1, - sym_crate, - ACTIONS(4782), 1, - sym_identifier, - ACTIONS(4897), 1, - anon_sym_RBRACE, - STATE(1476), 1, - sym_attribute_item, - STATE(2205), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3078), 1, - sym_field_declaration, - STATE(3560), 1, - sym_visibility_modifier, - STATE(2144), 2, + ACTIONS(4888), 1, + anon_sym_SEMI, + ACTIONS(4890), 1, + anon_sym_LPAREN, + ACTIONS(4892), 1, + anon_sym_LBRACE, + ACTIONS(4894), 1, + anon_sym_LT, + ACTIONS(4896), 1, + anon_sym_where, + STATE(660), 1, + sym_field_declaration_list, + STATE(2267), 1, + sym_type_parameters, + STATE(2965), 1, + sym_ordered_field_declaration_list, + STATE(3092), 1, + sym_where_clause, + STATE(2142), 2, sym_line_comment, sym_block_comment, - [67293] = 12, - ACTIONS(67), 1, - anon_sym_pub, + [67229] = 9, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(4475), 1, + anon_sym_DOT_DOT, + ACTIONS(4566), 1, + anon_sym_COLON_COLON, + ACTIONS(4898), 1, + anon_sym_RBRACK, + ACTIONS(3291), 2, + anon_sym_SEMI, + anon_sym_PLUS, + ACTIONS(4469), 2, + anon_sym_PIPE, + anon_sym_COMMA, + ACTIONS(4477), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2143), 2, + sym_line_comment, + sym_block_comment, + [67261] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, + ACTIONS(2959), 1, anon_sym_POUND, - ACTIONS(4780), 1, - sym_crate, - ACTIONS(4782), 1, + ACTIONS(4674), 1, sym_identifier, - ACTIONS(4899), 1, - anon_sym_RBRACE, - STATE(1476), 1, + ACTIONS(4678), 1, + anon_sym_DOT_DOT, + ACTIONS(4682), 1, + sym_integer_literal, + STATE(1477), 1, sym_attribute_item, - STATE(2205), 1, + STATE(2393), 1, aux_sym_enum_variant_list_repeat1, - STATE(3078), 1, - sym_field_declaration, - STATE(3560), 1, - sym_visibility_modifier, - STATE(2145), 2, + STATE(2144), 2, sym_line_comment, sym_block_comment, - [67331] = 6, + STATE(3272), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [67295] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4903), 1, - anon_sym_PLUS, - STATE(2163), 1, - aux_sym_trait_bounds_repeat1, - STATE(2146), 2, + ACTIONS(4443), 1, + anon_sym_LPAREN, + ACTIONS(4449), 1, + anon_sym_LT2, + ACTIONS(4901), 1, + anon_sym_for, + STATE(1931), 1, + sym_type_arguments, + STATE(1942), 1, + sym_parameters, + STATE(2145), 2, sym_line_comment, sym_block_comment, - ACTIONS(4901), 7, + ACTIONS(3291), 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, - [67357] = 9, + [67327] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -165471,57 +165457,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(4449), 1, anon_sym_LT2, - ACTIONS(4905), 1, + ACTIONS(4903), 1, anon_sym_for, - STATE(1933), 1, + STATE(1931), 1, sym_type_arguments, - STATE(1947), 1, + STATE(1942), 1, sym_parameters, - STATE(2147), 2, + STATE(2146), 2, sym_line_comment, sym_block_comment, - ACTIONS(3299), 4, + ACTIONS(3291), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [67389] = 12, - ACTIONS(67), 1, - anon_sym_pub, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(2955), 1, - anon_sym_POUND, - ACTIONS(4780), 1, - sym_crate, - ACTIONS(4782), 1, - sym_identifier, - ACTIONS(4907), 1, - anon_sym_RBRACE, - STATE(1476), 1, - sym_attribute_item, - STATE(2205), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3078), 1, - sym_field_declaration, - STATE(3560), 1, - sym_visibility_modifier, - STATE(2148), 2, - sym_line_comment, - sym_block_comment, - [67427] = 5, + [67359] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3295), 1, + ACTIONS(3287), 1, anon_sym_DOT_DOT, - STATE(2149), 2, + STATE(2147), 2, sym_line_comment, sym_block_comment, - ACTIONS(3297), 8, + ACTIONS(3289), 8, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_BANG, @@ -165530,151 +165490,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_if, - [67451] = 11, + [67383] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4519), 1, - anon_sym_PIPE, - ACTIONS(4521), 1, - anon_sym_COLON, - ACTIONS(4523), 1, + ACTIONS(4445), 1, anon_sym_BANG, - ACTIONS(4525), 1, + ACTIONS(4453), 1, + anon_sym_LPAREN, + ACTIONS(4461), 1, anon_sym_DOT_DOT, - ACTIONS(4574), 1, + ACTIONS(4905), 1, anon_sym_COLON_COLON, - STATE(1930), 1, - sym_type_arguments, - ACTIONS(4527), 2, + ACTIONS(4463), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2150), 2, + STATE(2148), 2, sym_line_comment, sym_block_comment, - [67487] = 7, + ACTIONS(4451), 3, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_COMMA, + [67415] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(4443), 1, + anon_sym_LPAREN, ACTIONS(4449), 1, anon_sym_LT2, - ACTIONS(4909), 1, - anon_sym_COLON_COLON, - STATE(1930), 1, + ACTIONS(4907), 1, + anon_sym_for, + STATE(1931), 1, sym_type_arguments, - STATE(2151), 2, + STATE(1942), 1, + sym_parameters, + STATE(2149), 2, sym_line_comment, sym_block_comment, - ACTIONS(3323), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [67515] = 9, + ACTIONS(3291), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [67447] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4525), 1, + ACTIONS(4449), 1, + anon_sym_LT2, + ACTIONS(4469), 1, + anon_sym_PIPE, + ACTIONS(4471), 1, + anon_sym_COLON, + ACTIONS(4473), 1, + anon_sym_BANG, + ACTIONS(4475), 1, anon_sym_DOT_DOT, - ACTIONS(4533), 1, + ACTIONS(4576), 1, anon_sym_COLON_COLON, - ACTIONS(4880), 1, - anon_sym_RBRACK, - ACTIONS(3299), 2, - anon_sym_SEMI, - anon_sym_PLUS, - ACTIONS(4519), 2, - anon_sym_PIPE, - anon_sym_COMMA, - ACTIONS(4527), 2, + STATE(1936), 1, + sym_type_arguments, + ACTIONS(4477), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2152), 2, + STATE(2150), 2, sym_line_comment, sym_block_comment, - [67547] = 6, + [67483] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, ACTIONS(4911), 1, anon_sym_PLUS, - STATE(2163), 1, - aux_sym_trait_bounds_repeat1, - STATE(2153), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4901), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_where, - [67573] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4913), 1, - anon_sym_SEMI, - ACTIONS(4915), 1, - anon_sym_LBRACE, - STATE(1301), 1, - sym_declaration_list, - STATE(2154), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3323), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [67601] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4917), 1, - anon_sym_LPAREN, - ACTIONS(4922), 1, - anon_sym_LBRACK, - ACTIONS(4925), 1, - anon_sym_LBRACE, - STATE(3337), 1, - sym_token_tree_pattern, - STATE(3418), 1, - sym_macro_rule, - ACTIONS(4920), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - STATE(2155), 3, - sym_line_comment, - sym_block_comment, - aux_sym_macro_definition_repeat1, - [67633] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4930), 1, - anon_sym_PLUS, - STATE(2156), 3, + STATE(2151), 3, sym_line_comment, sym_block_comment, aux_sym_trait_bounds_repeat1, - ACTIONS(4928), 7, + ACTIONS(4909), 7, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, @@ -165682,196 +165580,172 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_where, - [67657] = 9, + [67507] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4445), 1, - anon_sym_BANG, - ACTIONS(4455), 1, + ACTIONS(4590), 1, anon_sym_LPAREN, - ACTIONS(4463), 1, + ACTIONS(4594), 1, + anon_sym_BANG, + ACTIONS(4598), 1, anon_sym_DOT_DOT, - ACTIONS(4933), 1, + ACTIONS(4914), 1, anon_sym_COLON_COLON, - ACTIONS(4465), 2, + ACTIONS(4600), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2157), 2, + STATE(2152), 2, sym_line_comment, sym_block_comment, - ACTIONS(4453), 3, - anon_sym_RBRACK, + ACTIONS(4451), 3, + anon_sym_EQ_GT, anon_sym_PIPE, - anon_sym_COMMA, - [67689] = 12, + anon_sym_if, + [67539] = 12, ACTIONS(67), 1, anon_sym_pub, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, + ACTIONS(2959), 1, anon_sym_POUND, - ACTIONS(4774), 1, + ACTIONS(4770), 1, sym_identifier, - ACTIONS(4780), 1, + ACTIONS(4776), 1, sym_crate, - ACTIONS(4935), 1, + ACTIONS(4916), 1, anon_sym_RBRACE, - STATE(1476), 1, + STATE(1477), 1, sym_attribute_item, - STATE(2212), 1, + STATE(2229), 1, aux_sym_enum_variant_list_repeat1, - STATE(3256), 1, + STATE(3145), 1, sym_enum_variant, - STATE(3603), 1, + STATE(3514), 1, sym_visibility_modifier, - STATE(2158), 2, + STATE(2153), 2, sym_line_comment, sym_block_comment, - [67727] = 12, + [67577] = 12, + ACTIONS(67), 1, + anon_sym_pub, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4868), 1, - anon_sym_LPAREN, - ACTIONS(4870), 1, - anon_sym_LBRACE, - ACTIONS(4872), 1, - anon_sym_LT, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4937), 1, - anon_sym_SEMI, - STATE(479), 1, - sym_field_declaration_list, - STATE(2260), 1, - sym_type_parameters, - STATE(3009), 1, - sym_ordered_field_declaration_list, - STATE(3128), 1, - sym_where_clause, - STATE(2159), 2, + ACTIONS(2959), 1, + anon_sym_POUND, + ACTIONS(4776), 1, + sym_crate, + ACTIONS(4780), 1, + sym_identifier, + ACTIONS(4918), 1, + anon_sym_RBRACE, + STATE(1477), 1, + sym_attribute_item, + STATE(2179), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3167), 1, + sym_field_declaration, + STATE(3581), 1, + sym_visibility_modifier, + STATE(2154), 2, sym_line_comment, sym_block_comment, - [67765] = 7, + [67615] = 12, + ACTIONS(67), 1, + anon_sym_pub, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4878), 1, - anon_sym_LBRACE, - ACTIONS(4939), 1, - anon_sym_SEMI, - STATE(655), 1, - sym_declaration_list, - STATE(2160), 2, + ACTIONS(2959), 1, + anon_sym_POUND, + ACTIONS(4776), 1, + sym_crate, + ACTIONS(4780), 1, + sym_identifier, + ACTIONS(4920), 1, + anon_sym_RBRACE, + STATE(1477), 1, + sym_attribute_item, + STATE(2179), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3167), 1, + sym_field_declaration, + STATE(3581), 1, + sym_visibility_modifier, + STATE(2155), 2, sym_line_comment, sym_block_comment, - ACTIONS(3323), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [67793] = 12, + [67653] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4868), 1, - anon_sym_LPAREN, - ACTIONS(4872), 1, - anon_sym_LT, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4891), 1, - anon_sym_LBRACE, - ACTIONS(4941), 1, - anon_sym_SEMI, - STATE(1187), 1, - sym_field_declaration_list, - STATE(2251), 1, - sym_type_parameters, - STATE(2813), 1, - sym_ordered_field_declaration_list, - STATE(3290), 1, - sym_where_clause, - STATE(2161), 2, + ACTIONS(4924), 1, + anon_sym_PLUS, + STATE(2151), 1, + aux_sym_trait_bounds_repeat1, + STATE(2156), 2, sym_line_comment, sym_block_comment, - [67831] = 7, + ACTIONS(4922), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_where, + [67679] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3945), 1, + ACTIONS(4449), 1, anon_sym_LT2, - ACTIONS(4943), 1, + ACTIONS(4926), 1, anon_sym_COLON_COLON, - STATE(1581), 1, + STATE(1936), 1, sym_type_arguments, - STATE(2162), 2, + STATE(2157), 2, sym_line_comment, sym_block_comment, - ACTIONS(3323), 6, + ACTIONS(3334), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [67859] = 6, + [67707] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4947), 1, - anon_sym_PLUS, - STATE(2156), 1, - aux_sym_trait_bounds_repeat1, - STATE(2163), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4945), 7, - anon_sym_SEMI, + ACTIONS(4928), 1, + anon_sym_LPAREN, + ACTIONS(4933), 1, + anon_sym_LBRACK, + ACTIONS(4936), 1, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_where, - [67885] = 12, - ACTIONS(67), 1, - anon_sym_pub, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(2955), 1, - anon_sym_POUND, - ACTIONS(4780), 1, - sym_crate, - ACTIONS(4782), 1, - sym_identifier, - ACTIONS(4949), 1, - anon_sym_RBRACE, - STATE(1476), 1, - sym_attribute_item, - STATE(2205), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3078), 1, - sym_field_declaration, - STATE(3560), 1, - sym_visibility_modifier, - STATE(2164), 2, + STATE(3331), 1, + sym_macro_rule, + STATE(3417), 1, + sym_token_tree_pattern, + ACTIONS(4931), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + STATE(2158), 3, sym_line_comment, sym_block_comment, - [67923] = 9, + aux_sym_macro_definition_repeat1, + [67739] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -165880,122 +165754,151 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(4449), 1, anon_sym_LT2, - ACTIONS(4951), 1, + ACTIONS(4939), 1, anon_sym_for, - STATE(1933), 1, + STATE(1931), 1, sym_type_arguments, - STATE(1947), 1, + STATE(1942), 1, sym_parameters, - STATE(2165), 2, + STATE(2159), 2, sym_line_comment, sym_block_comment, - ACTIONS(3299), 4, + ACTIONS(3291), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [67955] = 12, - ACTIONS(67), 1, - anon_sym_pub, + [67771] = 12, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, - anon_sym_POUND, - ACTIONS(4774), 1, - sym_identifier, - ACTIONS(4780), 1, - sym_crate, - ACTIONS(4953), 1, - anon_sym_RBRACE, - STATE(1476), 1, - sym_attribute_item, - STATE(2212), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3256), 1, - sym_enum_variant, - STATE(3603), 1, - sym_visibility_modifier, - STATE(2166), 2, + ACTIONS(4890), 1, + anon_sym_LPAREN, + ACTIONS(4892), 1, + anon_sym_LBRACE, + ACTIONS(4894), 1, + anon_sym_LT, + ACTIONS(4896), 1, + anon_sym_where, + ACTIONS(4941), 1, + anon_sym_SEMI, + STATE(481), 1, + sym_field_declaration_list, + STATE(2245), 1, + sym_type_parameters, + STATE(2740), 1, + sym_ordered_field_declaration_list, + STATE(3305), 1, + sym_where_clause, + STATE(2160), 2, + sym_line_comment, + sym_block_comment, + [67809] = 12, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(4890), 1, + anon_sym_LPAREN, + ACTIONS(4894), 1, + anon_sym_LT, + ACTIONS(4896), 1, + anon_sym_where, + ACTIONS(4943), 1, + anon_sym_SEMI, + ACTIONS(4945), 1, + anon_sym_LBRACE, + STATE(1288), 1, + sym_field_declaration_list, + STATE(2242), 1, + sym_type_parameters, + STATE(2859), 1, + sym_ordered_field_declaration_list, + STATE(3180), 1, + sym_where_clause, + STATE(2161), 2, sym_line_comment, sym_block_comment, - [67993] = 12, + [67847] = 12, ACTIONS(67), 1, anon_sym_pub, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, + ACTIONS(2959), 1, anon_sym_POUND, - ACTIONS(4780), 1, + ACTIONS(4776), 1, sym_crate, - ACTIONS(4782), 1, + ACTIONS(4780), 1, sym_identifier, - ACTIONS(4955), 1, + ACTIONS(4947), 1, anon_sym_RBRACE, - STATE(1476), 1, + STATE(1477), 1, sym_attribute_item, - STATE(2205), 1, + STATE(2179), 1, aux_sym_enum_variant_list_repeat1, - STATE(3078), 1, + STATE(3167), 1, sym_field_declaration, - STATE(3560), 1, + STATE(3581), 1, sym_visibility_modifier, - STATE(2167), 2, + STATE(2162), 2, sym_line_comment, sym_block_comment, - [68031] = 9, + [67885] = 12, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, + ACTIONS(4890), 1, anon_sym_LPAREN, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4957), 1, - anon_sym_for, - STATE(1933), 1, - sym_type_arguments, - STATE(1947), 1, - sym_parameters, - STATE(2168), 2, + ACTIONS(4894), 1, + anon_sym_LT, + ACTIONS(4896), 1, + anon_sym_where, + ACTIONS(4945), 1, + anon_sym_LBRACE, + ACTIONS(4949), 1, + anon_sym_SEMI, + STATE(1450), 1, + sym_field_declaration_list, + STATE(2269), 1, + sym_type_parameters, + STATE(2737), 1, + sym_ordered_field_declaration_list, + STATE(3311), 1, + sym_where_clause, + STATE(2163), 2, sym_line_comment, sym_block_comment, - ACTIONS(3299), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [68063] = 12, + [67923] = 12, ACTIONS(67), 1, anon_sym_pub, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, + ACTIONS(2959), 1, anon_sym_POUND, - ACTIONS(4780), 1, + ACTIONS(4776), 1, sym_crate, - ACTIONS(4782), 1, + ACTIONS(4780), 1, sym_identifier, - ACTIONS(4959), 1, + ACTIONS(4951), 1, anon_sym_RBRACE, - STATE(1476), 1, + STATE(1477), 1, sym_attribute_item, - STATE(2205), 1, + STATE(2179), 1, aux_sym_enum_variant_list_repeat1, - STATE(3078), 1, + STATE(3167), 1, sym_field_declaration, - STATE(3560), 1, + STATE(3581), 1, sym_visibility_modifier, - STATE(2169), 2, + STATE(2164), 2, sym_line_comment, sym_block_comment, - [68101] = 9, + [67961] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -166004,82 +165907,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(4449), 1, anon_sym_LT2, - ACTIONS(4961), 1, + ACTIONS(4953), 1, anon_sym_for, - STATE(1933), 1, + STATE(1931), 1, sym_type_arguments, - STATE(1947), 1, + STATE(1942), 1, sym_parameters, - STATE(2170), 2, + STATE(2165), 2, sym_line_comment, sym_block_comment, - ACTIONS(3299), 4, + ACTIONS(3291), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [68133] = 12, - ACTIONS(67), 1, - anon_sym_pub, + [67993] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, - anon_sym_POUND, - ACTIONS(4774), 1, - sym_identifier, - ACTIONS(4780), 1, - sym_crate, - ACTIONS(4963), 1, - anon_sym_RBRACE, - STATE(1476), 1, - sym_attribute_item, - STATE(2212), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3256), 1, - sym_enum_variant, - STATE(3603), 1, - sym_visibility_modifier, - STATE(2171), 2, + ACTIONS(3307), 1, + anon_sym_DOT_DOT, + STATE(2166), 2, sym_line_comment, sym_block_comment, - [68171] = 9, + ACTIONS(3309), 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, + [68017] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, - anon_sym_LPAREN, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4965), 1, - anon_sym_for, - STATE(1933), 1, - sym_type_arguments, - STATE(1947), 1, - sym_parameters, - STATE(2172), 2, + ACTIONS(4957), 1, + anon_sym_PLUS, + STATE(2156), 1, + aux_sym_trait_bounds_repeat1, + STATE(2167), 2, sym_line_comment, sym_block_comment, - ACTIONS(3299), 4, + ACTIONS(4955), 7, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_PLUS, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_SQUOTE, anon_sym_where, - [68203] = 6, + [68043] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4947), 1, + ACTIONS(4959), 1, anon_sym_PLUS, - STATE(2163), 1, + STATE(2156), 1, aux_sym_trait_bounds_repeat1, - STATE(2173), 2, + STATE(2168), 2, sym_line_comment, sym_block_comment, - ACTIONS(4901), 7, + ACTIONS(4955), 7, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, @@ -166087,100 +165980,174 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_where, - [68229] = 9, + [68069] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, - anon_sym_LPAREN, - ACTIONS(4449), 1, + ACTIONS(3251), 1, anon_sym_LT2, - ACTIONS(4967), 1, - anon_sym_for, - STATE(1933), 1, + ACTIONS(4961), 1, + anon_sym_COLON_COLON, + STATE(1075), 1, sym_type_arguments, - STATE(1947), 1, - sym_parameters, - STATE(2174), 2, + STATE(2169), 2, sym_line_comment, sym_block_comment, - ACTIONS(3299), 4, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(3334), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [68097] = 10, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(3291), 1, anon_sym_PLUS, - anon_sym_where, - [68261] = 7, + ACTIONS(4469), 1, + anon_sym_PIPE, + ACTIONS(4471), 1, + anon_sym_COLON, + ACTIONS(4475), 1, + anon_sym_DOT_DOT, + ACTIONS(4531), 1, + anon_sym_COLON_COLON, + ACTIONS(4477), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4898), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2170), 2, + sym_line_comment, + sym_block_comment, + [68131] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, + ACTIONS(4884), 1, anon_sym_LBRACE, - ACTIONS(4969), 1, + ACTIONS(4963), 1, anon_sym_SEMI, - STATE(1201), 1, + STATE(1432), 1, sym_declaration_list, - STATE(2175), 2, + STATE(2171), 2, sym_line_comment, sym_block_comment, - ACTIONS(3323), 6, + ACTIONS(3334), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [68289] = 11, + [68159] = 12, + ACTIONS(67), 1, + anon_sym_pub, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(2959), 1, + anon_sym_POUND, + ACTIONS(4770), 1, + sym_identifier, + ACTIONS(4776), 1, + sym_crate, + ACTIONS(4965), 1, + anon_sym_RBRACE, + STATE(1477), 1, + sym_attribute_item, + STATE(2229), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3145), 1, + sym_enum_variant, + STATE(3514), 1, + sym_visibility_modifier, + STATE(2172), 2, + sym_line_comment, + sym_block_comment, + [68197] = 12, + ACTIONS(67), 1, + anon_sym_pub, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(2959), 1, + anon_sym_POUND, + ACTIONS(4770), 1, + sym_identifier, + ACTIONS(4776), 1, + sym_crate, + ACTIONS(4967), 1, + anon_sym_RBRACE, + STATE(1477), 1, + sym_attribute_item, + STATE(2229), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3145), 1, + sym_enum_variant, + STATE(3514), 1, + sym_visibility_modifier, + STATE(2173), 2, + sym_line_comment, + sym_block_comment, + [68235] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, ACTIONS(4878), 1, anon_sym_LBRACE, - ACTIONS(4971), 1, - anon_sym_COLON, - ACTIONS(4973), 1, - anon_sym_LT, - STATE(688), 1, + ACTIONS(4969), 1, + anon_sym_SEMI, + STATE(541), 1, sym_declaration_list, - STATE(2327), 1, - sym_type_parameters, - STATE(2544), 1, - sym_trait_bounds, - STATE(3257), 1, - sym_where_clause, - STATE(2176), 2, + STATE(2174), 2, sym_line_comment, sym_block_comment, - [68324] = 4, + ACTIONS(3334), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [68263] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2177), 2, + ACTIONS(4924), 1, + anon_sym_PLUS, + STATE(2156), 1, + aux_sym_trait_bounds_repeat1, + STATE(2175), 2, sym_line_comment, sym_block_comment, - ACTIONS(4928), 8, + ACTIONS(4955), 7, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_PLUS, anon_sym_EQ, anon_sym_GT, anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_where, - [68345] = 4, + [68289] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2178), 2, + STATE(2176), 2, sym_line_comment, sym_block_comment, - ACTIONS(4928), 8, + ACTIONS(4909), 8, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, @@ -166189,4315 +166156,4356 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_where, - [68366] = 4, + [68310] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2179), 2, + ACTIONS(4896), 1, + anon_sym_where, + ACTIONS(4971), 1, + anon_sym_SEMI, + ACTIONS(4973), 1, + anon_sym_COLON, + ACTIONS(4975), 1, + anon_sym_EQ, + ACTIONS(4977), 1, + anon_sym_LT, + STATE(2384), 1, + sym_type_parameters, + STATE(2758), 1, + sym_trait_bounds, + STATE(3338), 1, + sym_where_clause, + STATE(2177), 2, sym_line_comment, sym_block_comment, - ACTIONS(4975), 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, - [68387] = 11, + [68345] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, + ACTIONS(3446), 1, anon_sym_SQUOTE, - ACTIONS(4874), 1, + ACTIONS(4896), 1, anon_sym_where, - ACTIONS(4977), 1, - anon_sym_SEMI, ACTIONS(4979), 1, - anon_sym_LBRACE, + anon_sym_SEMI, ACTIONS(4981), 1, - anon_sym_DASH_GT, - STATE(709), 1, + anon_sym_LBRACE, + ACTIONS(4983), 1, + anon_sym_PLUS, + STATE(587), 1, sym_block, - STATE(2431), 1, + STATE(2490), 1, sym_where_clause, - STATE(3586), 1, + STATE(3594), 1, sym_label, - STATE(2180), 2, + STATE(2178), 2, sym_line_comment, sym_block_comment, - [68422] = 11, + [68380] = 11, ACTIONS(67), 1, anon_sym_pub, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, + ACTIONS(2959), 1, anon_sym_POUND, - ACTIONS(4774), 1, - sym_identifier, + ACTIONS(4776), 1, + sym_crate, ACTIONS(4780), 1, + sym_identifier, + STATE(1078), 1, + aux_sym_enum_variant_list_repeat1, + STATE(1477), 1, + sym_attribute_item, + STATE(3082), 1, + sym_field_declaration, + STATE(3581), 1, + sym_visibility_modifier, + STATE(2179), 2, + sym_line_comment, + sym_block_comment, + [68415] = 10, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(1482), 1, + anon_sym_DOT_DOT, + ACTIONS(4985), 1, + sym_identifier, + ACTIONS(4987), 1, + anon_sym_RBRACE, + ACTIONS(4989), 1, + anon_sym_COMMA, + ACTIONS(4991), 1, + anon_sym_ref, + ACTIONS(4993), 1, + sym_mutable_specifier, + STATE(2180), 2, + sym_line_comment, + sym_block_comment, + STATE(2782), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [68448] = 11, + ACTIONS(67), 1, + anon_sym_pub, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(2959), 1, + anon_sym_POUND, + ACTIONS(4776), 1, sym_crate, - STATE(1065), 1, + ACTIONS(4780), 1, + sym_identifier, + STATE(1078), 1, aux_sym_enum_variant_list_repeat1, - STATE(1476), 1, + STATE(1477), 1, sym_attribute_item, - STATE(2885), 1, - sym_enum_variant, - STATE(3603), 1, + STATE(2796), 1, + sym_field_declaration, + STATE(3581), 1, sym_visibility_modifier, STATE(2181), 2, sym_line_comment, sym_block_comment, - [68457] = 11, + [68483] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4971), 1, - anon_sym_COLON, - ACTIONS(4973), 1, - anon_sym_LT, - ACTIONS(4983), 1, - anon_sym_SEMI, + ACTIONS(1482), 1, + anon_sym_DOT_DOT, ACTIONS(4985), 1, - anon_sym_EQ, - STATE(2383), 1, - sym_type_parameters, - STATE(2976), 1, - sym_trait_bounds, - STATE(3375), 1, - sym_where_clause, + sym_identifier, + ACTIONS(4991), 1, + anon_sym_ref, + ACTIONS(4993), 1, + sym_mutable_specifier, + ACTIONS(4995), 1, + anon_sym_RBRACE, + ACTIONS(4997), 1, + anon_sym_COMMA, STATE(2182), 2, sym_line_comment, sym_block_comment, - [68492] = 11, + STATE(2786), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [68516] = 11, + ACTIONS(67), 1, + anon_sym_pub, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4979), 1, - anon_sym_LBRACE, - ACTIONS(4987), 1, - anon_sym_SEMI, - ACTIONS(4989), 1, - anon_sym_PLUS, - STATE(635), 1, - sym_block, - STATE(2419), 1, - sym_where_clause, - STATE(3586), 1, - sym_label, + ACTIONS(2959), 1, + anon_sym_POUND, + ACTIONS(4770), 1, + sym_identifier, + ACTIONS(4776), 1, + sym_crate, + STATE(1477), 1, + sym_attribute_item, + STATE(2229), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3145), 1, + sym_enum_variant, + STATE(3514), 1, + sym_visibility_modifier, STATE(2183), 2, sym_line_comment, sym_block_comment, - [68527] = 11, + [68551] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4979), 1, - anon_sym_LBRACE, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(4991), 1, - anon_sym_SEMI, - STATE(486), 1, - sym_block, - STATE(2420), 1, - sym_where_clause, - STATE(3586), 1, - sym_label, - STATE(2184), 2, + ACTIONS(5002), 1, + anon_sym_fn, + ACTIONS(5004), 1, + anon_sym_extern, + STATE(2321), 1, + sym_extern_modifier, + STATE(2184), 3, sym_line_comment, sym_block_comment, - [68562] = 11, + aux_sym_function_modifiers_repeat1, + ACTIONS(4999), 4, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_unsafe, + [68578] = 11, + ACTIONS(67), 1, + anon_sym_pub, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4979), 1, - anon_sym_LBRACE, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(4993), 1, - anon_sym_SEMI, - STATE(624), 1, - sym_block, - STATE(2411), 1, - sym_where_clause, - STATE(3586), 1, - sym_label, + ACTIONS(2959), 1, + anon_sym_POUND, + ACTIONS(4770), 1, + sym_identifier, + ACTIONS(4776), 1, + sym_crate, + STATE(1078), 1, + aux_sym_enum_variant_list_repeat1, + STATE(1477), 1, + sym_attribute_item, + STATE(2908), 1, + sym_enum_variant, + STATE(3514), 1, + sym_visibility_modifier, STATE(2185), 2, sym_line_comment, sym_block_comment, - [68597] = 11, + [68613] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, + ACTIONS(3446), 1, anon_sym_SQUOTE, - ACTIONS(4874), 1, + ACTIONS(4896), 1, anon_sym_where, - ACTIONS(4989), 1, + ACTIONS(4983), 1, anon_sym_PLUS, - ACTIONS(4995), 1, + ACTIONS(5007), 1, anon_sym_SEMI, - ACTIONS(4997), 1, + ACTIONS(5009), 1, anon_sym_LBRACE, - STATE(1156), 1, + STATE(1181), 1, sym_block, - STATE(2410), 1, + STATE(2467), 1, sym_where_clause, - STATE(3589), 1, + STATE(3597), 1, sym_label, STATE(2186), 2, sym_line_comment, sym_block_comment, - [68632] = 11, + [68648] = 11, ACTIONS(67), 1, anon_sym_pub, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, + ACTIONS(2959), 1, anon_sym_POUND, - ACTIONS(4780), 1, + ACTIONS(4776), 1, sym_crate, - ACTIONS(4782), 1, + ACTIONS(4780), 1, sym_identifier, - STATE(1065), 1, + STATE(1078), 1, aux_sym_enum_variant_list_repeat1, - STATE(1476), 1, + STATE(1477), 1, sym_attribute_item, - STATE(2917), 1, + STATE(2930), 1, sym_field_declaration, - STATE(3560), 1, + STATE(3581), 1, sym_visibility_modifier, STATE(2187), 2, sym_line_comment, sym_block_comment, - [68667] = 11, - ACTIONS(67), 1, - anon_sym_pub, + [68683] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, - anon_sym_POUND, - ACTIONS(4774), 1, - sym_identifier, - ACTIONS(4780), 1, - sym_crate, - STATE(1065), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1476), 1, - sym_attribute_item, - STATE(2783), 1, - sym_enum_variant, - STATE(3603), 1, - sym_visibility_modifier, + ACTIONS(3446), 1, + anon_sym_SQUOTE, + ACTIONS(4896), 1, + anon_sym_where, + ACTIONS(5009), 1, + anon_sym_LBRACE, + ACTIONS(5011), 1, + anon_sym_SEMI, + ACTIONS(5013), 1, + anon_sym_DASH_GT, + STATE(1143), 1, + sym_block, + STATE(2477), 1, + sym_where_clause, + STATE(3597), 1, + sym_label, STATE(2188), 2, sym_line_comment, sym_block_comment, - [68702] = 11, + [68718] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, + ACTIONS(3446), 1, anon_sym_SQUOTE, - ACTIONS(4874), 1, + ACTIONS(4896), 1, anon_sym_where, - ACTIONS(4979), 1, - anon_sym_LBRACE, - ACTIONS(4989), 1, + ACTIONS(4983), 1, anon_sym_PLUS, - ACTIONS(4999), 1, + ACTIONS(5009), 1, + anon_sym_LBRACE, + ACTIONS(5015), 1, anon_sym_SEMI, - STATE(542), 1, + STATE(1193), 1, sym_block, - STATE(2432), 1, + STATE(2478), 1, sym_where_clause, - STATE(3586), 1, + STATE(3597), 1, sym_label, STATE(2189), 2, sym_line_comment, sym_block_comment, - [68737] = 11, + [68753] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, + ACTIONS(3446), 1, anon_sym_SQUOTE, - ACTIONS(4874), 1, + ACTIONS(4896), 1, anon_sym_where, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(4997), 1, + ACTIONS(5009), 1, anon_sym_LBRACE, - ACTIONS(5001), 1, + ACTIONS(5017), 1, anon_sym_SEMI, - STATE(1166), 1, + ACTIONS(5019), 1, + anon_sym_DASH_GT, + STATE(1356), 1, sym_block, - STATE(2412), 1, + STATE(2406), 1, sym_where_clause, - STATE(3589), 1, + STATE(3597), 1, sym_label, STATE(2190), 2, sym_line_comment, sym_block_comment, - [68772] = 11, + [68788] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4979), 1, - anon_sym_LBRACE, - ACTIONS(5003), 1, - anon_sym_SEMI, - ACTIONS(5005), 1, - anon_sym_DASH_GT, - STATE(743), 1, - sym_block, - STATE(2490), 1, - sym_where_clause, - STATE(3586), 1, - sym_label, STATE(2191), 2, sym_line_comment, sym_block_comment, - [68807] = 11, + ACTIONS(5021), 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, + [68809] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(4874), 1, + ACTIONS(4896), 1, anon_sym_where, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(4997), 1, - anon_sym_LBRACE, - ACTIONS(5007), 1, + ACTIONS(4973), 1, + anon_sym_COLON, + ACTIONS(4977), 1, + anon_sym_LT, + ACTIONS(5023), 1, anon_sym_SEMI, - STATE(1397), 1, - sym_block, - STATE(2445), 1, + ACTIONS(5025), 1, + anon_sym_EQ, + STATE(2350), 1, + sym_type_parameters, + STATE(2734), 1, + sym_trait_bounds, + STATE(3326), 1, sym_where_clause, - STATE(3589), 1, - sym_label, STATE(2192), 2, sym_line_comment, sym_block_comment, - [68842] = 11, + [68844] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, + ACTIONS(3446), 1, anon_sym_SQUOTE, - ACTIONS(4874), 1, + ACTIONS(4896), 1, anon_sym_where, - ACTIONS(4989), 1, + ACTIONS(4983), 1, anon_sym_PLUS, - ACTIONS(4997), 1, - anon_sym_LBRACE, ACTIONS(5009), 1, + anon_sym_LBRACE, + ACTIONS(5027), 1, anon_sym_SEMI, - STATE(1176), 1, + STATE(1298), 1, sym_block, - STATE(2413), 1, + STATE(2390), 1, sym_where_clause, - STATE(3589), 1, + STATE(3597), 1, sym_label, STATE(2193), 2, sym_line_comment, sym_block_comment, - [68877] = 11, + [68879] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, + ACTIONS(3446), 1, anon_sym_SQUOTE, - ACTIONS(4874), 1, + ACTIONS(4896), 1, anon_sym_where, - ACTIONS(4979), 1, + ACTIONS(4981), 1, anon_sym_LBRACE, - ACTIONS(5011), 1, + ACTIONS(5029), 1, anon_sym_SEMI, - ACTIONS(5013), 1, + ACTIONS(5031), 1, anon_sym_DASH_GT, - STATE(517), 1, + STATE(611), 1, sym_block, - STATE(2492), 1, + STATE(2418), 1, sym_where_clause, - STATE(3586), 1, + STATE(3594), 1, sym_label, STATE(2194), 2, sym_line_comment, sym_block_comment, - [68912] = 11, + [68914] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, + ACTIONS(3446), 1, anon_sym_SQUOTE, - ACTIONS(4874), 1, + ACTIONS(4896), 1, anon_sym_where, - ACTIONS(4979), 1, + ACTIONS(5009), 1, anon_sym_LBRACE, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5015), 1, + ACTIONS(5033), 1, anon_sym_SEMI, - STATE(576), 1, + ACTIONS(5035), 1, + anon_sym_DASH_GT, + STATE(1369), 1, sym_block, - STATE(2457), 1, + STATE(2487), 1, sym_where_clause, - STATE(3586), 1, + STATE(3597), 1, sym_label, STATE(2195), 2, sym_line_comment, sym_block_comment, - [68947] = 11, + [68949] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, + ACTIONS(3446), 1, anon_sym_SQUOTE, - ACTIONS(4874), 1, + ACTIONS(4896), 1, anon_sym_where, - ACTIONS(4979), 1, + ACTIONS(5009), 1, anon_sym_LBRACE, - ACTIONS(5017), 1, + ACTIONS(5037), 1, anon_sym_SEMI, - ACTIONS(5019), 1, + ACTIONS(5039), 1, anon_sym_DASH_GT, - STATE(662), 1, + STATE(1409), 1, sym_block, - STATE(2398), 1, + STATE(2488), 1, sym_where_clause, - STATE(3586), 1, + STATE(3597), 1, sym_label, STATE(2196), 2, sym_line_comment, sym_block_comment, - [68982] = 11, + [68984] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, + ACTIONS(3446), 1, anon_sym_SQUOTE, - ACTIONS(4874), 1, + ACTIONS(4896), 1, anon_sym_where, - ACTIONS(4997), 1, + ACTIONS(4981), 1, anon_sym_LBRACE, - ACTIONS(5021), 1, + ACTIONS(4983), 1, + anon_sym_PLUS, + ACTIONS(5041), 1, anon_sym_SEMI, - ACTIONS(5023), 1, - anon_sym_DASH_GT, - STATE(1236), 1, + STATE(651), 1, sym_block, - STATE(2437), 1, + STATE(2423), 1, sym_where_clause, - STATE(3589), 1, + STATE(3594), 1, sym_label, STATE(2197), 2, sym_line_comment, sym_block_comment, - [69017] = 11, + [69019] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, + ACTIONS(3446), 1, + anon_sym_SQUOTE, + ACTIONS(4896), 1, anon_sym_where, - ACTIONS(4915), 1, + ACTIONS(4981), 1, anon_sym_LBRACE, - ACTIONS(4971), 1, - anon_sym_COLON, - ACTIONS(4973), 1, - anon_sym_LT, - STATE(1188), 1, - sym_declaration_list, - STATE(2293), 1, - sym_type_parameters, - STATE(2513), 1, - sym_trait_bounds, - STATE(3293), 1, + ACTIONS(5043), 1, + anon_sym_SEMI, + ACTIONS(5045), 1, + anon_sym_DASH_GT, + STATE(639), 1, + sym_block, + STATE(2484), 1, sym_where_clause, + STATE(3594), 1, + sym_label, STATE(2198), 2, sym_line_comment, sym_block_comment, - [69052] = 11, + [69054] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4915), 1, + ACTIONS(4884), 1, anon_sym_LBRACE, - ACTIONS(4971), 1, - anon_sym_COLON, + ACTIONS(4896), 1, + anon_sym_where, ACTIONS(4973), 1, + anon_sym_COLON, + ACTIONS(4977), 1, anon_sym_LT, - STATE(1271), 1, + STATE(1449), 1, sym_declaration_list, - STATE(2310), 1, + STATE(2348), 1, sym_type_parameters, - STATE(2542), 1, + STATE(2730), 1, sym_trait_bounds, - STATE(3123), 1, + STATE(3310), 1, sym_where_clause, STATE(2199), 2, sym_line_comment, sym_block_comment, - [69087] = 11, + [69089] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4878), 1, + ACTIONS(4884), 1, anon_sym_LBRACE, - ACTIONS(4971), 1, - anon_sym_COLON, + ACTIONS(4896), 1, + anon_sym_where, ACTIONS(4973), 1, + anon_sym_COLON, + ACTIONS(4977), 1, anon_sym_LT, - STATE(625), 1, + STATE(1310), 1, sym_declaration_list, - STATE(2313), 1, + STATE(2381), 1, sym_type_parameters, - STATE(2562), 1, + STATE(2589), 1, sym_trait_bounds, - STATE(3208), 1, + STATE(3185), 1, sym_where_clause, STATE(2200), 2, sym_line_comment, sym_block_comment, - [69122] = 6, + [69124] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4678), 1, - anon_sym_COLON_COLON, - ACTIONS(4838), 1, - anon_sym_BANG, + ACTIONS(1482), 1, + anon_sym_DOT_DOT, + ACTIONS(4985), 1, + sym_identifier, + ACTIONS(4991), 1, + anon_sym_ref, + ACTIONS(4993), 1, + sym_mutable_specifier, + ACTIONS(5047), 1, + anon_sym_RBRACE, + ACTIONS(5049), 1, + anon_sym_COMMA, STATE(2201), 2, sym_line_comment, sym_block_comment, - ACTIONS(3323), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [69147] = 11, + STATE(2875), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [69157] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4997), 1, - anon_sym_LBRACE, - ACTIONS(5025), 1, - anon_sym_SEMI, - ACTIONS(5027), 1, - anon_sym_DASH_GT, - STATE(1429), 1, - sym_block, - STATE(2397), 1, - sym_where_clause, - STATE(3589), 1, - sym_label, + ACTIONS(1482), 1, + anon_sym_DOT_DOT, + ACTIONS(4985), 1, + sym_identifier, + ACTIONS(4991), 1, + anon_sym_ref, + ACTIONS(4993), 1, + sym_mutable_specifier, + ACTIONS(5051), 1, + anon_sym_RBRACE, + ACTIONS(5053), 1, + anon_sym_COMMA, STATE(2202), 2, sym_line_comment, sym_block_comment, - [69182] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4507), 1, - anon_sym_trait, - ACTIONS(5029), 1, - anon_sym_impl, - STATE(2203), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3323), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [69207] = 11, + STATE(2919), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [69190] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, + ACTIONS(3446), 1, anon_sym_SQUOTE, - ACTIONS(4874), 1, + ACTIONS(4896), 1, anon_sym_where, - ACTIONS(4997), 1, + ACTIONS(4983), 1, + anon_sym_PLUS, + ACTIONS(5009), 1, anon_sym_LBRACE, - ACTIONS(5031), 1, + ACTIONS(5055), 1, anon_sym_SEMI, - ACTIONS(5033), 1, - anon_sym_DASH_GT, - STATE(1445), 1, + STATE(1136), 1, sym_block, - STATE(2399), 1, + STATE(2476), 1, sym_where_clause, - STATE(3589), 1, + STATE(3597), 1, sym_label, - STATE(2204), 2, + STATE(2203), 2, sym_line_comment, sym_block_comment, - [69242] = 11, - ACTIONS(67), 1, - anon_sym_pub, + [69225] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, - anon_sym_POUND, - ACTIONS(4780), 1, - sym_crate, - ACTIONS(4782), 1, - sym_identifier, - STATE(1065), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1476), 1, - sym_attribute_item, - STATE(3189), 1, - sym_field_declaration, - STATE(3560), 1, - sym_visibility_modifier, - STATE(2205), 2, + ACTIONS(4878), 1, + anon_sym_LBRACE, + ACTIONS(4896), 1, + anon_sym_where, + ACTIONS(4973), 1, + anon_sym_COLON, + ACTIONS(4977), 1, + anon_sym_LT, + STATE(485), 1, + sym_declaration_list, + STATE(2383), 1, + sym_type_parameters, + STATE(2699), 1, + sym_trait_bounds, + STATE(3304), 1, + sym_where_clause, + STATE(2204), 2, sym_line_comment, sym_block_comment, - [69277] = 8, + [69260] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5035), 1, - anon_sym_fn, - ACTIONS(5037), 1, - anon_sym_extern, - STATE(2220), 1, - aux_sym_function_modifiers_repeat1, - STATE(2320), 1, - sym_extern_modifier, - STATE(2206), 2, + ACTIONS(1320), 1, + aux_sym_string_literal_token1, + STATE(2191), 1, + sym_string_literal, + STATE(2205), 2, sym_line_comment, sym_block_comment, - ACTIONS(4469), 4, + ACTIONS(4698), 6, anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_fn, anon_sym_unsafe, - [69306] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(2207), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4928), 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, - [69327] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(2208), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4928), 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, - [69348] = 11, + anon_sym_extern, + [69285] = 11, ACTIONS(67), 1, anon_sym_pub, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, + ACTIONS(2959), 1, anon_sym_POUND, - ACTIONS(4780), 1, + ACTIONS(4776), 1, sym_crate, - ACTIONS(4782), 1, + ACTIONS(4780), 1, sym_identifier, - STATE(1476), 1, + STATE(1477), 1, sym_attribute_item, - STATE(2205), 1, + STATE(2179), 1, aux_sym_enum_variant_list_repeat1, - STATE(3078), 1, + STATE(3167), 1, sym_field_declaration, - STATE(3560), 1, - sym_visibility_modifier, - STATE(2209), 2, - sym_line_comment, - sym_block_comment, - [69383] = 11, - ACTIONS(67), 1, - anon_sym_pub, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(2955), 1, - anon_sym_POUND, - ACTIONS(4774), 1, - sym_identifier, - ACTIONS(4780), 1, - sym_crate, - STATE(1476), 1, - sym_attribute_item, - STATE(2212), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3256), 1, - sym_enum_variant, - STATE(3603), 1, + STATE(3581), 1, sym_visibility_modifier, - STATE(2210), 2, + STATE(2206), 2, sym_line_comment, sym_block_comment, - [69418] = 10, + [69320] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1482), 1, - anon_sym_DOT_DOT, - ACTIONS(5039), 1, - sym_identifier, - ACTIONS(5041), 1, - anon_sym_RBRACE, - ACTIONS(5043), 1, - anon_sym_COMMA, - ACTIONS(5045), 1, - anon_sym_ref, - ACTIONS(5047), 1, - sym_mutable_specifier, - STATE(2211), 2, + ACTIONS(3446), 1, + anon_sym_SQUOTE, + ACTIONS(4896), 1, + anon_sym_where, + ACTIONS(4981), 1, + anon_sym_LBRACE, + ACTIONS(5057), 1, + anon_sym_SEMI, + ACTIONS(5059), 1, + anon_sym_DASH_GT, + STATE(676), 1, + sym_block, + STATE(2483), 1, + sym_where_clause, + STATE(3594), 1, + sym_label, + STATE(2207), 2, sym_line_comment, sym_block_comment, - STATE(2937), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [69451] = 11, - ACTIONS(67), 1, - anon_sym_pub, + [69355] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, - anon_sym_POUND, - ACTIONS(4774), 1, - sym_identifier, - ACTIONS(4780), 1, - sym_crate, - STATE(1065), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1476), 1, - sym_attribute_item, - STATE(3084), 1, - sym_enum_variant, - STATE(3603), 1, - sym_visibility_modifier, - STATE(2212), 2, + ACTIONS(3446), 1, + anon_sym_SQUOTE, + ACTIONS(4896), 1, + anon_sym_where, + ACTIONS(4983), 1, + anon_sym_PLUS, + ACTIONS(5009), 1, + anon_sym_LBRACE, + ACTIONS(5061), 1, + anon_sym_SEMI, + STATE(1188), 1, + sym_block, + STATE(2450), 1, + sym_where_clause, + STATE(3597), 1, + sym_label, + STATE(2208), 2, sym_line_comment, sym_block_comment, - [69486] = 6, + [69390] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1308), 1, - aux_sym_string_literal_token1, - STATE(2179), 1, - sym_string_literal, - STATE(2213), 2, + ACTIONS(3446), 1, + anon_sym_SQUOTE, + ACTIONS(4896), 1, + anon_sym_where, + ACTIONS(4981), 1, + anon_sym_LBRACE, + ACTIONS(4983), 1, + anon_sym_PLUS, + ACTIONS(5063), 1, + anon_sym_SEMI, + STATE(716), 1, + sym_block, + STATE(2445), 1, + sym_where_clause, + STATE(3594), 1, + sym_label, + STATE(2209), 2, sym_line_comment, sym_block_comment, - ACTIONS(4702), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [69511] = 11, + [69425] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, + ACTIONS(3446), 1, + anon_sym_SQUOTE, + ACTIONS(4896), 1, anon_sym_where, - ACTIONS(4878), 1, + ACTIONS(4983), 1, + anon_sym_PLUS, + ACTIONS(5009), 1, anon_sym_LBRACE, - ACTIONS(4971), 1, - anon_sym_COLON, - ACTIONS(4973), 1, - anon_sym_LT, - STATE(752), 1, - sym_declaration_list, - STATE(2388), 1, - sym_type_parameters, - STATE(2660), 1, - sym_trait_bounds, - STATE(3038), 1, + ACTIONS(5065), 1, + anon_sym_SEMI, + STATE(1205), 1, + sym_block, + STATE(2464), 1, sym_where_clause, - STATE(2214), 2, + STATE(3597), 1, + sym_label, + STATE(2210), 2, sym_line_comment, sym_block_comment, - [69546] = 11, + [69460] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, + ACTIONS(3446), 1, anon_sym_SQUOTE, - ACTIONS(4874), 1, + ACTIONS(4896), 1, anon_sym_where, - ACTIONS(4997), 1, + ACTIONS(4981), 1, anon_sym_LBRACE, - ACTIONS(5049), 1, + ACTIONS(5067), 1, anon_sym_SEMI, - ACTIONS(5051), 1, + ACTIONS(5069), 1, anon_sym_DASH_GT, - STATE(1316), 1, + STATE(533), 1, sym_block, - STATE(2389), 1, + STATE(2401), 1, sym_where_clause, - STATE(3589), 1, + STATE(3594), 1, sym_label, - STATE(2215), 2, + STATE(2211), 2, sym_line_comment, sym_block_comment, - [69581] = 10, + [69495] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, ACTIONS(4445), 1, anon_sym_BANG, - ACTIONS(4453), 1, + ACTIONS(4451), 1, anon_sym_PIPE, - ACTIONS(4455), 1, + ACTIONS(4453), 1, anon_sym_LPAREN, - ACTIONS(4459), 1, + ACTIONS(4457), 1, anon_sym_COLON, - ACTIONS(4463), 1, + ACTIONS(4461), 1, anon_sym_DOT_DOT, - ACTIONS(5053), 1, + ACTIONS(5071), 1, anon_sym_COLON_COLON, - ACTIONS(4465), 2, + ACTIONS(4463), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2216), 2, + STATE(2212), 2, sym_line_comment, sym_block_comment, - [69614] = 11, + [69528] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, + ACTIONS(3446), 1, anon_sym_SQUOTE, - ACTIONS(4874), 1, + ACTIONS(4896), 1, anon_sym_where, - ACTIONS(4979), 1, + ACTIONS(4981), 1, anon_sym_LBRACE, - ACTIONS(5055), 1, + ACTIONS(5073), 1, anon_sym_SEMI, - ACTIONS(5057), 1, + ACTIONS(5075), 1, anon_sym_DASH_GT, - STATE(531), 1, + STATE(745), 1, sym_block, - STATE(2459), 1, + STATE(2460), 1, sym_where_clause, - STATE(3586), 1, + STATE(3594), 1, sym_label, - STATE(2217), 2, + STATE(2213), 2, sym_line_comment, sym_block_comment, - [69649] = 11, + [69563] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, + STATE(2214), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4909), 8, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, anon_sym_SQUOTE, - ACTIONS(4874), 1, anon_sym_where, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(4997), 1, + [69584] = 11, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(3446), 1, + anon_sym_SQUOTE, + ACTIONS(4896), 1, + anon_sym_where, + ACTIONS(5009), 1, anon_sym_LBRACE, - ACTIONS(5059), 1, + ACTIONS(5077), 1, anon_sym_SEMI, - STATE(1455), 1, + ACTIONS(5079), 1, + anon_sym_DASH_GT, + STATE(1256), 1, sym_block, - STATE(2404), 1, + STATE(2391), 1, sym_where_clause, - STATE(3589), 1, + STATE(3597), 1, sym_label, + STATE(2215), 2, + sym_line_comment, + sym_block_comment, + [69619] = 4, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(2216), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4909), 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, + [69640] = 4, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(2217), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4909), 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, + [69661] = 4, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, STATE(2218), 2, sym_line_comment, sym_block_comment, - [69684] = 11, + ACTIONS(4909), 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, + [69682] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4979), 1, + ACTIONS(4878), 1, anon_sym_LBRACE, - ACTIONS(5061), 1, - anon_sym_SEMI, - ACTIONS(5063), 1, - anon_sym_DASH_GT, - STATE(585), 1, - sym_block, - STATE(2465), 1, + ACTIONS(4896), 1, + anon_sym_where, + ACTIONS(4973), 1, + anon_sym_COLON, + ACTIONS(4977), 1, + anon_sym_LT, + STATE(677), 1, + sym_declaration_list, + STATE(2346), 1, + sym_type_parameters, + STATE(2513), 1, + sym_trait_bounds, + STATE(3078), 1, sym_where_clause, - STATE(3586), 1, - sym_label, STATE(2219), 2, sym_line_comment, sym_block_comment, - [69719] = 7, + [69717] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5068), 1, + ACTIONS(5081), 1, anon_sym_fn, - ACTIONS(5070), 1, + ACTIONS(5083), 1, anon_sym_extern, - STATE(2320), 1, + STATE(2184), 1, + aux_sym_function_modifiers_repeat1, + STATE(2321), 1, sym_extern_modifier, - STATE(2220), 3, + STATE(2220), 2, sym_line_comment, sym_block_comment, - aux_sym_function_modifiers_repeat1, - ACTIONS(5065), 4, + ACTIONS(4481), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - [69746] = 10, + [69746] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1482), 1, - anon_sym_DOT_DOT, - ACTIONS(5039), 1, - sym_identifier, - ACTIONS(5045), 1, - anon_sym_ref, - ACTIONS(5047), 1, - sym_mutable_specifier, - ACTIONS(5073), 1, - anon_sym_RBRACE, - ACTIONS(5075), 1, - anon_sym_COMMA, + ACTIONS(4730), 1, + anon_sym_COLON_COLON, + ACTIONS(4786), 1, + anon_sym_BANG, STATE(2221), 2, sym_line_comment, sym_block_comment, - STATE(3022), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [69779] = 10, + ACTIONS(3334), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [69771] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1482), 1, - anon_sym_DOT_DOT, - ACTIONS(5039), 1, - sym_identifier, - ACTIONS(5045), 1, - anon_sym_ref, - ACTIONS(5047), 1, - sym_mutable_specifier, - ACTIONS(5077), 1, - anon_sym_RBRACE, - ACTIONS(5079), 1, - anon_sym_COMMA, + ACTIONS(4519), 1, + anon_sym_trait, + ACTIONS(5085), 1, + anon_sym_impl, STATE(2222), 2, sym_line_comment, sym_block_comment, - STATE(2738), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [69812] = 4, + ACTIONS(3334), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [69796] = 11, + ACTIONS(67), 1, + anon_sym_pub, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(2959), 1, + anon_sym_POUND, + ACTIONS(4770), 1, + sym_identifier, + ACTIONS(4776), 1, + sym_crate, + STATE(1078), 1, + aux_sym_enum_variant_list_repeat1, + STATE(1477), 1, + sym_attribute_item, + STATE(2866), 1, + sym_enum_variant, + STATE(3514), 1, + sym_visibility_modifier, STATE(2223), 2, sym_line_comment, sym_block_comment, - ACTIONS(4928), 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, - [69833] = 11, + [69831] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, + ACTIONS(3446), 1, anon_sym_SQUOTE, - ACTIONS(4874), 1, + ACTIONS(4896), 1, anon_sym_where, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(4997), 1, + ACTIONS(4981), 1, anon_sym_LBRACE, - ACTIONS(5081), 1, + ACTIONS(4983), 1, + anon_sym_PLUS, + ACTIONS(5087), 1, anon_sym_SEMI, - STATE(1115), 1, + STATE(499), 1, sym_block, - STATE(2408), 1, + STATE(2480), 1, sym_where_clause, - STATE(3589), 1, + STATE(3594), 1, sym_label, STATE(2224), 2, sym_line_comment, sym_block_comment, - [69868] = 11, + [69866] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, + ACTIONS(3446), 1, anon_sym_SQUOTE, - ACTIONS(4874), 1, + ACTIONS(4896), 1, anon_sym_where, - ACTIONS(4979), 1, + ACTIONS(5009), 1, anon_sym_LBRACE, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5083), 1, + ACTIONS(5089), 1, anon_sym_SEMI, - STATE(614), 1, + ACTIONS(5091), 1, + anon_sym_DASH_GT, + STATE(1145), 1, sym_block, - STATE(2474), 1, + STATE(2486), 1, sym_where_clause, - STATE(3586), 1, + STATE(3597), 1, sym_label, STATE(2225), 2, sym_line_comment, sym_block_comment, - [69903] = 11, - ACTIONS(67), 1, - anon_sym_pub, + [69901] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, - anon_sym_POUND, - ACTIONS(4780), 1, - sym_crate, - ACTIONS(4782), 1, - sym_identifier, - STATE(1065), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1476), 1, - sym_attribute_item, - STATE(2994), 1, - sym_field_declaration, - STATE(3560), 1, - sym_visibility_modifier, + ACTIONS(4884), 1, + anon_sym_LBRACE, + ACTIONS(4896), 1, + anon_sym_where, + ACTIONS(4973), 1, + anon_sym_COLON, + ACTIONS(4977), 1, + anon_sym_LT, + STATE(1120), 1, + sym_declaration_list, + STATE(2305), 1, + sym_type_parameters, + STATE(2542), 1, + sym_trait_bounds, + STATE(3065), 1, + sym_where_clause, STATE(2226), 2, sym_line_comment, sym_block_comment, - [69938] = 11, + [69936] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4997), 1, + ACTIONS(4878), 1, anon_sym_LBRACE, - ACTIONS(5085), 1, - anon_sym_SEMI, - ACTIONS(5087), 1, - anon_sym_DASH_GT, - STATE(1124), 1, - sym_block, - STATE(2409), 1, + ACTIONS(4896), 1, + anon_sym_where, + ACTIONS(4973), 1, + anon_sym_COLON, + ACTIONS(4977), 1, + anon_sym_LT, + STATE(626), 1, + sym_declaration_list, + STATE(2353), 1, + sym_type_parameters, + STATE(2717), 1, + sym_trait_bounds, + STATE(3300), 1, sym_where_clause, - STATE(3589), 1, - sym_label, STATE(2227), 2, sym_line_comment, sym_block_comment, - [69973] = 11, + [69971] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, + ACTIONS(3446), 1, anon_sym_SQUOTE, - ACTIONS(4874), 1, + ACTIONS(4896), 1, anon_sym_where, - ACTIONS(4997), 1, + ACTIONS(4981), 1, anon_sym_LBRACE, - ACTIONS(5089), 1, + ACTIONS(4983), 1, + anon_sym_PLUS, + ACTIONS(5093), 1, anon_sym_SEMI, - ACTIONS(5091), 1, - anon_sym_DASH_GT, - STATE(1359), 1, + STATE(709), 1, sym_block, - STATE(2486), 1, + STATE(2416), 1, sym_where_clause, - STATE(3589), 1, + STATE(3594), 1, sym_label, STATE(2228), 2, sym_line_comment, sym_block_comment, - [70008] = 11, + [70006] = 11, + ACTIONS(67), 1, + anon_sym_pub, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4915), 1, - anon_sym_LBRACE, - ACTIONS(4971), 1, - anon_sym_COLON, - ACTIONS(4973), 1, - anon_sym_LT, - STATE(1372), 1, - sym_declaration_list, - STATE(2325), 1, - sym_type_parameters, - STATE(2561), 1, - sym_trait_bounds, - STATE(3234), 1, - sym_where_clause, + ACTIONS(2959), 1, + anon_sym_POUND, + ACTIONS(4770), 1, + sym_identifier, + ACTIONS(4776), 1, + sym_crate, + STATE(1078), 1, + aux_sym_enum_variant_list_repeat1, + STATE(1477), 1, + sym_attribute_item, + STATE(3097), 1, + sym_enum_variant, + STATE(3514), 1, + sym_visibility_modifier, STATE(2229), 2, sym_line_comment, sym_block_comment, - [70043] = 10, + [70041] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1482), 1, - anon_sym_DOT_DOT, - ACTIONS(5039), 1, - sym_identifier, - ACTIONS(5045), 1, - anon_sym_ref, - ACTIONS(5047), 1, - sym_mutable_specifier, - ACTIONS(5093), 1, - anon_sym_RBRACE, + ACTIONS(3446), 1, + anon_sym_SQUOTE, + ACTIONS(4896), 1, + anon_sym_where, + ACTIONS(4981), 1, + anon_sym_LBRACE, ACTIONS(5095), 1, - anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(5097), 1, + anon_sym_DASH_GT, + STATE(482), 1, + sym_block, + STATE(2415), 1, + sym_where_clause, + STATE(3594), 1, + sym_label, STATE(2230), 2, sym_line_comment, sym_block_comment, - STATE(2870), 2, - sym_field_pattern, - sym_remaining_field_pattern, [70076] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, + ACTIONS(3446), 1, + anon_sym_SQUOTE, + ACTIONS(4896), 1, anon_sym_where, - ACTIONS(4971), 1, - anon_sym_COLON, - ACTIONS(4973), 1, - anon_sym_LT, - ACTIONS(5097), 1, - anon_sym_SEMI, + ACTIONS(4981), 1, + anon_sym_LBRACE, + ACTIONS(4983), 1, + anon_sym_PLUS, ACTIONS(5099), 1, - anon_sym_EQ, - STATE(2294), 1, - sym_type_parameters, - STATE(2833), 1, - sym_trait_bounds, - STATE(3576), 1, + anon_sym_SEMI, + STATE(630), 1, + sym_block, + STATE(2424), 1, sym_where_clause, + STATE(3594), 1, + sym_label, STATE(2231), 2, sym_line_comment, sym_block_comment, - [70111] = 7, + [70111] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4463), 1, - anon_sym_DOT_DOT, ACTIONS(5101), 1, - anon_sym_COLON_COLON, - ACTIONS(4465), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + anon_sym_LPAREN, + ACTIONS(5103), 1, + anon_sym_LBRACK, + ACTIONS(5105), 1, + anon_sym_RBRACK, + ACTIONS(5107), 1, + anon_sym_LBRACE, + STATE(2275), 1, + aux_sym_macro_definition_repeat1, + STATE(3224), 1, + sym_macro_rule, + STATE(3417), 1, + sym_token_tree_pattern, STATE(2232), 2, sym_line_comment, sym_block_comment, - ACTIONS(3299), 3, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_PLUS, - [70137] = 7, + [70143] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4840), 1, - anon_sym_DOT_DOT, - ACTIONS(4844), 1, - anon_sym_COLON_COLON, - ACTIONS(4842), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(5101), 1, + anon_sym_LPAREN, + ACTIONS(5103), 1, + anon_sym_LBRACK, + ACTIONS(5107), 1, + anon_sym_LBRACE, + ACTIONS(5109), 1, + anon_sym_RBRACE, + STATE(2158), 1, + aux_sym_macro_definition_repeat1, + STATE(3165), 1, + sym_macro_rule, + STATE(3417), 1, + sym_token_tree_pattern, STATE(2233), 2, sym_line_comment, sym_block_comment, - ACTIONS(4519), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [70163] = 9, + [70175] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4243), 1, + ACTIONS(4672), 1, + anon_sym_COLON_COLON, + ACTIONS(5111), 1, + anon_sym_LPAREN, + ACTIONS(5113), 1, + anon_sym_LBRACK, + ACTIONS(5115), 1, + anon_sym_RBRACK, + ACTIONS(5117), 1, anon_sym_LBRACE, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(5105), 1, - anon_sym_STAR, - STATE(2776), 1, - sym_use_list, - STATE(3195), 1, - sym_type_arguments, - ACTIONS(5103), 2, - sym_identifier, - sym_super, + ACTIONS(5119), 1, + anon_sym_EQ, + STATE(3497), 1, + sym_delim_token_tree, STATE(2234), 2, sym_line_comment, sym_block_comment, - [70193] = 9, + [70207] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1482), 1, - anon_sym_DOT_DOT, - ACTIONS(5039), 1, - sym_identifier, - ACTIONS(5045), 1, - anon_sym_ref, - ACTIONS(5047), 1, - sym_mutable_specifier, + ACTIONS(5101), 1, + anon_sym_LPAREN, + ACTIONS(5103), 1, + anon_sym_LBRACK, + ACTIONS(5105), 1, + anon_sym_RPAREN, ACTIONS(5107), 1, - anon_sym_RBRACE, + anon_sym_LBRACE, + STATE(2274), 1, + aux_sym_macro_definition_repeat1, + STATE(3227), 1, + sym_macro_rule, + STATE(3417), 1, + sym_token_tree_pattern, STATE(2235), 2, sym_line_comment, sym_block_comment, - STATE(3197), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [70223] = 9, + [70239] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4243), 1, + ACTIONS(5101), 1, + anon_sym_LPAREN, + ACTIONS(5103), 1, + anon_sym_LBRACK, + ACTIONS(5107), 1, anon_sym_LBRACE, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(5105), 1, - anon_sym_STAR, - STATE(2776), 1, - sym_use_list, - STATE(3217), 1, - sym_type_arguments, - ACTIONS(5103), 2, - sym_identifier, - sym_super, + ACTIONS(5121), 1, + anon_sym_RPAREN, + STATE(2158), 1, + aux_sym_macro_definition_repeat1, + STATE(3140), 1, + sym_macro_rule, + STATE(3417), 1, + sym_token_tree_pattern, STATE(2236), 2, sym_line_comment, sym_block_comment, - [70253] = 9, + [70271] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1482), 1, - anon_sym_DOT_DOT, - ACTIONS(5039), 1, - sym_identifier, - ACTIONS(5045), 1, - anon_sym_ref, - ACTIONS(5047), 1, - sym_mutable_specifier, - ACTIONS(5109), 1, - anon_sym_RBRACE, + ACTIONS(5101), 1, + anon_sym_LPAREN, + ACTIONS(5103), 1, + anon_sym_LBRACK, + ACTIONS(5107), 1, + anon_sym_LBRACE, + ACTIONS(5121), 1, + anon_sym_RBRACK, + STATE(2158), 1, + aux_sym_macro_definition_repeat1, + STATE(3144), 1, + sym_macro_rule, + STATE(3417), 1, + sym_token_tree_pattern, STATE(2237), 2, sym_line_comment, sym_block_comment, - STATE(3197), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [70283] = 8, + [70303] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4868), 1, - anon_sym_LPAREN, - ACTIONS(4891), 1, - anon_sym_LBRACE, - ACTIONS(5113), 1, - anon_sym_EQ, - ACTIONS(5111), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(5123), 1, + sym_identifier, STATE(2238), 2, sym_line_comment, sym_block_comment, - STATE(2769), 2, - sym_field_declaration_list, - sym_ordered_field_declaration_list, - [70311] = 10, + ACTIONS(4742), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [70325] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4868), 1, + ACTIONS(5101), 1, anon_sym_LPAREN, - ACTIONS(4870), 1, + ACTIONS(5103), 1, + anon_sym_LBRACK, + ACTIONS(5107), 1, anon_sym_LBRACE, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(5115), 1, - anon_sym_SEMI, - STATE(749), 1, - sym_field_declaration_list, - STATE(3002), 1, - sym_ordered_field_declaration_list, - STATE(3251), 1, - sym_where_clause, + ACTIONS(5125), 1, + anon_sym_RBRACE, + STATE(2158), 1, + aux_sym_macro_definition_repeat1, + STATE(3147), 1, + sym_macro_rule, + STATE(3417), 1, + sym_token_tree_pattern, STATE(2239), 2, sym_line_comment, sym_block_comment, - [70343] = 5, + [70357] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5117), 1, - sym_identifier, + ACTIONS(5101), 1, + anon_sym_LPAREN, + ACTIONS(5103), 1, + anon_sym_LBRACK, + ACTIONS(5107), 1, + anon_sym_LBRACE, + ACTIONS(5127), 1, + anon_sym_RPAREN, + STATE(2158), 1, + aux_sym_macro_definition_repeat1, + STATE(3151), 1, + sym_macro_rule, + STATE(3417), 1, + sym_token_tree_pattern, STATE(2240), 2, sym_line_comment, sym_block_comment, - ACTIONS(4724), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [70365] = 10, + [70389] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5119), 1, + ACTIONS(4574), 1, + anon_sym_COLON_COLON, + ACTIONS(5111), 1, anon_sym_LPAREN, - ACTIONS(5121), 1, - anon_sym_RPAREN, - ACTIONS(5123), 1, + ACTIONS(5113), 1, anon_sym_LBRACK, - ACTIONS(5125), 1, + ACTIONS(5115), 1, + anon_sym_RBRACK, + ACTIONS(5117), 1, anon_sym_LBRACE, - STATE(2254), 1, - aux_sym_macro_definition_repeat1, - STATE(3074), 1, - sym_macro_rule, - STATE(3337), 1, - sym_token_tree_pattern, + ACTIONS(5119), 1, + anon_sym_EQ, + STATE(3497), 1, + sym_delim_token_tree, STATE(2241), 2, sym_line_comment, sym_block_comment, - [70397] = 10, + [70421] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5119), 1, + ACTIONS(4890), 1, anon_sym_LPAREN, - ACTIONS(5121), 1, - anon_sym_RBRACK, - ACTIONS(5123), 1, - anon_sym_LBRACK, - ACTIONS(5125), 1, + ACTIONS(4896), 1, + anon_sym_where, + ACTIONS(4945), 1, anon_sym_LBRACE, - STATE(2256), 1, - aux_sym_macro_definition_repeat1, - STATE(3141), 1, - sym_macro_rule, - STATE(3337), 1, - sym_token_tree_pattern, + ACTIONS(5129), 1, + anon_sym_SEMI, + STATE(1124), 1, + sym_field_declaration_list, + STATE(2947), 1, + sym_ordered_field_declaration_list, + STATE(3114), 1, + sym_where_clause, STATE(2242), 2, sym_line_comment, sym_block_comment, - [70429] = 10, + [70453] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5119), 1, - anon_sym_LPAREN, - ACTIONS(5123), 1, - anon_sym_LBRACK, - ACTIONS(5125), 1, - anon_sym_LBRACE, - ACTIONS(5127), 1, - anon_sym_RBRACE, - STATE(2258), 1, - aux_sym_macro_definition_repeat1, - STATE(3150), 1, - sym_macro_rule, - STATE(3337), 1, - sym_token_tree_pattern, + ACTIONS(4788), 1, + anon_sym_DOT_DOT, + ACTIONS(4792), 1, + anon_sym_COLON_COLON, + ACTIONS(4790), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(2243), 2, sym_line_comment, sym_block_comment, - [70461] = 10, + ACTIONS(4469), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [70479] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5119), 1, + ACTIONS(4890), 1, anon_sym_LPAREN, - ACTIONS(5123), 1, - anon_sym_LBRACK, - ACTIONS(5125), 1, + ACTIONS(4945), 1, anon_sym_LBRACE, - ACTIONS(5129), 1, - anon_sym_RPAREN, - STATE(2259), 1, - aux_sym_macro_definition_repeat1, - STATE(3162), 1, - sym_macro_rule, - STATE(3337), 1, - sym_token_tree_pattern, + ACTIONS(5133), 1, + anon_sym_EQ, + ACTIONS(5131), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(2244), 2, sym_line_comment, sym_block_comment, - [70493] = 10, + STATE(2789), 2, + sym_field_declaration_list, + sym_ordered_field_declaration_list, + [70507] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5119), 1, + ACTIONS(4890), 1, anon_sym_LPAREN, - ACTIONS(5123), 1, - anon_sym_LBRACK, - ACTIONS(5125), 1, + ACTIONS(4892), 1, anon_sym_LBRACE, - ACTIONS(5129), 1, - anon_sym_RBRACK, - STATE(2289), 1, - aux_sym_macro_definition_repeat1, - STATE(3169), 1, - sym_macro_rule, - STATE(3337), 1, - sym_token_tree_pattern, + ACTIONS(4896), 1, + anon_sym_where, + ACTIONS(5135), 1, + anon_sym_SEMI, + STATE(702), 1, + sym_field_declaration_list, + STATE(3012), 1, + sym_ordered_field_declaration_list, + STATE(3055), 1, + sym_where_clause, STATE(2245), 2, sym_line_comment, sym_block_comment, - [70525] = 10, + [70539] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5119), 1, + ACTIONS(5101), 1, anon_sym_LPAREN, - ACTIONS(5123), 1, + ACTIONS(5103), 1, anon_sym_LBRACK, - ACTIONS(5125), 1, + ACTIONS(5107), 1, anon_sym_LBRACE, - ACTIONS(5131), 1, - anon_sym_RBRACE, - STATE(2263), 1, + ACTIONS(5127), 1, + anon_sym_RBRACK, + STATE(2158), 1, aux_sym_macro_definition_repeat1, - STATE(3192), 1, + STATE(3152), 1, sym_macro_rule, - STATE(3337), 1, + STATE(3417), 1, sym_token_tree_pattern, STATE(2246), 2, sym_line_comment, sym_block_comment, - [70557] = 10, + [70571] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5119), 1, + ACTIONS(5101), 1, anon_sym_LPAREN, - ACTIONS(5123), 1, + ACTIONS(5103), 1, anon_sym_LBRACK, - ACTIONS(5125), 1, + ACTIONS(5107), 1, anon_sym_LBRACE, - ACTIONS(5133), 1, + ACTIONS(5137), 1, anon_sym_RBRACE, - STATE(2252), 1, + STATE(2158), 1, aux_sym_macro_definition_repeat1, - STATE(3047), 1, + STATE(3154), 1, sym_macro_rule, - STATE(3337), 1, + STATE(3417), 1, sym_token_tree_pattern, STATE(2247), 2, sym_line_comment, sym_block_comment, - [70589] = 10, + [70603] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5119), 1, - anon_sym_LPAREN, - ACTIONS(5123), 1, - anon_sym_LBRACK, - ACTIONS(5125), 1, - anon_sym_LBRACE, - ACTIONS(5135), 1, - anon_sym_RBRACE, - STATE(2253), 1, - aux_sym_macro_definition_repeat1, - STATE(3053), 1, - sym_macro_rule, - STATE(3337), 1, - sym_token_tree_pattern, + ACTIONS(4461), 1, + anon_sym_DOT_DOT, + ACTIONS(5141), 1, + anon_sym_COLON, + ACTIONS(5143), 1, + anon_sym_COLON_COLON, + ACTIONS(4463), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(5139), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(2248), 2, sym_line_comment, sym_block_comment, - [70621] = 9, + [70631] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1482), 1, - anon_sym_DOT_DOT, - ACTIONS(5039), 1, + ACTIONS(5145), 1, sym_identifier, - ACTIONS(5045), 1, - anon_sym_ref, - ACTIONS(5047), 1, - sym_mutable_specifier, - ACTIONS(5137), 1, - anon_sym_RBRACE, STATE(2249), 2, sym_line_comment, sym_block_comment, - STATE(3197), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [70651] = 9, + ACTIONS(4742), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [70653] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1482), 1, - anon_sym_DOT_DOT, - ACTIONS(5039), 1, - sym_identifier, - ACTIONS(5045), 1, - anon_sym_ref, - ACTIONS(5047), 1, - sym_mutable_specifier, - ACTIONS(5139), 1, - anon_sym_RBRACE, + ACTIONS(4684), 1, + anon_sym_COLON_COLON, + ACTIONS(5111), 1, + anon_sym_LPAREN, + ACTIONS(5113), 1, + anon_sym_LBRACK, + ACTIONS(5115), 1, + anon_sym_RBRACK, + ACTIONS(5117), 1, + anon_sym_LBRACE, + ACTIONS(5119), 1, + anon_sym_EQ, + STATE(3497), 1, + sym_delim_token_tree, STATE(2250), 2, sym_line_comment, sym_block_comment, - STATE(3197), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [70681] = 10, + [70685] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4868), 1, - anon_sym_LPAREN, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4891), 1, - anon_sym_LBRACE, - ACTIONS(5141), 1, - anon_sym_SEMI, - STATE(1255), 1, - sym_field_declaration_list, - STATE(2793), 1, - sym_ordered_field_declaration_list, - STATE(3115), 1, - sym_where_clause, + ACTIONS(1482), 1, + anon_sym_DOT_DOT, + ACTIONS(4985), 1, + sym_identifier, + ACTIONS(4991), 1, + anon_sym_ref, + ACTIONS(4993), 1, + sym_mutable_specifier, + ACTIONS(5147), 1, + anon_sym_RBRACE, STATE(2251), 2, sym_line_comment, sym_block_comment, - [70713] = 10, + STATE(3260), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [70715] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5119), 1, + ACTIONS(5101), 1, anon_sym_LPAREN, - ACTIONS(5123), 1, + ACTIONS(5103), 1, anon_sym_LBRACK, - ACTIONS(5125), 1, + ACTIONS(5107), 1, anon_sym_LBRACE, - ACTIONS(5143), 1, - anon_sym_RBRACE, - STATE(2155), 1, + ACTIONS(5149), 1, + anon_sym_RBRACK, + STATE(2158), 1, aux_sym_macro_definition_repeat1, - STATE(3151), 1, + STATE(3183), 1, sym_macro_rule, - STATE(3337), 1, + STATE(3417), 1, sym_token_tree_pattern, STATE(2252), 2, sym_line_comment, sym_block_comment, - [70745] = 10, + [70747] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5119), 1, - anon_sym_LPAREN, - ACTIONS(5123), 1, - anon_sym_LBRACK, - ACTIONS(5125), 1, + ACTIONS(4263), 1, anon_sym_LBRACE, - ACTIONS(5145), 1, - anon_sym_RBRACE, - STATE(2155), 1, - aux_sym_macro_definition_repeat1, - STATE(3155), 1, - sym_macro_rule, - STATE(3337), 1, - sym_token_tree_pattern, + ACTIONS(4449), 1, + anon_sym_LT2, + ACTIONS(5153), 1, + anon_sym_STAR, + STATE(2979), 1, + sym_use_list, + STATE(3164), 1, + sym_type_arguments, + ACTIONS(5151), 2, + sym_identifier, + sym_super, STATE(2253), 2, sym_line_comment, sym_block_comment, - [70777] = 10, + [70777] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5119), 1, - anon_sym_LPAREN, - ACTIONS(5123), 1, - anon_sym_LBRACK, - ACTIONS(5125), 1, - anon_sym_LBRACE, - ACTIONS(5147), 1, - anon_sym_RPAREN, - STATE(2155), 1, - aux_sym_macro_definition_repeat1, - STATE(3224), 1, - sym_macro_rule, - STATE(3337), 1, - sym_token_tree_pattern, + ACTIONS(1482), 1, + anon_sym_DOT_DOT, + ACTIONS(4985), 1, + sym_identifier, + ACTIONS(4991), 1, + anon_sym_ref, + ACTIONS(4993), 1, + sym_mutable_specifier, + ACTIONS(5155), 1, + anon_sym_RBRACE, STATE(2254), 2, sym_line_comment, sym_block_comment, - [70809] = 10, + STATE(3260), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [70807] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4868), 1, - anon_sym_LPAREN, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4891), 1, - anon_sym_LBRACE, - ACTIONS(5149), 1, - anon_sym_SEMI, - STATE(1368), 1, - sym_field_declaration_list, - STATE(2933), 1, - sym_ordered_field_declaration_list, - STATE(3231), 1, - sym_where_clause, + ACTIONS(1482), 1, + anon_sym_DOT_DOT, + ACTIONS(4985), 1, + sym_identifier, + ACTIONS(4991), 1, + anon_sym_ref, + ACTIONS(4993), 1, + sym_mutable_specifier, + ACTIONS(5157), 1, + anon_sym_RBRACE, STATE(2255), 2, sym_line_comment, sym_block_comment, - [70841] = 10, + STATE(3260), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [70837] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5119), 1, - anon_sym_LPAREN, - ACTIONS(5123), 1, - anon_sym_LBRACK, - ACTIONS(5125), 1, - anon_sym_LBRACE, - ACTIONS(5147), 1, - anon_sym_RBRACK, - STATE(2155), 1, - aux_sym_macro_definition_repeat1, - STATE(3245), 1, - sym_macro_rule, - STATE(3337), 1, - sym_token_tree_pattern, + ACTIONS(1482), 1, + anon_sym_DOT_DOT, + ACTIONS(4985), 1, + sym_identifier, + ACTIONS(4991), 1, + anon_sym_ref, + ACTIONS(4993), 1, + sym_mutable_specifier, + ACTIONS(5159), 1, + anon_sym_RBRACE, STATE(2256), 2, sym_line_comment, sym_block_comment, - [70873] = 8, + STATE(3260), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [70867] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4463), 1, + ACTIONS(4461), 1, anon_sym_DOT_DOT, - ACTIONS(5153), 1, + ACTIONS(5163), 1, anon_sym_COLON, - ACTIONS(5155), 1, + ACTIONS(5165), 1, anon_sym_COLON_COLON, - ACTIONS(4465), 2, + ACTIONS(4463), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(5151), 2, + ACTIONS(5161), 2, anon_sym_RPAREN, anon_sym_COMMA, STATE(2257), 2, sym_line_comment, sym_block_comment, - [70901] = 10, + [70895] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5119), 1, - anon_sym_LPAREN, - ACTIONS(5123), 1, - anon_sym_LBRACK, - ACTIONS(5125), 1, + ACTIONS(4263), 1, anon_sym_LBRACE, - ACTIONS(5157), 1, - anon_sym_RBRACE, - STATE(2155), 1, - aux_sym_macro_definition_repeat1, - STATE(3248), 1, - sym_macro_rule, - STATE(3337), 1, - sym_token_tree_pattern, + ACTIONS(4449), 1, + anon_sym_LT2, + ACTIONS(5153), 1, + anon_sym_STAR, + STATE(2979), 1, + sym_use_list, + STATE(3150), 1, + sym_type_arguments, + ACTIONS(5151), 2, + sym_identifier, + sym_super, STATE(2258), 2, sym_line_comment, sym_block_comment, - [70933] = 10, + [70925] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5119), 1, + ACTIONS(4730), 1, + anon_sym_COLON_COLON, + ACTIONS(5111), 1, anon_sym_LPAREN, - ACTIONS(5123), 1, + ACTIONS(5113), 1, anon_sym_LBRACK, - ACTIONS(5125), 1, + ACTIONS(5117), 1, anon_sym_LBRACE, - ACTIONS(5159), 1, - anon_sym_RPAREN, - STATE(2155), 1, - aux_sym_macro_definition_repeat1, - STATE(3279), 1, - sym_macro_rule, - STATE(3337), 1, - sym_token_tree_pattern, + ACTIONS(5167), 1, + anon_sym_RBRACK, + ACTIONS(5169), 1, + anon_sym_EQ, + STATE(3450), 1, + sym_delim_token_tree, STATE(2259), 2, sym_line_comment, sym_block_comment, - [70965] = 10, + [70957] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4868), 1, - anon_sym_LPAREN, - ACTIONS(4870), 1, - anon_sym_LBRACE, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(5161), 1, - anon_sym_SEMI, - STATE(677), 1, - sym_field_declaration_list, - STATE(2862), 1, - sym_ordered_field_declaration_list, - STATE(3144), 1, - sym_where_clause, + ACTIONS(5171), 1, + sym_identifier, STATE(2260), 2, sym_line_comment, sym_block_comment, - [70997] = 9, + ACTIONS(4742), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [70979] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1482), 1, + ACTIONS(4461), 1, anon_sym_DOT_DOT, - ACTIONS(5039), 1, - sym_identifier, - ACTIONS(5045), 1, - anon_sym_ref, - ACTIONS(5047), 1, - sym_mutable_specifier, - ACTIONS(5163), 1, - anon_sym_RBRACE, + ACTIONS(5165), 1, + anon_sym_COLON_COLON, + ACTIONS(4463), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(2261), 2, sym_line_comment, sym_block_comment, - STATE(3197), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [71027] = 9, + ACTIONS(3291), 3, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + [71005] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1482), 1, - anon_sym_DOT_DOT, - ACTIONS(5039), 1, - sym_identifier, - ACTIONS(5045), 1, - anon_sym_ref, - ACTIONS(5047), 1, - sym_mutable_specifier, - ACTIONS(5165), 1, - anon_sym_RBRACE, + ACTIONS(5101), 1, + anon_sym_LPAREN, + ACTIONS(5103), 1, + anon_sym_LBRACK, + ACTIONS(5107), 1, + anon_sym_LBRACE, + ACTIONS(5173), 1, + anon_sym_RPAREN, + STATE(2278), 1, + aux_sym_macro_definition_repeat1, + STATE(3222), 1, + sym_macro_rule, + STATE(3417), 1, + sym_token_tree_pattern, STATE(2262), 2, sym_line_comment, sym_block_comment, - STATE(3197), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [71057] = 10, + [71037] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5119), 1, + ACTIONS(5101), 1, anon_sym_LPAREN, - ACTIONS(5123), 1, + ACTIONS(5103), 1, anon_sym_LBRACK, - ACTIONS(5125), 1, + ACTIONS(5107), 1, anon_sym_LBRACE, - ACTIONS(5167), 1, - anon_sym_RBRACE, - STATE(2155), 1, + ACTIONS(5173), 1, + anon_sym_RBRACK, + STATE(2252), 1, aux_sym_macro_definition_repeat1, - STATE(3288), 1, + STATE(3221), 1, sym_macro_rule, - STATE(3337), 1, + STATE(3417), 1, sym_token_tree_pattern, STATE(2263), 2, sym_line_comment, sym_block_comment, - [71089] = 9, + [71069] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1482), 1, - anon_sym_DOT_DOT, - ACTIONS(5039), 1, - sym_identifier, - ACTIONS(5045), 1, - anon_sym_ref, - ACTIONS(5047), 1, - sym_mutable_specifier, - ACTIONS(5169), 1, + ACTIONS(5101), 1, + anon_sym_LPAREN, + ACTIONS(5103), 1, + anon_sym_LBRACK, + ACTIONS(5107), 1, + anon_sym_LBRACE, + ACTIONS(5175), 1, anon_sym_RBRACE, + STATE(2247), 1, + aux_sym_macro_definition_repeat1, + STATE(3204), 1, + sym_macro_rule, + STATE(3417), 1, + sym_token_tree_pattern, STATE(2264), 2, sym_line_comment, sym_block_comment, - STATE(3197), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [71119] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(1482), 1, - anon_sym_DOT_DOT, - ACTIONS(5039), 1, - sym_identifier, - ACTIONS(5045), 1, - anon_sym_ref, - ACTIONS(5047), 1, - sym_mutable_specifier, - ACTIONS(5171), 1, - anon_sym_RBRACE, - STATE(2265), 2, - sym_line_comment, - sym_block_comment, - STATE(3197), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [71149] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(5173), 1, - sym_identifier, - STATE(2266), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4724), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [71171] = 10, + [71101] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4678), 1, - anon_sym_COLON_COLON, - ACTIONS(5175), 1, + ACTIONS(5101), 1, anon_sym_LPAREN, - ACTIONS(5177), 1, + ACTIONS(5103), 1, anon_sym_LBRACK, - ACTIONS(5179), 1, - anon_sym_RBRACK, - ACTIONS(5181), 1, + ACTIONS(5107), 1, anon_sym_LBRACE, - ACTIONS(5183), 1, - anon_sym_EQ, - STATE(3490), 1, - sym_delim_token_tree, - STATE(2267), 2, + ACTIONS(5177), 1, + anon_sym_RBRACK, + STATE(2246), 1, + aux_sym_macro_definition_repeat1, + STATE(3205), 1, + sym_macro_rule, + STATE(3417), 1, + sym_token_tree_pattern, + STATE(2265), 2, sym_line_comment, sym_block_comment, - [71203] = 10, + [71133] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4694), 1, - anon_sym_COLON_COLON, - ACTIONS(5175), 1, + ACTIONS(5101), 1, anon_sym_LPAREN, - ACTIONS(5177), 1, + ACTIONS(5103), 1, anon_sym_LBRACK, - ACTIONS(5181), 1, + ACTIONS(5107), 1, anon_sym_LBRACE, - ACTIONS(5185), 1, - anon_sym_RBRACK, - ACTIONS(5187), 1, - anon_sym_EQ, - STATE(3415), 1, - sym_delim_token_tree, - STATE(2268), 2, + ACTIONS(5177), 1, + anon_sym_RPAREN, + STATE(2240), 1, + aux_sym_macro_definition_repeat1, + STATE(3206), 1, + sym_macro_rule, + STATE(3417), 1, + sym_token_tree_pattern, + STATE(2266), 2, sym_line_comment, sym_block_comment, - [71235] = 10, + [71165] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4576), 1, - anon_sym_COLON_COLON, - ACTIONS(5175), 1, + ACTIONS(4890), 1, anon_sym_LPAREN, - ACTIONS(5177), 1, - anon_sym_LBRACK, - ACTIONS(5181), 1, + ACTIONS(4892), 1, anon_sym_LBRACE, - ACTIONS(5185), 1, - anon_sym_RBRACK, - ACTIONS(5187), 1, - anon_sym_EQ, - STATE(3415), 1, - sym_delim_token_tree, - STATE(2269), 2, + ACTIONS(4896), 1, + anon_sym_where, + ACTIONS(5179), 1, + anon_sym_SEMI, + STATE(622), 1, + sym_field_declaration_list, + STATE(2753), 1, + sym_ordered_field_declaration_list, + STATE(3236), 1, + sym_where_clause, + STATE(2267), 2, sym_line_comment, sym_block_comment, - [71267] = 8, + [71197] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4868), 1, - anon_sym_LPAREN, - ACTIONS(4891), 1, - anon_sym_LBRACE, - ACTIONS(5191), 1, - anon_sym_EQ, - ACTIONS(5189), 2, + ACTIONS(1482), 1, + anon_sym_DOT_DOT, + ACTIONS(4985), 1, + sym_identifier, + ACTIONS(4991), 1, + anon_sym_ref, + ACTIONS(4993), 1, + sym_mutable_specifier, + ACTIONS(5181), 1, anon_sym_RBRACE, - anon_sym_COMMA, - STATE(2270), 2, + STATE(2268), 2, sym_line_comment, sym_block_comment, - STATE(2831), 2, - sym_field_declaration_list, - sym_ordered_field_declaration_list, - [71295] = 10, + STATE(3260), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [71227] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4668), 1, - anon_sym_COLON_COLON, - ACTIONS(5175), 1, + ACTIONS(4890), 1, anon_sym_LPAREN, - ACTIONS(5177), 1, - anon_sym_LBRACK, - ACTIONS(5181), 1, + ACTIONS(4896), 1, + anon_sym_where, + ACTIONS(4945), 1, anon_sym_LBRACE, - ACTIONS(5185), 1, - anon_sym_RBRACK, - ACTIONS(5187), 1, - anon_sym_EQ, - STATE(3415), 1, - sym_delim_token_tree, - STATE(2271), 2, + ACTIONS(5183), 1, + anon_sym_SEMI, + STATE(1331), 1, + sym_field_declaration_list, + STATE(2839), 1, + sym_ordered_field_declaration_list, + STATE(3195), 1, + sym_where_clause, + STATE(2269), 2, sym_line_comment, sym_block_comment, - [71327] = 5, + [71259] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5193), 1, - anon_sym_trait, - STATE(2272), 2, + ACTIONS(1482), 1, + anon_sym_DOT_DOT, + ACTIONS(4985), 1, + sym_identifier, + ACTIONS(4991), 1, + anon_sym_ref, + ACTIONS(4993), 1, + sym_mutable_specifier, + ACTIONS(5185), 1, + anon_sym_RBRACE, + STATE(2270), 2, sym_line_comment, sym_block_comment, - ACTIONS(3323), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [71349] = 10, + STATE(3260), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [71289] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5119), 1, + ACTIONS(5101), 1, anon_sym_LPAREN, - ACTIONS(5123), 1, + ACTIONS(5103), 1, anon_sym_LBRACK, - ACTIONS(5125), 1, + ACTIONS(5107), 1, anon_sym_LBRACE, - ACTIONS(5195), 1, - anon_sym_RPAREN, - STATE(2277), 1, + ACTIONS(5187), 1, + anon_sym_RBRACE, + STATE(2239), 1, aux_sym_macro_definition_repeat1, - STATE(3222), 1, + STATE(3209), 1, sym_macro_rule, - STATE(3337), 1, + STATE(3417), 1, sym_token_tree_pattern, - STATE(2273), 2, + STATE(2271), 2, sym_line_comment, sym_block_comment, - [71381] = 10, + [71321] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5119), 1, + ACTIONS(5101), 1, anon_sym_LPAREN, - ACTIONS(5123), 1, + ACTIONS(5103), 1, anon_sym_LBRACK, - ACTIONS(5125), 1, + ACTIONS(5107), 1, anon_sym_LBRACE, - ACTIONS(5195), 1, + ACTIONS(5189), 1, anon_sym_RBRACK, - STATE(2278), 1, + STATE(2237), 1, aux_sym_macro_definition_repeat1, - STATE(3223), 1, + STATE(3210), 1, sym_macro_rule, - STATE(3337), 1, + STATE(3417), 1, sym_token_tree_pattern, - STATE(2274), 2, + STATE(2272), 2, sym_line_comment, sym_block_comment, - [71413] = 10, + [71353] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5119), 1, + ACTIONS(5101), 1, anon_sym_LPAREN, - ACTIONS(5123), 1, + ACTIONS(5103), 1, anon_sym_LBRACK, - ACTIONS(5125), 1, + ACTIONS(5107), 1, anon_sym_LBRACE, - ACTIONS(5197), 1, + ACTIONS(5189), 1, anon_sym_RPAREN, - STATE(2279), 1, + STATE(2236), 1, aux_sym_macro_definition_repeat1, - STATE(3225), 1, + STATE(3214), 1, sym_macro_rule, - STATE(3337), 1, + STATE(3417), 1, sym_token_tree_pattern, - STATE(2275), 2, + STATE(2273), 2, sym_line_comment, sym_block_comment, - [71445] = 10, + [71385] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5119), 1, + ACTIONS(5101), 1, anon_sym_LPAREN, - ACTIONS(5123), 1, + ACTIONS(5103), 1, anon_sym_LBRACK, - ACTIONS(5125), 1, + ACTIONS(5107), 1, anon_sym_LBRACE, - ACTIONS(5197), 1, - anon_sym_RBRACK, - STATE(2280), 1, + ACTIONS(5191), 1, + anon_sym_RPAREN, + STATE(2158), 1, aux_sym_macro_definition_repeat1, - STATE(3226), 1, + STATE(3196), 1, sym_macro_rule, - STATE(3337), 1, + STATE(3417), 1, sym_token_tree_pattern, - STATE(2276), 2, + STATE(2274), 2, sym_line_comment, sym_block_comment, - [71477] = 10, + [71417] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5119), 1, + ACTIONS(5101), 1, anon_sym_LPAREN, - ACTIONS(5123), 1, + ACTIONS(5103), 1, anon_sym_LBRACK, - ACTIONS(5125), 1, + ACTIONS(5107), 1, anon_sym_LBRACE, - ACTIONS(5199), 1, - anon_sym_RPAREN, - STATE(2155), 1, + ACTIONS(5191), 1, + anon_sym_RBRACK, + STATE(2158), 1, aux_sym_macro_definition_repeat1, - STATE(3241), 1, + STATE(3189), 1, sym_macro_rule, - STATE(3337), 1, + STATE(3417), 1, sym_token_tree_pattern, - STATE(2277), 2, + STATE(2275), 2, sym_line_comment, sym_block_comment, - [71509] = 10, + [71449] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5119), 1, - anon_sym_LPAREN, - ACTIONS(5123), 1, - anon_sym_LBRACK, - ACTIONS(5125), 1, - anon_sym_LBRACE, - ACTIONS(5199), 1, - anon_sym_RBRACK, - STATE(2155), 1, - aux_sym_macro_definition_repeat1, - STATE(3242), 1, - sym_macro_rule, - STATE(3337), 1, - sym_token_tree_pattern, - STATE(2278), 2, + ACTIONS(1482), 1, + anon_sym_DOT_DOT, + ACTIONS(4985), 1, + sym_identifier, + ACTIONS(4991), 1, + anon_sym_ref, + ACTIONS(4993), 1, + sym_mutable_specifier, + ACTIONS(5193), 1, + anon_sym_RBRACE, + STATE(2276), 2, sym_line_comment, sym_block_comment, - [71541] = 10, + STATE(3260), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [71479] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5119), 1, - anon_sym_LPAREN, - ACTIONS(5123), 1, - anon_sym_LBRACK, - ACTIONS(5125), 1, - anon_sym_LBRACE, - ACTIONS(5201), 1, - anon_sym_RPAREN, - STATE(2155), 1, - aux_sym_macro_definition_repeat1, - STATE(3243), 1, - sym_macro_rule, - STATE(3337), 1, - sym_token_tree_pattern, - STATE(2279), 2, + ACTIONS(1482), 1, + anon_sym_DOT_DOT, + ACTIONS(4985), 1, + sym_identifier, + ACTIONS(4991), 1, + anon_sym_ref, + ACTIONS(4993), 1, + sym_mutable_specifier, + ACTIONS(5195), 1, + anon_sym_RBRACE, + STATE(2277), 2, sym_line_comment, sym_block_comment, - [71573] = 10, + STATE(3260), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [71509] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5119), 1, + ACTIONS(5101), 1, anon_sym_LPAREN, - ACTIONS(5123), 1, + ACTIONS(5103), 1, anon_sym_LBRACK, - ACTIONS(5125), 1, + ACTIONS(5107), 1, anon_sym_LBRACE, - ACTIONS(5201), 1, - anon_sym_RBRACK, - STATE(2155), 1, + ACTIONS(5149), 1, + anon_sym_RPAREN, + STATE(2158), 1, aux_sym_macro_definition_repeat1, - STATE(3244), 1, + STATE(3187), 1, sym_macro_rule, - STATE(3337), 1, + STATE(3417), 1, sym_token_tree_pattern, - STATE(2280), 2, + STATE(2278), 2, sym_line_comment, sym_block_comment, - [71605] = 8, + [71541] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4463), 1, + ACTIONS(4461), 1, anon_sym_DOT_DOT, - ACTIONS(5205), 1, + ACTIONS(5163), 1, anon_sym_COLON, - ACTIONS(5207), 1, + ACTIONS(5197), 1, anon_sym_COLON_COLON, - ACTIONS(4465), 2, + ACTIONS(4463), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(5203), 2, + ACTIONS(5161), 2, anon_sym_RPAREN, anon_sym_COMMA, - STATE(2281), 2, + STATE(2279), 2, sym_line_comment, sym_block_comment, - [71633] = 7, + [71569] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4463), 1, + ACTIONS(4461), 1, anon_sym_DOT_DOT, - ACTIONS(5207), 1, + ACTIONS(5197), 1, anon_sym_COLON_COLON, - ACTIONS(4465), 2, + ACTIONS(4463), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2282), 2, + STATE(2280), 2, sym_line_comment, sym_block_comment, - ACTIONS(3299), 3, + ACTIONS(3291), 3, anon_sym_RPAREN, anon_sym_PLUS, anon_sym_COMMA, - [71659] = 5, + [71595] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5209), 1, - sym_identifier, + ACTIONS(5101), 1, + anon_sym_LPAREN, + ACTIONS(5103), 1, + anon_sym_LBRACK, + ACTIONS(5107), 1, + anon_sym_LBRACE, + ACTIONS(5199), 1, + anon_sym_RBRACE, + STATE(2282), 1, + aux_sym_macro_definition_repeat1, + STATE(3274), 1, + sym_macro_rule, + STATE(3417), 1, + sym_token_tree_pattern, + STATE(2281), 2, + sym_line_comment, + sym_block_comment, + [71627] = 10, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(5101), 1, + anon_sym_LPAREN, + ACTIONS(5103), 1, + anon_sym_LBRACK, + ACTIONS(5107), 1, + anon_sym_LBRACE, + ACTIONS(5201), 1, + anon_sym_RBRACE, + STATE(2158), 1, + aux_sym_macro_definition_repeat1, + STATE(3159), 1, + sym_macro_rule, + STATE(3417), 1, + sym_token_tree_pattern, + STATE(2282), 2, + sym_line_comment, + sym_block_comment, + [71659] = 10, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(5101), 1, + anon_sym_LPAREN, + ACTIONS(5103), 1, + anon_sym_LBRACK, + ACTIONS(5107), 1, + anon_sym_LBRACE, + ACTIONS(5203), 1, + anon_sym_RBRACE, + STATE(2233), 1, + aux_sym_macro_definition_repeat1, + STATE(3279), 1, + sym_macro_rule, + STATE(3417), 1, + sym_token_tree_pattern, STATE(2283), 2, sym_line_comment, sym_block_comment, - ACTIONS(4724), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [71681] = 8, + [71691] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4463), 1, - anon_sym_DOT_DOT, ACTIONS(5205), 1, - anon_sym_COLON, - ACTIONS(5211), 1, - anon_sym_COLON_COLON, - ACTIONS(4465), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(5203), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + anon_sym_trait, STATE(2284), 2, sym_line_comment, sym_block_comment, - [71709] = 7, + ACTIONS(3334), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [71713] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4463), 1, - anon_sym_DOT_DOT, - ACTIONS(5211), 1, - anon_sym_COLON_COLON, - ACTIONS(4465), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(5207), 1, + sym_identifier, STATE(2285), 2, sym_line_comment, sym_block_comment, - ACTIONS(3299), 3, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, + ACTIONS(4742), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, [71735] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5213), 1, + ACTIONS(5209), 1, aux_sym_line_comment_token1, - ACTIONS(5215), 1, + ACTIONS(5211), 1, aux_sym_line_comment_token3, - ACTIONS(5217), 1, + ACTIONS(5213), 1, anon_sym_BANG2, - ACTIONS(5219), 1, + ACTIONS(5215), 1, anon_sym_SLASH2, - STATE(3319), 1, + STATE(3525), 1, + sym__outer_line_doc_comment_marker, + STATE(3542), 1, sym__inner_line_doc_comment_marker, - STATE(3333), 1, + STATE(3545), 1, sym__line_doc_comment_marker, - STATE(3341), 1, - sym__outer_line_doc_comment_marker, STATE(2286), 2, sym_line_comment, sym_block_comment, - [71767] = 5, + [71767] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5221), 1, - anon_sym_trait, + ACTIONS(4461), 1, + anon_sym_DOT_DOT, + ACTIONS(5217), 1, + anon_sym_COLON_COLON, + ACTIONS(4463), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(2287), 2, sym_line_comment, sym_block_comment, - ACTIONS(3323), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [71789] = 5, + ACTIONS(3291), 3, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS, + [71793] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5223), 1, - sym_identifier, + ACTIONS(5219), 1, + anon_sym_trait, STATE(2288), 2, sym_line_comment, sym_block_comment, - ACTIONS(4724), 6, + ACTIONS(3334), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [71811] = 10, + [71815] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5119), 1, + ACTIONS(4890), 1, anon_sym_LPAREN, - ACTIONS(5123), 1, - anon_sym_LBRACK, - ACTIONS(5125), 1, + ACTIONS(4945), 1, anon_sym_LBRACE, - ACTIONS(5159), 1, - anon_sym_RBRACK, - STATE(2155), 1, - aux_sym_macro_definition_repeat1, - STATE(3284), 1, - sym_macro_rule, - STATE(3337), 1, - sym_token_tree_pattern, + ACTIONS(5223), 1, + anon_sym_EQ, + ACTIONS(5221), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(2289), 2, sym_line_comment, sym_block_comment, - [71843] = 9, + STATE(2853), 2, + sym_field_declaration_list, + sym_ordered_field_declaration_list, + [71843] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4915), 1, - anon_sym_LBRACE, - ACTIONS(4989), 1, - anon_sym_PLUS, + ACTIONS(4554), 1, + anon_sym_COLON_COLON, ACTIONS(5225), 1, - anon_sym_SEMI, - STATE(1401), 1, - sym_declaration_list, - STATE(2969), 1, - sym_where_clause, + anon_sym_GT, + ACTIONS(5227), 1, + anon_sym_COMMA, + STATE(2999), 1, + aux_sym_type_parameters_repeat1, + ACTIONS(3291), 2, + anon_sym_PLUS, + anon_sym_as, STATE(2290), 2, sym_line_comment, sym_block_comment, - [71872] = 9, + [71870] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4915), 1, - anon_sym_LBRACE, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5227), 1, - anon_sym_SEMI, - STATE(1242), 1, - sym_declaration_list, - STATE(2781), 1, - sym_where_clause, + ACTIONS(4533), 1, + anon_sym_COLON_COLON, + ACTIONS(4901), 1, + anon_sym_for, STATE(2291), 2, sym_line_comment, sym_block_comment, - [71901] = 5, + ACTIONS(3291), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [71893] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4760), 2, - anon_sym_COLON, - anon_sym_PIPE, + ACTIONS(4884), 1, + anon_sym_LBRACE, + ACTIONS(4896), 1, + anon_sym_where, + ACTIONS(4983), 1, + anon_sym_PLUS, + ACTIONS(5229), 1, + anon_sym_SEMI, + STATE(1228), 1, + sym_declaration_list, + STATE(3016), 1, + sym_where_clause, STATE(2292), 2, sym_line_comment, sym_block_comment, - ACTIONS(3370), 4, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH_GT, [71922] = 9, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4915), 1, - anon_sym_LBRACE, - ACTIONS(4971), 1, - anon_sym_COLON, - STATE(1259), 1, - sym_declaration_list, - STATE(2540), 1, - sym_trait_bounds, - STATE(3117), 1, - sym_where_clause, + ACTIONS(5231), 1, + sym_identifier, + ACTIONS(5233), 1, + anon_sym_ref, + ACTIONS(5235), 1, + sym_mutable_specifier, + ACTIONS(5237), 1, + anon_sym_move, + STATE(225), 1, + sym_closure_parameters, STATE(2293), 2, sym_line_comment, sym_block_comment, - [71951] = 9, + [71951] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4971), 1, - anon_sym_COLON, - ACTIONS(5229), 1, - anon_sym_SEMI, - ACTIONS(5231), 1, - anon_sym_EQ, - STATE(2801), 1, - sym_trait_bounds, - STATE(3359), 1, - sym_where_clause, + ACTIONS(4533), 1, + anon_sym_COLON_COLON, + ACTIONS(4953), 1, + anon_sym_for, STATE(2294), 2, sym_line_comment, sym_block_comment, - [71980] = 9, + ACTIONS(3291), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [71974] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4915), 1, - anon_sym_LBRACE, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5233), 1, - anon_sym_SEMI, - STATE(1270), 1, - sym_declaration_list, - STATE(2811), 1, - sym_where_clause, + ACTIONS(933), 1, + anon_sym_DOT_DOT, STATE(2295), 2, sym_line_comment, sym_block_comment, - [72009] = 9, + ACTIONS(935), 5, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_if, + [71995] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4872), 1, - anon_sym_LT, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(5235), 1, + ACTIONS(4878), 1, anon_sym_LBRACE, - STATE(1279), 1, - sym_enum_variant_list, - STATE(2543), 1, - sym_type_parameters, - STATE(3129), 1, + ACTIONS(4896), 1, + anon_sym_where, + ACTIONS(4983), 1, + anon_sym_PLUS, + ACTIONS(5239), 1, + anon_sym_SEMI, + STATE(581), 1, + sym_declaration_list, + STATE(2774), 1, sym_where_clause, STATE(2296), 2, sym_line_comment, sym_block_comment, - [72038] = 9, + [72024] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4872), 1, - anon_sym_LT, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4891), 1, + ACTIONS(4884), 1, anon_sym_LBRACE, - STATE(1284), 1, - sym_field_declaration_list, - STATE(2545), 1, - sym_type_parameters, - STATE(3137), 1, + ACTIONS(4896), 1, + anon_sym_where, + ACTIONS(4983), 1, + anon_sym_PLUS, + ACTIONS(5241), 1, + anon_sym_SEMI, + STATE(1218), 1, + sym_declaration_list, + STATE(3017), 1, sym_where_clause, STATE(2297), 2, sym_line_comment, sym_block_comment, - [72067] = 9, + [72053] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4584), 1, - anon_sym_EQ, - ACTIONS(4971), 1, - anon_sym_COLON, - ACTIONS(5237), 1, - anon_sym_GT, - ACTIONS(5239), 1, - anon_sym_COMMA, - STATE(2746), 1, - sym_trait_bounds, - STATE(2869), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(4884), 1, + anon_sym_LBRACE, + ACTIONS(4896), 1, + anon_sym_where, + ACTIONS(4983), 1, + anon_sym_PLUS, + ACTIONS(5243), 1, + anon_sym_SEMI, + STATE(1211), 1, + sym_declaration_list, + STATE(3019), 1, + sym_where_clause, STATE(2298), 2, sym_line_comment, sym_block_comment, - [72096] = 5, + [72082] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4598), 1, - anon_sym_DOT_DOT, + ACTIONS(4884), 1, + anon_sym_LBRACE, + ACTIONS(4896), 1, + anon_sym_where, + ACTIONS(4983), 1, + anon_sym_PLUS, + ACTIONS(5245), 1, + anon_sym_SEMI, + STATE(1201), 1, + sym_declaration_list, + STATE(3020), 1, + sym_where_clause, STATE(2299), 2, sym_line_comment, sym_block_comment, - ACTIONS(4596), 5, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_if, - [72117] = 9, + [72111] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, + ACTIONS(4824), 2, anon_sym_COLON, - ACTIONS(5241), 1, - anon_sym_PLUS, - ACTIONS(5243), 1, - anon_sym_GT, - ACTIONS(5245), 1, - anon_sym_COMMA, - STATE(2853), 1, - sym_trait_bounds, - STATE(2854), 1, - aux_sym_type_arguments_repeat1, + anon_sym_PIPE, STATE(2300), 2, sym_line_comment, sym_block_comment, - [72146] = 9, + ACTIONS(3340), 4, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH_GT, + [72132] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3051), 1, - anon_sym_PLUS, - ACTIONS(4971), 1, - anon_sym_COLON, - ACTIONS(5243), 1, - anon_sym_GT, - ACTIONS(5245), 1, - anon_sym_COMMA, - STATE(2853), 1, - sym_trait_bounds, - STATE(2854), 1, - aux_sym_type_arguments_repeat1, STATE(2301), 2, sym_line_comment, sym_block_comment, - [72175] = 6, + ACTIONS(4931), 6, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + [72151] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(4884), 1, + anon_sym_LBRACE, + ACTIONS(4896), 1, + anon_sym_where, + ACTIONS(4983), 1, + anon_sym_PLUS, ACTIONS(5247), 1, - anon_sym_RBRACK, - ACTIONS(4760), 2, - anon_sym_PIPE, - anon_sym_COMMA, + anon_sym_SEMI, + STATE(1213), 1, + sym_declaration_list, + STATE(2980), 1, + sym_where_clause, STATE(2302), 2, sym_line_comment, sym_block_comment, - ACTIONS(3370), 3, - anon_sym_SEMI, - anon_sym_PLUS, - anon_sym_DASH_GT, - [72198] = 9, + [72180] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4584), 1, - anon_sym_EQ, - ACTIONS(4971), 1, - anon_sym_COLON, - ACTIONS(5250), 1, - anon_sym_GT, - ACTIONS(5252), 1, - anon_sym_COMMA, - STATE(2746), 1, - sym_trait_bounds, - STATE(2772), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(4533), 1, + anon_sym_COLON_COLON, + ACTIONS(4868), 1, + anon_sym_for, STATE(2303), 2, sym_line_comment, sym_block_comment, - [72227] = 7, + ACTIONS(3291), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [72203] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4463), 1, + ACTIONS(1482), 1, anon_sym_DOT_DOT, - ACTIONS(5211), 1, - anon_sym_COLON_COLON, - ACTIONS(4465), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(5151), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(4985), 1, + sym_identifier, + ACTIONS(4991), 1, + anon_sym_ref, + ACTIONS(4993), 1, + sym_mutable_specifier, STATE(2304), 2, sym_line_comment, sym_block_comment, - [72252] = 8, + STATE(3260), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [72230] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, + ACTIONS(4884), 1, anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(5254), 1, - anon_sym_if, - STATE(3539), 1, - sym_label, - STATE(1321), 2, - sym_if_expression, - sym_block, + ACTIONS(4896), 1, + anon_sym_where, + ACTIONS(4973), 1, + anon_sym_COLON, + STATE(1375), 1, + sym_declaration_list, + STATE(2505), 1, + sym_trait_bounds, + STATE(3066), 1, + sym_where_clause, STATE(2305), 2, sym_line_comment, sym_block_comment, - [72279] = 9, + [72259] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4584), 1, - anon_sym_EQ, - ACTIONS(4971), 1, + ACTIONS(3464), 1, anon_sym_COLON, - ACTIONS(5256), 1, - anon_sym_GT, - ACTIONS(5258), 1, - anon_sym_COMMA, - STATE(2746), 1, - sym_trait_bounds, - STATE(2890), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(5249), 1, + anon_sym_EQ, STATE(2306), 2, sym_line_comment, sym_block_comment, - [72308] = 9, + ACTIONS(3462), 4, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_COLON_COLON, + [72282] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4915), 1, - anon_sym_LBRACE, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5260), 1, - anon_sym_SEMI, - STATE(1328), 1, - sym_declaration_list, - STATE(2892), 1, - sym_where_clause, + ACTIONS(4533), 1, + anon_sym_COLON_COLON, + ACTIONS(4872), 1, + anon_sym_for, STATE(2307), 2, sym_line_comment, sym_block_comment, - [72337] = 9, + ACTIONS(3291), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [72305] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4915), 1, + ACTIONS(4884), 1, anon_sym_LBRACE, - ACTIONS(4989), 1, + ACTIONS(4896), 1, + anon_sym_where, + ACTIONS(4983), 1, anon_sym_PLUS, - ACTIONS(5262), 1, + ACTIONS(5251), 1, anon_sym_SEMI, - STATE(1332), 1, + STATE(1245), 1, sym_declaration_list, - STATE(2901), 1, + STATE(2981), 1, sym_where_clause, STATE(2308), 2, sym_line_comment, sym_block_comment, - [72366] = 9, + [72334] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(4533), 1, + anon_sym_COLON_COLON, ACTIONS(4874), 1, + anon_sym_for, + STATE(2309), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3291), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_where, - ACTIONS(4915), 1, + [72357] = 9, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(4884), 1, anon_sym_LBRACE, - ACTIONS(4989), 1, + ACTIONS(4896), 1, + anon_sym_where, + ACTIONS(4983), 1, anon_sym_PLUS, - ACTIONS(5264), 1, + ACTIONS(5253), 1, anon_sym_SEMI, - STATE(1351), 1, + STATE(1307), 1, sym_declaration_list, - STATE(2921), 1, + STATE(2986), 1, sym_where_clause, - STATE(2309), 2, + STATE(2310), 2, sym_line_comment, sym_block_comment, - [72395] = 9, + [72386] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4915), 1, + ACTIONS(4884), 1, anon_sym_LBRACE, - ACTIONS(4971), 1, - anon_sym_COLON, - STATE(1357), 1, + ACTIONS(4896), 1, + anon_sym_where, + ACTIONS(4983), 1, + anon_sym_PLUS, + ACTIONS(5255), 1, + anon_sym_SEMI, + STATE(1339), 1, sym_declaration_list, - STATE(2559), 1, - sym_trait_bounds, - STATE(3220), 1, + STATE(2987), 1, sym_where_clause, - STATE(2310), 2, + STATE(2311), 2, sym_line_comment, sym_block_comment, - [72424] = 6, + [72415] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5266), 1, - anon_sym_RBRACK, - ACTIONS(4816), 2, + ACTIONS(4798), 2, + anon_sym_COLON, anon_sym_PIPE, - anon_sym_COMMA, - STATE(2311), 2, + STATE(2312), 2, sym_line_comment, sym_block_comment, - ACTIONS(3418), 3, - anon_sym_SEMI, + ACTIONS(3336), 4, + anon_sym_RPAREN, anon_sym_PLUS, + anon_sym_COMMA, anon_sym_DASH_GT, - [72447] = 9, + [72436] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, ACTIONS(4878), 1, anon_sym_LBRACE, - ACTIONS(4989), 1, + ACTIONS(4896), 1, + anon_sym_where, + ACTIONS(4983), 1, anon_sym_PLUS, - ACTIONS(5269), 1, + ACTIONS(5257), 1, anon_sym_SEMI, - STATE(713), 1, + STATE(504), 1, sym_declaration_list, - STATE(2876), 1, + STATE(2881), 1, sym_where_clause, - STATE(2312), 2, + STATE(2313), 2, sym_line_comment, sym_block_comment, - [72476] = 9, + [72465] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4878), 1, + ACTIONS(4884), 1, anon_sym_LBRACE, - ACTIONS(4971), 1, - anon_sym_COLON, - STATE(680), 1, + ACTIONS(4896), 1, + anon_sym_where, + ACTIONS(4983), 1, + anon_sym_PLUS, + ACTIONS(5259), 1, + anon_sym_SEMI, + STATE(1130), 1, sym_declaration_list, - STATE(2683), 1, - sym_trait_bounds, - STATE(3218), 1, + STATE(3024), 1, sym_where_clause, - STATE(2313), 2, + STATE(2314), 2, sym_line_comment, sym_block_comment, - [72505] = 9, + [72494] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, ACTIONS(4878), 1, anon_sym_LBRACE, - ACTIONS(4989), 1, + ACTIONS(4896), 1, + anon_sym_where, + ACTIONS(4983), 1, anon_sym_PLUS, - ACTIONS(5271), 1, + ACTIONS(5261), 1, anon_sym_SEMI, - STATE(533), 1, + STATE(510), 1, sym_declaration_list, - STATE(3003), 1, + STATE(2879), 1, sym_where_clause, - STATE(2314), 2, - sym_line_comment, - sym_block_comment, - [72534] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4622), 1, - anon_sym_DOT_DOT, STATE(2315), 2, sym_line_comment, sym_block_comment, - ACTIONS(4620), 5, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_if, - [72555] = 9, + [72523] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, ACTIONS(4878), 1, anon_sym_LBRACE, - ACTIONS(4989), 1, + ACTIONS(4896), 1, + anon_sym_where, + ACTIONS(4983), 1, anon_sym_PLUS, - ACTIONS(5273), 1, + ACTIONS(5263), 1, anon_sym_SEMI, - STATE(550), 1, + STATE(512), 1, sym_declaration_list, - STATE(2838), 1, + STATE(2873), 1, sym_where_clause, STATE(2316), 2, sym_line_comment, sym_block_comment, - [72584] = 9, + [72552] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4878), 1, + ACTIONS(4533), 1, + anon_sym_COLON_COLON, + ACTIONS(4903), 1, + anon_sym_for, + STATE(2317), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3291), 4, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(4989), 1, anon_sym_PLUS, - ACTIONS(5275), 1, - anon_sym_SEMI, - STATE(687), 1, - sym_declaration_list, - STATE(2767), 1, - sym_where_clause, - STATE(2317), 2, + anon_sym_where, + [72575] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(937), 1, + anon_sym_DOT_DOT, + STATE(2318), 2, sym_line_comment, sym_block_comment, - [72613] = 9, + ACTIONS(939), 5, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_if, + [72596] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, ACTIONS(4878), 1, anon_sym_LBRACE, - ACTIONS(4989), 1, + ACTIONS(4896), 1, + anon_sym_where, + ACTIONS(4983), 1, anon_sym_PLUS, - ACTIONS(5277), 1, + ACTIONS(5265), 1, anon_sym_SEMI, - STATE(552), 1, + STATE(518), 1, sym_declaration_list, - STATE(2840), 1, + STATE(2871), 1, sym_where_clause, - STATE(2318), 2, + STATE(2319), 2, sym_line_comment, sym_block_comment, - [72642] = 6, + [72625] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4537), 1, - anon_sym_COLON_COLON, - ACTIONS(4887), 1, - anon_sym_for, - STATE(2319), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3299), 4, - anon_sym_SEMI, + ACTIONS(4884), 1, anon_sym_LBRACE, - anon_sym_PLUS, + ACTIONS(4896), 1, anon_sym_where, - [72665] = 4, + ACTIONS(4983), 1, + anon_sym_PLUS, + ACTIONS(5267), 1, + anon_sym_SEMI, + STATE(1116), 1, + sym_declaration_list, + STATE(3023), 1, + sym_where_clause, + STATE(2320), 2, + sym_line_comment, + sym_block_comment, + [72654] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2320), 2, + STATE(2321), 2, sym_line_comment, sym_block_comment, - ACTIONS(3323), 6, + ACTIONS(3334), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [72684] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4915), 1, - anon_sym_LBRACE, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5279), 1, - anon_sym_SEMI, - STATE(1399), 1, - sym_declaration_list, - STATE(2967), 1, - sym_where_clause, - STATE(2321), 2, - sym_line_comment, - sym_block_comment, - [72713] = 9, + [72673] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4872), 1, + ACTIONS(4894), 1, anon_sym_LT, - ACTIONS(4874), 1, + ACTIONS(4896), 1, anon_sym_where, - ACTIONS(5281), 1, + ACTIONS(5269), 1, anon_sym_LBRACE, - STATE(503), 1, + STATE(601), 1, sym_enum_variant_list, - STATE(2647), 1, + STATE(2715), 1, sym_type_parameters, - STATE(3154), 1, + STATE(3267), 1, sym_where_clause, STATE(2322), 2, sym_line_comment, sym_block_comment, - [72742] = 9, + [72702] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4915), 1, + ACTIONS(4878), 1, anon_sym_LBRACE, - ACTIONS(4989), 1, + ACTIONS(4896), 1, + anon_sym_where, + ACTIONS(4983), 1, anon_sym_PLUS, - ACTIONS(5283), 1, + ACTIONS(5271), 1, anon_sym_SEMI, - STATE(1405), 1, + STATE(516), 1, sym_declaration_list, - STATE(2980), 1, + STATE(2819), 1, sym_where_clause, STATE(2323), 2, sym_line_comment, sym_block_comment, - [72771] = 9, + [72731] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4915), 1, - anon_sym_LBRACE, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5285), 1, - anon_sym_SEMI, - STATE(1407), 1, - sym_declaration_list, - STATE(2982), 1, - sym_where_clause, + ACTIONS(4461), 1, + anon_sym_DOT_DOT, + ACTIONS(5197), 1, + anon_sym_COLON_COLON, + ACTIONS(4463), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(5273), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(2324), 2, sym_line_comment, sym_block_comment, - [72800] = 9, + [72756] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4915), 1, + ACTIONS(4878), 1, anon_sym_LBRACE, - ACTIONS(4971), 1, - anon_sym_COLON, - STATE(1442), 1, + ACTIONS(4896), 1, + anon_sym_where, + ACTIONS(4983), 1, + anon_sym_PLUS, + ACTIONS(5275), 1, + anon_sym_SEMI, + STATE(529), 1, sym_declaration_list, - STATE(2571), 1, - sym_trait_bounds, - STATE(3275), 1, + STATE(2822), 1, sym_where_clause, STATE(2325), 2, sym_line_comment, sym_block_comment, - [72829] = 9, + [72785] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, - anon_sym_COLON, - ACTIONS(5287), 1, - anon_sym_GT, - ACTIONS(5289), 1, - anon_sym_COMMA, - STATE(2786), 1, - aux_sym_type_parameters_repeat1, - STATE(2888), 1, - sym_trait_bounds, - STATE(2941), 1, - aux_sym_for_lifetimes_repeat1, + ACTIONS(4878), 1, + anon_sym_LBRACE, + ACTIONS(4896), 1, + anon_sym_where, + ACTIONS(4983), 1, + anon_sym_PLUS, + ACTIONS(5277), 1, + anon_sym_SEMI, + STATE(547), 1, + sym_declaration_list, + STATE(2736), 1, + sym_where_clause, STATE(2326), 2, sym_line_comment, sym_block_comment, - [72858] = 9, + [72814] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4878), 1, - anon_sym_LBRACE, - ACTIONS(4971), 1, + ACTIONS(4580), 1, + anon_sym_EQ, + ACTIONS(4973), 1, anon_sym_COLON, - STATE(741), 1, - sym_declaration_list, - STATE(2577), 1, + ACTIONS(5279), 1, + anon_sym_GT, + ACTIONS(5281), 1, + anon_sym_COMMA, + STATE(2825), 1, + aux_sym_type_parameters_repeat1, + STATE(2990), 1, sym_trait_bounds, - STATE(3276), 1, - sym_where_clause, STATE(2327), 2, sym_line_comment, sym_block_comment, - [72887] = 9, + [72843] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4878), 1, - anon_sym_LBRACE, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5291), 1, - anon_sym_SEMI, - STATE(736), 1, - sym_declaration_list, - STATE(2825), 1, - sym_where_clause, + ACTIONS(4533), 1, + anon_sym_COLON_COLON, + ACTIONS(4939), 1, + anon_sym_for, STATE(2328), 2, sym_line_comment, sym_block_comment, - [72916] = 9, + ACTIONS(3291), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [72866] = 8, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4872), 1, - anon_sym_LT, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(5281), 1, - anon_sym_LBRACE, - STATE(693), 1, - sym_enum_variant_list, - STATE(2536), 1, - sym_type_parameters, - STATE(3255), 1, - sym_where_clause, + ACTIONS(3446), 1, + anon_sym_SQUOTE, + ACTIONS(5283), 1, + anon_sym_if, + STATE(3457), 1, + sym_label, + STATE(394), 2, + sym_if_expression, + sym_block, STATE(2329), 2, sym_line_comment, sym_block_comment, - [72945] = 9, + [72893] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, + ACTIONS(4894), 1, + anon_sym_LT, + ACTIONS(4896), 1, anon_sym_where, - ACTIONS(4915), 1, + ACTIONS(5285), 1, anon_sym_LBRACE, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5293), 1, - anon_sym_SEMI, - STATE(1467), 1, - sym_declaration_list, - STATE(3023), 1, + STATE(1469), 1, + sym_enum_variant_list, + STATE(2716), 1, + sym_type_parameters, + STATE(3265), 1, sym_where_clause, STATE(2330), 2, sym_line_comment, sym_block_comment, - [72974] = 9, + [72922] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4915), 1, + ACTIONS(4884), 1, anon_sym_LBRACE, - ACTIONS(4989), 1, + ACTIONS(4896), 1, + anon_sym_where, + ACTIONS(4983), 1, anon_sym_PLUS, - ACTIONS(5295), 1, + ACTIONS(5287), 1, anon_sym_SEMI, - STATE(1469), 1, + STATE(1459), 1, sym_declaration_list, - STATE(3024), 1, + STATE(2741), 1, sym_where_clause, STATE(2331), 2, sym_line_comment, sym_block_comment, - [73003] = 9, + [72951] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, + ACTIONS(4894), 1, + anon_sym_LT, + ACTIONS(4896), 1, anon_sym_where, - ACTIONS(4915), 1, + ACTIONS(4945), 1, anon_sym_LBRACE, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5297), 1, - anon_sym_SEMI, - STATE(1104), 1, - sym_declaration_list, - STATE(2732), 1, + STATE(1447), 1, + sym_field_declaration_list, + STATE(2727), 1, + sym_type_parameters, + STATE(3309), 1, sym_where_clause, STATE(2332), 2, sym_line_comment, sym_block_comment, - [73032] = 9, + [72980] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4915), 1, + ACTIONS(4892), 1, anon_sym_LBRACE, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5299), 1, - anon_sym_SEMI, - STATE(1106), 1, - sym_declaration_list, - STATE(2733), 1, + ACTIONS(4894), 1, + anon_sym_LT, + ACTIONS(4896), 1, + anon_sym_where, + STATE(492), 1, + sym_field_declaration_list, + STATE(2495), 1, + sym_type_parameters, + STATE(3278), 1, sym_where_clause, STATE(2333), 2, sym_line_comment, sym_block_comment, - [73061] = 9, + [73009] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4915), 1, - anon_sym_LBRACE, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5301), 1, - anon_sym_SEMI, - STATE(1108), 1, - sym_declaration_list, - STATE(2736), 1, - sym_where_clause, + ACTIONS(4461), 1, + anon_sym_DOT_DOT, + ACTIONS(5197), 1, + anon_sym_COLON_COLON, + ACTIONS(4463), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(5139), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(2334), 2, sym_line_comment, sym_block_comment, - [73090] = 9, + [73034] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4915), 1, - anon_sym_LBRACE, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5303), 1, - anon_sym_SEMI, - STATE(1110), 1, - sym_declaration_list, - STATE(2737), 1, - sym_where_clause, + ACTIONS(4580), 1, + anon_sym_EQ, + ACTIONS(4582), 1, + anon_sym_GT, + ACTIONS(4584), 1, + anon_sym_COMMA, + ACTIONS(4973), 1, + anon_sym_COLON, + STATE(2990), 1, + sym_trait_bounds, + STATE(2996), 1, + aux_sym_type_parameters_repeat1, STATE(2335), 2, sym_line_comment, sym_block_comment, - [73119] = 6, + [73063] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3370), 2, + ACTIONS(4878), 1, + anon_sym_LBRACE, + ACTIONS(4896), 1, + anon_sym_where, + ACTIONS(4983), 1, anon_sym_PLUS, - anon_sym_DASH_GT, - ACTIONS(4760), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(5247), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(5289), 1, + anon_sym_SEMI, + STATE(564), 1, + sym_declaration_list, + STATE(2861), 1, + sym_where_clause, STATE(2336), 2, sym_line_comment, sym_block_comment, - [73142] = 8, + [73092] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1482), 1, - anon_sym_DOT_DOT, - ACTIONS(5039), 1, - sym_identifier, - ACTIONS(5045), 1, - anon_sym_ref, - ACTIONS(5047), 1, - sym_mutable_specifier, + ACTIONS(4884), 1, + anon_sym_LBRACE, + ACTIONS(4896), 1, + anon_sym_where, + ACTIONS(4983), 1, + anon_sym_PLUS, + ACTIONS(5291), 1, + anon_sym_SEMI, + STATE(1269), 1, + sym_declaration_list, + STATE(3013), 1, + sym_where_clause, STATE(2337), 2, sym_line_comment, sym_block_comment, - STATE(3197), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [73169] = 9, + [73121] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4915), 1, - anon_sym_LBRACE, - ACTIONS(4989), 1, + ACTIONS(3340), 2, anon_sym_PLUS, - ACTIONS(5305), 1, - anon_sym_SEMI, - STATE(1148), 1, - sym_declaration_list, - STATE(2743), 1, - sym_where_clause, + anon_sym_DASH_GT, + ACTIONS(4824), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(5293), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(2338), 2, sym_line_comment, sym_block_comment, - [73198] = 9, + [73144] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4915), 1, + ACTIONS(4884), 1, anon_sym_LBRACE, - ACTIONS(4989), 1, + ACTIONS(4896), 1, + anon_sym_where, + ACTIONS(4983), 1, anon_sym_PLUS, - ACTIONS(5307), 1, + ACTIONS(5296), 1, anon_sym_SEMI, - STATE(1150), 1, + STATE(1258), 1, sym_declaration_list, - STATE(2744), 1, + STATE(3014), 1, sym_where_clause, STATE(2339), 2, sym_line_comment, sym_block_comment, - [73227] = 4, + [73173] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(4973), 1, + anon_sym_COLON, + ACTIONS(5298), 1, + anon_sym_PLUS, + ACTIONS(5300), 1, + anon_sym_GT, + ACTIONS(5302), 1, + anon_sym_COMMA, + STATE(2920), 1, + aux_sym_type_arguments_repeat1, + STATE(2923), 1, + sym_trait_bounds, STATE(2340), 2, sym_line_comment, sym_block_comment, - ACTIONS(4920), 6, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - [73246] = 6, + [73202] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4537), 1, - anon_sym_COLON_COLON, - ACTIONS(4905), 1, - anon_sym_for, + ACTIONS(3087), 1, + anon_sym_PLUS, + ACTIONS(4973), 1, + anon_sym_COLON, + ACTIONS(5300), 1, + anon_sym_GT, + ACTIONS(5302), 1, + anon_sym_COMMA, + STATE(2920), 1, + aux_sym_type_arguments_repeat1, + STATE(2923), 1, + sym_trait_bounds, STATE(2341), 2, sym_line_comment, sym_block_comment, - ACTIONS(3299), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [73269] = 7, + [73231] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4463), 1, - anon_sym_DOT_DOT, - ACTIONS(5211), 1, - anon_sym_COLON_COLON, - ACTIONS(4465), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(5309), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(4878), 1, + anon_sym_LBRACE, + ACTIONS(4896), 1, + anon_sym_where, + ACTIONS(4983), 1, + anon_sym_PLUS, + ACTIONS(5304), 1, + anon_sym_SEMI, + STATE(569), 1, + sym_declaration_list, + STATE(2858), 1, + sym_where_clause, STATE(2342), 2, sym_line_comment, sym_block_comment, - [73294] = 9, + [73260] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4584), 1, - anon_sym_EQ, - ACTIONS(4586), 1, - anon_sym_GT, - ACTIONS(4588), 1, + ACTIONS(4461), 1, + anon_sym_DOT_DOT, + ACTIONS(5165), 1, + anon_sym_COLON_COLON, + ACTIONS(4463), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(5273), 2, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(4971), 1, - anon_sym_COLON, - STATE(2746), 1, - sym_trait_bounds, - STATE(2907), 1, - aux_sym_type_parameters_repeat1, STATE(2343), 2, sym_line_comment, sym_block_comment, - [73323] = 5, + [73285] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4816), 2, - anon_sym_COLON, - anon_sym_PIPE, + ACTIONS(945), 1, + anon_sym_DOT_DOT, STATE(2344), 2, sym_line_comment, sym_block_comment, - ACTIONS(3418), 4, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH_GT, - [73344] = 9, + ACTIONS(947), 5, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_if, + [73306] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, - anon_sym_COLON, - ACTIONS(5241), 1, - anon_sym_PLUS, - ACTIONS(5311), 1, - anon_sym_GT, - ACTIONS(5313), 1, + ACTIONS(5293), 1, + anon_sym_RBRACK, + ACTIONS(4824), 2, + anon_sym_PIPE, anon_sym_COMMA, - STATE(2805), 1, - sym_trait_bounds, - STATE(2806), 1, - aux_sym_type_arguments_repeat1, STATE(2345), 2, sym_line_comment, sym_block_comment, - [73373] = 9, + ACTIONS(3340), 3, + anon_sym_SEMI, + anon_sym_PLUS, + anon_sym_DASH_GT, + [73329] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3051), 1, - anon_sym_PLUS, - ACTIONS(4971), 1, + ACTIONS(4878), 1, + anon_sym_LBRACE, + ACTIONS(4896), 1, + anon_sym_where, + ACTIONS(4973), 1, anon_sym_COLON, - ACTIONS(5311), 1, - anon_sym_GT, - ACTIONS(5313), 1, - anon_sym_COMMA, - STATE(2805), 1, + STATE(598), 1, + sym_declaration_list, + STATE(2691), 1, sym_trait_bounds, - STATE(2806), 1, - aux_sym_type_arguments_repeat1, + STATE(3284), 1, + sym_where_clause, STATE(2346), 2, sym_line_comment, sym_block_comment, - [73402] = 9, + [73358] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4878), 1, + ACTIONS(4884), 1, anon_sym_LBRACE, - ACTIONS(4989), 1, + ACTIONS(4896), 1, + anon_sym_where, + ACTIONS(4983), 1, anon_sym_PLUS, - ACTIONS(5315), 1, + ACTIONS(5306), 1, anon_sym_SEMI, - STATE(717), 1, + STATE(1347), 1, sym_declaration_list, - STATE(2916), 1, + STATE(2824), 1, sym_where_clause, STATE(2347), 2, sym_line_comment, sym_block_comment, - [73431] = 8, + [73387] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1210), 1, + ACTIONS(4884), 1, anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(5317), 1, - anon_sym_if, - STATE(3590), 1, - sym_label, - STATE(457), 2, - sym_if_expression, - sym_block, + ACTIONS(4896), 1, + anon_sym_where, + ACTIONS(4973), 1, + anon_sym_COLON, + STATE(1325), 1, + sym_declaration_list, + STATE(2610), 1, + sym_trait_bounds, + STATE(3191), 1, + sym_where_clause, STATE(2348), 2, sym_line_comment, sym_block_comment, - [73458] = 9, + [73416] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4870), 1, + ACTIONS(1212), 1, anon_sym_LBRACE, - ACTIONS(4872), 1, - anon_sym_LT, - ACTIONS(4874), 1, - anon_sym_where, - STATE(699), 1, - sym_field_declaration_list, - STATE(2566), 1, - sym_type_parameters, - STATE(3097), 1, - sym_where_clause, + ACTIONS(3446), 1, + anon_sym_SQUOTE, + ACTIONS(5308), 1, + anon_sym_if, + STATE(3598), 1, + sym_label, + STATE(461), 2, + sym_if_expression, + sym_block, STATE(2349), 2, sym_line_comment, sym_block_comment, - [73487] = 9, + [73443] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, + ACTIONS(4896), 1, anon_sym_where, - ACTIONS(4878), 1, - anon_sym_LBRACE, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5319), 1, + ACTIONS(4973), 1, + anon_sym_COLON, + ACTIONS(5310), 1, anon_sym_SEMI, - STATE(488), 1, - sym_declaration_list, - STATE(2886), 1, + ACTIONS(5312), 1, + anon_sym_EQ, + STATE(2847), 1, + sym_trait_bounds, + STATE(3431), 1, sym_where_clause, STATE(2350), 2, sym_line_comment, sym_block_comment, - [73516] = 9, + [73472] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, ACTIONS(4878), 1, anon_sym_LBRACE, - ACTIONS(4989), 1, + ACTIONS(4896), 1, + anon_sym_where, + ACTIONS(4983), 1, anon_sym_PLUS, - ACTIONS(5321), 1, + ACTIONS(5314), 1, anon_sym_SEMI, - STATE(490), 1, + STATE(610), 1, sym_declaration_list, - STATE(2910), 1, + STATE(2925), 1, sym_where_clause, STATE(2351), 2, sym_line_comment, sym_block_comment, - [73545] = 9, + [73501] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, - anon_sym_COLON, - ACTIONS(5241), 1, + ACTIONS(4884), 1, + anon_sym_LBRACE, + ACTIONS(4896), 1, + anon_sym_where, + ACTIONS(4983), 1, anon_sym_PLUS, - ACTIONS(5323), 1, - anon_sym_GT, - ACTIONS(5325), 1, - anon_sym_COMMA, - STATE(2984), 1, - sym_trait_bounds, - STATE(2991), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(5316), 1, + anon_sym_SEMI, + STATE(1313), 1, + sym_declaration_list, + STATE(2850), 1, + sym_where_clause, STATE(2352), 2, sym_line_comment, sym_block_comment, - [73574] = 9, + [73530] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3051), 1, - anon_sym_PLUS, - ACTIONS(4971), 1, + ACTIONS(4878), 1, + anon_sym_LBRACE, + ACTIONS(4896), 1, + anon_sym_where, + ACTIONS(4973), 1, anon_sym_COLON, - ACTIONS(5323), 1, - anon_sym_GT, - ACTIONS(5325), 1, - anon_sym_COMMA, - STATE(2984), 1, + STATE(643), 1, + sym_declaration_list, + STATE(2608), 1, sym_trait_bounds, - STATE(2991), 1, - aux_sym_type_arguments_repeat1, + STATE(3139), 1, + sym_where_clause, STATE(2353), 2, sym_line_comment, sym_block_comment, - [73603] = 8, + [73559] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(400), 1, - anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(5327), 1, - anon_sym_if, - STATE(3591), 1, - sym_label, - STATE(1773), 2, - sym_if_expression, - sym_block, + ACTIONS(5318), 1, + anon_sym_RBRACK, + ACTIONS(4798), 2, + anon_sym_PIPE, + anon_sym_COMMA, STATE(2354), 2, sym_line_comment, sym_block_comment, - [73630] = 9, + ACTIONS(3336), 3, + anon_sym_SEMI, + anon_sym_PLUS, + anon_sym_DASH_GT, + [73582] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4878), 1, - anon_sym_LBRACE, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5329), 1, - anon_sym_SEMI, - STATE(494), 1, - sym_declaration_list, - STATE(3010), 1, - sym_where_clause, + ACTIONS(4619), 1, + anon_sym_DOT_DOT, STATE(2355), 2, sym_line_comment, sym_block_comment, - [73659] = 6, + ACTIONS(4617), 5, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_if, + [73603] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3418), 2, - anon_sym_PLUS, - anon_sym_DASH_GT, - ACTIONS(4816), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(5266), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(885), 1, + anon_sym_DOT_DOT, STATE(2356), 2, sym_line_comment, sym_block_comment, - [73682] = 9, + ACTIONS(887), 5, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_if, + [73624] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4878), 1, - anon_sym_LBRACE, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5331), 1, - anon_sym_SEMI, - STATE(496), 1, - sym_declaration_list, - STATE(2745), 1, - sym_where_clause, + ACTIONS(4615), 1, + anon_sym_DOT_DOT, STATE(2357), 2, sym_line_comment, sym_block_comment, - [73711] = 9, + ACTIONS(4613), 5, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_if, + [73645] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, ACTIONS(4878), 1, anon_sym_LBRACE, - ACTIONS(4989), 1, + ACTIONS(4896), 1, + anon_sym_where, + ACTIONS(4983), 1, anon_sym_PLUS, - ACTIONS(5333), 1, + ACTIONS(5321), 1, anon_sym_SEMI, - STATE(606), 1, + STATE(607), 1, sym_declaration_list, - STATE(2999), 1, + STATE(2914), 1, sym_where_clause, STATE(2358), 2, sym_line_comment, sym_block_comment, - [73740] = 9, + [73674] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4878), 1, - anon_sym_LBRACE, - ACTIONS(4989), 1, + ACTIONS(3336), 2, anon_sym_PLUS, - ACTIONS(5335), 1, - anon_sym_SEMI, - STATE(608), 1, - sym_declaration_list, - STATE(3005), 1, - sym_where_clause, + anon_sym_DASH_GT, + ACTIONS(4798), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(5318), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(2359), 2, sym_line_comment, sym_block_comment, - [73769] = 5, + [73697] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(967), 1, - anon_sym_DOT_DOT, + ACTIONS(4894), 1, + anon_sym_LT, + ACTIONS(4896), 1, + anon_sym_where, + ACTIONS(5285), 1, + anon_sym_LBRACE, + STATE(1302), 1, + sym_enum_variant_list, + STATE(2583), 1, + sym_type_parameters, + STATE(3181), 1, + sym_where_clause, STATE(2360), 2, sym_line_comment, sym_block_comment, - ACTIONS(969), 5, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_if, - [73790] = 5, + [73726] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(753), 1, - anon_sym_DOT_DOT, + ACTIONS(3087), 1, + anon_sym_PLUS, + ACTIONS(4973), 1, + anon_sym_COLON, + ACTIONS(5323), 1, + anon_sym_GT, + ACTIONS(5325), 1, + anon_sym_COMMA, + STATE(2900), 1, + aux_sym_type_arguments_repeat1, + STATE(2902), 1, + sym_trait_bounds, STATE(2361), 2, sym_line_comment, sym_block_comment, - ACTIONS(755), 5, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_if, - [73811] = 5, + [73755] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(767), 1, - anon_sym_DOT_DOT, + ACTIONS(4973), 1, + anon_sym_COLON, + ACTIONS(5298), 1, + anon_sym_PLUS, + ACTIONS(5323), 1, + anon_sym_GT, + ACTIONS(5325), 1, + anon_sym_COMMA, + STATE(2900), 1, + aux_sym_type_arguments_repeat1, + STATE(2902), 1, + sym_trait_bounds, STATE(2362), 2, sym_line_comment, sym_block_comment, - ACTIONS(769), 5, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_if, - [73832] = 5, + [73784] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(771), 1, - anon_sym_DOT_DOT, + ACTIONS(4894), 1, + anon_sym_LT, + ACTIONS(4896), 1, + anon_sym_where, + ACTIONS(4945), 1, + anon_sym_LBRACE, + STATE(1287), 1, + sym_field_declaration_list, + STATE(2578), 1, + sym_type_parameters, + STATE(3175), 1, + sym_where_clause, STATE(2363), 2, sym_line_comment, sym_block_comment, - ACTIONS(773), 5, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_if, - [73853] = 9, + [73813] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4870), 1, - anon_sym_LBRACE, - ACTIONS(4872), 1, - anon_sym_LT, - ACTIONS(4874), 1, - anon_sym_where, - STATE(643), 1, - sym_field_declaration_list, - STATE(2514), 1, - sym_type_parameters, - STATE(3114), 1, - sym_where_clause, + ACTIONS(4973), 1, + anon_sym_COLON, + ACTIONS(5298), 1, + anon_sym_PLUS, + ACTIONS(5327), 1, + anon_sym_GT, + ACTIONS(5329), 1, + anon_sym_COMMA, + STATE(2887), 1, + sym_trait_bounds, + STATE(2888), 1, + aux_sym_type_arguments_repeat1, STATE(2364), 2, sym_line_comment, sym_block_comment, - [73882] = 6, + [73842] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3459), 1, + ACTIONS(3087), 1, + anon_sym_PLUS, + ACTIONS(4973), 1, anon_sym_COLON, - ACTIONS(5337), 1, - anon_sym_EQ, + ACTIONS(5327), 1, + anon_sym_GT, + ACTIONS(5329), 1, + anon_sym_COMMA, + STATE(2887), 1, + sym_trait_bounds, + STATE(2888), 1, + aux_sym_type_arguments_repeat1, STATE(2365), 2, sym_line_comment, sym_block_comment, - ACTIONS(3457), 4, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_COLON_COLON, - [73905] = 9, + [73871] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4878), 1, - anon_sym_LBRACE, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5339), 1, - anon_sym_SEMI, - STATE(565), 1, - sym_declaration_list, - STATE(2905), 1, - sym_where_clause, + ACTIONS(4598), 1, + anon_sym_DOT_DOT, + ACTIONS(4600), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(2366), 2, sym_line_comment, sym_block_comment, - [73934] = 9, + ACTIONS(4451), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [73894] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4878), 1, - anon_sym_LBRACE, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5341), 1, - anon_sym_SEMI, - STATE(567), 1, - sym_declaration_list, - STATE(2911), 1, - sym_where_clause, + ACTIONS(4580), 1, + anon_sym_EQ, + ACTIONS(4973), 1, + anon_sym_COLON, + ACTIONS(5331), 1, + anon_sym_GT, + ACTIONS(5333), 1, + anon_sym_COMMA, + STATE(2816), 1, + aux_sym_type_parameters_repeat1, + STATE(2990), 1, + sym_trait_bounds, STATE(2367), 2, sym_line_comment, sym_block_comment, - [73963] = 9, + [73923] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4872), 1, - anon_sym_LT, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(5235), 1, - anon_sym_LBRACE, - STATE(1390), 1, - sym_enum_variant_list, - STATE(2511), 1, - sym_type_parameters, - STATE(3269), 1, - sym_where_clause, + ACTIONS(4461), 1, + anon_sym_DOT_DOT, + ACTIONS(5165), 1, + anon_sym_COLON_COLON, + ACTIONS(4463), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(5139), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(2368), 2, sym_line_comment, sym_block_comment, - [73992] = 9, + [73948] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4915), 1, + ACTIONS(338), 1, anon_sym_LBRACE, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5343), 1, - anon_sym_SEMI, - STATE(1128), 1, - sym_declaration_list, - STATE(2787), 1, - sym_where_clause, + ACTIONS(3446), 1, + anon_sym_SQUOTE, + ACTIONS(5335), 1, + anon_sym_if, + STATE(3547), 1, + sym_label, + STATE(1242), 2, + sym_if_expression, + sym_block, STATE(2369), 2, sym_line_comment, sym_block_comment, - [74021] = 9, + [73975] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4878), 1, - anon_sym_LBRACE, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5345), 1, - anon_sym_SEMI, - STATE(569), 1, - sym_declaration_list, - STATE(2918), 1, - sym_where_clause, + ACTIONS(4973), 1, + anon_sym_COLON, + ACTIONS(5337), 1, + anon_sym_GT, + ACTIONS(5339), 1, + anon_sym_COMMA, + STATE(2870), 1, + aux_sym_for_lifetimes_repeat1, + STATE(2999), 1, + aux_sym_type_parameters_repeat1, + STATE(3000), 1, + sym_trait_bounds, STATE(2370), 2, sym_line_comment, sym_block_comment, - [74050] = 8, + [74004] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4535), 1, - anon_sym_COLON_COLON, - ACTIONS(5347), 1, - anon_sym_GT, - ACTIONS(5349), 1, - anon_sym_COMMA, - STATE(2786), 1, - aux_sym_type_parameters_repeat1, - ACTIONS(3299), 2, + ACTIONS(4878), 1, + anon_sym_LBRACE, + ACTIONS(4896), 1, + anon_sym_where, + ACTIONS(4983), 1, anon_sym_PLUS, - anon_sym_as, + ACTIONS(5341), 1, + anon_sym_SEMI, + STATE(736), 1, + sym_declaration_list, + STATE(2806), 1, + sym_where_clause, STATE(2371), 2, sym_line_comment, sym_block_comment, - [74077] = 7, + [74033] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4463), 1, - anon_sym_DOT_DOT, - ACTIONS(5207), 1, - anon_sym_COLON_COLON, - ACTIONS(4465), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(5151), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(400), 1, + anon_sym_LBRACE, + ACTIONS(3446), 1, + anon_sym_SQUOTE, + ACTIONS(5343), 1, + anon_sym_if, + STATE(3599), 1, + sym_label, + STATE(1776), 2, + sym_if_expression, + sym_block, STATE(2372), 2, sym_line_comment, sym_block_comment, - [74102] = 9, + [74060] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3051), 1, + ACTIONS(3087), 1, anon_sym_PLUS, - ACTIONS(4971), 1, + ACTIONS(4973), 1, anon_sym_COLON, - ACTIONS(5347), 1, + ACTIONS(5225), 1, anon_sym_GT, - ACTIONS(5349), 1, + ACTIONS(5227), 1, anon_sym_COMMA, - STATE(2786), 1, + STATE(2999), 1, aux_sym_type_parameters_repeat1, - STATE(2888), 1, + STATE(3000), 1, sym_trait_bounds, STATE(2373), 2, sym_line_comment, sym_block_comment, - [74131] = 7, + [74089] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4463), 1, - anon_sym_DOT_DOT, - ACTIONS(5207), 1, - anon_sym_COLON_COLON, - ACTIONS(4465), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(5309), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(4878), 1, + anon_sym_LBRACE, + ACTIONS(4896), 1, + anon_sym_where, + ACTIONS(4983), 1, + anon_sym_PLUS, + ACTIONS(5345), 1, + anon_sym_SEMI, + STATE(718), 1, + sym_declaration_list, + STATE(2794), 1, + sym_where_clause, STATE(2374), 2, sym_line_comment, sym_block_comment, - [74156] = 9, + [74118] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4872), 1, - anon_sym_LT, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4891), 1, + ACTIONS(4878), 1, anon_sym_LBRACE, - STATE(1191), 1, - sym_field_declaration_list, - STATE(2515), 1, - sym_type_parameters, - STATE(3305), 1, + ACTIONS(4896), 1, + anon_sym_where, + ACTIONS(4983), 1, + anon_sym_PLUS, + ACTIONS(5347), 1, + anon_sym_SEMI, + STATE(747), 1, + sym_declaration_list, + STATE(3028), 1, sym_where_clause, STATE(2375), 2, sym_line_comment, sym_block_comment, - [74185] = 9, + [74147] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4878), 1, + ACTIONS(4892), 1, anon_sym_LBRACE, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5351), 1, - anon_sym_SEMI, - STATE(571), 1, - sym_declaration_list, - STATE(2925), 1, + ACTIONS(4894), 1, + anon_sym_LT, + ACTIONS(4896), 1, + anon_sym_where, + STATE(658), 1, + sym_field_declaration_list, + STATE(2533), 1, + sym_type_parameters, + STATE(3172), 1, sym_where_clause, STATE(2376), 2, sym_line_comment, sym_block_comment, - [74214] = 8, - ACTIONS(19), 1, - anon_sym_LBRACE, + [74176] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(5353), 1, - anon_sym_if, - STATE(3510), 1, - sym_label, - STATE(377), 2, - sym_if_expression, - sym_block, + ACTIONS(4878), 1, + anon_sym_LBRACE, + ACTIONS(4896), 1, + anon_sym_where, + ACTIONS(4983), 1, + anon_sym_PLUS, + ACTIONS(5349), 1, + anon_sym_SEMI, + STATE(722), 1, + sym_declaration_list, + STATE(2797), 1, + sym_where_clause, STATE(2377), 2, sym_line_comment, sym_block_comment, - [74241] = 9, + [74205] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, + ACTIONS(4894), 1, + anon_sym_LT, + ACTIONS(4896), 1, anon_sym_where, - ACTIONS(4878), 1, + ACTIONS(5269), 1, anon_sym_LBRACE, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5355), 1, - anon_sym_SEMI, - STATE(665), 1, - sym_declaration_list, - STATE(2735), 1, + STATE(666), 1, + sym_enum_variant_list, + STATE(2524), 1, + sym_type_parameters, + STATE(3090), 1, sym_where_clause, STATE(2378), 2, sym_line_comment, sym_block_comment, - [74270] = 6, + [74234] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4537), 1, + ACTIONS(4533), 1, anon_sym_COLON_COLON, - ACTIONS(4967), 1, + ACTIONS(4907), 1, anon_sym_for, STATE(2379), 2, sym_line_comment, sym_block_comment, - ACTIONS(3299), 4, + ACTIONS(3291), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [74293] = 6, + [74257] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4537), 1, - anon_sym_COLON_COLON, - ACTIONS(4864), 1, - anon_sym_for, + ACTIONS(4878), 1, + anon_sym_LBRACE, + ACTIONS(4896), 1, + anon_sym_where, + ACTIONS(4983), 1, + anon_sym_PLUS, + ACTIONS(5351), 1, + anon_sym_SEMI, + STATE(732), 1, + sym_declaration_list, + STATE(2803), 1, + sym_where_clause, STATE(2380), 2, sym_line_comment, sym_block_comment, - ACTIONS(3299), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [74316] = 9, - ACTIONS(27), 1, - anon_sym_PIPE, + [74286] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5357), 1, - sym_identifier, - ACTIONS(5359), 1, - anon_sym_ref, - ACTIONS(5361), 1, - sym_mutable_specifier, - ACTIONS(5363), 1, - anon_sym_move, - STATE(228), 1, - sym_closure_parameters, + ACTIONS(4884), 1, + anon_sym_LBRACE, + ACTIONS(4896), 1, + anon_sym_where, + ACTIONS(4973), 1, + anon_sym_COLON, + STATE(1147), 1, + sym_declaration_list, + STATE(2549), 1, + sym_trait_bounds, + STATE(3127), 1, + sym_where_clause, STATE(2381), 2, sym_line_comment, sym_block_comment, - [74345] = 6, + [74315] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4537), 1, - anon_sym_COLON_COLON, - ACTIONS(4951), 1, - anon_sym_for, + ACTIONS(4580), 1, + anon_sym_EQ, + ACTIONS(4973), 1, + anon_sym_COLON, + ACTIONS(5353), 1, + anon_sym_GT, + ACTIONS(5355), 1, + anon_sym_COMMA, + STATE(2916), 1, + aux_sym_type_parameters_repeat1, + STATE(2990), 1, + sym_trait_bounds, STATE(2382), 2, sym_line_comment, sym_block_comment, - ACTIONS(3299), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [74368] = 9, + [74344] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, + ACTIONS(4878), 1, + anon_sym_LBRACE, + ACTIONS(4896), 1, anon_sym_where, - ACTIONS(4971), 1, + ACTIONS(4973), 1, anon_sym_COLON, - ACTIONS(5365), 1, - anon_sym_SEMI, - ACTIONS(5367), 1, - anon_sym_EQ, - STATE(3031), 1, + STATE(692), 1, + sym_declaration_list, + STATE(2503), 1, sym_trait_bounds, - STATE(3505), 1, + STATE(3044), 1, sym_where_clause, STATE(2383), 2, sym_line_comment, sym_block_comment, - [74397] = 6, + [74373] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4537), 1, - anon_sym_COLON_COLON, - ACTIONS(4957), 1, - anon_sym_for, + ACTIONS(4896), 1, + anon_sym_where, + ACTIONS(4973), 1, + anon_sym_COLON, + ACTIONS(5357), 1, + anon_sym_SEMI, + ACTIONS(5359), 1, + anon_sym_EQ, + STATE(3009), 1, + sym_trait_bounds, + STATE(3394), 1, + sym_where_clause, STATE(2384), 2, sym_line_comment, sym_block_comment, - ACTIONS(3299), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [74420] = 6, + [74402] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4537), 1, - anon_sym_COLON_COLON, - ACTIONS(4961), 1, - anon_sym_for, + ACTIONS(4884), 1, + anon_sym_LBRACE, + ACTIONS(4896), 1, + anon_sym_where, + ACTIONS(4983), 1, + anon_sym_PLUS, + ACTIONS(5361), 1, + anon_sym_SEMI, + STATE(1153), 1, + sym_declaration_list, + STATE(2936), 1, + sym_where_clause, STATE(2385), 2, sym_line_comment, sym_block_comment, - ACTIONS(3299), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [74443] = 6, + [74431] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4537), 1, - anon_sym_COLON_COLON, - ACTIONS(4965), 1, - anon_sym_for, + ACTIONS(4878), 1, + anon_sym_LBRACE, + ACTIONS(4896), 1, + anon_sym_where, + ACTIONS(4983), 1, + anon_sym_PLUS, + ACTIONS(5363), 1, + anon_sym_SEMI, + STATE(678), 1, + sym_declaration_list, + STATE(2997), 1, + sym_where_clause, STATE(2386), 2, sym_line_comment, sym_block_comment, - ACTIONS(3299), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [74466] = 6, + [74460] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4611), 1, - anon_sym_DOT_DOT, - ACTIONS(4613), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(4884), 1, + anon_sym_LBRACE, + ACTIONS(4896), 1, + anon_sym_where, + ACTIONS(4983), 1, + anon_sym_PLUS, + ACTIONS(5365), 1, + anon_sym_SEMI, + STATE(1233), 1, + sym_declaration_list, + STATE(2918), 1, + sym_where_clause, STATE(2387), 2, sym_line_comment, sym_block_comment, - ACTIONS(4453), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, [74489] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4878), 1, + ACTIONS(4884), 1, anon_sym_LBRACE, - ACTIONS(4971), 1, - anon_sym_COLON, - STATE(529), 1, + ACTIONS(4896), 1, + anon_sym_where, + ACTIONS(4983), 1, + anon_sym_PLUS, + ACTIONS(5367), 1, + anon_sym_SEMI, + STATE(1220), 1, sym_declaration_list, - STATE(2530), 1, - sym_trait_bounds, - STATE(3087), 1, + STATE(2921), 1, sym_where_clause, STATE(2388), 2, sym_line_comment, @@ -170507,16 +170515,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(4997), 1, - anon_sym_LBRACE, ACTIONS(5369), 1, - anon_sym_SEMI, - STATE(1395), 1, - sym_block, - STATE(3589), 1, - sym_label, + anon_sym_RPAREN, + ACTIONS(5371), 1, + anon_sym_COLON, + ACTIONS(5373), 1, + anon_sym_PIPE, + ACTIONS(5375), 1, + anon_sym_COMMA, + STATE(2898), 1, + aux_sym_slice_pattern_repeat1, STATE(2389), 2, sym_line_comment, sym_block_comment, @@ -170525,121 +170533,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_GT, - ACTIONS(4971), 1, - anon_sym_COLON, - ACTIONS(5371), 1, - anon_sym_COMMA, - STATE(2873), 1, - aux_sym_type_parameters_repeat1, - STATE(2888), 1, - sym_trait_bounds, + ACTIONS(3446), 1, + anon_sym_SQUOTE, + ACTIONS(5009), 1, + anon_sym_LBRACE, + ACTIONS(5377), 1, + anon_sym_SEMI, + STATE(1097), 1, + sym_block, + STATE(3597), 1, + sym_label, STATE(2390), 2, sym_line_comment, sym_block_comment, - [74570] = 7, + [74570] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, - anon_sym_COLON, - ACTIONS(5241), 1, - anon_sym_PLUS, - STATE(3250), 1, - sym_trait_bounds, - ACTIONS(5373), 2, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(3446), 1, + anon_sym_SQUOTE, + ACTIONS(5009), 1, + anon_sym_LBRACE, + ACTIONS(5379), 1, + anon_sym_SEMI, + STATE(1180), 1, + sym_block, + STATE(3597), 1, + sym_label, STATE(2391), 2, sym_line_comment, sym_block_comment, - [74594] = 7, + [74596] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4463), 1, - anon_sym_DOT_DOT, - ACTIONS(5155), 1, - anon_sym_COLON_COLON, - ACTIONS(5205), 1, - anon_sym_COLON, - ACTIONS(4465), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(4263), 1, + anon_sym_LBRACE, + ACTIONS(5153), 1, + anon_sym_STAR, + STATE(2979), 1, + sym_use_list, + ACTIONS(5151), 2, + sym_identifier, + sym_super, STATE(2392), 2, sym_line_comment, sym_block_comment, - [74618] = 8, + [74620] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4852), 1, - anon_sym_PIPE, - ACTIONS(5375), 1, - anon_sym_SEMI, - ACTIONS(5377), 1, - anon_sym_COLON, - ACTIONS(5379), 1, - anon_sym_EQ, + ACTIONS(2959), 1, + anon_sym_POUND, ACTIONS(5381), 1, - anon_sym_else, + sym_identifier, + ACTIONS(5383), 1, + sym_integer_literal, + STATE(1078), 1, + aux_sym_enum_variant_list_repeat1, + STATE(1477), 1, + sym_attribute_item, STATE(2393), 2, sym_line_comment, sym_block_comment, - [74644] = 8, + [74646] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, - anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(4989), 1, + ACTIONS(5385), 1, + anon_sym_RBRACK, + ACTIONS(3291), 2, + anon_sym_SEMI, anon_sym_PLUS, - STATE(1304), 1, - sym_block, - STATE(3539), 1, - sym_label, + ACTIONS(4451), 2, + anon_sym_PIPE, + anon_sym_COMMA, STATE(2394), 2, sym_line_comment, sym_block_comment, - [74670] = 8, + [74668] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, - anon_sym_POUND, - ACTIONS(5383), 1, - sym_identifier, - ACTIONS(5385), 1, - sym_integer_literal, - STATE(1065), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1476), 1, - sym_attribute_item, + ACTIONS(4652), 1, + anon_sym_GT, + ACTIONS(4973), 1, + anon_sym_COLON, + ACTIONS(5388), 1, + anon_sym_COMMA, + STATE(2917), 1, + aux_sym_type_parameters_repeat1, + STATE(3000), 1, + sym_trait_bounds, STATE(2395), 2, sym_line_comment, sym_block_comment, - [74696] = 7, + [74694] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3051), 1, - anon_sym_PLUS, - ACTIONS(4971), 1, - anon_sym_COLON, - STATE(3250), 1, - sym_trait_bounds, - ACTIONS(5373), 2, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(4443), 1, + anon_sym_LPAREN, + ACTIONS(4449), 1, + anon_sym_LT2, + ACTIONS(4467), 1, + anon_sym_COLON_COLON, + STATE(1935), 1, + sym_type_arguments, + STATE(1963), 1, + sym_parameters, STATE(2396), 2, sym_line_comment, sym_block_comment, @@ -170648,109 +170656,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(4997), 1, - anon_sym_LBRACE, - ACTIONS(5387), 1, + ACTIONS(4778), 1, + anon_sym_PIPE, + ACTIONS(5390), 1, anon_sym_SEMI, - STATE(1113), 1, - sym_block, - STATE(3589), 1, - sym_label, + ACTIONS(5392), 1, + anon_sym_COLON, + ACTIONS(5394), 1, + anon_sym_EQ, + ACTIONS(5396), 1, + anon_sym_else, STATE(2397), 2, sym_line_comment, sym_block_comment, - [74746] = 8, + [74746] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(4979), 1, - anon_sym_LBRACE, - ACTIONS(5389), 1, - anon_sym_SEMI, - STATE(711), 1, - sym_block, - STATE(3586), 1, - sym_label, + ACTIONS(4580), 1, + anon_sym_EQ, + ACTIONS(4973), 1, + anon_sym_COLON, + STATE(2990), 1, + sym_trait_bounds, + ACTIONS(5398), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(2398), 2, sym_line_comment, sym_block_comment, - [74772] = 8, + [74770] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(4997), 1, - anon_sym_LBRACE, - ACTIONS(5391), 1, - anon_sym_SEMI, - STATE(1126), 1, - sym_block, - STATE(3589), 1, - sym_label, STATE(2399), 2, sym_line_comment, sym_block_comment, - [74798] = 7, + ACTIONS(3683), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_where, + [74788] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4243), 1, + ACTIONS(338), 1, anon_sym_LBRACE, - ACTIONS(5105), 1, - anon_sym_STAR, - STATE(2776), 1, - sym_use_list, - ACTIONS(5103), 2, - sym_identifier, - sym_super, + ACTIONS(3446), 1, + anon_sym_SQUOTE, + ACTIONS(4983), 1, + anon_sym_PLUS, + STATE(1243), 1, + sym_block, + STATE(3547), 1, + sym_label, STATE(2400), 2, sym_line_comment, sym_block_comment, - [74822] = 8, + [74814] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, - anon_sym_COLON, - ACTIONS(5347), 1, - anon_sym_GT, - ACTIONS(5349), 1, - anon_sym_COMMA, - STATE(2786), 1, - aux_sym_type_parameters_repeat1, - STATE(2888), 1, - sym_trait_bounds, + ACTIONS(3446), 1, + anon_sym_SQUOTE, + ACTIONS(4981), 1, + anon_sym_LBRACE, + ACTIONS(5400), 1, + anon_sym_SEMI, + STATE(714), 1, + sym_block, + STATE(3594), 1, + sym_label, STATE(2401), 2, sym_line_comment, sym_block_comment, - [74848] = 8, + [74840] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, - anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(4989), 1, + ACTIONS(5402), 1, + anon_sym_RBRACK, + ACTIONS(3839), 2, + anon_sym_SEMI, anon_sym_PLUS, - STATE(1384), 1, - sym_block, - STATE(3539), 1, - sym_label, + ACTIONS(4760), 2, + anon_sym_PIPE, + anon_sym_COMMA, STATE(2402), 2, sym_line_comment, sym_block_comment, - [74874] = 4, + [74862] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -170758,673 +170760,658 @@ static const uint16_t ts_small_parse_table[] = { STATE(2403), 2, sym_line_comment, sym_block_comment, - ACTIONS(5393), 5, + ACTIONS(5405), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_EQ, anon_sym_COMMA, anon_sym_where, - [74892] = 8, + [74880] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(4997), 1, - anon_sym_LBRACE, - ACTIONS(5395), 1, - anon_sym_SEMI, - STATE(1133), 1, - sym_block, - STATE(3589), 1, - sym_label, + ACTIONS(5407), 1, + anon_sym_COMMA, + STATE(2444), 1, + aux_sym_where_clause_repeat1, STATE(2404), 2, sym_line_comment, sym_block_comment, - [74918] = 8, + ACTIONS(3346), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_SQUOTE, + [74902] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, - anon_sym_LPAREN, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4451), 1, - anon_sym_COLON_COLON, - STATE(1931), 1, - sym_type_arguments, - STATE(1962), 1, - sym_parameters, + ACTIONS(1470), 1, + anon_sym_RPAREN, + ACTIONS(5409), 1, + anon_sym_COMMA, + STATE(2762), 1, + aux_sym_parameters_repeat1, + ACTIONS(4451), 2, + anon_sym_COLON, + anon_sym_PIPE, STATE(2405), 2, sym_line_comment, sym_block_comment, - [74944] = 5, + [74926] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5399), 1, - anon_sym_COMMA, - ACTIONS(5397), 3, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(3446), 1, anon_sym_SQUOTE, - STATE(2406), 3, + ACTIONS(5009), 1, + anon_sym_LBRACE, + ACTIONS(5411), 1, + anon_sym_SEMI, + STATE(1251), 1, + sym_block, + STATE(3597), 1, + sym_label, + STATE(2406), 2, sym_line_comment, sym_block_comment, - aux_sym_where_clause_repeat1, - [74964] = 6, + [74952] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3621), 1, - anon_sym_PLUS, - ACTIONS(4756), 2, + ACTIONS(4973), 1, anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(5402), 2, - anon_sym_RPAREN, + ACTIONS(5413), 1, + anon_sym_GT, + ACTIONS(5415), 1, anon_sym_COMMA, + STATE(2818), 1, + aux_sym_type_parameters_repeat1, + STATE(3000), 1, + sym_trait_bounds, STATE(2407), 2, sym_line_comment, sym_block_comment, - [74986] = 8, + [74978] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(4997), 1, - anon_sym_LBRACE, - ACTIONS(5405), 1, - anon_sym_SEMI, - STATE(1158), 1, - sym_block, - STATE(3589), 1, - sym_label, + ACTIONS(4766), 1, + anon_sym_RPAREN, + ACTIONS(5417), 1, + anon_sym_COLON, + ACTIONS(5419), 1, + anon_sym_PIPE, + ACTIONS(5421), 1, + anon_sym_COMMA, + STATE(2769), 1, + aux_sym_closure_parameters_repeat1, STATE(2408), 2, sym_line_comment, sym_block_comment, - [75012] = 8, + [75004] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(4997), 1, - anon_sym_LBRACE, - ACTIONS(5407), 1, - anon_sym_SEMI, - STATE(1164), 1, - sym_block, - STATE(3589), 1, - sym_label, STATE(2409), 2, sym_line_comment, sym_block_comment, - [75038] = 8, + ACTIONS(5423), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [75022] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(4997), 1, + ACTIONS(338), 1, anon_sym_LBRACE, - ACTIONS(5409), 1, - anon_sym_SEMI, - STATE(1174), 1, + ACTIONS(3446), 1, + anon_sym_SQUOTE, + ACTIONS(4983), 1, + anon_sym_PLUS, + STATE(1353), 1, sym_block, - STATE(3589), 1, + STATE(3547), 1, sym_label, STATE(2410), 2, sym_line_comment, sym_block_comment, - [75064] = 8, + [75048] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(4979), 1, - anon_sym_LBRACE, - ACTIONS(5411), 1, - anon_sym_SEMI, - STATE(637), 1, - sym_block, - STATE(3586), 1, - sym_label, STATE(2411), 2, sym_line_comment, sym_block_comment, - [75090] = 8, + ACTIONS(5425), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [75066] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(4997), 1, - anon_sym_LBRACE, - ACTIONS(5413), 1, - anon_sym_SEMI, - STATE(1178), 1, - sym_block, - STATE(3589), 1, - sym_label, STATE(2412), 2, sym_line_comment, sym_block_comment, - [75116] = 8, + ACTIONS(5427), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [75084] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(4997), 1, - anon_sym_LBRACE, - ACTIONS(5415), 1, - anon_sym_SEMI, - STATE(1182), 1, - sym_block, - STATE(3589), 1, - sym_label, + ACTIONS(5429), 1, + anon_sym_RPAREN, + ACTIONS(5431), 1, + anon_sym_COMMA, + STATE(2901), 1, + aux_sym_parameters_repeat1, + ACTIONS(4451), 2, + anon_sym_COLON, + anon_sym_PIPE, STATE(2413), 2, sym_line_comment, sym_block_comment, - [75142] = 8, + [75108] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(400), 1, - anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(4989), 1, - anon_sym_PLUS, - STATE(1678), 1, - sym_block, - STATE(3591), 1, - sym_label, + ACTIONS(4973), 1, + anon_sym_COLON, + ACTIONS(5327), 1, + anon_sym_GT, + ACTIONS(5329), 1, + anon_sym_COMMA, + STATE(2887), 1, + sym_trait_bounds, + STATE(2888), 1, + aux_sym_type_arguments_repeat1, STATE(2414), 2, sym_line_comment, sym_block_comment, - [75168] = 8, + [75134] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(400), 1, - anon_sym_LBRACE, - ACTIONS(3344), 1, + ACTIONS(3446), 1, anon_sym_SQUOTE, - ACTIONS(5417), 1, - anon_sym_move, - STATE(1742), 1, + ACTIONS(4981), 1, + anon_sym_LBRACE, + ACTIONS(5433), 1, + anon_sym_SEMI, + STATE(644), 1, sym_block, - STATE(3591), 1, + STATE(3594), 1, sym_label, STATE(2415), 2, sym_line_comment, sym_block_comment, - [75194] = 4, + [75160] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(3446), 1, + anon_sym_SQUOTE, + ACTIONS(4981), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_SEMI, + STATE(751), 1, + sym_block, + STATE(3594), 1, + sym_label, STATE(2416), 2, sym_line_comment, sym_block_comment, - ACTIONS(3699), 5, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_where, - [75212] = 4, + [75186] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(1212), 1, + anon_sym_LBRACE, + ACTIONS(3446), 1, + anon_sym_SQUOTE, + ACTIONS(5437), 1, + anon_sym_move, + STATE(472), 1, + sym_block, + STATE(3598), 1, + sym_label, STATE(2417), 2, sym_line_comment, sym_block_comment, - ACTIONS(3703), 5, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_where, - [75230] = 4, + [75212] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(3446), 1, + anon_sym_SQUOTE, + ACTIONS(4981), 1, + anon_sym_LBRACE, + ACTIONS(5439), 1, + anon_sym_SEMI, + STATE(672), 1, + sym_block, + STATE(3594), 1, + sym_label, STATE(2418), 2, sym_line_comment, sym_block_comment, - ACTIONS(3711), 5, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_where, - [75248] = 8, + [75238] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(4979), 1, + ACTIONS(400), 1, anon_sym_LBRACE, - ACTIONS(5419), 1, - anon_sym_SEMI, - STATE(642), 1, + ACTIONS(3446), 1, + anon_sym_SQUOTE, + ACTIONS(4983), 1, + anon_sym_PLUS, + STATE(1697), 1, sym_block, - STATE(3586), 1, + STATE(3599), 1, sym_label, STATE(2419), 2, sym_line_comment, sym_block_comment, - [75274] = 8, + [75264] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(4979), 1, - anon_sym_LBRACE, - ACTIONS(5421), 1, - anon_sym_SEMI, - STATE(544), 1, - sym_block, - STATE(3586), 1, - sym_label, STATE(2420), 2, sym_line_comment, sym_block_comment, - [75300] = 5, + ACTIONS(5441), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [75282] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4756), 2, + ACTIONS(4973), 1, anon_sym_COLON, - anon_sym_PIPE, + ACTIONS(5323), 1, + anon_sym_GT, + ACTIONS(5325), 1, + anon_sym_COMMA, + STATE(2900), 1, + aux_sym_type_arguments_repeat1, + STATE(2902), 1, + sym_trait_bounds, STATE(2421), 2, sym_line_comment, sym_block_comment, - ACTIONS(3621), 3, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - [75320] = 8, + [75308] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3939), 1, - anon_sym_LPAREN, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4451), 1, + ACTIONS(4461), 1, + anon_sym_DOT_DOT, + ACTIONS(5141), 1, + anon_sym_COLON, + ACTIONS(5143), 1, anon_sym_COLON_COLON, - STATE(1623), 1, - sym_parameters, - STATE(1931), 1, - sym_type_arguments, + ACTIONS(4463), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(2422), 2, sym_line_comment, sym_block_comment, - [75346] = 8, + [75332] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4451), 1, - anon_sym_COLON_COLON, - ACTIONS(4582), 1, - anon_sym_COLON, - STATE(1931), 1, - sym_type_arguments, - STATE(2606), 1, - sym_trait_bounds, + ACTIONS(3446), 1, + anon_sym_SQUOTE, + ACTIONS(4981), 1, + anon_sym_LBRACE, + ACTIONS(5443), 1, + anon_sym_SEMI, + STATE(713), 1, + sym_block, + STATE(3594), 1, + sym_label, STATE(2423), 2, sym_line_comment, sym_block_comment, - [75372] = 6, + [75358] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5423), 1, - anon_sym_RBRACK, - ACTIONS(3299), 2, + ACTIONS(3446), 1, + anon_sym_SQUOTE, + ACTIONS(4981), 1, + anon_sym_LBRACE, + ACTIONS(5445), 1, anon_sym_SEMI, - anon_sym_PLUS, - ACTIONS(4453), 2, - anon_sym_PIPE, - anon_sym_COMMA, + STATE(627), 1, + sym_block, + STATE(3594), 1, + sym_label, STATE(2424), 2, sym_line_comment, sym_block_comment, - [75394] = 8, + [75384] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, - anon_sym_COLON, - ACTIONS(5311), 1, - anon_sym_GT, - ACTIONS(5313), 1, - anon_sym_COMMA, - STATE(2805), 1, - sym_trait_bounds, - STATE(2806), 1, - aux_sym_type_arguments_repeat1, STATE(2425), 2, sym_line_comment, sym_block_comment, - [75420] = 8, + ACTIONS(5447), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [75402] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, - anon_sym_COLON, - ACTIONS(5243), 1, - anon_sym_GT, - ACTIONS(5245), 1, + ACTIONS(5449), 1, + anon_sym_RPAREN, + ACTIONS(5452), 1, anon_sym_COMMA, - STATE(2853), 1, - sym_trait_bounds, - STATE(2854), 1, - aux_sym_type_arguments_repeat1, + STATE(2884), 1, + aux_sym_parameters_repeat1, + ACTIONS(4451), 2, + anon_sym_COLON, + anon_sym_PIPE, STATE(2426), 2, sym_line_comment, sym_block_comment, - [75446] = 7, + [75426] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5426), 1, - anon_sym_RPAREN, - ACTIONS(5428), 1, - anon_sym_COMMA, - STATE(2809), 1, - aux_sym_parameters_repeat1, - ACTIONS(4453), 2, - anon_sym_COLON, - anon_sym_PIPE, STATE(2427), 2, sym_line_comment, sym_block_comment, - [75470] = 6, + ACTIONS(5455), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [75444] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5430), 1, + ACTIONS(3291), 1, + anon_sym_PLUS, + ACTIONS(4451), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(5385), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(2406), 1, - aux_sym_where_clause_repeat1, STATE(2428), 2, sym_line_comment, sym_block_comment, - ACTIONS(3477), 3, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_SQUOTE, - [75492] = 8, + [75466] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4826), 1, - anon_sym_RPAREN, - ACTIONS(5432), 1, - anon_sym_COLON, - ACTIONS(5434), 1, - anon_sym_PIPE, - ACTIONS(5436), 1, - anon_sym_COMMA, - STATE(3001), 1, - aux_sym_closure_parameters_repeat1, STATE(2429), 2, sym_line_comment, sym_block_comment, - [75518] = 7, + ACTIONS(3675), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_where, + [75484] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5438), 1, - anon_sym_RPAREN, - ACTIONS(5440), 1, - anon_sym_COMMA, - STATE(2872), 1, - aux_sym_parameters_repeat1, - ACTIONS(4453), 2, - anon_sym_COLON, - anon_sym_PIPE, STATE(2430), 2, sym_line_comment, sym_block_comment, - [75542] = 8, + ACTIONS(3829), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_where, + [75502] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(4979), 1, - anon_sym_LBRACE, - ACTIONS(5442), 1, - anon_sym_SEMI, - STATE(484), 1, - sym_block, - STATE(3586), 1, - sym_label, + ACTIONS(5457), 1, + anon_sym_RPAREN, + ACTIONS(5459), 1, + anon_sym_COMMA, + STATE(2884), 1, + aux_sym_parameters_repeat1, + ACTIONS(4451), 2, + anon_sym_COLON, + anon_sym_PIPE, STATE(2431), 2, sym_line_comment, sym_block_comment, - [75568] = 8, + [75526] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(4979), 1, - anon_sym_LBRACE, - ACTIONS(5444), 1, - anon_sym_SEMI, - STATE(591), 1, - sym_block, - STATE(3586), 1, - sym_label, + ACTIONS(3839), 1, + anon_sym_PLUS, + ACTIONS(4760), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(5402), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(2432), 2, sym_line_comment, sym_block_comment, - [75594] = 7, + [75548] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1464), 1, - anon_sym_RPAREN, - ACTIONS(5446), 1, - anon_sym_COMMA, - STATE(2817), 1, - aux_sym_parameters_repeat1, - ACTIONS(4453), 2, - anon_sym_COLON, + ACTIONS(4778), 1, anon_sym_PIPE, + ACTIONS(5461), 1, + anon_sym_SEMI, + ACTIONS(5463), 1, + anon_sym_COLON, + ACTIONS(5465), 1, + anon_sym_EQ, + ACTIONS(5467), 1, + anon_sym_else, STATE(2433), 2, sym_line_comment, sym_block_comment, - [75618] = 8, + [75574] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5448), 1, - anon_sym_SEMI, - ACTIONS(5450), 1, + ACTIONS(4760), 2, anon_sym_COLON, - ACTIONS(5452), 1, anon_sym_PIPE, - ACTIONS(5454), 1, - anon_sym_EQ, - ACTIONS(5456), 1, - anon_sym_else, STATE(2434), 2, sym_line_comment, sym_block_comment, - [75644] = 4, + ACTIONS(3839), 3, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + [75594] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(4973), 1, + anon_sym_COLON, + ACTIONS(5298), 1, + anon_sym_PLUS, + STATE(3118), 1, + sym_trait_bounds, + ACTIONS(5469), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(2435), 2, sym_line_comment, sym_block_comment, - ACTIONS(5458), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [75662] = 8, + [75618] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, + ACTIONS(4451), 2, anon_sym_COLON, - ACTIONS(5460), 1, - anon_sym_GT, - ACTIONS(5462), 1, - anon_sym_COMMA, - STATE(2773), 1, - aux_sym_type_parameters_repeat1, - STATE(2888), 1, - sym_trait_bounds, + anon_sym_PIPE, STATE(2436), 2, sym_line_comment, sym_block_comment, - [75688] = 8, + ACTIONS(3291), 3, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + [75638] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(4997), 1, - anon_sym_LBRACE, - ACTIONS(5464), 1, - anon_sym_SEMI, - STATE(1318), 1, - sym_block, - STATE(3589), 1, - sym_label, + ACTIONS(3087), 1, + anon_sym_PLUS, + ACTIONS(4973), 1, + anon_sym_COLON, + STATE(3118), 1, + sym_trait_bounds, + ACTIONS(5469), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(2437), 2, sym_line_comment, sym_block_comment, - [75714] = 6, + [75662] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5468), 1, - anon_sym_COMMA, - STATE(2428), 1, - aux_sym_where_clause_repeat1, + ACTIONS(3243), 1, + anon_sym_LPAREN, + ACTIONS(4449), 1, + anon_sym_LT2, + ACTIONS(4467), 1, + anon_sym_COLON_COLON, + STATE(1082), 1, + sym_parameters, + STATE(1935), 1, + sym_type_arguments, STATE(2438), 2, sym_line_comment, sym_block_comment, - ACTIONS(5466), 3, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_SQUOTE, - [75736] = 4, + [75688] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(5471), 1, + anon_sym_RPAREN, + ACTIONS(5473), 1, + anon_sym_COMMA, + STATE(2915), 1, + aux_sym_parameters_repeat1, + ACTIONS(4451), 2, + anon_sym_COLON, + anon_sym_PIPE, STATE(2439), 2, sym_line_comment, sym_block_comment, - ACTIONS(5470), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [75754] = 7, + [75712] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4584), 1, - anon_sym_EQ, - ACTIONS(4971), 1, - anon_sym_COLON, - STATE(2746), 1, - sym_trait_bounds, - ACTIONS(5472), 2, - anon_sym_GT, - anon_sym_COMMA, STATE(2440), 2, sym_line_comment, sym_block_comment, - [75778] = 8, + ACTIONS(5475), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [75730] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, - anon_sym_COLON, - ACTIONS(5323), 1, - anon_sym_GT, - ACTIONS(5325), 1, - anon_sym_COMMA, - STATE(2984), 1, - sym_trait_bounds, - STATE(2991), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(400), 1, + anon_sym_LBRACE, + ACTIONS(3446), 1, + anon_sym_SQUOTE, + ACTIONS(4983), 1, + anon_sym_PLUS, + STATE(1655), 1, + sym_block, + STATE(3599), 1, + sym_label, STATE(2441), 2, sym_line_comment, sym_block_comment, - [75804] = 4, + [75756] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(4263), 1, + anon_sym_LBRACE, + ACTIONS(5479), 1, + anon_sym_STAR, + STATE(2984), 1, + sym_use_list, + ACTIONS(5477), 2, + sym_identifier, + sym_super, STATE(2442), 2, sym_line_comment, sym_block_comment, - ACTIONS(5474), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [75822] = 4, + [75780] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -171432,280 +171419,305 @@ static const uint16_t ts_small_parse_table[] = { STATE(2443), 2, sym_line_comment, sym_block_comment, - ACTIONS(5476), 5, + ACTIONS(3679), 5, anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACE, + anon_sym_COLON, anon_sym_EQ, - anon_sym_COMMA, anon_sym_where, - [75840] = 4, + [75798] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2444), 2, + ACTIONS(5483), 1, + anon_sym_COMMA, + ACTIONS(5481), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_SQUOTE, + STATE(2444), 3, sym_line_comment, sym_block_comment, - ACTIONS(5478), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [75858] = 8, + aux_sym_where_clause_repeat1, + [75818] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, + ACTIONS(3446), 1, anon_sym_SQUOTE, - ACTIONS(4997), 1, + ACTIONS(4981), 1, anon_sym_LBRACE, - ACTIONS(5480), 1, + ACTIONS(5486), 1, anon_sym_SEMI, - STATE(1458), 1, + STATE(584), 1, sym_block, - STATE(3589), 1, + STATE(3594), 1, sym_label, STATE(2445), 2, sym_line_comment, sym_block_comment, - [75884] = 4, + [75844] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(4580), 1, + anon_sym_EQ, + ACTIONS(4973), 1, + anon_sym_COLON, + STATE(2990), 1, + sym_trait_bounds, + ACTIONS(5488), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(2446), 2, sym_line_comment, sym_block_comment, - ACTIONS(5482), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [75902] = 8, + [75868] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4654), 1, - anon_sym_GT, - ACTIONS(4971), 1, + ACTIONS(4973), 1, anon_sym_COLON, - ACTIONS(5484), 1, + ACTIONS(5300), 1, + anon_sym_GT, + ACTIONS(5302), 1, anon_sym_COMMA, - STATE(2888), 1, + STATE(2920), 1, + aux_sym_type_arguments_repeat1, + STATE(2923), 1, sym_trait_bounds, - STATE(2891), 1, - aux_sym_type_parameters_repeat1, STATE(2447), 2, sym_line_comment, sym_block_comment, - [75928] = 4, + [75894] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(3941), 1, + anon_sym_LPAREN, + ACTIONS(4449), 1, + anon_sym_LT2, + ACTIONS(4467), 1, + anon_sym_COLON_COLON, + STATE(1604), 1, + sym_parameters, + STATE(1935), 1, + sym_type_arguments, STATE(2448), 2, sym_line_comment, sym_block_comment, - ACTIONS(3643), 5, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_where, - [75946] = 4, + [75920] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(5492), 1, + anon_sym_COLON_COLON, + ACTIONS(5494), 1, + anon_sym_as, STATE(2449), 2, sym_line_comment, sym_block_comment, - ACTIONS(3647), 5, + ACTIONS(5490), 3, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_where, - [75964] = 8, + anon_sym_RBRACE, + anon_sym_COMMA, + [75942] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(400), 1, - anon_sym_LBRACE, - ACTIONS(3344), 1, + ACTIONS(3446), 1, anon_sym_SQUOTE, - ACTIONS(4989), 1, - anon_sym_PLUS, - STATE(1683), 1, + ACTIONS(5009), 1, + anon_sym_LBRACE, + ACTIONS(5496), 1, + anon_sym_SEMI, + STATE(1294), 1, sym_block, - STATE(3591), 1, + STATE(3597), 1, sym_label, STATE(2450), 2, sym_line_comment, sym_block_comment, - [75990] = 8, + [75968] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1210), 1, - anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(5486), 1, - anon_sym_move, - STATE(463), 1, - sym_block, - STATE(3590), 1, - sym_label, + ACTIONS(4973), 1, + anon_sym_COLON, + ACTIONS(5225), 1, + anon_sym_GT, + ACTIONS(5227), 1, + anon_sym_COMMA, + STATE(2999), 1, + aux_sym_type_parameters_repeat1, + STATE(3000), 1, + sym_trait_bounds, STATE(2451), 2, sym_line_comment, sym_block_comment, - [76016] = 4, + [75994] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(5494), 1, + anon_sym_as, + ACTIONS(5498), 1, + anon_sym_COLON_COLON, STATE(2452), 2, sym_line_comment, sym_block_comment, - ACTIONS(3813), 5, + ACTIONS(5490), 3, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_where, - [76034] = 4, + anon_sym_RBRACE, + anon_sym_COMMA, + [76016] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(5494), 1, + anon_sym_as, + ACTIONS(5500), 1, + anon_sym_COLON_COLON, STATE(2453), 2, sym_line_comment, sym_block_comment, - ACTIONS(3817), 5, + ACTIONS(5490), 3, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_where, - [76052] = 4, + anon_sym_RBRACE, + anon_sym_COMMA, + [76038] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(5504), 1, + anon_sym_COLON_COLON, + ACTIONS(5506), 1, + anon_sym_as, STATE(2454), 2, sym_line_comment, sym_block_comment, - ACTIONS(3821), 5, + ACTIONS(5502), 3, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_where, - [76070] = 4, + anon_sym_RBRACE, + anon_sym_COMMA, + [76060] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(4449), 1, + anon_sym_LT2, + ACTIONS(4467), 1, + anon_sym_COLON_COLON, + ACTIONS(4578), 1, + anon_sym_COLON, + STATE(1935), 1, + sym_type_arguments, + STATE(2582), 1, + sym_trait_bounds, STATE(2455), 2, sym_line_comment, sym_block_comment, - ACTIONS(3683), 5, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_where, - [76088] = 4, + [76086] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(5510), 1, + anon_sym_COMMA, + STATE(2404), 1, + aux_sym_where_clause_repeat1, STATE(2456), 2, sym_line_comment, sym_block_comment, - ACTIONS(3687), 5, + ACTIONS(5508), 3, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_where, - [76106] = 8, + anon_sym_SQUOTE, + [76108] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(4979), 1, - anon_sym_LBRACE, - ACTIONS(5488), 1, + ACTIONS(5373), 1, + anon_sym_PIPE, + ACTIONS(5512), 1, anon_sym_SEMI, - STATE(616), 1, - sym_block, - STATE(3586), 1, - sym_label, + ACTIONS(5514), 1, + anon_sym_COLON, + ACTIONS(5516), 1, + anon_sym_EQ, + ACTIONS(5518), 1, + anon_sym_else, STATE(2457), 2, sym_line_comment, sym_block_comment, - [76132] = 6, + [76134] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5492), 1, - anon_sym_COLON_COLON, - ACTIONS(5494), 1, - anon_sym_as, + ACTIONS(400), 1, + anon_sym_LBRACE, + ACTIONS(3446), 1, + anon_sym_SQUOTE, + ACTIONS(4983), 1, + anon_sym_PLUS, + STATE(1774), 1, + sym_block, + STATE(3599), 1, + sym_label, STATE(2458), 2, sym_line_comment, sym_block_comment, - ACTIONS(5490), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [76154] = 8, + [76160] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(4979), 1, - anon_sym_LBRACE, - ACTIONS(5496), 1, + ACTIONS(5373), 1, + anon_sym_PIPE, + ACTIONS(5520), 1, anon_sym_SEMI, - STATE(587), 1, - sym_block, - STATE(3586), 1, - sym_label, + ACTIONS(5522), 1, + anon_sym_COLON, + ACTIONS(5524), 1, + anon_sym_EQ, + ACTIONS(5526), 1, + anon_sym_else, STATE(2459), 2, sym_line_comment, sym_block_comment, - [76180] = 7, + [76186] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4584), 1, - anon_sym_EQ, - ACTIONS(4971), 1, - anon_sym_COLON, - STATE(2746), 1, - sym_trait_bounds, - ACTIONS(5498), 2, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(3446), 1, + anon_sym_SQUOTE, + ACTIONS(4981), 1, + anon_sym_LBRACE, + ACTIONS(5528), 1, + anon_sym_SEMI, + STATE(531), 1, + sym_block, + STATE(3594), 1, + sym_label, STATE(2460), 2, sym_line_comment, sym_block_comment, - [76204] = 4, + [76212] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -171713,149 +171725,143 @@ static const uint16_t ts_small_parse_table[] = { STATE(2461), 2, sym_line_comment, sym_block_comment, - ACTIONS(5500), 5, + ACTIONS(5530), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_EQ, anon_sym_COMMA, anon_sym_where, - [76222] = 6, + [76230] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5504), 1, - anon_sym_COLON_COLON, - ACTIONS(5506), 1, - anon_sym_as, - STATE(2462), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5502), 3, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(4646), 1, + anon_sym_GT, + ACTIONS(4973), 1, + anon_sym_COLON, + ACTIONS(5532), 1, anon_sym_COMMA, - [76244] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(2463), 2, + STATE(2823), 1, + aux_sym_type_parameters_repeat1, + STATE(3000), 1, + sym_trait_bounds, + STATE(2462), 2, sym_line_comment, sym_block_comment, - ACTIONS(3215), 5, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_as, - [76262] = 8, + [76256] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5452), 1, - anon_sym_PIPE, - ACTIONS(5508), 1, + ACTIONS(1466), 1, anon_sym_RPAREN, - ACTIONS(5510), 1, - anon_sym_COLON, - ACTIONS(5512), 1, + ACTIONS(5534), 1, anon_sym_COMMA, - STATE(2839), 1, - aux_sym_slice_pattern_repeat1, - STATE(2464), 2, + STATE(2876), 1, + aux_sym_parameters_repeat1, + ACTIONS(4451), 2, + anon_sym_COLON, + anon_sym_PIPE, + STATE(2463), 2, sym_line_comment, sym_block_comment, - [76288] = 8, + [76280] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, + ACTIONS(3446), 1, anon_sym_SQUOTE, - ACTIONS(4979), 1, + ACTIONS(5009), 1, anon_sym_LBRACE, - ACTIONS(5514), 1, + ACTIONS(5536), 1, anon_sym_SEMI, - STATE(622), 1, + STATE(1238), 1, sym_block, - STATE(3586), 1, + STATE(3597), 1, sym_label, - STATE(2465), 2, + STATE(2464), 2, sym_line_comment, sym_block_comment, - [76314] = 8, + [76306] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5452), 1, - anon_sym_PIPE, - ACTIONS(5516), 1, + STATE(2465), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5538), 5, anon_sym_SEMI, - ACTIONS(5518), 1, - anon_sym_COLON, - ACTIONS(5520), 1, + anon_sym_RBRACE, anon_sym_EQ, - ACTIONS(5522), 1, - anon_sym_else, + anon_sym_COMMA, + anon_sym_where, + [76324] = 4, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, STATE(2466), 2, sym_line_comment, sym_block_comment, - [76340] = 8, + ACTIONS(3715), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_where, + [76342] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, - anon_sym_LBRACE, - ACTIONS(3344), 1, + ACTIONS(3446), 1, anon_sym_SQUOTE, - ACTIONS(4989), 1, - anon_sym_PLUS, - STATE(1193), 1, + ACTIONS(5009), 1, + anon_sym_LBRACE, + ACTIONS(5540), 1, + anon_sym_SEMI, + STATE(1208), 1, sym_block, - STATE(3539), 1, + STATE(3597), 1, sym_label, STATE(2467), 2, sym_line_comment, sym_block_comment, - [76366] = 7, + [76368] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1470), 1, - anon_sym_RPAREN, - ACTIONS(5524), 1, - anon_sym_COMMA, - STATE(2846), 1, - aux_sym_parameters_repeat1, - ACTIONS(4453), 2, - anon_sym_COLON, - anon_sym_PIPE, STATE(2468), 2, sym_line_comment, sym_block_comment, - [76390] = 7, + ACTIONS(5542), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [76386] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4463), 1, + ACTIONS(4461), 1, anon_sym_DOT_DOT, - ACTIONS(5153), 1, - anon_sym_COLON, - ACTIONS(5155), 1, + ACTIONS(5143), 1, anon_sym_COLON_COLON, - ACTIONS(4465), 2, + ACTIONS(5163), 1, + anon_sym_COLON, + ACTIONS(4463), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, STATE(2469), 2, sym_line_comment, sym_block_comment, - [76414] = 4, + [76410] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -171863,30 +171869,27 @@ static const uint16_t ts_small_parse_table[] = { STATE(2470), 2, sym_line_comment, sym_block_comment, - ACTIONS(5526), 5, + ACTIONS(3719), 5, anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACE, + anon_sym_COLON, anon_sym_EQ, - anon_sym_COMMA, anon_sym_where, - [76432] = 7, + [76428] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5528), 1, - anon_sym_RPAREN, - ACTIONS(5530), 1, - anon_sym_COMMA, - STATE(2822), 1, - aux_sym_parameters_repeat1, - ACTIONS(4453), 2, - anon_sym_COLON, - anon_sym_PIPE, STATE(2471), 2, sym_line_comment, sym_block_comment, - [76456] = 4, + ACTIONS(3545), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_where, + [76446] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -171894,107 +171897,112 @@ static const uint16_t ts_small_parse_table[] = { STATE(2472), 2, sym_line_comment, sym_block_comment, - ACTIONS(5532), 5, + ACTIONS(5544), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_EQ, anon_sym_COMMA, anon_sym_where, - [76474] = 7, + [76464] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1466), 1, - anon_sym_RPAREN, - ACTIONS(5534), 1, - anon_sym_COMMA, - STATE(2961), 1, - aux_sym_parameters_repeat1, - ACTIONS(4453), 2, - anon_sym_COLON, - anon_sym_PIPE, + ACTIONS(338), 1, + anon_sym_LBRACE, + ACTIONS(3446), 1, + anon_sym_SQUOTE, + ACTIONS(5546), 1, + anon_sym_move, + STATE(1360), 1, + sym_block, + STATE(3547), 1, + sym_label, STATE(2473), 2, sym_line_comment, sym_block_comment, - [76498] = 8, + [76490] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(4979), 1, - anon_sym_LBRACE, - ACTIONS(5536), 1, - anon_sym_SEMI, - STATE(633), 1, - sym_block, - STATE(3586), 1, - sym_label, STATE(2474), 2, sym_line_comment, sym_block_comment, - [76524] = 6, + ACTIONS(3557), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_where, + [76508] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5402), 1, - anon_sym_RBRACK, - ACTIONS(3621), 2, - anon_sym_SEMI, - anon_sym_PLUS, - ACTIONS(4756), 2, - anon_sym_PIPE, - anon_sym_COMMA, STATE(2475), 2, sym_line_comment, sym_block_comment, - [76546] = 6, + ACTIONS(3549), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_where, + [76526] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5506), 1, - anon_sym_as, - ACTIONS(5538), 1, - anon_sym_COLON_COLON, + ACTIONS(3446), 1, + anon_sym_SQUOTE, + ACTIONS(5009), 1, + anon_sym_LBRACE, + ACTIONS(5548), 1, + anon_sym_SEMI, + STATE(1198), 1, + sym_block, + STATE(3597), 1, + sym_label, STATE(2476), 2, sym_line_comment, sym_block_comment, - ACTIONS(5502), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [76568] = 4, + [76552] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(3446), 1, + anon_sym_SQUOTE, + ACTIONS(5009), 1, + anon_sym_LBRACE, + ACTIONS(5550), 1, + anon_sym_SEMI, + STATE(1179), 1, + sym_block, + STATE(3597), 1, + sym_label, STATE(2477), 2, sym_line_comment, sym_block_comment, - ACTIONS(5540), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [76586] = 4, + [76578] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(3446), 1, + anon_sym_SQUOTE, + ACTIONS(5009), 1, + anon_sym_LBRACE, + ACTIONS(5552), 1, + anon_sym_SEMI, + STATE(1157), 1, + sym_block, + STATE(3597), 1, + sym_label, STATE(2478), 2, sym_line_comment, sym_block_comment, - ACTIONS(5542), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, [76604] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, @@ -172003,290 +172011,291 @@ static const uint16_t ts_small_parse_table[] = { STATE(2479), 2, sym_line_comment, sym_block_comment, - ACTIONS(5544), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, + ACTIONS(3215), 5, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_GT, anon_sym_COMMA, - anon_sym_where, - [76622] = 5, + anon_sym_as, + [76622] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4453), 2, - anon_sym_COLON, - anon_sym_PIPE, + ACTIONS(3446), 1, + anon_sym_SQUOTE, + ACTIONS(4981), 1, + anon_sym_LBRACE, + ACTIONS(5554), 1, + anon_sym_SEMI, + STATE(632), 1, + sym_block, + STATE(3594), 1, + sym_label, STATE(2480), 2, sym_line_comment, sym_block_comment, - ACTIONS(3299), 3, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - [76642] = 7, + [76648] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4243), 1, + ACTIONS(338), 1, anon_sym_LBRACE, - ACTIONS(5548), 1, - anon_sym_STAR, - STATE(3000), 1, - sym_use_list, - ACTIONS(5546), 2, - sym_identifier, - sym_super, + ACTIONS(3446), 1, + anon_sym_SQUOTE, + ACTIONS(4983), 1, + anon_sym_PLUS, + STATE(1108), 1, + sym_block, + STATE(3547), 1, + sym_label, STATE(2481), 2, sym_line_comment, sym_block_comment, - [76666] = 7, + [76674] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5550), 1, - anon_sym_RPAREN, - ACTIONS(5553), 1, - anon_sym_COMMA, - STATE(2822), 1, - aux_sym_parameters_repeat1, - ACTIONS(4453), 2, - anon_sym_COLON, - anon_sym_PIPE, STATE(2482), 2, sym_line_comment, sym_block_comment, - [76690] = 8, + ACTIONS(3825), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_where, + [76692] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(3446), 1, + anon_sym_SQUOTE, + ACTIONS(4981), 1, + anon_sym_LBRACE, ACTIONS(5556), 1, - anon_sym_STAR_SLASH, - ACTIONS(5558), 1, - sym__outer_block_doc_comment_marker, - ACTIONS(5560), 1, - sym__inner_block_doc_comment_marker, - ACTIONS(5562), 1, - sym__block_comment_content, - STATE(3265), 1, - sym__block_doc_comment_marker, + anon_sym_SEMI, + STATE(501), 1, + sym_block, + STATE(3594), 1, + sym_label, STATE(2483), 2, sym_line_comment, sym_block_comment, - [76716] = 8, + [76718] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(400), 1, - anon_sym_LBRACE, - ACTIONS(3344), 1, + ACTIONS(3446), 1, anon_sym_SQUOTE, - ACTIONS(4989), 1, - anon_sym_PLUS, - STATE(1689), 1, + ACTIONS(4981), 1, + anon_sym_LBRACE, + ACTIONS(5558), 1, + anon_sym_SEMI, + STATE(525), 1, sym_block, - STATE(3591), 1, + STATE(3594), 1, sym_label, STATE(2484), 2, sym_line_comment, sym_block_comment, - [76742] = 8, + [76744] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4852), 1, - anon_sym_PIPE, - ACTIONS(5564), 1, - anon_sym_SEMI, - ACTIONS(5566), 1, - anon_sym_COLON, - ACTIONS(5568), 1, - anon_sym_EQ, - ACTIONS(5570), 1, - anon_sym_else, + ACTIONS(400), 1, + anon_sym_LBRACE, + ACTIONS(3446), 1, + anon_sym_SQUOTE, + ACTIONS(5560), 1, + anon_sym_move, + STATE(1743), 1, + sym_block, + STATE(3599), 1, + sym_label, STATE(2485), 2, sym_line_comment, sym_block_comment, - [76768] = 8, + [76770] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, + ACTIONS(3446), 1, anon_sym_SQUOTE, - ACTIONS(4997), 1, + ACTIONS(5009), 1, anon_sym_LBRACE, - ACTIONS(5572), 1, + ACTIONS(5562), 1, anon_sym_SEMI, - STATE(1431), 1, + STATE(1402), 1, sym_block, - STATE(3589), 1, + STATE(3597), 1, sym_label, STATE(2486), 2, sym_line_comment, sym_block_comment, - [76794] = 6, + [76796] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3299), 1, - anon_sym_PLUS, - ACTIONS(4453), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(5423), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(3446), 1, + anon_sym_SQUOTE, + ACTIONS(5009), 1, + anon_sym_LBRACE, + ACTIONS(5564), 1, + anon_sym_SEMI, + STATE(1126), 1, + sym_block, + STATE(3597), 1, + sym_label, STATE(2487), 2, sym_line_comment, sym_block_comment, - [76816] = 6, + [76822] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5506), 1, - anon_sym_as, - ACTIONS(5574), 1, - anon_sym_COLON_COLON, + ACTIONS(3446), 1, + anon_sym_SQUOTE, + ACTIONS(5009), 1, + anon_sym_LBRACE, + ACTIONS(5566), 1, + anon_sym_SEMI, + STATE(1197), 1, + sym_block, + STATE(3597), 1, + sym_label, STATE(2488), 2, sym_line_comment, sym_block_comment, - ACTIONS(5502), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [76838] = 8, + [76848] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, - anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(5576), 1, - anon_sym_move, - STATE(1454), 1, - sym_block, - STATE(3539), 1, - sym_label, + ACTIONS(1460), 1, + anon_sym_RPAREN, + ACTIONS(5568), 1, + anon_sym_COMMA, + STATE(2974), 1, + aux_sym_parameters_repeat1, + ACTIONS(4451), 2, + anon_sym_COLON, + anon_sym_PIPE, STATE(2489), 2, sym_line_comment, sym_block_comment, - [76864] = 8, + [76872] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, + ACTIONS(3446), 1, anon_sym_SQUOTE, - ACTIONS(4979), 1, + ACTIONS(4981), 1, anon_sym_LBRACE, - ACTIONS(5578), 1, + ACTIONS(5570), 1, anon_sym_SEMI, - STATE(519), 1, + STATE(552), 1, sym_block, - STATE(3586), 1, + STATE(3594), 1, sym_label, STATE(2490), 2, sym_line_comment, sym_block_comment, - [76890] = 8, + [76898] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3243), 1, - anon_sym_LPAREN, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4451), 1, - anon_sym_COLON_COLON, - STATE(1049), 1, - sym_parameters, - STATE(1931), 1, - sym_type_arguments, STATE(2491), 2, sym_line_comment, sym_block_comment, - [76916] = 8, + ACTIONS(5572), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [76916] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(4979), 1, - anon_sym_LBRACE, - ACTIONS(5580), 1, - anon_sym_SEMI, - STATE(574), 1, - sym_block, - STATE(3586), 1, - sym_label, STATE(2492), 2, sym_line_comment, sym_block_comment, - [76942] = 4, + ACTIONS(5574), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [76934] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(5576), 1, + anon_sym_STAR_SLASH, + ACTIONS(5578), 1, + sym__outer_block_doc_comment_marker, + ACTIONS(5580), 1, + sym__inner_block_doc_comment_marker, + ACTIONS(5582), 1, + sym__block_comment_content, + STATE(3113), 1, + sym__block_doc_comment_marker, STATE(2493), 2, sym_line_comment, sym_block_comment, - ACTIONS(5582), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [76960] = 6, + [76960] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4463), 1, - anon_sym_DOT_DOT, - ACTIONS(5155), 1, - anon_sym_COLON_COLON, - ACTIONS(4465), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(4443), 1, + anon_sym_LPAREN, + ACTIONS(4894), 1, + anon_sym_LT, + STATE(2198), 1, + sym_parameters, + STATE(3308), 1, + sym_type_parameters, STATE(2494), 2, sym_line_comment, sym_block_comment, - [76981] = 7, + [76983] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, + ACTIONS(4892), 1, anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - STATE(1195), 1, - sym_block, - STATE(3539), 1, - sym_label, + ACTIONS(4896), 1, + anon_sym_where, + STATE(684), 1, + sym_field_declaration_list, + STATE(3073), 1, + sym_where_clause, STATE(2495), 2, sym_line_comment, sym_block_comment, - [77004] = 6, + [77006] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, ACTIONS(5584), 1, anon_sym_DQUOTE, - STATE(2510), 1, + STATE(2529), 1, aux_sym_string_literal_repeat1, ACTIONS(5586), 2, sym_string_content, @@ -172294,376 +172303,377 @@ static const uint16_t ts_small_parse_table[] = { STATE(2496), 2, sym_line_comment, sym_block_comment, - [77025] = 7, + [77027] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5175), 1, - anon_sym_LPAREN, - ACTIONS(5177), 1, - anon_sym_LBRACK, - ACTIONS(5181), 1, - anon_sym_LBRACE, - STATE(1196), 1, - sym_delim_token_tree, + ACTIONS(3446), 1, + anon_sym_SQUOTE, + STATE(372), 1, + sym_block, + STATE(3457), 1, + sym_label, STATE(2497), 2, sym_line_comment, sym_block_comment, - [77048] = 7, + [77050] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3251), 1, - anon_sym_LT2, - ACTIONS(5103), 1, - sym_super, - ACTIONS(5588), 1, - sym_identifier, - STATE(1565), 1, - sym_type_arguments, + ACTIONS(1212), 1, + anon_sym_LBRACE, + ACTIONS(3446), 1, + anon_sym_SQUOTE, + STATE(467), 1, + sym_block, + STATE(3598), 1, + sym_label, STATE(2498), 2, sym_line_comment, sym_block_comment, - [77071] = 7, + [77073] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3251), 1, - anon_sym_LT2, - ACTIONS(5103), 1, - sym_super, - ACTIONS(5588), 1, - sym_identifier, - STATE(1570), 1, - sym_type_arguments, + ACTIONS(1212), 1, + anon_sym_LBRACE, + ACTIONS(3446), 1, + anon_sym_SQUOTE, + STATE(452), 1, + sym_block, + STATE(3598), 1, + sym_label, STATE(2499), 2, sym_line_comment, sym_block_comment, - [77094] = 7, + [77096] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5452), 1, - anon_sym_PIPE, - ACTIONS(5590), 1, - anon_sym_RPAREN, - ACTIONS(5592), 1, - anon_sym_COMMA, - STATE(2989), 1, - aux_sym_tuple_pattern_repeat1, + ACTIONS(338), 1, + anon_sym_LBRACE, + ACTIONS(3446), 1, + anon_sym_SQUOTE, + STATE(3406), 1, + sym_block, + STATE(3547), 1, + sym_label, STATE(2500), 2, sym_line_comment, sym_block_comment, - [77117] = 7, + [77119] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5452), 1, - anon_sym_PIPE, - ACTIONS(5594), 1, - anon_sym_RBRACK, - ACTIONS(5596), 1, - anon_sym_COMMA, - STATE(3007), 1, - aux_sym_slice_pattern_repeat1, + ACTIONS(4983), 1, + anon_sym_PLUS, + ACTIONS(5588), 1, + anon_sym_SEMI, + ACTIONS(5590), 1, + anon_sym_EQ, + ACTIONS(5592), 1, + anon_sym_else, STATE(2501), 2, sym_line_comment, sym_block_comment, - [77140] = 7, + [77142] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(5598), 1, - anon_sym_COLON_COLON, - ACTIONS(5600), 1, - anon_sym_for, - STATE(1931), 1, - sym_type_arguments, + ACTIONS(4983), 1, + anon_sym_PLUS, + ACTIONS(5594), 1, + anon_sym_RPAREN, + ACTIONS(5596), 1, + anon_sym_COMMA, + STATE(2805), 1, + aux_sym_ordered_field_declaration_list_repeat1, STATE(2502), 2, sym_line_comment, sym_block_comment, - [77163] = 7, + [77165] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(5602), 1, - sym_identifier, - ACTIONS(5604), 1, - sym_super, - STATE(3195), 1, - sym_type_arguments, + ACTIONS(4878), 1, + anon_sym_LBRACE, + ACTIONS(4896), 1, + anon_sym_where, + STATE(543), 1, + sym_declaration_list, + STATE(3246), 1, + sym_where_clause, STATE(2503), 2, sym_line_comment, sym_block_comment, - [77186] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, + [77188] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - STATE(399), 1, - sym_block, - STATE(3510), 1, - sym_label, + ACTIONS(4896), 1, + anon_sym_where, + ACTIONS(4983), 1, + anon_sym_PLUS, + ACTIONS(5598), 1, + anon_sym_SEMI, + STATE(3375), 1, + sym_where_clause, STATE(2504), 2, sym_line_comment, sym_block_comment, - [77209] = 7, + [77211] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(5602), 1, - sym_identifier, - ACTIONS(5604), 1, - sym_super, - STATE(3217), 1, - sym_type_arguments, + ACTIONS(4884), 1, + anon_sym_LBRACE, + ACTIONS(4896), 1, + anon_sym_where, + STATE(1167), 1, + sym_declaration_list, + STATE(3039), 1, + sym_where_clause, STATE(2505), 2, sym_line_comment, sym_block_comment, - [77232] = 7, + [77234] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5606), 1, - anon_sym_RPAREN, - ACTIONS(5608), 1, - anon_sym_COMMA, - STATE(2742), 1, - aux_sym_tuple_type_repeat1, + ACTIONS(400), 1, + anon_sym_LBRACE, + ACTIONS(3446), 1, + anon_sym_SQUOTE, + STATE(1756), 1, + sym_block, + STATE(3599), 1, + sym_label, STATE(2506), 2, sym_line_comment, sym_block_comment, - [77255] = 7, + [77257] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4971), 1, - anon_sym_COLON, - STATE(1933), 1, - sym_type_arguments, - STATE(2604), 1, - sym_trait_bounds, + ACTIONS(4896), 1, + anon_sym_where, + ACTIONS(4983), 1, + anon_sym_PLUS, + ACTIONS(5600), 1, + anon_sym_SEMI, + STATE(3398), 1, + sym_where_clause, STATE(2507), 2, sym_line_comment, sym_block_comment, - [77278] = 5, + [77280] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4453), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(5610), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(4449), 1, + anon_sym_LT2, + ACTIONS(5602), 1, + anon_sym_COLON_COLON, + ACTIONS(5604), 1, + anon_sym_for, + STATE(1935), 1, + sym_type_arguments, STATE(2508), 2, sym_line_comment, sym_block_comment, - [77297] = 7, + [77303] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3243), 1, - anon_sym_LPAREN, - ACTIONS(4449), 1, - anon_sym_LT2, - STATE(1067), 1, - sym_parameters, - STATE(1933), 1, - sym_type_arguments, + ACTIONS(4646), 1, + anon_sym_GT, + ACTIONS(5532), 1, + anon_sym_COMMA, + ACTIONS(5606), 1, + anon_sym_EQ, + STATE(2823), 1, + aux_sym_type_parameters_repeat1, STATE(2509), 2, sym_line_comment, sym_block_comment, - [77320] = 5, + [77326] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5612), 1, - anon_sym_DQUOTE, - ACTIONS(5614), 2, - sym_string_content, - sym_escape_sequence, - STATE(2510), 3, + ACTIONS(4449), 1, + anon_sym_LT2, + ACTIONS(5602), 1, + anon_sym_COLON_COLON, + ACTIONS(5608), 1, + anon_sym_for, + STATE(1935), 1, + sym_type_arguments, + STATE(2510), 2, sym_line_comment, sym_block_comment, - aux_sym_string_literal_repeat1, - [77339] = 7, + [77349] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(5235), 1, - anon_sym_LBRACE, - STATE(1234), 1, - sym_enum_variant_list, - STATE(3090), 1, - sym_where_clause, + ACTIONS(4449), 1, + anon_sym_LT2, + ACTIONS(5602), 1, + anon_sym_COLON_COLON, + ACTIONS(5610), 1, + anon_sym_for, + STATE(1935), 1, + sym_type_arguments, STATE(2511), 2, sym_line_comment, sym_block_comment, - [77362] = 7, + [77372] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5460), 1, - anon_sym_GT, - ACTIONS(5462), 1, - anon_sym_COMMA, - ACTIONS(5617), 1, - anon_sym_EQ, - STATE(2773), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(3947), 1, + anon_sym_LT2, + ACTIONS(4095), 1, + anon_sym_COLON_COLON, + ACTIONS(4814), 1, + anon_sym_BANG, + STATE(1598), 1, + sym_type_arguments, STATE(2512), 2, sym_line_comment, sym_block_comment, - [77385] = 7, + [77395] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4915), 1, + ACTIONS(4878), 1, anon_sym_LBRACE, - STATE(1258), 1, + ACTIONS(4896), 1, + anon_sym_where, + STATE(597), 1, sym_declaration_list, - STATE(3116), 1, + STATE(3266), 1, sym_where_clause, STATE(2513), 2, sym_line_comment, sym_block_comment, - [77408] = 7, + [77418] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4870), 1, + ACTIONS(1212), 1, anon_sym_LBRACE, - ACTIONS(4874), 1, - anon_sym_where, - STATE(685), 1, - sym_field_declaration_list, - STATE(3190), 1, - sym_where_clause, + ACTIONS(3446), 1, + anon_sym_SQUOTE, + STATE(453), 1, + sym_block, + STATE(3598), 1, + sym_label, STATE(2514), 2, sym_line_comment, sym_block_comment, - [77431] = 7, + [77441] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4891), 1, - anon_sym_LBRACE, - STATE(1268), 1, - sym_field_declaration_list, - STATE(3119), 1, - sym_where_clause, STATE(2515), 2, sym_line_comment, sym_block_comment, - [77454] = 5, + ACTIONS(4257), 4, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_AMP_AMP, + anon_sym_SQUOTE, + [77458] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5619), 1, - anon_sym_COLON, + ACTIONS(5612), 1, + anon_sym_LPAREN, + ACTIONS(5614), 1, + anon_sym_LBRACK, + ACTIONS(5616), 1, + anon_sym_LBRACE, + STATE(1959), 1, + sym_delim_token_tree, STATE(2516), 2, sym_line_comment, sym_block_comment, - ACTIONS(4852), 3, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COMMA, - [77473] = 7, + [77481] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, - anon_sym_LPAREN, - ACTIONS(4872), 1, - anon_sym_LT, - STATE(2196), 1, - sym_parameters, - STATE(3163), 1, - sym_type_parameters, + ACTIONS(3446), 1, + anon_sym_SQUOTE, + STATE(390), 1, + sym_block, + STATE(3457), 1, + sym_label, STATE(2517), 2, sym_line_comment, sym_block_comment, - [77496] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, + [77504] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - STATE(393), 1, - sym_block, - STATE(3510), 1, - sym_label, + ACTIONS(4449), 1, + anon_sym_LT2, + STATE(3150), 1, + sym_type_arguments, + ACTIONS(5151), 2, + sym_identifier, + sym_super, STATE(2518), 2, sym_line_comment, sym_block_comment, - [77519] = 7, + [77525] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, - anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - STATE(1287), 1, - sym_block, - STATE(3539), 1, - sym_label, + ACTIONS(4449), 1, + anon_sym_LT2, + STATE(3164), 1, + sym_type_arguments, + ACTIONS(5151), 2, + sym_identifier, + sym_super, STATE(2519), 2, sym_line_comment, sym_block_comment, - [77542] = 6, + [77546] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5621), 1, + ACTIONS(5618), 1, anon_sym_DQUOTE, - STATE(2510), 1, + STATE(2653), 1, aux_sym_string_literal_repeat1, ACTIONS(5586), 2, sym_string_content, @@ -172671,4763 +172681,4774 @@ static const uint16_t ts_small_parse_table[] = { STATE(2520), 2, sym_line_comment, sym_block_comment, - [77563] = 7, + [77567] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5623), 1, - anon_sym_LPAREN, - ACTIONS(5625), 1, - anon_sym_LBRACK, - ACTIONS(5627), 1, + ACTIONS(1212), 1, anon_sym_LBRACE, - STATE(372), 1, - sym_delim_token_tree, + ACTIONS(3446), 1, + anon_sym_SQUOTE, + STATE(446), 1, + sym_block, + STATE(3598), 1, + sym_label, STATE(2521), 2, sym_line_comment, sym_block_comment, - [77586] = 7, + [77590] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3251), 1, + ACTIONS(4449), 1, anon_sym_LT2, - ACTIONS(5103), 1, - sym_super, - ACTIONS(5629), 1, - sym_identifier, - STATE(1419), 1, + ACTIONS(4973), 1, + anon_sym_COLON, + STATE(1931), 1, sym_type_arguments, + STATE(2577), 1, + sym_trait_bounds, STATE(2522), 2, sym_line_comment, sym_block_comment, - [77609] = 7, + [77613] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5631), 1, - anon_sym_SEMI, - STATE(3400), 1, - sym_where_clause, + ACTIONS(1212), 1, + anon_sym_LBRACE, + ACTIONS(3446), 1, + anon_sym_SQUOTE, + STATE(458), 1, + sym_block, + STATE(3598), 1, + sym_label, STATE(2523), 2, sym_line_comment, sym_block_comment, - [77632] = 7, + [77636] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5452), 1, - anon_sym_PIPE, - ACTIONS(5633), 1, - anon_sym_RPAREN, - ACTIONS(5635), 1, - anon_sym_COMMA, - STATE(2857), 1, - aux_sym_slice_pattern_repeat1, + ACTIONS(4896), 1, + anon_sym_where, + ACTIONS(5269), 1, + anon_sym_LBRACE, + STATE(614), 1, + sym_enum_variant_list, + STATE(3281), 1, + sym_where_clause, STATE(2524), 2, sym_line_comment, sym_block_comment, - [77655] = 7, + [77659] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5452), 1, - anon_sym_PIPE, - ACTIONS(5637), 1, - anon_sym_RPAREN, - ACTIONS(5639), 1, - anon_sym_COMMA, - STATE(2864), 1, - aux_sym_slice_pattern_repeat1, + ACTIONS(5620), 1, + anon_sym_COLON_COLON, STATE(2525), 2, sym_line_comment, sym_block_comment, - [77678] = 7, + ACTIONS(4694), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [77678] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5438), 1, - anon_sym_RPAREN, - ACTIONS(5440), 1, - anon_sym_COMMA, - STATE(2872), 1, - aux_sym_parameters_repeat1, + ACTIONS(5622), 1, + anon_sym_COLON_COLON, STATE(2526), 2, sym_line_comment, sym_block_comment, - [77701] = 6, + ACTIONS(4694), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [77697] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - STATE(3217), 1, - sym_type_arguments, - ACTIONS(5604), 2, - sym_identifier, - sym_super, + ACTIONS(5624), 1, + anon_sym_COLON_COLON, STATE(2527), 2, sym_line_comment, sym_block_comment, - [77722] = 6, + ACTIONS(4694), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [77716] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - STATE(3195), 1, - sym_type_arguments, - ACTIONS(5641), 2, - sym_identifier, - sym_super, + ACTIONS(5626), 1, + anon_sym_COLON_COLON, STATE(2528), 2, sym_line_comment, sym_block_comment, - [77743] = 6, + ACTIONS(4726), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [77735] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - STATE(3217), 1, - sym_type_arguments, - ACTIONS(5641), 2, - sym_identifier, - sym_super, + ACTIONS(5628), 1, + anon_sym_DQUOTE, + STATE(2685), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5586), 2, + sym_string_content, + sym_escape_sequence, STATE(2529), 2, sym_line_comment, sym_block_comment, - [77764] = 7, + [77756] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4878), 1, + ACTIONS(5612), 1, + anon_sym_LPAREN, + ACTIONS(5614), 1, + anon_sym_LBRACK, + ACTIONS(5616), 1, anon_sym_LBRACE, - STATE(582), 1, - sym_declaration_list, - STATE(3230), 1, - sym_where_clause, + STATE(1964), 1, + sym_delim_token_tree, STATE(2530), 2, sym_line_comment, sym_block_comment, - [77787] = 7, + [77779] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_GT, - ACTIONS(5371), 1, - anon_sym_COMMA, - ACTIONS(5617), 1, - anon_sym_EQ, - STATE(2873), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(3947), 1, + anon_sym_LT2, + ACTIONS(5630), 1, + sym_identifier, + ACTIONS(5632), 1, + sym_super, + STATE(1550), 1, + sym_type_arguments, STATE(2531), 2, sym_line_comment, sym_block_comment, - [77810] = 7, + [77802] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5432), 1, - anon_sym_COLON, - ACTIONS(5434), 1, - anon_sym_PIPE, - ACTIONS(5436), 1, - anon_sym_COMMA, - STATE(3001), 1, - aux_sym_closure_parameters_repeat1, + ACTIONS(3947), 1, + anon_sym_LT2, + ACTIONS(5630), 1, + sym_identifier, + ACTIONS(5632), 1, + sym_super, + STATE(1558), 1, + sym_type_arguments, STATE(2532), 2, sym_line_comment, sym_block_comment, - [77833] = 4, + [77825] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(4892), 1, + anon_sym_LBRACE, + ACTIONS(4896), 1, + anon_sym_where, + STATE(625), 1, + sym_field_declaration_list, + STATE(3297), 1, + sym_where_clause, STATE(2533), 2, sym_line_comment, sym_block_comment, - ACTIONS(5643), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - [77850] = 7, + [77848] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4654), 1, - anon_sym_GT, - ACTIONS(5484), 1, - anon_sym_COMMA, - ACTIONS(5617), 1, - anon_sym_EQ, - STATE(2891), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(5620), 1, + anon_sym_COLON_COLON, STATE(2534), 2, sym_line_comment, sym_block_comment, - [77873] = 6, + ACTIONS(4668), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [77867] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - STATE(3195), 1, - sym_type_arguments, - ACTIONS(5103), 2, - sym_identifier, - sym_super, + ACTIONS(5622), 1, + anon_sym_COLON_COLON, STATE(2535), 2, sym_line_comment, sym_block_comment, - [77894] = 7, + ACTIONS(4668), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [77886] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(5281), 1, - anon_sym_LBRACE, - STATE(745), 1, - sym_enum_variant_list, - STATE(3159), 1, - sym_where_clause, + ACTIONS(5624), 1, + anon_sym_COLON_COLON, STATE(2536), 2, sym_line_comment, sym_block_comment, - [77917] = 6, + ACTIONS(4668), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [77905] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - STATE(3217), 1, - sym_type_arguments, - ACTIONS(5103), 2, - sym_identifier, - sym_super, + ACTIONS(5626), 1, + anon_sym_COLON_COLON, STATE(2537), 2, sym_line_comment, sym_block_comment, - [77938] = 7, + ACTIONS(4748), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [77924] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5645), 1, - anon_sym_SEMI, - ACTIONS(5647), 1, - anon_sym_EQ, - ACTIONS(5649), 1, - anon_sym_else, + ACTIONS(4449), 1, + anon_sym_LT2, + ACTIONS(5151), 1, + sym_super, + ACTIONS(5634), 1, + sym_identifier, + STATE(3164), 1, + sym_type_arguments, STATE(2538), 2, sym_line_comment, sym_block_comment, - [77961] = 7, + [77947] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, ACTIONS(4449), 1, anon_sym_LT2, - ACTIONS(5604), 1, + ACTIONS(5151), 1, sym_super, - ACTIONS(5651), 1, + ACTIONS(5634), 1, sym_identifier, - STATE(3195), 1, + STATE(3150), 1, sym_type_arguments, STATE(2539), 2, sym_line_comment, sym_block_comment, - [77984] = 7, + [77970] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4915), 1, - anon_sym_LBRACE, - STATE(1344), 1, - sym_declaration_list, - STATE(3215), 1, - sym_where_clause, + ACTIONS(3446), 1, + anon_sym_SQUOTE, + STATE(395), 1, + sym_block, + STATE(3457), 1, + sym_label, STATE(2540), 2, sym_line_comment, sym_block_comment, - [78007] = 7, + [77993] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4989), 1, + ACTIONS(4983), 1, anon_sym_PLUS, - ACTIONS(5653), 1, - anon_sym_SEMI, - STATE(3381), 1, - sym_where_clause, + ACTIONS(5636), 1, + anon_sym_RPAREN, + ACTIONS(5638), 1, + anon_sym_COMMA, + STATE(2937), 1, + aux_sym_tuple_type_repeat1, STATE(2541), 2, sym_line_comment, sym_block_comment, - [78030] = 7, + [78016] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4915), 1, + ACTIONS(4884), 1, anon_sym_LBRACE, - STATE(1356), 1, + ACTIONS(4896), 1, + anon_sym_where, + STATE(1376), 1, sym_declaration_list, - STATE(3219), 1, + STATE(3067), 1, sym_where_clause, STATE(2542), 2, sym_line_comment, sym_block_comment, - [78053] = 7, + [78039] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(5235), 1, - anon_sym_LBRACE, - STATE(1361), 1, - sym_enum_variant_list, - STATE(3229), 1, - sym_where_clause, + anon_sym_SLASH_STAR, + ACTIONS(4983), 1, + anon_sym_PLUS, STATE(2543), 2, sym_line_comment, sym_block_comment, - [78076] = 7, + ACTIONS(5640), 3, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + [78058] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, + ACTIONS(4896), 1, anon_sym_where, - ACTIONS(4878), 1, - anon_sym_LBRACE, - STATE(740), 1, - sym_declaration_list, - STATE(3099), 1, + ACTIONS(4983), 1, + anon_sym_PLUS, + ACTIONS(5642), 1, + anon_sym_SEMI, + STATE(3579), 1, sym_where_clause, STATE(2544), 2, sym_line_comment, sym_block_comment, - [78099] = 7, + [78081] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4891), 1, - anon_sym_LBRACE, - STATE(1371), 1, - sym_field_declaration_list, - STATE(3233), 1, - sym_where_clause, + ACTIONS(3941), 1, + anon_sym_LPAREN, + ACTIONS(4449), 1, + anon_sym_LT2, + STATE(1575), 1, + sym_parameters, + STATE(1931), 1, + sym_type_arguments, STATE(2545), 2, sym_line_comment, sym_block_comment, - [78122] = 4, + [78104] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(1212), 1, + anon_sym_LBRACE, + ACTIONS(3446), 1, + anon_sym_SQUOTE, + STATE(468), 1, + sym_block, + STATE(3598), 1, + sym_label, STATE(2546), 2, sym_line_comment, sym_block_comment, - ACTIONS(5397), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SQUOTE, - [78139] = 7, + [78127] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, + ACTIONS(5644), 1, + anon_sym_LPAREN, + ACTIONS(5646), 1, + anon_sym_LBRACK, + ACTIONS(5648), 1, anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - STATE(1376), 1, - sym_block, - STATE(3539), 1, - sym_label, + STATE(2729), 1, + sym_token_tree, STATE(2547), 2, sym_line_comment, sym_block_comment, - [78162] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, + [78150] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - STATE(244), 1, - sym_block, - STATE(3510), 1, - sym_label, + ACTIONS(4449), 1, + anon_sym_LT2, + STATE(3150), 1, + sym_type_arguments, + ACTIONS(5650), 2, + sym_identifier, + sym_super, STATE(2548), 2, sym_line_comment, sym_block_comment, - [78185] = 5, + [78171] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5655), 1, - anon_sym_COLON, + ACTIONS(4884), 1, + anon_sym_LBRACE, + ACTIONS(4896), 1, + anon_sym_where, + STATE(1434), 1, + sym_declaration_list, + STATE(3075), 1, + sym_where_clause, STATE(2549), 2, sym_line_comment, sym_block_comment, - ACTIONS(4852), 3, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COMMA, - [78204] = 5, - ACTIONS(3), 1, + [78194] = 6, + ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5657), 1, - aux_sym_token_repetition_pattern_token1, + ACTIONS(4449), 1, + anon_sym_LT2, + STATE(3164), 1, + sym_type_arguments, + ACTIONS(5650), 2, + sym_identifier, + sym_super, STATE(2550), 2, sym_line_comment, sym_block_comment, - ACTIONS(5659), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [78223] = 5, + [78215] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5661), 1, - anon_sym_in, + ACTIONS(4896), 1, + anon_sym_where, + ACTIONS(4983), 1, + anon_sym_PLUS, + ACTIONS(5652), 1, + anon_sym_SEMI, + STATE(3575), 1, + sym_where_clause, STATE(2551), 2, sym_line_comment, sym_block_comment, - ACTIONS(5663), 3, - sym_self, - sym_super, - sym_crate, - [78242] = 4, - ACTIONS(101), 1, + [78238] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, + ACTIONS(5654), 1, + aux_sym_token_repetition_pattern_token1, STATE(2552), 2, sym_line_comment, sym_block_comment, - ACTIONS(759), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - [78259] = 7, + ACTIONS(5656), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [78257] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, - anon_sym_LPAREN, - ACTIONS(4872), 1, - anon_sym_LT, - STATE(2191), 1, - sym_parameters, - STATE(3228), 1, - sym_type_parameters, + ACTIONS(4983), 1, + anon_sym_PLUS, + ACTIONS(5471), 1, + anon_sym_RPAREN, + ACTIONS(5473), 1, + anon_sym_COMMA, + STATE(2915), 1, + aux_sym_parameters_repeat1, STATE(2553), 2, sym_line_comment, sym_block_comment, - [78282] = 7, + [78280] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1466), 1, - anon_sym_RPAREN, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5534), 1, - anon_sym_COMMA, - STATE(2961), 1, - aux_sym_parameters_repeat1, + ACTIONS(4449), 1, + anon_sym_LT2, + ACTIONS(5602), 1, + anon_sym_COLON_COLON, + ACTIONS(5658), 1, + anon_sym_for, + STATE(1935), 1, + sym_type_arguments, STATE(2554), 2, sym_line_comment, sym_block_comment, - [78305] = 7, - ACTIONS(101), 1, + [78303] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1470), 1, - anon_sym_RPAREN, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5524), 1, - anon_sym_COMMA, - STATE(2846), 1, - aux_sym_parameters_repeat1, + ACTIONS(5660), 1, + aux_sym_token_repetition_pattern_token1, STATE(2555), 2, sym_line_comment, sym_block_comment, - [78328] = 7, + ACTIONS(5662), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [78322] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(5598), 1, - anon_sym_COLON_COLON, - ACTIONS(5665), 1, - anon_sym_for, - STATE(1931), 1, - sym_type_arguments, + ACTIONS(4983), 1, + anon_sym_PLUS, + ACTIONS(5457), 1, + anon_sym_RPAREN, + ACTIONS(5459), 1, + anon_sym_COMMA, + STATE(2884), 1, + aux_sym_parameters_repeat1, STATE(2556), 2, sym_line_comment, sym_block_comment, - [78351] = 7, + [78345] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5667), 1, - anon_sym_SEMI, - ACTIONS(5669), 1, - anon_sym_EQ, - ACTIONS(5671), 1, - anon_sym_else, + ACTIONS(1212), 1, + anon_sym_LBRACE, + ACTIONS(3446), 1, + anon_sym_SQUOTE, + STATE(455), 1, + sym_block, + STATE(3598), 1, + sym_label, STATE(2557), 2, sym_line_comment, sym_block_comment, - [78374] = 7, + [78368] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4989), 1, + ACTIONS(4983), 1, anon_sym_PLUS, - ACTIONS(5673), 1, + ACTIONS(5664), 1, anon_sym_SEMI, - STATE(3479), 1, - sym_where_clause, + ACTIONS(5666), 1, + anon_sym_EQ, + ACTIONS(5668), 1, + anon_sym_else, STATE(2558), 2, sym_line_comment, sym_block_comment, - [78397] = 7, + [78391] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4915), 1, - anon_sym_LBRACE, - STATE(1426), 1, - sym_declaration_list, - STATE(3271), 1, - sym_where_clause, + ACTIONS(5373), 1, + anon_sym_PIPE, + ACTIONS(5670), 1, + anon_sym_RPAREN, + ACTIONS(5672), 1, + anon_sym_COMMA, + STATE(2891), 1, + aux_sym_slice_pattern_repeat1, STATE(2559), 2, sym_line_comment, sym_block_comment, - [78420] = 7, + [78414] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5675), 1, - anon_sym_SEMI, - STATE(3500), 1, - sym_where_clause, + ACTIONS(5373), 1, + anon_sym_PIPE, STATE(2560), 2, sym_line_comment, sym_block_comment, - [78443] = 7, + ACTIONS(5674), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_COMMA, + [78433] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4915), 1, - anon_sym_LBRACE, - STATE(1441), 1, - sym_declaration_list, - STATE(3274), 1, - sym_where_clause, - STATE(2561), 2, + ACTIONS(5676), 1, + anon_sym_COMMA, + ACTIONS(5674), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + STATE(2561), 3, sym_line_comment, sym_block_comment, - [78466] = 7, + aux_sym_slice_pattern_repeat1, + [78452] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4878), 1, + ACTIONS(338), 1, anon_sym_LBRACE, - STATE(679), 1, - sym_declaration_list, - STATE(3210), 1, - sym_where_clause, + ACTIONS(3446), 1, + anon_sym_SQUOTE, + STATE(3547), 1, + sym_label, + STATE(3576), 1, + sym_block, STATE(2562), 2, sym_line_comment, sym_block_comment, - [78489] = 6, + [78475] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5677), 1, - anon_sym_DQUOTE, - STATE(2520), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5586), 2, - sym_string_content, - sym_escape_sequence, + ACTIONS(1460), 1, + anon_sym_RPAREN, + ACTIONS(4983), 1, + anon_sym_PLUS, + ACTIONS(5568), 1, + anon_sym_COMMA, + STATE(2974), 1, + aux_sym_parameters_repeat1, STATE(2563), 2, sym_line_comment, sym_block_comment, - [78510] = 6, + [78498] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, - anon_sym_COLON, - STATE(2888), 1, - sym_trait_bounds, - ACTIONS(5679), 2, - anon_sym_GT, - anon_sym_COMMA, STATE(2564), 2, sym_line_comment, sym_block_comment, - [78531] = 5, - ACTIONS(101), 1, + ACTIONS(865), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + [78515] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5241), 1, - anon_sym_PLUS, + ACTIONS(5679), 1, + aux_sym_token_repetition_pattern_token1, STATE(2565), 2, sym_line_comment, sym_block_comment, ACTIONS(5681), 3, - anon_sym_COLON, - anon_sym_GT, - anon_sym_COMMA, - [78550] = 7, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [78534] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4870), 1, - anon_sym_LBRACE, - ACTIONS(4874), 1, - anon_sym_where, - STATE(751), 1, - sym_field_declaration_list, - STATE(3286), 1, - sym_where_clause, STATE(2566), 2, sym_line_comment, sym_block_comment, - [78573] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, + ACTIONS(3215), 4, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COMMA, + [78551] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - STATE(382), 1, - sym_block, - STATE(3510), 1, - sym_label, + ACTIONS(4449), 1, + anon_sym_LT2, + ACTIONS(5602), 1, + anon_sym_COLON_COLON, + ACTIONS(5683), 1, + anon_sym_for, + STATE(1935), 1, + sym_type_arguments, STATE(2567), 2, sym_line_comment, sym_block_comment, - [78596] = 7, + [78574] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, - anon_sym_LPAREN, - ACTIONS(4872), 1, - anon_sym_LT, - STATE(2217), 1, - sym_parameters, - STATE(3083), 1, - sym_type_parameters, + ACTIONS(4983), 1, + anon_sym_PLUS, STATE(2568), 2, sym_line_comment, sym_block_comment, - [78619] = 5, + ACTIONS(5685), 3, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + [78593] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5241), 1, + ACTIONS(1466), 1, + anon_sym_RPAREN, + ACTIONS(4983), 1, anon_sym_PLUS, + ACTIONS(5534), 1, + anon_sym_COMMA, + STATE(2876), 1, + aux_sym_parameters_repeat1, STATE(2569), 2, sym_line_comment, sym_block_comment, - ACTIONS(5683), 3, - anon_sym_COLON, - anon_sym_GT, - anon_sym_COMMA, - [78638] = 7, + [78616] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5685), 1, - anon_sym_SEMI, - STATE(3598), 1, - sym_where_clause, + ACTIONS(5687), 1, + anon_sym_COLON, STATE(2570), 2, sym_line_comment, sym_block_comment, - [78661] = 7, + ACTIONS(4778), 3, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + [78635] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4915), 1, - anon_sym_LBRACE, - STATE(1121), 1, - sym_declaration_list, - STATE(3035), 1, - sym_where_clause, + ACTIONS(1470), 1, + anon_sym_RPAREN, + ACTIONS(4983), 1, + anon_sym_PLUS, + ACTIONS(5409), 1, + anon_sym_COMMA, + STATE(2762), 1, + aux_sym_parameters_repeat1, STATE(2571), 2, sym_line_comment, sym_block_comment, - [78684] = 7, + [78658] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(5604), 1, - sym_super, - ACTIONS(5651), 1, - sym_identifier, - STATE(3217), 1, - sym_type_arguments, + ACTIONS(400), 1, + anon_sym_LBRACE, + ACTIONS(3446), 1, + anon_sym_SQUOTE, + STATE(1754), 1, + sym_block, + STATE(3599), 1, + sym_label, STATE(2572), 2, sym_line_comment, sym_block_comment, - [78707] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, + [78681] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, + ACTIONS(338), 1, + anon_sym_LBRACE, + ACTIONS(3446), 1, anon_sym_SQUOTE, - STATE(383), 1, + STATE(1106), 1, sym_block, - STATE(3510), 1, + STATE(3547), 1, sym_label, STATE(2573), 2, sym_line_comment, sym_block_comment, - [78730] = 7, + [78704] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5687), 1, - anon_sym_SEMI, - STATE(3413), 1, - sym_where_clause, STATE(2574), 2, sym_line_comment, sym_block_comment, - [78753] = 6, + ACTIONS(901), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + [78721] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, - anon_sym_COLON, - STATE(3250), 1, - sym_trait_bounds, - ACTIONS(5373), 2, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(400), 1, + anon_sym_LBRACE, + ACTIONS(3446), 1, + anon_sym_SQUOTE, + STATE(1759), 1, + sym_block, + STATE(3599), 1, + sym_label, STATE(2575), 2, sym_line_comment, sym_block_comment, - [78774] = 7, + [78744] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_PLUS, ACTIONS(5689), 1, - anon_sym_RPAREN, - ACTIONS(5691), 1, - anon_sym_COMMA, - STATE(2946), 1, - aux_sym_tuple_type_repeat1, + anon_sym_DQUOTE, + STATE(2599), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5586), 2, + sym_string_content, + sym_escape_sequence, STATE(2576), 2, sym_line_comment, sym_block_comment, - [78797] = 7, + [78765] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4878), 1, - anon_sym_LBRACE, - STATE(514), 1, - sym_declaration_list, - STATE(3221), 1, - sym_where_clause, STATE(2577), 2, sym_line_comment, sym_block_comment, - [78820] = 7, + ACTIONS(5691), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SQUOTE, + [78782] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, - anon_sym_LPAREN, - ACTIONS(4449), 1, - anon_sym_LT2, - STATE(1933), 1, - sym_type_arguments, - STATE(1948), 1, - sym_parameters, + ACTIONS(4896), 1, + anon_sym_where, + ACTIONS(4945), 1, + anon_sym_LBRACE, + STATE(1122), 1, + sym_field_declaration_list, + STATE(3110), 1, + sym_where_clause, STATE(2578), 2, sym_line_comment, sym_block_comment, - [78843] = 7, + [78805] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5693), 1, - anon_sym_RPAREN, - ACTIONS(5695), 1, - anon_sym_COMMA, - STATE(2975), 1, - aux_sym_ordered_field_declaration_list_repeat1, + ACTIONS(338), 1, + anon_sym_LBRACE, + ACTIONS(3446), 1, + anon_sym_SQUOTE, + STATE(3547), 1, + sym_label, + STATE(3574), 1, + sym_block, STATE(2579), 2, sym_line_comment, sym_block_comment, - [78866] = 7, + [78828] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5697), 1, - anon_sym_LPAREN, - ACTIONS(5699), 1, - anon_sym_LBRACK, - ACTIONS(5701), 1, - anon_sym_LBRACE, - STATE(2533), 1, - sym_token_tree, + ACTIONS(4449), 1, + anon_sym_LT2, + ACTIONS(4724), 1, + anon_sym_for, + ACTIONS(5602), 1, + anon_sym_COLON_COLON, + STATE(1935), 1, + sym_type_arguments, STATE(2580), 2, sym_line_comment, sym_block_comment, - [78889] = 5, + [78851] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4453), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(5703), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(1212), 1, + anon_sym_LBRACE, + ACTIONS(3446), 1, + anon_sym_SQUOTE, + STATE(473), 1, + sym_block, + STATE(3598), 1, + sym_label, STATE(2581), 2, sym_line_comment, sym_block_comment, - [78908] = 7, + [78874] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1210), 1, - anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - STATE(473), 1, - sym_block, - STATE(3590), 1, - sym_label, STATE(2582), 2, sym_line_comment, sym_block_comment, - [78931] = 7, + ACTIONS(5693), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SQUOTE, + [78891] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1210), 1, + ACTIONS(4896), 1, + anon_sym_where, + ACTIONS(5285), 1, anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - STATE(466), 1, - sym_block, - STATE(3590), 1, - sym_label, + STATE(1141), 1, + sym_enum_variant_list, + STATE(3119), 1, + sym_where_clause, STATE(2583), 2, sym_line_comment, sym_block_comment, - [78954] = 6, + [78914] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5705), 1, - anon_sym_DQUOTE, - STATE(2595), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5586), 2, - sym_string_content, - sym_escape_sequence, + ACTIONS(5695), 1, + anon_sym_LBRACE, + ACTIONS(5697), 1, + anon_sym_for, + ACTIONS(5699), 1, + anon_sym_loop, + ACTIONS(5701), 1, + anon_sym_while, STATE(2584), 2, sym_line_comment, sym_block_comment, - [78975] = 7, + [78937] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(4997), 1, - anon_sym_LBRACE, - STATE(2841), 1, - sym_block, - STATE(3589), 1, - sym_label, + ACTIONS(4973), 1, + anon_sym_COLON, + STATE(3000), 1, + sym_trait_bounds, + ACTIONS(5703), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(2585), 2, sym_line_comment, sym_block_comment, - [78998] = 7, + [78958] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(400), 1, - anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - STATE(1744), 1, - sym_block, - STATE(3591), 1, - sym_label, + ACTIONS(4461), 1, + anon_sym_DOT_DOT, + ACTIONS(5217), 1, + anon_sym_COLON_COLON, + ACTIONS(4463), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(2586), 2, sym_line_comment, sym_block_comment, - [79021] = 5, - ACTIONS(3), 1, + [78979] = 7, + ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5707), 1, - aux_sym_token_repetition_pattern_token1, + ACTIONS(400), 1, + anon_sym_LBRACE, + ACTIONS(3446), 1, + anon_sym_SQUOTE, + STATE(1793), 1, + sym_block, + STATE(3599), 1, + sym_label, STATE(2587), 2, sym_line_comment, sym_block_comment, - ACTIONS(5709), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [79040] = 6, + [79002] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - STATE(3195), 1, - sym_type_arguments, - ACTIONS(5604), 2, - sym_identifier, - sym_super, + ACTIONS(5706), 1, + anon_sym_LPAREN, + ACTIONS(5708), 1, + anon_sym_LBRACK, + ACTIONS(5710), 1, + anon_sym_LBRACE, + STATE(1022), 1, + sym_delim_token_tree, STATE(2588), 2, sym_line_comment, sym_block_comment, - [79061] = 5, + [79025] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5711), 1, - anon_sym_COMMA, - ACTIONS(4091), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - STATE(2589), 3, + ACTIONS(4884), 1, + anon_sym_LBRACE, + ACTIONS(4896), 1, + anon_sym_where, + STATE(1148), 1, + sym_declaration_list, + STATE(3131), 1, + sym_where_clause, + STATE(2589), 2, sym_line_comment, sym_block_comment, - aux_sym_arguments_repeat1, - [79080] = 7, + [79048] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3945), 1, - anon_sym_LT2, - ACTIONS(4095), 1, - anon_sym_COLON_COLON, - ACTIONS(4846), 1, - anon_sym_BANG, - STATE(1581), 1, - sym_type_arguments, + ACTIONS(4451), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(5712), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(2590), 2, sym_line_comment, sym_block_comment, - [79103] = 7, + [79067] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1210), 1, + ACTIONS(400), 1, anon_sym_LBRACE, - ACTIONS(3344), 1, + ACTIONS(3446), 1, anon_sym_SQUOTE, - STATE(454), 1, + STATE(1551), 1, sym_block, - STATE(3590), 1, + STATE(3599), 1, sym_label, STATE(2591), 2, sym_line_comment, sym_block_comment, - [79126] = 7, + [79090] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5714), 1, - anon_sym_LPAREN, - ACTIONS(5716), 1, - anon_sym_LBRACK, - ACTIONS(5718), 1, - anon_sym_LBRACE, - STATE(1957), 1, - sym_delim_token_tree, + ACTIONS(4973), 1, + anon_sym_COLON, + STATE(3000), 1, + sym_trait_bounds, + ACTIONS(5714), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(2592), 2, sym_line_comment, sym_block_comment, - [79149] = 7, + [79111] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1210), 1, + ACTIONS(338), 1, anon_sym_LBRACE, - ACTIONS(3344), 1, + ACTIONS(3446), 1, anon_sym_SQUOTE, - STATE(446), 1, + STATE(1371), 1, sym_block, - STATE(3590), 1, + STATE(3547), 1, sym_label, STATE(2593), 2, sym_line_comment, sym_block_comment, - [79172] = 7, + [79134] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1210), 1, - anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - STATE(467), 1, - sym_block, - STATE(3590), 1, - sym_label, + ACTIONS(5298), 1, + anon_sym_PLUS, STATE(2594), 2, sym_line_comment, sym_block_comment, - [79195] = 6, + ACTIONS(5716), 3, + anon_sym_COLON, + anon_sym_GT, + anon_sym_COMMA, + [79153] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5720), 1, - anon_sym_DQUOTE, - STATE(2510), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5586), 2, - sym_string_content, - sym_escape_sequence, + ACTIONS(400), 1, + anon_sym_LBRACE, + ACTIONS(3446), 1, + anon_sym_SQUOTE, + STATE(1671), 1, + sym_block, + STATE(3599), 1, + sym_label, STATE(2595), 2, sym_line_comment, sym_block_comment, - [79216] = 7, + [79176] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5714), 1, - anon_sym_LPAREN, - ACTIONS(5716), 1, - anon_sym_LBRACK, - ACTIONS(5718), 1, + ACTIONS(338), 1, anon_sym_LBRACE, - STATE(1959), 1, - sym_delim_token_tree, + ACTIONS(3446), 1, + anon_sym_SQUOTE, + STATE(1381), 1, + sym_block, + STATE(3547), 1, + sym_label, STATE(2596), 2, sym_line_comment, sym_block_comment, - [79239] = 7, - ACTIONS(101), 1, + [79199] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3945), 1, - anon_sym_LT2, - ACTIONS(5722), 1, - sym_identifier, - ACTIONS(5724), 1, - sym_super, - STATE(1568), 1, - sym_type_arguments, + ACTIONS(5718), 1, + aux_sym_token_repetition_pattern_token1, STATE(2597), 2, sym_line_comment, sym_block_comment, - [79262] = 7, + ACTIONS(5720), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [79218] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3945), 1, - anon_sym_LT2, - ACTIONS(5722), 1, - sym_identifier, - ACTIONS(5724), 1, - sym_super, - STATE(1552), 1, - sym_type_arguments, + ACTIONS(4461), 1, + anon_sym_DOT_DOT, + ACTIONS(5143), 1, + anon_sym_COLON_COLON, + ACTIONS(4463), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(2598), 2, sym_line_comment, sym_block_comment, - [79285] = 7, + [79239] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(5103), 1, - sym_super, - ACTIONS(5602), 1, - sym_identifier, - STATE(3195), 1, - sym_type_arguments, + ACTIONS(5722), 1, + anon_sym_DQUOTE, + STATE(2685), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5586), 2, + sym_string_content, + sym_escape_sequence, STATE(2599), 2, sym_line_comment, sym_block_comment, - [79308] = 7, + [79260] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(5103), 1, - sym_super, - ACTIONS(5602), 1, - sym_identifier, - STATE(3217), 1, - sym_type_arguments, + ACTIONS(338), 1, + anon_sym_LBRACE, + ACTIONS(3446), 1, + anon_sym_SQUOTE, + STATE(1372), 1, + sym_block, + STATE(3547), 1, + sym_label, STATE(2600), 2, sym_line_comment, sym_block_comment, - [79331] = 7, + [79283] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_PLUS, + ACTIONS(5724), 1, + anon_sym_LBRACE, ACTIONS(5726), 1, - anon_sym_RPAREN, + anon_sym_for, ACTIONS(5728), 1, - anon_sym_COMMA, - STATE(2795), 1, - aux_sym_tuple_type_repeat1, + anon_sym_loop, + ACTIONS(5730), 1, + anon_sym_while, STATE(2601), 2, sym_line_comment, sym_block_comment, - [79354] = 7, + [79306] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, ACTIONS(338), 1, anon_sym_LBRACE, - ACTIONS(3344), 1, + ACTIONS(3446), 1, anon_sym_SQUOTE, - STATE(3373), 1, + STATE(1382), 1, sym_block, - STATE(3539), 1, + STATE(3547), 1, sym_label, STATE(2602), 2, sym_line_comment, sym_block_comment, - [79377] = 7, + [79329] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3939), 1, - anon_sym_LPAREN, - ACTIONS(4449), 1, - anon_sym_LT2, - STATE(1626), 1, - sym_parameters, - STATE(1933), 1, - sym_type_arguments, + ACTIONS(5732), 1, + anon_sym_DQUOTE, + STATE(2656), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5586), 2, + sym_string_content, + sym_escape_sequence, STATE(2603), 2, sym_line_comment, sym_block_comment, - [79400] = 4, + [79350] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(5706), 1, + anon_sym_LPAREN, + ACTIONS(5708), 1, + anon_sym_LBRACK, + ACTIONS(5710), 1, + anon_sym_LBRACE, + STATE(1020), 1, + sym_delim_token_tree, STATE(2604), 2, sym_line_comment, sym_block_comment, - ACTIONS(5730), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SQUOTE, - [79417] = 6, + [79373] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, - anon_sym_COLON, - STATE(2888), 1, - sym_trait_bounds, - ACTIONS(5732), 2, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(4896), 1, + anon_sym_where, + ACTIONS(4983), 1, + anon_sym_PLUS, + ACTIONS(5734), 1, + anon_sym_SEMI, + STATE(3478), 1, + sym_where_clause, STATE(2605), 2, sym_line_comment, sym_block_comment, - [79438] = 4, + [79396] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(5417), 1, + anon_sym_COLON, + ACTIONS(5419), 1, + anon_sym_PIPE, + ACTIONS(5421), 1, + anon_sym_COMMA, + STATE(2769), 1, + aux_sym_closure_parameters_repeat1, STATE(2606), 2, sym_line_comment, sym_block_comment, - ACTIONS(5735), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SQUOTE, - [79455] = 7, + [79419] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1210), 1, - anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - STATE(474), 1, - sym_block, - STATE(3590), 1, - sym_label, + ACTIONS(4461), 1, + anon_sym_DOT_DOT, + ACTIONS(5197), 1, + anon_sym_COLON_COLON, + ACTIONS(4463), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(2607), 2, sym_line_comment, sym_block_comment, - [79478] = 7, + [79440] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, + ACTIONS(4878), 1, anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - STATE(3388), 1, - sym_block, - STATE(3539), 1, - sym_label, + ACTIONS(4896), 1, + anon_sym_where, + STATE(490), 1, + sym_declaration_list, + STATE(3079), 1, + sym_where_clause, STATE(2608), 2, sym_line_comment, sym_block_comment, - [79501] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, + [79463] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, + ACTIONS(1564), 1, + anon_sym_LBRACE, + ACTIONS(3446), 1, anon_sym_SQUOTE, - STATE(392), 1, + STATE(2106), 1, sym_block, - STATE(3510), 1, + STATE(3590), 1, sym_label, STATE(2609), 2, sym_line_comment, sym_block_comment, - [79524] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5426), 1, - anon_sym_RPAREN, - ACTIONS(5428), 1, - anon_sym_COMMA, - STATE(2809), 1, - aux_sym_parameters_repeat1, - STATE(2610), 2, - sym_line_comment, - sym_block_comment, - [79547] = 7, + [79486] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5737), 1, + ACTIONS(4884), 1, anon_sym_LBRACE, - ACTIONS(5739), 1, - anon_sym_for, - ACTIONS(5741), 1, - anon_sym_loop, - ACTIONS(5743), 1, - anon_sym_while, - STATE(2611), 2, + ACTIONS(4896), 1, + anon_sym_where, + STATE(1164), 1, + sym_declaration_list, + STATE(3138), 1, + sym_where_clause, + STATE(2610), 2, sym_line_comment, sym_block_comment, - [79570] = 7, + [79509] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1210), 1, + ACTIONS(1212), 1, anon_sym_LBRACE, - ACTIONS(3344), 1, + ACTIONS(3446), 1, anon_sym_SQUOTE, - STATE(468), 1, + STATE(469), 1, sym_block, - STATE(3590), 1, + STATE(3598), 1, sym_label, - STATE(2612), 2, + STATE(2611), 2, sym_line_comment, sym_block_comment, - [79593] = 7, + [79532] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, ACTIONS(4449), 1, anon_sym_LT2, - ACTIONS(4523), 1, + ACTIONS(4473), 1, anon_sym_BANG, - ACTIONS(4554), 1, + ACTIONS(4552), 1, anon_sym_COLON_COLON, - STATE(1930), 1, + STATE(1936), 1, sym_type_arguments, - STATE(2613), 2, + STATE(2612), 2, sym_line_comment, sym_block_comment, - [79616] = 7, + [79555] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1464), 1, + ACTIONS(5369), 1, anon_sym_RPAREN, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5446), 1, + ACTIONS(5373), 1, + anon_sym_PIPE, + ACTIONS(5375), 1, anon_sym_COMMA, - STATE(2817), 1, - aux_sym_parameters_repeat1, - STATE(2614), 2, + STATE(2898), 1, + aux_sym_slice_pattern_repeat1, + STATE(2613), 2, sym_line_comment, sym_block_comment, - [79639] = 7, + [79578] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(400), 1, + ACTIONS(338), 1, anon_sym_LBRACE, - ACTIONS(3344), 1, + ACTIONS(3446), 1, anon_sym_SQUOTE, - STATE(1743), 1, - sym_block, - STATE(3591), 1, + STATE(3547), 1, sym_label, + STATE(3603), 1, + sym_block, + STATE(2614), 2, + sym_line_comment, + sym_block_comment, + [79601] = 7, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(4896), 1, + anon_sym_where, + ACTIONS(4983), 1, + anon_sym_PLUS, + ACTIONS(5736), 1, + anon_sym_SEMI, + STATE(3570), 1, + sym_where_clause, STATE(2615), 2, sym_line_comment, sym_block_comment, - [79662] = 7, + [79624] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(400), 1, + ACTIONS(338), 1, anon_sym_LBRACE, - ACTIONS(3344), 1, + ACTIONS(3446), 1, anon_sym_SQUOTE, - STATE(1745), 1, + STATE(3400), 1, sym_block, - STATE(3591), 1, + STATE(3547), 1, sym_label, STATE(2616), 2, sym_line_comment, sym_block_comment, - [79685] = 6, + [79647] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5745), 1, - anon_sym_DQUOTE, - STATE(2623), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5586), 2, - sym_string_content, - sym_escape_sequence, + ACTIONS(3446), 1, + anon_sym_SQUOTE, + STATE(399), 1, + sym_block, + STATE(3457), 1, + sym_label, STATE(2617), 2, sym_line_comment, sym_block_comment, - [79706] = 7, + [79670] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1210), 1, + ACTIONS(5738), 1, + anon_sym_LPAREN, + ACTIONS(5740), 1, + anon_sym_LBRACK, + ACTIONS(5742), 1, anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - STATE(462), 1, - sym_block, - STATE(3590), 1, - sym_label, + STATE(371), 1, + sym_delim_token_tree, STATE(2618), 2, sym_line_comment, sym_block_comment, - [79729] = 7, + [79693] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(400), 1, - anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - STATE(1841), 1, - sym_block, - STATE(3591), 1, - sym_label, + ACTIONS(4449), 1, + anon_sym_LT2, + ACTIONS(5151), 1, + sym_super, + ACTIONS(5744), 1, + sym_identifier, + STATE(3164), 1, + sym_type_arguments, STATE(2619), 2, sym_line_comment, sym_block_comment, - [79752] = 7, + [79716] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5747), 1, - anon_sym_LPAREN, - ACTIONS(5749), 1, - anon_sym_LBRACK, - ACTIONS(5751), 1, + ACTIONS(338), 1, anon_sym_LBRACE, - STATE(1025), 1, - sym_delim_token_tree, + ACTIONS(3446), 1, + anon_sym_SQUOTE, + STATE(3547), 1, + sym_label, + STATE(3612), 1, + sym_block, STATE(2620), 2, sym_line_comment, sym_block_comment, - [79775] = 7, + [79739] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(400), 1, + ACTIONS(338), 1, anon_sym_LBRACE, - ACTIONS(3344), 1, + ACTIONS(3446), 1, anon_sym_SQUOTE, - STATE(1554), 1, - sym_block, - STATE(3591), 1, + STATE(3547), 1, sym_label, + STATE(3552), 1, + sym_block, STATE(2621), 2, sym_line_comment, sym_block_comment, - [79798] = 5, + [79762] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_PLUS, + ACTIONS(4443), 1, + anon_sym_LPAREN, + ACTIONS(4894), 1, + anon_sym_LT, + STATE(2213), 1, + sym_parameters, + STATE(3280), 1, + sym_type_parameters, STATE(2622), 2, sym_line_comment, sym_block_comment, - ACTIONS(5753), 3, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COMMA, - [79817] = 6, + [79785] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5755), 1, - anon_sym_DQUOTE, - STATE(2510), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5586), 2, - sym_string_content, - sym_escape_sequence, + ACTIONS(4598), 1, + anon_sym_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_COLON_COLON, + ACTIONS(4600), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(2623), 2, sym_line_comment, sym_block_comment, - [79838] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(5747), 1, - anon_sym_LPAREN, - ACTIONS(5749), 1, - anon_sym_LBRACK, - ACTIONS(5751), 1, - anon_sym_LBRACE, - STATE(1026), 1, - sym_delim_token_tree, - STATE(2624), 2, - sym_line_comment, - sym_block_comment, - [79861] = 7, + [79806] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3251), 1, + ACTIONS(4449), 1, anon_sym_LT2, - ACTIONS(5103), 1, + ACTIONS(5151), 1, sym_super, - ACTIONS(5629), 1, + ACTIONS(5744), 1, sym_identifier, - STATE(1377), 1, + STATE(3150), 1, sym_type_arguments, - STATE(2625), 2, + STATE(2624), 2, sym_line_comment, sym_block_comment, - [79884] = 7, + [79829] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(5103), 1, - sym_super, - ACTIONS(5651), 1, - sym_identifier, - STATE(3195), 1, - sym_type_arguments, - STATE(2626), 2, + ACTIONS(400), 1, + anon_sym_LBRACE, + ACTIONS(3446), 1, + anon_sym_SQUOTE, + STATE(1680), 1, + sym_block, + STATE(3599), 1, + sym_label, + STATE(2625), 2, sym_line_comment, sym_block_comment, - [79907] = 7, + [79852] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(5103), 1, - sym_super, - ACTIONS(5651), 1, - sym_identifier, - STATE(3217), 1, - sym_type_arguments, - STATE(2627), 2, + ACTIONS(5748), 1, + anon_sym_COMMA, + ACTIONS(4117), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + STATE(2626), 3, sym_line_comment, sym_block_comment, - [79930] = 7, + aux_sym_arguments_repeat1, + [79871] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, ACTIONS(400), 1, anon_sym_LBRACE, - ACTIONS(3344), 1, + ACTIONS(3446), 1, anon_sym_SQUOTE, - STATE(1769), 1, + STATE(1794), 1, sym_block, - STATE(3591), 1, + STATE(3599), 1, sym_label, - STATE(2628), 2, + STATE(2627), 2, sym_line_comment, sym_block_comment, - [79953] = 7, + [79894] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(400), 1, - anon_sym_LBRACE, - ACTIONS(3344), 1, + ACTIONS(3446), 1, anon_sym_SQUOTE, - STATE(1775), 1, + STATE(244), 1, sym_block, - STATE(3591), 1, + STATE(3457), 1, sym_label, - STATE(2629), 2, + STATE(2628), 2, sym_line_comment, sym_block_comment, - [79976] = 6, + [79917] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5757), 1, + ACTIONS(5751), 1, anon_sym_DQUOTE, - STATE(2634), 1, + STATE(2652), 1, aux_sym_string_literal_repeat1, ACTIONS(5586), 2, sym_string_content, sym_escape_sequence, + STATE(2629), 2, + sym_line_comment, + sym_block_comment, + [79938] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(5753), 1, + anon_sym_in, STATE(2630), 2, sym_line_comment, sym_block_comment, - [79997] = 7, + ACTIONS(5755), 3, + sym_self, + sym_super, + sym_crate, + [79957] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(400), 1, - anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - STATE(1780), 1, - sym_block, - STATE(3591), 1, - sym_label, + ACTIONS(4983), 1, + anon_sym_PLUS, + ACTIONS(5757), 1, + anon_sym_SEMI, + ACTIONS(5759), 1, + anon_sym_EQ, + ACTIONS(5761), 1, + anon_sym_else, STATE(2631), 2, sym_line_comment, sym_block_comment, - [80020] = 6, + [79980] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, - anon_sym_COLON, - STATE(2888), 1, - sym_trait_bounds, - ACTIONS(5759), 2, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(3251), 1, + anon_sym_LT2, + ACTIONS(3392), 1, + anon_sym_COLON_COLON, + ACTIONS(4844), 1, + anon_sym_BANG, + STATE(1075), 1, + sym_type_arguments, STATE(2632), 2, sym_line_comment, sym_block_comment, - [80041] = 7, + [80003] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5761), 1, - anon_sym_LPAREN, + ACTIONS(4983), 1, + anon_sym_PLUS, ACTIONS(5763), 1, - anon_sym_LBRACK, + anon_sym_RPAREN, ACTIONS(5765), 1, - anon_sym_LBRACE, - STATE(1785), 1, - sym_delim_token_tree, + anon_sym_COMMA, + STATE(2865), 1, + aux_sym_ordered_field_declaration_list_repeat1, STATE(2633), 2, sym_line_comment, sym_block_comment, - [80064] = 6, + [80026] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5767), 1, - anon_sym_DQUOTE, - STATE(2510), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5586), 2, - sym_string_content, - sym_escape_sequence, + ACTIONS(338), 1, + anon_sym_LBRACE, + ACTIONS(3446), 1, + anon_sym_SQUOTE, + STATE(3547), 1, + sym_label, + STATE(3569), 1, + sym_block, STATE(2634), 2, sym_line_comment, sym_block_comment, - [80085] = 7, + [80049] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5761), 1, - anon_sym_LPAREN, - ACTIONS(5763), 1, - anon_sym_LBRACK, - ACTIONS(5765), 1, - anon_sym_LBRACE, - STATE(1789), 1, - sym_delim_token_tree, + ACTIONS(4652), 1, + anon_sym_GT, + ACTIONS(5388), 1, + anon_sym_COMMA, + ACTIONS(5606), 1, + anon_sym_EQ, + STATE(2917), 1, + aux_sym_type_parameters_repeat1, STATE(2635), 2, sym_line_comment, sym_block_comment, - [80108] = 7, + [80072] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(5604), 1, - sym_super, - ACTIONS(5769), 1, - sym_identifier, - STATE(3195), 1, - sym_type_arguments, + ACTIONS(338), 1, + anon_sym_LBRACE, + ACTIONS(3446), 1, + anon_sym_SQUOTE, + STATE(1468), 1, + sym_block, + STATE(3547), 1, + sym_label, STATE(2636), 2, sym_line_comment, sym_block_comment, - [80131] = 7, + [80095] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(5604), 1, - sym_super, + ACTIONS(4983), 1, + anon_sym_PLUS, + ACTIONS(5767), 1, + anon_sym_SEMI, ACTIONS(5769), 1, - sym_identifier, - STATE(3217), 1, - sym_type_arguments, + anon_sym_EQ, + ACTIONS(5771), 1, + anon_sym_else, STATE(2637), 2, sym_line_comment, sym_block_comment, - [80154] = 7, + [80118] = 7, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(5111), 1, + anon_sym_LPAREN, + ACTIONS(5113), 1, + anon_sym_LBRACK, + ACTIONS(5117), 1, + anon_sym_LBRACE, + STATE(1470), 1, + sym_delim_token_tree, + STATE(2638), 2, + sym_line_comment, + sym_block_comment, + [80141] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, + ACTIONS(400), 1, anon_sym_LBRACE, - ACTIONS(3344), 1, + ACTIONS(3446), 1, anon_sym_SQUOTE, - STATE(3456), 1, + STATE(1806), 1, sym_block, - STATE(3539), 1, + STATE(3599), 1, sym_label, - STATE(2638), 2, - sym_line_comment, - sym_block_comment, - [80177] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(5452), 1, - anon_sym_PIPE, - ACTIONS(5508), 1, - anon_sym_RPAREN, - ACTIONS(5512), 1, - anon_sym_COMMA, - STATE(2839), 1, - aux_sym_slice_pattern_repeat1, STATE(2639), 2, sym_line_comment, sym_block_comment, - [80200] = 7, + [80164] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5452), 1, - anon_sym_PIPE, - ACTIONS(5771), 1, - anon_sym_RPAREN, - ACTIONS(5773), 1, - anon_sym_COMMA, - STATE(2810), 1, - aux_sym_tuple_pattern_repeat1, + ACTIONS(338), 1, + anon_sym_LBRACE, + ACTIONS(3446), 1, + anon_sym_SQUOTE, + STATE(3547), 1, + sym_label, + STATE(3568), 1, + sym_block, STATE(2640), 2, sym_line_comment, sym_block_comment, - [80223] = 6, + [80187] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5775), 1, - anon_sym_DQUOTE, - STATE(2642), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5586), 2, - sym_string_content, - sym_escape_sequence, + ACTIONS(338), 1, + anon_sym_LBRACE, + ACTIONS(3446), 1, + anon_sym_SQUOTE, + STATE(3426), 1, + sym_block, + STATE(3547), 1, + sym_label, STATE(2641), 2, sym_line_comment, sym_block_comment, - [80244] = 6, + [80210] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5777), 1, - anon_sym_DQUOTE, - STATE(2510), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5586), 2, - sym_string_content, - sym_escape_sequence, + ACTIONS(338), 1, + anon_sym_LBRACE, + ACTIONS(3446), 1, + anon_sym_SQUOTE, + STATE(1048), 1, + sym_block, + STATE(3547), 1, + sym_label, STATE(2642), 2, sym_line_comment, sym_block_comment, - [80265] = 7, + [80233] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(5604), 1, - sym_super, - ACTIONS(5779), 1, - sym_identifier, - STATE(3195), 1, - sym_type_arguments, + ACTIONS(338), 1, + anon_sym_LBRACE, + ACTIONS(3446), 1, + anon_sym_SQUOTE, + STATE(3433), 1, + sym_block, + STATE(3547), 1, + sym_label, STATE(2643), 2, sym_line_comment, sym_block_comment, - [80288] = 7, + [80256] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(5604), 1, - sym_super, - ACTIONS(5779), 1, + ACTIONS(4263), 1, + anon_sym_LBRACE, + STATE(2767), 1, + sym_use_list, + ACTIONS(5773), 2, sym_identifier, - STATE(3217), 1, - sym_type_arguments, + sym_super, STATE(2644), 2, sym_line_comment, sym_block_comment, - [80311] = 7, + [80277] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, - anon_sym_LBRACE, - ACTIONS(3344), 1, + ACTIONS(3446), 1, anon_sym_SQUOTE, - STATE(3365), 1, + STATE(393), 1, sym_block, - STATE(3539), 1, + STATE(3457), 1, sym_label, STATE(2645), 2, sym_line_comment, sym_block_comment, - [80334] = 7, + [80300] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5781), 1, - anon_sym_SEMI, - ACTIONS(5783), 1, - anon_sym_EQ, - ACTIONS(5785), 1, - anon_sym_else, + ACTIONS(5775), 1, + anon_sym_LPAREN, + ACTIONS(5777), 1, + anon_sym_LBRACK, + ACTIONS(5779), 1, + anon_sym_LBRACE, + STATE(1814), 1, + sym_delim_token_tree, STATE(2646), 2, sym_line_comment, sym_block_comment, - [80357] = 7, + [80323] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(5281), 1, - anon_sym_LBRACE, - STATE(660), 1, - sym_enum_variant_list, - STATE(3046), 1, - sym_where_clause, + ACTIONS(4443), 1, + anon_sym_LPAREN, + ACTIONS(4894), 1, + anon_sym_LT, + STATE(2195), 1, + sym_parameters, + STATE(3163), 1, + sym_type_parameters, STATE(2647), 2, sym_line_comment, sym_block_comment, - [80380] = 7, + [80346] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(5641), 1, - sym_super, - ACTIONS(5787), 1, - sym_identifier, - STATE(3195), 1, - sym_type_arguments, + ACTIONS(3446), 1, + anon_sym_SQUOTE, + STATE(376), 1, + sym_block, + STATE(3457), 1, + sym_label, STATE(2648), 2, sym_line_comment, sym_block_comment, - [80403] = 7, + [80369] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(5641), 1, - sym_super, - ACTIONS(5787), 1, - sym_identifier, - STATE(3217), 1, - sym_type_arguments, + ACTIONS(4983), 1, + anon_sym_PLUS, + ACTIONS(5781), 1, + anon_sym_RPAREN, + ACTIONS(5783), 1, + anon_sym_COMMA, + STATE(2815), 1, + aux_sym_ordered_field_declaration_list_repeat1, STATE(2649), 2, sym_line_comment, sym_block_comment, - [80426] = 7, + [80392] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(5103), 1, - sym_super, - ACTIONS(5769), 1, - sym_identifier, - STATE(3195), 1, - sym_type_arguments, + ACTIONS(338), 1, + anon_sym_LBRACE, + ACTIONS(3446), 1, + anon_sym_SQUOTE, + STATE(3547), 1, + sym_label, + STATE(3559), 1, + sym_block, STATE(2650), 2, sym_line_comment, sym_block_comment, - [80449] = 7, + [80415] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(5103), 1, - sym_super, - ACTIONS(5769), 1, - sym_identifier, - STATE(3217), 1, - sym_type_arguments, + ACTIONS(338), 1, + anon_sym_LBRACE, + ACTIONS(3446), 1, + anon_sym_SQUOTE, + STATE(3547), 1, + sym_label, + STATE(3557), 1, + sym_block, STATE(2651), 2, sym_line_comment, sym_block_comment, - [80472] = 7, + [80438] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(5604), 1, - sym_super, - ACTIONS(5789), 1, - sym_identifier, - STATE(3195), 1, - sym_type_arguments, + ACTIONS(5785), 1, + anon_sym_DQUOTE, + STATE(2685), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5586), 2, + sym_string_content, + sym_escape_sequence, STATE(2652), 2, sym_line_comment, sym_block_comment, - [80495] = 7, + [80459] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(5604), 1, - sym_super, - ACTIONS(5789), 1, - sym_identifier, - STATE(3217), 1, - sym_type_arguments, + ACTIONS(5787), 1, + anon_sym_DQUOTE, + STATE(2685), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5586), 2, + sym_string_content, + sym_escape_sequence, STATE(2653), 2, sym_line_comment, sym_block_comment, - [80518] = 7, + [80480] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(5604), 1, - sym_super, - ACTIONS(5791), 1, - sym_identifier, - STATE(3195), 1, - sym_type_arguments, + ACTIONS(338), 1, + anon_sym_LBRACE, + ACTIONS(3446), 1, + anon_sym_SQUOTE, + STATE(1445), 1, + sym_block, + STATE(3547), 1, + sym_label, STATE(2654), 2, sym_line_comment, sym_block_comment, - [80541] = 7, + [80503] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(5604), 1, - sym_super, - ACTIONS(5791), 1, - sym_identifier, - STATE(3217), 1, - sym_type_arguments, + ACTIONS(5775), 1, + anon_sym_LPAREN, + ACTIONS(5777), 1, + anon_sym_LBRACK, + ACTIONS(5779), 1, + anon_sym_LBRACE, + STATE(1782), 1, + sym_delim_token_tree, STATE(2655), 2, sym_line_comment, sym_block_comment, - [80564] = 7, + [80526] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(5604), 1, - sym_super, - ACTIONS(5793), 1, - sym_identifier, - STATE(3195), 1, - sym_type_arguments, + ACTIONS(5789), 1, + anon_sym_DQUOTE, + STATE(2685), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5586), 2, + sym_string_content, + sym_escape_sequence, STATE(2656), 2, sym_line_comment, sym_block_comment, - [80587] = 7, + [80547] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(5604), 1, - sym_super, - ACTIONS(5793), 1, - sym_identifier, - STATE(3217), 1, - sym_type_arguments, + ACTIONS(4973), 1, + anon_sym_COLON, + STATE(3000), 1, + sym_trait_bounds, + ACTIONS(5791), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(2657), 2, sym_line_comment, sym_block_comment, - [80610] = 7, + [80568] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(5103), 1, - sym_super, - ACTIONS(5793), 1, - sym_identifier, - STATE(3195), 1, - sym_type_arguments, + ACTIONS(5111), 1, + anon_sym_LPAREN, + ACTIONS(5113), 1, + anon_sym_LBRACK, + ACTIONS(5117), 1, + anon_sym_LBRACE, + STATE(1444), 1, + sym_delim_token_tree, STATE(2658), 2, sym_line_comment, sym_block_comment, - [80633] = 7, + [80591] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, + ACTIONS(3251), 1, anon_sym_LT2, - ACTIONS(5103), 1, + ACTIONS(5151), 1, sym_super, ACTIONS(5793), 1, sym_identifier, - STATE(3217), 1, + STATE(1548), 1, sym_type_arguments, STATE(2659), 2, sym_line_comment, sym_block_comment, - [80656] = 7, + [80614] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4878), 1, + ACTIONS(5738), 1, + anon_sym_LPAREN, + ACTIONS(5740), 1, + anon_sym_LBRACK, + ACTIONS(5742), 1, anon_sym_LBRACE, - STATE(528), 1, - sym_declaration_list, - STATE(3080), 1, - sym_where_clause, + STATE(389), 1, + sym_delim_token_tree, STATE(2660), 2, sym_line_comment, sym_block_comment, - [80679] = 5, - ACTIONS(3), 1, + [80637] = 7, + ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(4449), 1, + anon_sym_LT2, + ACTIONS(5650), 1, + sym_super, ACTIONS(5795), 1, - aux_sym_token_repetition_pattern_token1, + sym_identifier, + STATE(3164), 1, + sym_type_arguments, STATE(2661), 2, sym_line_comment, sym_block_comment, - ACTIONS(5797), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [80698] = 4, + [80660] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(3251), 1, + anon_sym_LT2, + ACTIONS(5151), 1, + sym_super, + ACTIONS(5797), 1, + sym_identifier, + STATE(1437), 1, + sym_type_arguments, STATE(2662), 2, sym_line_comment, sym_block_comment, - ACTIONS(4129), 4, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - anon_sym_SQUOTE, - [80715] = 6, + [80683] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4463), 1, - anon_sym_DOT_DOT, - ACTIONS(5211), 1, - anon_sym_COLON_COLON, - ACTIONS(4465), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(338), 1, + anon_sym_LBRACE, + ACTIONS(3446), 1, + anon_sym_SQUOTE, + STATE(3462), 1, + sym_block, + STATE(3547), 1, + sym_label, STATE(2663), 2, sym_line_comment, sym_block_comment, - [80736] = 5, + [80706] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_PLUS, + ACTIONS(4449), 1, + anon_sym_LT2, + STATE(3150), 1, + sym_type_arguments, + ACTIONS(5799), 2, + sym_identifier, + sym_super, STATE(2664), 2, sym_line_comment, sym_block_comment, - ACTIONS(5799), 3, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COMMA, - [80755] = 7, + [80727] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, - anon_sym_LPAREN, - ACTIONS(4872), 1, - anon_sym_LT, - STATE(2197), 1, - sym_parameters, - STATE(3214), 1, - sym_type_parameters, + ACTIONS(4449), 1, + anon_sym_LT2, + STATE(3164), 1, + sym_type_arguments, + ACTIONS(5799), 2, + sym_identifier, + sym_super, STATE(2665), 2, sym_line_comment, sym_block_comment, - [80778] = 5, + [80748] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5801), 1, - anon_sym_COLON_COLON, + ACTIONS(4449), 1, + anon_sym_LT2, + ACTIONS(5650), 1, + sym_super, + ACTIONS(5795), 1, + sym_identifier, + STATE(3150), 1, + sym_type_arguments, STATE(2666), 2, sym_line_comment, sym_block_comment, - ACTIONS(4734), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [80797] = 5, + [80771] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5803), 1, - anon_sym_in, + ACTIONS(4443), 1, + anon_sym_LPAREN, + ACTIONS(4894), 1, + anon_sym_LT, + STATE(2194), 1, + sym_parameters, + STATE(3089), 1, + sym_type_parameters, STATE(2667), 2, sym_line_comment, sym_block_comment, - ACTIONS(5805), 3, - sym_self, - sym_super, - sym_crate, - [80816] = 7, + [80794] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5807), 1, - anon_sym_SEMI, - ACTIONS(5809), 1, - anon_sym_EQ, - ACTIONS(5811), 1, - anon_sym_else, + ACTIONS(3251), 1, + anon_sym_LT2, + ACTIONS(5151), 1, + sym_super, + ACTIONS(5793), 1, + sym_identifier, + STATE(1557), 1, + sym_type_arguments, STATE(2668), 2, sym_line_comment, sym_block_comment, - [80839] = 7, + [80817] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5813), 1, - anon_sym_LBRACE, - ACTIONS(5815), 1, - anon_sym_for, - ACTIONS(5817), 1, - anon_sym_loop, - ACTIONS(5819), 1, - anon_sym_while, + ACTIONS(3251), 1, + anon_sym_LT2, + ACTIONS(5151), 1, + sym_super, + ACTIONS(5797), 1, + sym_identifier, + STATE(1419), 1, + sym_type_arguments, STATE(2669), 2, sym_line_comment, sym_block_comment, - [80862] = 5, + [80840] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5821), 1, - anon_sym_COLON_COLON, + ACTIONS(4983), 1, + anon_sym_PLUS, + ACTIONS(5429), 1, + anon_sym_RPAREN, + ACTIONS(5431), 1, + anon_sym_COMMA, + STATE(2901), 1, + aux_sym_parameters_repeat1, STATE(2670), 2, sym_line_comment, sym_block_comment, - ACTIONS(4664), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [80881] = 7, + [80863] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5823), 1, - anon_sym_RPAREN, - ACTIONS(5825), 1, - anon_sym_COMMA, - STATE(2893), 1, - aux_sym_ordered_field_declaration_list_repeat1, STATE(2671), 2, sym_line_comment, sym_block_comment, - [80904] = 7, + ACTIONS(5481), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SQUOTE, + [80880] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5452), 1, - anon_sym_PIPE, - ACTIONS(5827), 1, - anon_sym_RBRACK, - ACTIONS(5829), 1, - anon_sym_COMMA, - STATE(2818), 1, - aux_sym_slice_pattern_repeat1, + ACTIONS(5801), 1, + anon_sym_DQUOTE, + STATE(2674), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5586), 2, + sym_string_content, + sym_escape_sequence, STATE(2672), 2, sym_line_comment, sym_block_comment, - [80927] = 7, + [80901] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, - anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - STATE(3488), 1, - sym_block, - STATE(3539), 1, - sym_label, + ACTIONS(4896), 1, + anon_sym_where, + ACTIONS(4983), 1, + anon_sym_PLUS, + ACTIONS(5803), 1, + anon_sym_SEMI, + STATE(3364), 1, + sym_where_clause, STATE(2673), 2, sym_line_comment, sym_block_comment, - [80950] = 7, + [80924] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5452), 1, - anon_sym_PIPE, - ACTIONS(5831), 1, - anon_sym_RPAREN, - ACTIONS(5833), 1, - anon_sym_COMMA, - STATE(2752), 1, - aux_sym_slice_pattern_repeat1, + ACTIONS(5805), 1, + anon_sym_DQUOTE, + STATE(2685), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5586), 2, + sym_string_content, + sym_escape_sequence, STATE(2674), 2, sym_line_comment, sym_block_comment, - [80973] = 7, + [80945] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, - anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - STATE(3539), 1, - sym_label, - STATE(3567), 1, - sym_block, + ACTIONS(5373), 1, + anon_sym_PIPE, + ACTIONS(5807), 1, + anon_sym_RPAREN, + ACTIONS(5809), 1, + anon_sym_COMMA, + STATE(2894), 1, + aux_sym_slice_pattern_repeat1, STATE(2675), 2, sym_line_comment, sym_block_comment, - [80996] = 7, + [80968] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, + ACTIONS(5811), 1, anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - STATE(3503), 1, - sym_block, - STATE(3539), 1, - sym_label, + ACTIONS(5813), 1, + anon_sym_for, + ACTIONS(5815), 1, + anon_sym_loop, + ACTIONS(5817), 1, + anon_sym_while, STATE(2676), 2, sym_line_comment, sym_block_comment, - [81019] = 7, + [80991] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, ACTIONS(4449), 1, anon_sym_LT2, - ACTIONS(4670), 1, - anon_sym_for, - ACTIONS(5598), 1, - anon_sym_COLON_COLON, - STATE(1931), 1, + ACTIONS(5650), 1, + sym_super, + ACTIONS(5819), 1, + sym_identifier, + STATE(3164), 1, sym_type_arguments, STATE(2677), 2, sym_line_comment, sym_block_comment, - [81042] = 7, + [81014] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, - anon_sym_LPAREN, - ACTIONS(4872), 1, - anon_sym_LT, - STATE(2228), 1, - sym_parameters, - STATE(3237), 1, - sym_type_parameters, + ACTIONS(4449), 1, + anon_sym_LT2, + ACTIONS(5650), 1, + sym_super, + ACTIONS(5819), 1, + sym_identifier, + STATE(3150), 1, + sym_type_arguments, STATE(2678), 2, sym_line_comment, sym_block_comment, - [81065] = 5, + [81037] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5452), 1, - anon_sym_PIPE, + ACTIONS(4443), 1, + anon_sym_LPAREN, + ACTIONS(4894), 1, + anon_sym_LT, + STATE(2225), 1, + sym_parameters, + STATE(3198), 1, + sym_type_parameters, STATE(2679), 2, sym_line_comment, sym_block_comment, - ACTIONS(5835), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - [81084] = 5, + [81060] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5837), 1, - anon_sym_COMMA, - ACTIONS(5835), 2, + ACTIONS(5373), 1, + anon_sym_PIPE, + ACTIONS(5821), 1, anon_sym_RPAREN, - anon_sym_RBRACK, - STATE(2680), 3, + ACTIONS(5823), 1, + anon_sym_COMMA, + STATE(2890), 1, + aux_sym_slice_pattern_repeat1, + STATE(2680), 2, sym_line_comment, sym_block_comment, - aux_sym_slice_pattern_repeat1, - [81103] = 4, + [81083] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(5373), 1, + anon_sym_PIPE, + ACTIONS(5825), 1, + anon_sym_RPAREN, + ACTIONS(5827), 1, + anon_sym_COMMA, + STATE(2773), 1, + aux_sym_tuple_pattern_repeat1, STATE(2681), 2, sym_line_comment, sym_block_comment, - ACTIONS(3215), 4, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_COMMA, - [81120] = 5, + [81106] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5840), 1, + ACTIONS(4449), 1, + anon_sym_LT2, + ACTIONS(5602), 1, anon_sym_COLON_COLON, + ACTIONS(5829), 1, + anon_sym_for, + STATE(1935), 1, + sym_type_arguments, STATE(2682), 2, sym_line_comment, sym_block_comment, - ACTIONS(4664), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [81139] = 7, + [81129] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4878), 1, - anon_sym_LBRACE, - STATE(729), 1, - sym_declaration_list, - STATE(3282), 1, - sym_where_clause, + ACTIONS(5373), 1, + anon_sym_PIPE, + ACTIONS(5831), 1, + anon_sym_RBRACK, + ACTIONS(5833), 1, + anon_sym_COMMA, + STATE(2775), 1, + aux_sym_slice_pattern_repeat1, STATE(2683), 2, sym_line_comment, sym_block_comment, - [81162] = 7, + [81152] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, - anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - STATE(1269), 1, - sym_block, - STATE(3539), 1, - sym_label, + ACTIONS(5373), 1, + anon_sym_PIPE, + ACTIONS(5835), 1, + anon_sym_RPAREN, + ACTIONS(5837), 1, + anon_sym_COMMA, + STATE(2833), 1, + aux_sym_tuple_pattern_repeat1, STATE(2684), 2, sym_line_comment, sym_block_comment, - [81185] = 7, + [81175] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5842), 1, - anon_sym_SEMI, - STATE(3542), 1, - sym_where_clause, - STATE(2685), 2, + ACTIONS(5839), 1, + anon_sym_DQUOTE, + ACTIONS(5841), 2, + sym_string_content, + sym_escape_sequence, + STATE(2685), 3, sym_line_comment, sym_block_comment, - [81208] = 7, + aux_sym_string_literal_repeat1, + [81194] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, ACTIONS(338), 1, anon_sym_LBRACE, - ACTIONS(3344), 1, + ACTIONS(3446), 1, anon_sym_SQUOTE, - STATE(3362), 1, + STATE(3407), 1, sym_block, - STATE(3539), 1, + STATE(3547), 1, sym_label, STATE(2686), 2, sym_line_comment, sym_block_comment, - [81231] = 7, + [81217] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, - anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - STATE(1218), 1, - sym_block, - STATE(3539), 1, - sym_label, + ACTIONS(4449), 1, + anon_sym_LT2, + ACTIONS(5634), 1, + sym_identifier, + ACTIONS(5650), 1, + sym_super, + STATE(3164), 1, + sym_type_arguments, STATE(2687), 2, sym_line_comment, sym_block_comment, - [81254] = 6, + [81240] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(5373), 1, + anon_sym_PIPE, ACTIONS(5844), 1, - anon_sym_DQUOTE, - STATE(2496), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5586), 2, - sym_string_content, - sym_escape_sequence, + anon_sym_RBRACK, + ACTIONS(5846), 1, + anon_sym_COMMA, + STATE(2836), 1, + aux_sym_slice_pattern_repeat1, STATE(2688), 2, sym_line_comment, sym_block_comment, - [81275] = 7, + [81263] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, - anon_sym_LPAREN, - ACTIONS(4872), 1, - anon_sym_LT, - STATE(2204), 1, - sym_parameters, - STATE(3253), 1, - sym_type_parameters, + ACTIONS(5848), 1, + anon_sym_COLON, STATE(2689), 2, sym_line_comment, sym_block_comment, - [81298] = 7, + ACTIONS(4778), 3, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + [81282] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, - anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - STATE(1091), 1, - sym_block, - STATE(3539), 1, - sym_label, + ACTIONS(4449), 1, + anon_sym_LT2, + ACTIONS(5650), 1, + sym_super, + ACTIONS(5744), 1, + sym_identifier, + STATE(3164), 1, + sym_type_arguments, STATE(2690), 2, sym_line_comment, sym_block_comment, - [81321] = 5, - ACTIONS(3), 1, + [81305] = 7, + ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5846), 1, - aux_sym_token_repetition_pattern_token1, + ACTIONS(4878), 1, + anon_sym_LBRACE, + ACTIONS(4896), 1, + anon_sym_where, + STATE(694), 1, + sym_declaration_list, + STATE(3149), 1, + sym_where_clause, STATE(2691), 2, sym_line_comment, sym_block_comment, - ACTIONS(5848), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [81340] = 4, + [81328] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(4449), 1, + anon_sym_LT2, + ACTIONS(5634), 1, + sym_identifier, + ACTIONS(5650), 1, + sym_super, + STATE(3150), 1, + sym_type_arguments, STATE(2692), 2, sym_line_comment, sym_block_comment, - ACTIONS(777), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - [81357] = 7, + [81351] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5347), 1, - anon_sym_GT, - ACTIONS(5349), 1, - anon_sym_COMMA, - ACTIONS(5617), 1, - anon_sym_EQ, - STATE(2786), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(4449), 1, + anon_sym_LT2, + ACTIONS(5650), 1, + sym_super, + ACTIONS(5744), 1, + sym_identifier, + STATE(3150), 1, + sym_type_arguments, STATE(2693), 2, sym_line_comment, sym_block_comment, - [81380] = 7, + [81374] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, - anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - STATE(3463), 1, - sym_block, - STATE(3539), 1, - sym_label, + ACTIONS(4983), 1, + anon_sym_PLUS, + ACTIONS(5850), 1, + anon_sym_RPAREN, + ACTIONS(5852), 1, + anon_sym_COMMA, + STATE(2788), 1, + aux_sym_tuple_type_repeat1, STATE(2694), 2, sym_line_comment, sym_block_comment, - [81403] = 7, + [81397] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, - anon_sym_LBRACE, - ACTIONS(3344), 1, + ACTIONS(3446), 1, anon_sym_SQUOTE, - STATE(3466), 1, + ACTIONS(5009), 1, + anon_sym_LBRACE, + STATE(2922), 1, sym_block, - STATE(3539), 1, + STATE(3597), 1, sym_label, STATE(2695), 2, sym_line_comment, sym_block_comment, - [81426] = 5, + [81420] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5850), 1, - anon_sym_COLON_COLON, + ACTIONS(4449), 1, + anon_sym_LT2, + ACTIONS(5799), 1, + sym_super, + ACTIONS(5854), 1, + sym_identifier, + STATE(3164), 1, + sym_type_arguments, STATE(2696), 2, sym_line_comment, sym_block_comment, - ACTIONS(4664), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [81445] = 7, + [81443] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1564), 1, - anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - STATE(2100), 1, - sym_block, - STATE(3582), 1, - sym_label, + ACTIONS(4983), 1, + anon_sym_PLUS, + ACTIONS(5856), 1, + anon_sym_RPAREN, + ACTIONS(5858), 1, + anon_sym_COMMA, + STATE(2924), 1, + aux_sym_tuple_type_repeat1, STATE(2697), 2, sym_line_comment, sym_block_comment, - [81468] = 7, + [81466] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5852), 1, - anon_sym_RPAREN, + ACTIONS(4449), 1, + anon_sym_LT2, + ACTIONS(5799), 1, + sym_super, ACTIONS(5854), 1, - anon_sym_COMMA, - STATE(2906), 1, - aux_sym_ordered_field_declaration_list_repeat1, + sym_identifier, + STATE(3150), 1, + sym_type_arguments, STATE(2698), 2, sym_line_comment, sym_block_comment, - [81491] = 7, + [81489] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1210), 1, + ACTIONS(4878), 1, anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - STATE(465), 1, - sym_block, - STATE(3590), 1, - sym_label, + ACTIONS(4896), 1, + anon_sym_where, + STATE(693), 1, + sym_declaration_list, + STATE(3054), 1, + sym_where_clause, STATE(2699), 2, sym_line_comment, sym_block_comment, - [81514] = 7, + [81512] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, - anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - STATE(3539), 1, - sym_label, - STATE(3570), 1, - sym_block, + ACTIONS(4449), 1, + anon_sym_LT2, + ACTIONS(5151), 1, + sym_super, + ACTIONS(5795), 1, + sym_identifier, + STATE(3164), 1, + sym_type_arguments, STATE(2700), 2, sym_line_comment, sym_block_comment, - [81537] = 7, + [81535] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, ACTIONS(338), 1, anon_sym_LBRACE, - ACTIONS(3344), 1, + ACTIONS(3446), 1, anon_sym_SQUOTE, - STATE(3539), 1, - sym_label, - STATE(3571), 1, + STATE(1285), 1, sym_block, + STATE(3547), 1, + sym_label, STATE(2701), 2, sym_line_comment, sym_block_comment, - [81560] = 7, + [81558] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, - anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - STATE(3471), 1, - sym_block, - STATE(3539), 1, - sym_label, + ACTIONS(4451), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(5860), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(2702), 2, sym_line_comment, sym_block_comment, - [81583] = 7, + [81577] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, - anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - STATE(1206), 1, - sym_block, - STATE(3539), 1, - sym_label, + ACTIONS(4449), 1, + anon_sym_LT2, + ACTIONS(5151), 1, + sym_super, + ACTIONS(5795), 1, + sym_identifier, + STATE(3150), 1, + sym_type_arguments, STATE(2703), 2, sym_line_comment, sym_block_comment, - [81606] = 7, + [81600] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, - anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - STATE(3539), 1, - sym_label, - STATE(3548), 1, - sym_block, + ACTIONS(4449), 1, + anon_sym_LT2, + ACTIONS(5650), 1, + sym_super, + ACTIONS(5862), 1, + sym_identifier, + STATE(3164), 1, + sym_type_arguments, STATE(2704), 2, sym_line_comment, sym_block_comment, - [81629] = 7, + [81623] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5528), 1, - anon_sym_RPAREN, - ACTIONS(5530), 1, - anon_sym_COMMA, - STATE(2822), 1, - aux_sym_parameters_repeat1, + ACTIONS(5864), 1, + anon_sym_LBRACE, + ACTIONS(5866), 1, + anon_sym_for, + ACTIONS(5868), 1, + anon_sym_loop, + ACTIONS(5870), 1, + anon_sym_while, STATE(2705), 2, sym_line_comment, sym_block_comment, - [81652] = 7, + [81646] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, - anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - STATE(3506), 1, - sym_block, - STATE(3539), 1, - sym_label, + ACTIONS(4896), 1, + anon_sym_where, + ACTIONS(4983), 1, + anon_sym_PLUS, + ACTIONS(5872), 1, + anon_sym_SEMI, + STATE(3313), 1, + sym_where_clause, STATE(2706), 2, sym_line_comment, sym_block_comment, - [81675] = 6, + [81669] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4611), 1, - anon_sym_DOT_DOT, - ACTIONS(5856), 1, - anon_sym_COLON_COLON, - ACTIONS(4613), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(4449), 1, + anon_sym_LT2, + ACTIONS(5650), 1, + sym_super, + ACTIONS(5862), 1, + sym_identifier, + STATE(3150), 1, + sym_type_arguments, STATE(2707), 2, sym_line_comment, sym_block_comment, - [81696] = 6, + [81692] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4463), 1, - anon_sym_DOT_DOT, - ACTIONS(5207), 1, - anon_sym_COLON_COLON, - ACTIONS(4465), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(3243), 1, + anon_sym_LPAREN, + ACTIONS(4449), 1, + anon_sym_LT2, + STATE(1090), 1, + sym_parameters, + STATE(1931), 1, + sym_type_arguments, STATE(2708), 2, sym_line_comment, sym_block_comment, - [81717] = 7, + [81715] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5858), 1, - anon_sym_LBRACE, - ACTIONS(5860), 1, - anon_sym_for, - ACTIONS(5862), 1, - anon_sym_loop, - ACTIONS(5864), 1, - anon_sym_while, + ACTIONS(4443), 1, + anon_sym_LPAREN, + ACTIONS(4449), 1, + anon_sym_LT2, + STATE(1931), 1, + sym_type_arguments, + STATE(1956), 1, + sym_parameters, STATE(2709), 2, sym_line_comment, sym_block_comment, - [81740] = 7, + [81738] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3251), 1, - anon_sym_LT2, - ACTIONS(3541), 1, - anon_sym_COLON_COLON, - ACTIONS(4848), 1, - anon_sym_BANG, - STATE(1048), 1, - sym_type_arguments, + ACTIONS(5874), 1, + anon_sym_in, STATE(2710), 2, sym_line_comment, sym_block_comment, - [81763] = 6, + ACTIONS(5876), 3, + sym_self, + sym_super, + sym_crate, + [81757] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4243), 1, - anon_sym_LBRACE, - STATE(2889), 1, - sym_use_list, - ACTIONS(5866), 2, - sym_identifier, - sym_super, + ACTIONS(4443), 1, + anon_sym_LPAREN, + ACTIONS(4894), 1, + anon_sym_LT, + STATE(2190), 1, + sym_parameters, + STATE(3245), 1, + sym_type_parameters, STATE(2711), 2, sym_line_comment, sym_block_comment, - [81784] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, + [81780] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - STATE(381), 1, - sym_block, - STATE(3510), 1, - sym_label, + ACTIONS(4449), 1, + anon_sym_LT2, + ACTIONS(5650), 1, + sym_super, + ACTIONS(5878), 1, + sym_identifier, + STATE(3164), 1, + sym_type_arguments, STATE(2712), 2, sym_line_comment, sym_block_comment, - [81807] = 6, + [81803] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4463), 1, - anon_sym_DOT_DOT, - ACTIONS(5101), 1, - anon_sym_COLON_COLON, - ACTIONS(4465), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(4449), 1, + anon_sym_LT2, + ACTIONS(5650), 1, + sym_super, + ACTIONS(5878), 1, + sym_identifier, + STATE(3150), 1, + sym_type_arguments, STATE(2713), 2, sym_line_comment, sym_block_comment, - [81828] = 7, + [81826] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5868), 1, - anon_sym_LBRACE, - ACTIONS(5870), 1, - anon_sym_for, - ACTIONS(5872), 1, - anon_sym_loop, - ACTIONS(5874), 1, - anon_sym_while, + ACTIONS(4449), 1, + anon_sym_LT2, + ACTIONS(5650), 1, + sym_super, + ACTIONS(5880), 1, + sym_identifier, + STATE(3164), 1, + sym_type_arguments, STATE(2714), 2, sym_line_comment, sym_block_comment, - [81851] = 7, + [81849] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, + ACTIONS(4896), 1, + anon_sym_where, + ACTIONS(5269), 1, anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - STATE(1381), 1, - sym_block, - STATE(3539), 1, - sym_label, + STATE(739), 1, + sym_enum_variant_list, + STATE(3086), 1, + sym_where_clause, STATE(2715), 2, sym_line_comment, sym_block_comment, - [81874] = 5, + [81872] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5801), 1, - anon_sym_COLON_COLON, + ACTIONS(4896), 1, + anon_sym_where, + ACTIONS(5285), 1, + anon_sym_LBRACE, + STATE(1361), 1, + sym_enum_variant_list, + STATE(3226), 1, + sym_where_clause, STATE(2716), 2, sym_line_comment, sym_block_comment, - ACTIONS(4674), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [81893] = 7, + [81895] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5175), 1, - anon_sym_LPAREN, - ACTIONS(5177), 1, - anon_sym_LBRACK, - ACTIONS(5181), 1, + ACTIONS(4878), 1, anon_sym_LBRACE, - STATE(1387), 1, - sym_delim_token_tree, + ACTIONS(4896), 1, + anon_sym_where, + STATE(646), 1, + sym_declaration_list, + STATE(3142), 1, + sym_where_clause, STATE(2717), 2, sym_line_comment, sym_block_comment, - [81916] = 5, + [81918] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5821), 1, - anon_sym_COLON_COLON, + ACTIONS(4449), 1, + anon_sym_LT2, + ACTIONS(5650), 1, + sym_super, + ACTIONS(5880), 1, + sym_identifier, + STATE(3150), 1, + sym_type_arguments, STATE(2718), 2, sym_line_comment, sym_block_comment, - ACTIONS(4690), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [81935] = 7, + [81941] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5876), 1, - anon_sym_SEMI, - STATE(3441), 1, - sym_where_clause, + ACTIONS(4449), 1, + anon_sym_LT2, + ACTIONS(5151), 1, + sym_super, + ACTIONS(5880), 1, + sym_identifier, + STATE(3164), 1, + sym_type_arguments, STATE(2719), 2, sym_line_comment, sym_block_comment, - [81958] = 7, + [81964] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4744), 1, - anon_sym_for, - ACTIONS(5598), 1, - anon_sym_COLON_COLON, - STATE(1931), 1, - sym_type_arguments, + ACTIONS(5413), 1, + anon_sym_GT, + ACTIONS(5415), 1, + anon_sym_COMMA, + ACTIONS(5606), 1, + anon_sym_EQ, + STATE(2818), 1, + aux_sym_type_parameters_repeat1, STATE(2720), 2, sym_line_comment, sym_block_comment, - [81981] = 7, + [81987] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, - anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - STATE(3384), 1, - sym_block, - STATE(3539), 1, - sym_label, + ACTIONS(4973), 1, + anon_sym_COLON, + STATE(3118), 1, + sym_trait_bounds, + ACTIONS(5469), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(2721), 2, sym_line_comment, sym_block_comment, - [82004] = 7, + [82008] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, - anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - STATE(1050), 1, - sym_block, - STATE(3539), 1, - sym_label, + ACTIONS(4449), 1, + anon_sym_LT2, + ACTIONS(5151), 1, + sym_super, + ACTIONS(5880), 1, + sym_identifier, + STATE(3150), 1, + sym_type_arguments, STATE(2722), 2, sym_line_comment, sym_block_comment, - [82027] = 5, + [82031] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5840), 1, - anon_sym_COLON_COLON, + ACTIONS(5298), 1, + anon_sym_PLUS, STATE(2723), 2, sym_line_comment, sym_block_comment, - ACTIONS(4690), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [82046] = 7, + ACTIONS(5882), 3, + anon_sym_COLON, + anon_sym_GT, + anon_sym_COMMA, + [82050] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(5598), 1, + ACTIONS(4461), 1, + anon_sym_DOT_DOT, + ACTIONS(5165), 1, anon_sym_COLON_COLON, - ACTIONS(5878), 1, - anon_sym_for, - STATE(1931), 1, - sym_type_arguments, + ACTIONS(4463), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(2724), 2, sym_line_comment, sym_block_comment, - [82069] = 7, + [82071] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(5598), 1, - anon_sym_COLON_COLON, - ACTIONS(5880), 1, + anon_sym_LT2, + ACTIONS(4720), 1, anon_sym_for, - STATE(1931), 1, + ACTIONS(5602), 1, + anon_sym_COLON_COLON, + STATE(1935), 1, sym_type_arguments, STATE(2725), 2, sym_line_comment, sym_block_comment, - [82092] = 5, + [82094] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5850), 1, - anon_sym_COLON_COLON, + ACTIONS(338), 1, + anon_sym_LBRACE, + ACTIONS(3446), 1, + anon_sym_SQUOTE, + STATE(3547), 1, + sym_label, + STATE(3596), 1, + sym_block, STATE(2726), 2, sym_line_comment, sym_block_comment, - ACTIONS(4690), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [82111] = 7, + [82117] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5623), 1, - anon_sym_LPAREN, - ACTIONS(5625), 1, - anon_sym_LBRACK, - ACTIONS(5627), 1, + ACTIONS(4896), 1, + anon_sym_where, + ACTIONS(4945), 1, anon_sym_LBRACE, - STATE(397), 1, - sym_delim_token_tree, + STATE(1317), 1, + sym_field_declaration_list, + STATE(3186), 1, + sym_where_clause, STATE(2727), 2, sym_line_comment, sym_block_comment, - [82134] = 7, + [82140] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(5598), 1, - anon_sym_COLON_COLON, - ACTIONS(5882), 1, - anon_sym_for, - STATE(1931), 1, - sym_type_arguments, + ACTIONS(5225), 1, + anon_sym_GT, + ACTIONS(5227), 1, + anon_sym_COMMA, + ACTIONS(5606), 1, + anon_sym_EQ, + STATE(2999), 1, + aux_sym_type_parameters_repeat1, STATE(2728), 2, sym_line_comment, sym_block_comment, - [82157] = 7, + [82163] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(5598), 1, - anon_sym_COLON_COLON, - ACTIONS(5884), 1, - anon_sym_for, - STATE(1931), 1, - sym_type_arguments, STATE(2729), 2, sym_line_comment, sym_block_comment, + ACTIONS(5884), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, [82180] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(400), 1, + ACTIONS(4884), 1, anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - STATE(1752), 1, - sym_block, - STATE(3591), 1, - sym_label, + ACTIONS(4896), 1, + anon_sym_where, + STATE(1327), 1, + sym_declaration_list, + STATE(3194), 1, + sym_where_clause, STATE(2730), 2, sym_line_comment, sym_block_comment, - [82203] = 4, + [82203] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(3322), 1, + anon_sym_LBRACE, + ACTIONS(5886), 1, + anon_sym_COLON_COLON, + STATE(1289), 1, + sym_field_initializer_list, STATE(2731), 2, sym_line_comment, sym_block_comment, - ACTIONS(5886), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [82219] = 6, + [82223] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, - anon_sym_LBRACE, - ACTIONS(5888), 1, - anon_sym_SEMI, - STATE(1144), 1, - sym_declaration_list, + ACTIONS(4449), 1, + anon_sym_LT2, + ACTIONS(4901), 1, + anon_sym_for, + STATE(1931), 1, + sym_type_arguments, STATE(2732), 2, sym_line_comment, sym_block_comment, - [82239] = 6, + [82243] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, - anon_sym_LBRACE, - ACTIONS(5890), 1, - anon_sym_SEMI, - STATE(1146), 1, - sym_declaration_list, + ACTIONS(5225), 1, + anon_sym_GT, + ACTIONS(5227), 1, + anon_sym_COMMA, + STATE(2999), 1, + aux_sym_type_parameters_repeat1, STATE(2733), 2, sym_line_comment, sym_block_comment, - [82259] = 6, + [82263] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5892), 1, + ACTIONS(4896), 1, + anon_sym_where, + ACTIONS(5888), 1, anon_sym_SEMI, - ACTIONS(5894), 1, - anon_sym_RBRACK, + STATE(3430), 1, + sym_where_clause, STATE(2734), 2, sym_line_comment, sym_block_comment, - [82279] = 6, + [82283] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4878), 1, + ACTIONS(5890), 1, + anon_sym_LPAREN, + ACTIONS(5892), 1, + anon_sym_LBRACK, + ACTIONS(5894), 1, anon_sym_LBRACE, - ACTIONS(5896), 1, - anon_sym_SEMI, - STATE(715), 1, - sym_declaration_list, STATE(2735), 2, sym_line_comment, sym_block_comment, - [82299] = 6, + [82303] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, + ACTIONS(4878), 1, anon_sym_LBRACE, - ACTIONS(5898), 1, + ACTIONS(5896), 1, anon_sym_SEMI, - STATE(1152), 1, + STATE(743), 1, sym_declaration_list, STATE(2736), 2, sym_line_comment, sym_block_comment, - [82319] = 6, + [82323] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, - anon_sym_LBRACE, - ACTIONS(5900), 1, + ACTIONS(4896), 1, + anon_sym_where, + ACTIONS(5898), 1, anon_sym_SEMI, - STATE(1154), 1, - sym_declaration_list, + STATE(3424), 1, + sym_where_clause, STATE(2737), 2, sym_line_comment, sym_block_comment, - [82339] = 6, + [82343] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5902), 1, - anon_sym_RBRACE, - ACTIONS(5904), 1, + ACTIONS(1015), 1, + anon_sym_RPAREN, + ACTIONS(5900), 1, anon_sym_COMMA, - STATE(2866), 1, - aux_sym_struct_pattern_repeat1, + STATE(2626), 1, + aux_sym_arguments_repeat1, STATE(2738), 2, sym_line_comment, sym_block_comment, - [82359] = 6, + [82363] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_PLUS, + ACTIONS(5902), 1, + anon_sym_LPAREN, + ACTIONS(5904), 1, + anon_sym_LBRACK, ACTIONS(5906), 1, - anon_sym_SEMI, - ACTIONS(5908), 1, - anon_sym_EQ, + anon_sym_LBRACE, STATE(2739), 2, sym_line_comment, sym_block_comment, - [82379] = 4, + [82383] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(4896), 1, + anon_sym_where, + ACTIONS(5908), 1, + anon_sym_SEMI, + STATE(3583), 1, + sym_where_clause, STATE(2740), 2, sym_line_comment, sym_block_comment, - ACTIONS(5910), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [82395] = 6, + [82403] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5912), 1, - anon_sym_LPAREN, - ACTIONS(5914), 1, - anon_sym_LBRACK, - ACTIONS(5916), 1, + ACTIONS(4884), 1, anon_sym_LBRACE, + ACTIONS(5910), 1, + anon_sym_SEMI, + STATE(1344), 1, + sym_declaration_list, STATE(2741), 2, sym_line_comment, sym_block_comment, - [82415] = 6, + [82423] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3169), 1, - anon_sym_RPAREN, - ACTIONS(5918), 1, + ACTIONS(5413), 1, + anon_sym_GT, + ACTIONS(5415), 1, anon_sym_COMMA, - STATE(2880), 1, - aux_sym_tuple_type_repeat1, + STATE(2818), 1, + aux_sym_type_parameters_repeat1, STATE(2742), 2, sym_line_comment, sym_block_comment, - [82435] = 6, + [82443] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, - anon_sym_LBRACE, - ACTIONS(5920), 1, - anon_sym_SEMI, - STATE(1170), 1, - sym_declaration_list, + ACTIONS(5912), 1, + anon_sym_RBRACE, + ACTIONS(5914), 1, + anon_sym_COMMA, + STATE(2855), 1, + aux_sym_field_initializer_list_repeat1, STATE(2743), 2, sym_line_comment, sym_block_comment, - [82455] = 6, + [82463] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, + ACTIONS(4449), 1, + anon_sym_LT2, + ACTIONS(5916), 1, anon_sym_LBRACE, - ACTIONS(5922), 1, - anon_sym_SEMI, - STATE(1172), 1, - sym_declaration_list, + STATE(1931), 1, + sym_type_arguments, STATE(2744), 2, sym_line_comment, sym_block_comment, - [82475] = 6, + [82483] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4878), 1, - anon_sym_LBRACE, - ACTIONS(5924), 1, - anon_sym_SEMI, - STATE(556), 1, - sym_declaration_list, + ACTIONS(1594), 1, + anon_sym_GT, + ACTIONS(5918), 1, + anon_sym_COMMA, + STATE(2747), 1, + aux_sym_type_arguments_repeat1, STATE(2745), 2, sym_line_comment, sym_block_comment, - [82495] = 4, + [82503] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(4884), 1, + anon_sym_LBRACE, + ACTIONS(5920), 1, + anon_sym_SEMI, + STATE(1297), 1, + sym_declaration_list, STATE(2746), 2, sym_line_comment, sym_block_comment, - ACTIONS(5926), 3, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - [82511] = 6, + [82523] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1592), 1, + ACTIONS(5469), 1, anon_sym_GT, - ACTIONS(5928), 1, + ACTIONS(5922), 1, anon_sym_COMMA, - STATE(2749), 1, - aux_sym_type_arguments_repeat1, - STATE(2747), 2, + STATE(2747), 3, sym_line_comment, sym_block_comment, - [82531] = 5, + aux_sym_type_arguments_repeat1, + [82541] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5932), 1, + ACTIONS(5927), 1, anon_sym_COLON, - ACTIONS(5930), 2, + ACTIONS(5925), 2, anon_sym_RBRACE, anon_sym_COMMA, STATE(2748), 2, sym_line_comment, sym_block_comment, - [82549] = 5, + [82559] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, ACTIONS(5373), 1, - anon_sym_GT, - ACTIONS(5934), 1, + anon_sym_PIPE, + ACTIONS(5929), 2, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(2749), 3, + STATE(2749), 2, sym_line_comment, sym_block_comment, - aux_sym_type_arguments_repeat1, - [82567] = 5, + [82577] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4535), 1, - anon_sym_COLON_COLON, - ACTIONS(5937), 2, - anon_sym_RPAREN, + ACTIONS(5931), 1, + anon_sym_RBRACE, + ACTIONS(5933), 1, anon_sym_COMMA, - STATE(2750), 2, + STATE(2750), 3, sym_line_comment, sym_block_comment, - [82585] = 6, + aux_sym_struct_pattern_repeat1, + [82595] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5438), 1, + ACTIONS(4554), 1, + anon_sym_COLON_COLON, + ACTIONS(5273), 2, anon_sym_RPAREN, - ACTIONS(5440), 1, anon_sym_COMMA, - STATE(2872), 1, - aux_sym_parameters_repeat1, STATE(2751), 2, sym_line_comment, sym_block_comment, - [82605] = 6, + [82613] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3039), 1, - anon_sym_RPAREN, - ACTIONS(5939), 1, - anon_sym_COMMA, - STATE(2680), 1, - aux_sym_slice_pattern_repeat1, + ACTIONS(4449), 1, + anon_sym_LT2, + ACTIONS(4926), 1, + anon_sym_COLON_COLON, + STATE(1936), 1, + sym_type_arguments, STATE(2752), 2, sym_line_comment, sym_block_comment, - [82625] = 6, + [82633] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(5941), 1, - anon_sym_COLON_COLON, - STATE(1930), 1, - sym_type_arguments, + ACTIONS(4896), 1, + anon_sym_where, + ACTIONS(5936), 1, + anon_sym_SEMI, + STATE(3501), 1, + sym_where_clause, STATE(2753), 2, sym_line_comment, sym_block_comment, - [82645] = 5, + [82653] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4535), 1, + ACTIONS(4449), 1, + anon_sym_LT2, + ACTIONS(5938), 1, anon_sym_COLON_COLON, - ACTIONS(5309), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + STATE(1936), 1, + sym_type_arguments, STATE(2754), 2, sym_line_comment, sym_block_comment, - [82663] = 6, + [82673] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4878), 1, - anon_sym_LBRACE, - ACTIONS(5943), 1, - anon_sym_SEMI, - STATE(695), 1, - sym_declaration_list, + ACTIONS(5940), 1, + sym_identifier, + ACTIONS(5942), 1, + anon_sym_await, + ACTIONS(5944), 1, + sym_integer_literal, STATE(2755), 2, sym_line_comment, sym_block_comment, - [82683] = 4, + [82693] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(4983), 1, + anon_sym_PLUS, + ACTIONS(5946), 1, + anon_sym_SEMI, + ACTIONS(5948), 1, + anon_sym_RBRACK, STATE(2756), 2, sym_line_comment, sym_block_comment, - ACTIONS(4806), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [82699] = 6, - ACTIONS(27), 1, - anon_sym_PIPE, + [82713] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5945), 1, - anon_sym_move, - STATE(217), 1, - sym_closure_parameters, + ACTIONS(4983), 1, + anon_sym_PLUS, + ACTIONS(5860), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(2757), 2, sym_line_comment, sym_block_comment, - [82719] = 6, + [82731] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5947), 1, + ACTIONS(4896), 1, + anon_sym_where, + ACTIONS(5950), 1, anon_sym_SEMI, - ACTIONS(5949), 1, - anon_sym_EQ, + STATE(3586), 1, + sym_where_clause, STATE(2758), 2, sym_line_comment, sym_block_comment, - [82739] = 4, + [82751] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(4983), 1, + anon_sym_PLUS, + ACTIONS(5952), 1, + anon_sym_SEMI, + ACTIONS(5954), 1, + anon_sym_EQ, STATE(2759), 2, sym_line_comment, sym_block_comment, - ACTIONS(5951), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [82755] = 5, + [82771] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5703), 2, + ACTIONS(5860), 1, anon_sym_RPAREN, + ACTIONS(5956), 1, anon_sym_COMMA, - STATE(2760), 2, + STATE(2760), 3, sym_line_comment, sym_block_comment, - [82773] = 4, + aux_sym_parameters_repeat1, + [82789] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2761), 2, + ACTIONS(5959), 1, + anon_sym_RBRACE, + ACTIONS(5961), 1, + anon_sym_COMMA, + STATE(2761), 3, sym_line_comment, sym_block_comment, - ACTIONS(4808), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [82789] = 6, + aux_sym_field_initializer_list_repeat1, + [82807] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5953), 1, - anon_sym_RBRACE, - ACTIONS(5955), 1, + ACTIONS(1462), 1, + anon_sym_RPAREN, + ACTIONS(5964), 1, anon_sym_COMMA, - STATE(2884), 1, - aux_sym_enum_variant_list_repeat2, + STATE(2760), 1, + aux_sym_parameters_repeat1, STATE(2762), 2, sym_line_comment, sym_block_comment, - [82809] = 5, + [82827] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, + ACTIONS(4983), 1, anon_sym_PLUS, - ACTIONS(5610), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(5966), 1, + anon_sym_SEMI, + ACTIONS(5968), 1, + anon_sym_RBRACK, STATE(2763), 2, sym_line_comment, sym_block_comment, - [82827] = 6, + [82847] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5139), 1, - anon_sym_RBRACE, - ACTIONS(5957), 1, - anon_sym_COMMA, - STATE(2844), 1, - aux_sym_struct_pattern_repeat1, STATE(2764), 2, sym_line_comment, sym_block_comment, - [82847] = 5, + ACTIONS(5970), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [82863] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5961), 1, - anon_sym_COLON, - ACTIONS(5959), 2, + ACTIONS(5972), 1, anon_sym_RBRACE, + ACTIONS(5974), 1, anon_sym_COMMA, + STATE(2988), 1, + aux_sym_use_list_repeat1, STATE(2765), 2, sym_line_comment, sym_block_comment, - [82865] = 4, + [82883] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2766), 2, + ACTIONS(5976), 1, + anon_sym_RBRACE, + ACTIONS(5978), 1, + anon_sym_COMMA, + STATE(2766), 3, sym_line_comment, sym_block_comment, - ACTIONS(4766), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [82881] = 6, + aux_sym_use_list_repeat1, + [82901] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4878), 1, - anon_sym_LBRACE, - ACTIONS(5963), 1, - anon_sym_SEMI, - STATE(738), 1, - sym_declaration_list, STATE(2767), 2, sym_line_comment, sym_block_comment, - [82901] = 5, + ACTIONS(5981), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [82917] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5967), 1, - anon_sym_COLON, - ACTIONS(5965), 2, - anon_sym_RBRACE, - anon_sym_COMMA, STATE(2768), 2, sym_line_comment, sym_block_comment, - [82919] = 5, + ACTIONS(5983), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [82933] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5971), 1, - anon_sym_EQ, - ACTIONS(5969), 2, - anon_sym_RBRACE, + ACTIONS(5421), 1, anon_sym_COMMA, + ACTIONS(5985), 1, + anon_sym_PIPE, + STATE(2882), 1, + aux_sym_closure_parameters_repeat1, STATE(2769), 2, sym_line_comment, sym_block_comment, - [82937] = 6, + [82953] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5973), 1, - anon_sym_RBRACE, - ACTIONS(5975), 1, + ACTIONS(1023), 1, + anon_sym_RBRACK, + ACTIONS(4119), 1, anon_sym_COMMA, - STATE(2936), 1, - aux_sym_field_initializer_list_repeat1, + STATE(2626), 1, + aux_sym_arguments_repeat1, STATE(2770), 2, sym_line_comment, sym_block_comment, - [82957] = 6, + [82973] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4935), 1, - anon_sym_RBRACE, - ACTIONS(5977), 1, + ACTIONS(5606), 1, + anon_sym_EQ, + ACTIONS(5714), 2, + anon_sym_GT, anon_sym_COMMA, - STATE(2804), 1, - aux_sym_enum_variant_list_repeat2, STATE(2771), 2, sym_line_comment, sym_block_comment, - [82977] = 6, + [82991] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4652), 1, + ACTIONS(2961), 1, + anon_sym_SQUOTE, + ACTIONS(5987), 1, anon_sym_GT, - ACTIONS(5979), 1, - anon_sym_COMMA, - STATE(2860), 1, - aux_sym_type_parameters_repeat1, + STATE(3230), 1, + sym_lifetime, STATE(2772), 2, sym_line_comment, sym_block_comment, - [82997] = 6, + [83011] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4654), 1, - anon_sym_GT, - ACTIONS(5484), 1, + ACTIONS(2947), 1, + anon_sym_RPAREN, + ACTIONS(5989), 1, anon_sym_COMMA, - STATE(2860), 1, - aux_sym_type_parameters_repeat1, + STATE(2910), 1, + aux_sym_tuple_pattern_repeat1, STATE(2773), 2, sym_line_comment, sym_block_comment, - [83017] = 6, + [83031] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1003), 1, - anon_sym_RBRACK, - ACTIONS(4009), 1, - anon_sym_COMMA, - STATE(2589), 1, - aux_sym_arguments_repeat1, + ACTIONS(4878), 1, + anon_sym_LBRACE, + ACTIONS(5991), 1, + anon_sym_SEMI, + STATE(697), 1, + sym_declaration_list, STATE(2774), 2, sym_line_comment, sym_block_comment, - [83037] = 6, + [83051] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4654), 1, - anon_sym_GT, - ACTIONS(5484), 1, + ACTIONS(3007), 1, + anon_sym_RBRACK, + ACTIONS(5993), 1, anon_sym_COMMA, - STATE(2891), 1, - aux_sym_type_parameters_repeat1, + STATE(2561), 1, + aux_sym_slice_pattern_repeat1, STATE(2775), 2, sym_line_comment, sym_block_comment, - [83057] = 4, + [83071] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(4449), 1, + anon_sym_LT2, + ACTIONS(5995), 1, + anon_sym_for, + STATE(1931), 1, + sym_type_arguments, STATE(2776), 2, sym_line_comment, sym_block_comment, - ACTIONS(5981), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [83073] = 6, + [83091] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1035), 1, - anon_sym_RBRACK, - ACTIONS(4061), 1, + ACTIONS(5999), 1, + anon_sym_COLON, + ACTIONS(5997), 2, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(2589), 1, - aux_sym_arguments_repeat1, STATE(2777), 2, sym_line_comment, sym_block_comment, - [83093] = 6, + [83109] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5460), 1, - anon_sym_GT, - ACTIONS(5462), 1, + ACTIONS(5835), 1, + anon_sym_RPAREN, + ACTIONS(5837), 1, anon_sym_COMMA, - STATE(2773), 1, - aux_sym_type_parameters_repeat1, + STATE(2833), 1, + aux_sym_tuple_pattern_repeat1, STATE(2778), 2, sym_line_comment, sym_block_comment, - [83113] = 4, + [83129] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(6001), 1, + anon_sym_RBRACE, + ACTIONS(6003), 1, + anon_sym_COMMA, + STATE(2975), 1, + aux_sym_field_initializer_list_repeat1, STATE(2779), 2, sym_line_comment, sym_block_comment, - ACTIONS(5983), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [83129] = 6, + [83149] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5985), 1, - anon_sym_SEMI, - ACTIONS(5987), 1, - anon_sym_RBRACK, + ACTIONS(5825), 1, + anon_sym_RPAREN, + ACTIONS(5827), 1, + anon_sym_COMMA, + STATE(2773), 1, + aux_sym_tuple_pattern_repeat1, STATE(2780), 2, sym_line_comment, sym_block_comment, - [83149] = 6, + [83169] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, - anon_sym_LBRACE, - ACTIONS(5989), 1, - anon_sym_SEMI, - STATE(1330), 1, - sym_declaration_list, - STATE(2781), 2, + ACTIONS(6005), 1, + anon_sym_GT, + ACTIONS(6007), 1, + anon_sym_COMMA, + STATE(2781), 3, sym_line_comment, sym_block_comment, - [83169] = 6, + aux_sym_for_lifetimes_repeat1, + [83187] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5991), 1, - sym_identifier, - ACTIONS(5993), 1, - anon_sym_ref, - ACTIONS(5995), 1, - sym_mutable_specifier, + ACTIONS(6010), 1, + anon_sym_RBRACE, + ACTIONS(6012), 1, + anon_sym_COMMA, + STATE(2892), 1, + aux_sym_struct_pattern_repeat1, STATE(2782), 2, sym_line_comment, sym_block_comment, - [83189] = 6, + [83207] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4935), 1, - anon_sym_RBRACE, - ACTIONS(5977), 1, + ACTIONS(1013), 1, + anon_sym_RBRACK, + ACTIONS(4037), 1, anon_sym_COMMA, - STATE(2832), 1, - aux_sym_enum_variant_list_repeat2, + STATE(2626), 1, + aux_sym_arguments_repeat1, STATE(2783), 2, sym_line_comment, sym_block_comment, - [83209] = 6, + [83227] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3251), 1, - anon_sym_LT2, - ACTIONS(4883), 1, - anon_sym_COLON_COLON, - STATE(1048), 1, - sym_type_arguments, + ACTIONS(1019), 1, + anon_sym_RBRACK, + ACTIONS(4049), 1, + anon_sym_COMMA, + STATE(2626), 1, + aux_sym_arguments_repeat1, STATE(2784), 2, sym_line_comment, sym_block_comment, - [83229] = 4, + [83247] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2785), 2, + ACTIONS(6014), 1, + anon_sym_RBRACE, + ACTIONS(6016), 1, + anon_sym_COMMA, + STATE(2785), 3, sym_line_comment, sym_block_comment, - ACTIONS(4796), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [83245] = 6, + aux_sym_enum_variant_list_repeat2, + [83265] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_GT, - ACTIONS(5371), 1, + ACTIONS(6019), 1, + anon_sym_RBRACE, + ACTIONS(6021), 1, anon_sym_COMMA, - STATE(2860), 1, - aux_sym_type_parameters_repeat1, + STATE(2896), 1, + aux_sym_struct_pattern_repeat1, STATE(2786), 2, sym_line_comment, sym_block_comment, - [83265] = 6, + [83285] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, - anon_sym_LBRACE, - ACTIONS(5997), 1, - anon_sym_SEMI, - STATE(1246), 1, - sym_declaration_list, + ACTIONS(6023), 1, + sym_identifier, + ACTIONS(6025), 1, + anon_sym_ref, + ACTIONS(6027), 1, + sym_mutable_specifier, STATE(2787), 2, sym_line_comment, sym_block_comment, - [83285] = 6, + [83305] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(983), 1, - anon_sym_RBRACK, - ACTIONS(4071), 1, + ACTIONS(3143), 1, + anon_sym_RPAREN, + ACTIONS(6029), 1, anon_sym_COMMA, - STATE(2589), 1, - aux_sym_arguments_repeat1, + STATE(2885), 1, + aux_sym_tuple_type_repeat1, STATE(2788), 2, sym_line_comment, sym_block_comment, - [83305] = 6, + [83325] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5999), 1, - anon_sym_SEMI, - ACTIONS(6001), 1, + ACTIONS(6033), 1, anon_sym_EQ, + ACTIONS(6031), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(2789), 2, sym_line_comment, sym_block_comment, - [83325] = 6, + [83343] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1029), 1, - anon_sym_RPAREN, - ACTIONS(6003), 1, + ACTIONS(4965), 1, + anon_sym_RBRACE, + ACTIONS(6035), 1, anon_sym_COMMA, - STATE(2589), 1, - aux_sym_arguments_repeat1, + STATE(2785), 1, + aux_sym_enum_variant_list_repeat2, STATE(2790), 2, sym_line_comment, sym_block_comment, - [83345] = 6, + [83363] = 6, ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(6005), 1, - anon_sym_RBRACE, - ACTIONS(6007), 1, - anon_sym_COMMA, - STATE(2914), 1, - aux_sym_field_declaration_list_repeat1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(4730), 1, + anon_sym_COLON_COLON, + ACTIONS(4786), 1, + anon_sym_BANG, + ACTIONS(6037), 1, + sym_identifier, STATE(2791), 2, sym_line_comment, sym_block_comment, - [83365] = 6, + [83383] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4872), 1, - anon_sym_LT, - ACTIONS(6009), 1, - anon_sym_EQ, - STATE(3472), 1, - sym_type_parameters, + ACTIONS(4878), 1, + anon_sym_LBRACE, + ACTIONS(6039), 1, + anon_sym_SEMI, + STATE(663), 1, + sym_declaration_list, STATE(2792), 2, sym_line_comment, sym_block_comment, - [83385] = 6, + [83403] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(6011), 1, - anon_sym_SEMI, - STATE(3377), 1, - sym_where_clause, + ACTIONS(5429), 1, + anon_sym_RPAREN, + ACTIONS(5431), 1, + anon_sym_COMMA, + STATE(2901), 1, + aux_sym_parameters_repeat1, STATE(2793), 2, sym_line_comment, sym_block_comment, - [83405] = 4, + [83423] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(4878), 1, + anon_sym_LBRACE, + ACTIONS(6041), 1, + anon_sym_SEMI, + STATE(579), 1, + sym_declaration_list, STATE(2794), 2, sym_line_comment, sym_block_comment, - ACTIONS(4810), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [83421] = 6, + [83443] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3181), 1, - anon_sym_RPAREN, - ACTIONS(6013), 1, - anon_sym_COMMA, - STATE(2880), 1, - aux_sym_tuple_type_repeat1, + ACTIONS(4894), 1, + anon_sym_LT, + ACTIONS(6043), 1, + anon_sym_EQ, + STATE(3541), 1, + sym_type_parameters, STATE(2795), 2, sym_line_comment, sym_block_comment, - [83441] = 5, + [83463] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5610), 1, - anon_sym_RPAREN, - ACTIONS(6015), 1, + ACTIONS(4918), 1, + anon_sym_RBRACE, + ACTIONS(6045), 1, anon_sym_COMMA, - STATE(2796), 3, + STATE(2830), 1, + aux_sym_field_declaration_list_repeat1, + STATE(2796), 2, sym_line_comment, sym_block_comment, - aux_sym_parameters_repeat1, - [83459] = 4, + [83483] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(4878), 1, + anon_sym_LBRACE, + ACTIONS(6047), 1, + anon_sym_SEMI, + STATE(574), 1, + sym_declaration_list, STATE(2797), 2, sym_line_comment, sym_block_comment, - ACTIONS(4816), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [83475] = 6, + [83503] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5426), 1, - anon_sym_RPAREN, - ACTIONS(5428), 1, - anon_sym_COMMA, - STATE(2809), 1, - aux_sym_parameters_repeat1, + ACTIONS(6049), 1, + sym_identifier, + ACTIONS(6051), 1, + anon_sym_await, + ACTIONS(6053), 1, + sym_integer_literal, STATE(2798), 2, sym_line_comment, sym_block_comment, - [83495] = 5, + [83523] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, + ACTIONS(4983), 1, anon_sym_PLUS, - ACTIONS(6018), 2, - anon_sym_RPAREN, + ACTIONS(6055), 2, + anon_sym_GT, anon_sym_COMMA, STATE(2799), 2, sym_line_comment, sym_block_comment, - [83513] = 4, + [83541] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(6057), 1, + sym_identifier, + ACTIONS(6059), 1, + anon_sym_ref, + ACTIONS(6061), 1, + sym_mutable_specifier, STATE(2800), 2, sym_line_comment, sym_block_comment, - ACTIONS(4856), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [83529] = 6, + [83561] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(6020), 1, - anon_sym_SEMI, - STATE(3383), 1, - sym_where_clause, + ACTIONS(5606), 1, + anon_sym_EQ, + ACTIONS(5791), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(2801), 2, sym_line_comment, sym_block_comment, - [83549] = 4, + [83579] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(4983), 1, + anon_sym_PLUS, + ACTIONS(6063), 1, + anon_sym_SEMI, + ACTIONS(6065), 1, + anon_sym_EQ, STATE(2802), 2, sym_line_comment, sym_block_comment, - ACTIONS(4792), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [83565] = 4, + [83599] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(4878), 1, + anon_sym_LBRACE, + ACTIONS(6067), 1, + anon_sym_SEMI, + STATE(560), 1, + sym_declaration_list, STATE(2803), 2, sym_line_comment, sym_block_comment, - ACTIONS(4850), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [83581] = 5, + [83619] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6022), 1, + ACTIONS(4918), 1, anon_sym_RBRACE, - ACTIONS(6024), 1, + ACTIONS(6045), 1, anon_sym_COMMA, - STATE(2804), 3, + STATE(2829), 1, + aux_sym_field_declaration_list_repeat1, + STATE(2804), 2, sym_line_comment, sym_block_comment, - aux_sym_enum_variant_list_repeat2, - [83599] = 6, + [83639] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1588), 1, - anon_sym_GT, - ACTIONS(6027), 1, + ACTIONS(6069), 1, + anon_sym_RPAREN, + ACTIONS(6071), 1, anon_sym_COMMA, - STATE(2815), 1, - aux_sym_type_arguments_repeat1, + STATE(2821), 1, + aux_sym_ordered_field_declaration_list_repeat1, STATE(2805), 2, sym_line_comment, sym_block_comment, - [83619] = 6, + [83659] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1588), 1, - anon_sym_GT, - ACTIONS(6027), 1, - anon_sym_COMMA, - STATE(2749), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(4878), 1, + anon_sym_LBRACE, + ACTIONS(6073), 1, + anon_sym_SEMI, + STATE(558), 1, + sym_declaration_list, STATE(2806), 2, sym_line_comment, sym_block_comment, - [83639] = 5, + [83679] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5452), 1, - anon_sym_PIPE, - ACTIONS(6029), 2, + ACTIONS(6075), 1, anon_sym_RBRACE, + ACTIONS(6077), 1, anon_sym_COMMA, + STATE(2907), 1, + aux_sym_enum_variant_list_repeat2, STATE(2807), 2, sym_line_comment, sym_block_comment, - [83657] = 6, + [83699] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3325), 1, - anon_sym_LBRACE, - ACTIONS(6031), 1, - anon_sym_COLON_COLON, - STATE(1208), 1, - sym_field_initializer_list, STATE(2808), 2, sym_line_comment, sym_block_comment, - [83677] = 6, + ACTIONS(6079), 3, + sym_string_content, + anon_sym_DQUOTE, + sym_escape_sequence, + [83715] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1464), 1, - anon_sym_RPAREN, - ACTIONS(5446), 1, - anon_sym_COMMA, - STATE(2796), 1, - aux_sym_parameters_repeat1, + ACTIONS(4983), 1, + anon_sym_PLUS, + ACTIONS(6081), 1, + anon_sym_SEMI, + ACTIONS(6083), 1, + anon_sym_EQ, STATE(2809), 2, sym_line_comment, sym_block_comment, - [83697] = 6, + [83735] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(2947), 1, - anon_sym_RPAREN, - ACTIONS(6033), 1, - anon_sym_COMMA, - STATE(2938), 1, - aux_sym_tuple_pattern_repeat1, + ACTIONS(4884), 1, + anon_sym_LBRACE, + ACTIONS(6085), 1, + anon_sym_SEMI, + STATE(1455), 1, + sym_declaration_list, STATE(2810), 2, sym_line_comment, sym_block_comment, - [83717] = 6, + [83755] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, - anon_sym_LBRACE, - ACTIONS(6035), 1, - anon_sym_SEMI, - STATE(1354), 1, - sym_declaration_list, STATE(2811), 2, sym_line_comment, sym_block_comment, - [83737] = 6, + ACTIONS(5490), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [83771] = 6, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1464), 1, - anon_sym_RPAREN, - ACTIONS(5446), 1, - anon_sym_COMMA, - STATE(2817), 1, - aux_sym_parameters_repeat1, + ACTIONS(6087), 1, + anon_sym_move, + STATE(232), 1, + sym_closure_parameters, STATE(2812), 2, sym_line_comment, sym_block_comment, - [83757] = 6, + [83791] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(6037), 1, + ACTIONS(4983), 1, + anon_sym_PLUS, + ACTIONS(6089), 1, anon_sym_SEMI, - STATE(3320), 1, - sym_where_clause, + ACTIONS(6091), 1, + anon_sym_EQ, STATE(2813), 2, sym_line_comment, sym_block_comment, - [83777] = 6, + [83811] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6039), 1, - anon_sym_RBRACE, - ACTIONS(6041), 1, - anon_sym_COMMA, - STATE(2992), 1, - aux_sym_field_declaration_list_repeat1, STATE(2814), 2, sym_line_comment, sym_block_comment, - [83797] = 6, + ACTIONS(6093), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [83827] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1594), 1, - anon_sym_GT, - ACTIONS(6043), 1, + ACTIONS(6095), 1, + anon_sym_RPAREN, + ACTIONS(6097), 1, anon_sym_COMMA, - STATE(2749), 1, - aux_sym_type_arguments_repeat1, + STATE(2821), 1, + aux_sym_ordered_field_declaration_list_repeat1, STATE(2815), 2, sym_line_comment, sym_block_comment, - [83817] = 6, + [83847] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4582), 1, - anon_sym_COLON, - ACTIONS(4909), 1, - anon_sym_COLON_COLON, - STATE(2604), 1, - sym_trait_bounds, + ACTIONS(4648), 1, + anon_sym_GT, + ACTIONS(6099), 1, + anon_sym_COMMA, + STATE(2835), 1, + aux_sym_type_parameters_repeat1, STATE(2816), 2, sym_line_comment, sym_block_comment, - [83837] = 6, + [83867] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1468), 1, + ACTIONS(4983), 1, + anon_sym_PLUS, + ACTIONS(6101), 2, anon_sym_RPAREN, - ACTIONS(6045), 1, anon_sym_COMMA, - STATE(2796), 1, - aux_sym_parameters_repeat1, STATE(2817), 2, sym_line_comment, sym_block_comment, - [83857] = 6, + [83885] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3015), 1, - anon_sym_RBRACK, - ACTIONS(6047), 1, + ACTIONS(4652), 1, + anon_sym_GT, + ACTIONS(5388), 1, anon_sym_COMMA, - STATE(2680), 1, - aux_sym_slice_pattern_repeat1, + STATE(2835), 1, + aux_sym_type_parameters_repeat1, STATE(2818), 2, sym_line_comment, sym_block_comment, - [83877] = 6, + [83905] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5241), 1, - anon_sym_PLUS, - ACTIONS(6049), 1, - anon_sym_GT, - ACTIONS(6051), 1, - anon_sym_as, + ACTIONS(4878), 1, + anon_sym_LBRACE, + ACTIONS(6103), 1, + anon_sym_SEMI, + STATE(737), 1, + sym_declaration_list, STATE(2819), 2, sym_line_comment, sym_block_comment, - [83897] = 4, + [83925] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(4652), 1, + anon_sym_GT, + ACTIONS(5388), 1, + anon_sym_COMMA, + STATE(2917), 1, + aux_sym_type_parameters_repeat1, STATE(2820), 2, sym_line_comment, sym_block_comment, - ACTIONS(6053), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [83913] = 6, + [83945] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4854), 1, - anon_sym_RBRACE, - ACTIONS(6055), 1, + ACTIONS(6105), 1, + anon_sym_RPAREN, + ACTIONS(6107), 1, anon_sym_COMMA, - STATE(3026), 1, - aux_sym_field_initializer_list_repeat1, - STATE(2821), 2, + STATE(2821), 3, sym_line_comment, sym_block_comment, - [83933] = 6, + aux_sym_ordered_field_declaration_list_repeat1, + [83963] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1470), 1, - anon_sym_RPAREN, - ACTIONS(5524), 1, - anon_sym_COMMA, - STATE(2796), 1, - aux_sym_parameters_repeat1, + ACTIONS(4878), 1, + anon_sym_LBRACE, + ACTIONS(6110), 1, + anon_sym_SEMI, + STATE(728), 1, + sym_declaration_list, STATE(2822), 2, sym_line_comment, sym_block_comment, - [83953] = 5, + [83983] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6057), 1, - anon_sym_AMP_AMP, - ACTIONS(4181), 2, - anon_sym_LBRACE, - anon_sym_SQUOTE, + ACTIONS(4640), 1, + anon_sym_GT, + ACTIONS(6112), 1, + anon_sym_COMMA, + STATE(2835), 1, + aux_sym_type_parameters_repeat1, STATE(2823), 2, sym_line_comment, sym_block_comment, - [83971] = 6, - ACTIONS(27), 1, - anon_sym_PIPE, + [84003] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6059), 1, - anon_sym_move, - STATE(231), 1, - sym_closure_parameters, + ACTIONS(4884), 1, + anon_sym_LBRACE, + ACTIONS(6114), 1, + anon_sym_SEMI, + STATE(1224), 1, + sym_declaration_list, STATE(2824), 2, sym_line_comment, sym_block_comment, - [83991] = 6, + [84023] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4878), 1, - anon_sym_LBRACE, - ACTIONS(6061), 1, - anon_sym_SEMI, - STATE(511), 1, - sym_declaration_list, + ACTIONS(4656), 1, + anon_sym_GT, + ACTIONS(6116), 1, + anon_sym_COMMA, + STATE(2835), 1, + aux_sym_type_parameters_repeat1, STATE(2825), 2, sym_line_comment, sym_block_comment, - [84011] = 6, + [84043] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(6063), 1, - anon_sym_SEMI, - STATE(3404), 1, - sym_where_clause, + ACTIONS(4983), 1, + anon_sym_PLUS, + ACTIONS(6118), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(2826), 2, sym_line_comment, sym_block_comment, - [84031] = 5, + [84061] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6067), 1, - anon_sym_COLON, - ACTIONS(6065), 2, - anon_sym_RBRACE, + ACTIONS(4983), 1, + anon_sym_PLUS, + ACTIONS(6120), 2, + anon_sym_GT, anon_sym_COMMA, STATE(2827), 2, sym_line_comment, sym_block_comment, - [84049] = 6, + [84079] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5590), 1, - anon_sym_RPAREN, - ACTIONS(5592), 1, - anon_sym_COMMA, - STATE(2989), 1, - aux_sym_tuple_pattern_repeat1, + ACTIONS(4878), 1, + anon_sym_LBRACE, + ACTIONS(6122), 1, + anon_sym_SEMI, + STATE(535), 1, + sym_declaration_list, STATE(2828), 2, sym_line_comment, sym_block_comment, - [84069] = 6, + [84099] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(6069), 1, - anon_sym_SEMI, - ACTIONS(6071), 1, - anon_sym_EQ, - STATE(2829), 2, + ACTIONS(6124), 1, + anon_sym_RBRACE, + ACTIONS(6126), 1, + anon_sym_COMMA, + STATE(2829), 3, sym_line_comment, sym_block_comment, - [84089] = 6, + aux_sym_field_declaration_list_repeat1, + [84117] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1009), 1, - anon_sym_RPAREN, - ACTIONS(4073), 1, + ACTIONS(4920), 1, + anon_sym_RBRACE, + ACTIONS(6129), 1, anon_sym_COMMA, - STATE(2589), 1, - aux_sym_arguments_repeat1, + STATE(2829), 1, + aux_sym_field_declaration_list_repeat1, STATE(2830), 2, sym_line_comment, sym_block_comment, - [84109] = 5, + [84137] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6075), 1, - anon_sym_EQ, - ACTIONS(6073), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(6133), 1, + anon_sym_AMP_AMP, + ACTIONS(6131), 2, + anon_sym_LBRACE, + anon_sym_SQUOTE, STATE(2831), 2, sym_line_comment, sym_block_comment, - [84127] = 6, + [84155] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4895), 1, - anon_sym_RBRACE, - ACTIONS(6077), 1, + ACTIONS(1007), 1, + anon_sym_RBRACK, + ACTIONS(4121), 1, anon_sym_COMMA, - STATE(2804), 1, - aux_sym_enum_variant_list_repeat2, + STATE(2626), 1, + aux_sym_arguments_repeat1, STATE(2832), 2, sym_line_comment, sym_block_comment, - [84147] = 6, + [84175] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(6079), 1, - anon_sym_SEMI, - STATE(3357), 1, - sym_where_clause, + ACTIONS(2945), 1, + anon_sym_RPAREN, + ACTIONS(6135), 1, + anon_sym_COMMA, + STATE(2910), 1, + aux_sym_tuple_pattern_repeat1, STATE(2833), 2, sym_line_comment, sym_block_comment, - [84167] = 6, + [84195] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6081), 1, - sym_identifier, - ACTIONS(6083), 1, - anon_sym_await, - ACTIONS(6085), 1, - sym_integer_literal, + ACTIONS(4983), 1, + anon_sym_PLUS, + ACTIONS(6137), 1, + anon_sym_SEMI, + ACTIONS(6139), 1, + anon_sym_EQ, STATE(2834), 2, sym_line_comment, sym_block_comment, - [84187] = 6, + [84215] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6087), 1, - anon_sym_LPAREN, - ACTIONS(6089), 1, - anon_sym_LBRACK, - ACTIONS(6091), 1, - anon_sym_LBRACE, - STATE(2835), 2, + ACTIONS(5714), 1, + anon_sym_GT, + ACTIONS(6141), 1, + anon_sym_COMMA, + STATE(2835), 3, sym_line_comment, sym_block_comment, - [84207] = 6, + aux_sym_type_parameters_repeat1, + [84233] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3945), 1, - anon_sym_LT2, - ACTIONS(4943), 1, - anon_sym_COLON_COLON, - STATE(1581), 1, - sym_type_arguments, + ACTIONS(3023), 1, + anon_sym_RBRACK, + ACTIONS(6144), 1, + anon_sym_COMMA, + STATE(2561), 1, + aux_sym_slice_pattern_repeat1, STATE(2836), 2, sym_line_comment, sym_block_comment, - [84227] = 5, + [84253] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(6093), 2, - anon_sym_GT, + ACTIONS(6146), 1, + anon_sym_RBRACE, + ACTIONS(6148), 1, anon_sym_COMMA, + STATE(2929), 1, + aux_sym_field_declaration_list_repeat1, STATE(2837), 2, sym_line_comment, sym_block_comment, - [84245] = 6, + [84273] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4878), 1, - anon_sym_LBRACE, - ACTIONS(6095), 1, - anon_sym_SEMI, - STATE(593), 1, - sym_declaration_list, + ACTIONS(3947), 1, + anon_sym_LT2, + ACTIONS(4866), 1, + anon_sym_COLON_COLON, + STATE(1598), 1, + sym_type_arguments, STATE(2838), 2, sym_line_comment, sym_block_comment, - [84265] = 6, + [84293] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3037), 1, - anon_sym_RPAREN, - ACTIONS(6097), 1, - anon_sym_COMMA, - STATE(2680), 1, - aux_sym_slice_pattern_repeat1, + ACTIONS(4896), 1, + anon_sym_where, + ACTIONS(6150), 1, + anon_sym_SEMI, + STATE(3477), 1, + sym_where_clause, STATE(2839), 2, sym_line_comment, sym_block_comment, - [84285] = 6, + [84313] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4878), 1, + ACTIONS(6133), 1, + anon_sym_AMP_AMP, + ACTIONS(4283), 2, anon_sym_LBRACE, - ACTIONS(6099), 1, - anon_sym_SEMI, - STATE(595), 1, - sym_declaration_list, + anon_sym_SQUOTE, STATE(2840), 2, sym_line_comment, sym_block_comment, - [84305] = 4, + [84331] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -177435,1326 +177456,1353 @@ static const uint16_t ts_small_parse_table[] = { STATE(2841), 2, sym_line_comment, sym_block_comment, - ACTIONS(1366), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [84321] = 4, + ACTIONS(6152), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [84347] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(5298), 1, + anon_sym_PLUS, + ACTIONS(6154), 1, + anon_sym_GT, + ACTIONS(6156), 1, + anon_sym_as, STATE(2842), 2, sym_line_comment, sym_block_comment, - ACTIONS(6101), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [84337] = 4, + [84367] = 6, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(6158), 1, + anon_sym_move, + STATE(219), 1, + sym_closure_parameters, STATE(2843), 2, sym_line_comment, sym_block_comment, - ACTIONS(6103), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [84353] = 5, + [84387] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6105), 1, - anon_sym_RBRACE, - ACTIONS(6107), 1, - anon_sym_COMMA, - STATE(2844), 3, + ACTIONS(3967), 1, + anon_sym_LBRACE, + ACTIONS(6160), 1, + anon_sym_COLON_COLON, + STATE(1751), 1, + sym_field_initializer_list, + STATE(2844), 2, sym_line_comment, sym_block_comment, - aux_sym_struct_pattern_repeat1, - [84371] = 4, + [84407] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(4449), 1, + anon_sym_LT2, + ACTIONS(4812), 1, + anon_sym_LBRACE, + STATE(1931), 1, + sym_type_arguments, STATE(2845), 2, sym_line_comment, sym_block_comment, - ACTIONS(4858), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [84387] = 6, + [84427] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1458), 1, - anon_sym_RPAREN, - ACTIONS(6110), 1, + ACTIONS(5421), 1, anon_sym_COMMA, - STATE(2796), 1, - aux_sym_parameters_repeat1, + ACTIONS(6162), 1, + anon_sym_PIPE, + STATE(2769), 1, + aux_sym_closure_parameters_repeat1, STATE(2846), 2, sym_line_comment, sym_block_comment, - [84407] = 5, + [84447] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5617), 1, - anon_sym_EQ, - ACTIONS(5759), 2, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(4896), 1, + anon_sym_where, + ACTIONS(6164), 1, + anon_sym_SEMI, + STATE(3483), 1, + sym_where_clause, STATE(2847), 2, sym_line_comment, sym_block_comment, - [84425] = 4, + [84467] = 6, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(6166), 1, + anon_sym_move, + STATE(225), 1, + sym_closure_parameters, STATE(2848), 2, sym_line_comment, sym_block_comment, - ACTIONS(6112), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [84441] = 6, + [84487] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1011), 1, - anon_sym_RBRACK, - ACTIONS(6114), 1, + ACTIONS(5373), 1, + anon_sym_PIPE, + ACTIONS(6168), 2, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(2589), 1, - aux_sym_arguments_repeat1, STATE(2849), 2, sym_line_comment, sym_block_comment, - [84461] = 6, - ACTIONS(27), 1, - anon_sym_PIPE, + [84505] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6116), 1, - anon_sym_move, - STATE(239), 1, - sym_closure_parameters, + ACTIONS(4884), 1, + anon_sym_LBRACE, + ACTIONS(6170), 1, + anon_sym_SEMI, + STATE(1150), 1, + sym_declaration_list, STATE(2850), 2, sym_line_comment, sym_block_comment, - [84481] = 6, + [84525] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6118), 1, - anon_sym_RBRACE, - ACTIONS(6120), 1, + ACTIONS(4554), 1, + anon_sym_COLON_COLON, + ACTIONS(6172), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(2821), 1, - aux_sym_field_initializer_list_repeat1, STATE(2851), 2, sym_line_comment, sym_block_comment, - [84501] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(6122), 1, - anon_sym_RBRACE, - ACTIONS(6124), 1, - anon_sym_COMMA, - STATE(2900), 1, - aux_sym_use_list_repeat1, + [84543] = 6, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(6174), 1, + anon_sym_LPAREN, + ACTIONS(6176), 1, + anon_sym_LBRACK, + ACTIONS(6178), 1, + anon_sym_LBRACE, STATE(2852), 2, sym_line_comment, sym_block_comment, - [84521] = 6, + [84563] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1600), 1, - anon_sym_GT, - ACTIONS(6126), 1, + ACTIONS(6182), 1, + anon_sym_EQ, + ACTIONS(6180), 2, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(2951), 1, - aux_sym_type_arguments_repeat1, STATE(2853), 2, sym_line_comment, sym_block_comment, - [84541] = 6, + [84581] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1600), 1, - anon_sym_GT, - ACTIONS(6126), 1, + ACTIONS(4983), 1, + anon_sym_PLUS, + ACTIONS(5712), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(2749), 1, - aux_sym_type_arguments_repeat1, STATE(2854), 2, sym_line_comment, sym_block_comment, - [84561] = 6, + [84599] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5771), 1, - anon_sym_RPAREN, - ACTIONS(5773), 1, + ACTIONS(4832), 1, + anon_sym_RBRACE, + ACTIONS(6184), 1, anon_sym_COMMA, - STATE(2810), 1, - aux_sym_tuple_pattern_repeat1, + STATE(2761), 1, + aux_sym_field_initializer_list_repeat1, STATE(2855), 2, sym_line_comment, sym_block_comment, - [84581] = 6, + [84619] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4878), 1, - anon_sym_LBRACE, - ACTIONS(6128), 1, - anon_sym_SEMI, - STATE(540), 1, - sym_declaration_list, + ACTIONS(4983), 1, + anon_sym_PLUS, + ACTIONS(6186), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(2856), 2, sym_line_comment, sym_block_comment, - [84601] = 6, + [84637] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3027), 1, - anon_sym_RPAREN, - ACTIONS(6130), 1, - anon_sym_COMMA, - STATE(2680), 1, - aux_sym_slice_pattern_repeat1, + ACTIONS(6188), 1, + anon_sym_LPAREN, + ACTIONS(6190), 1, + anon_sym_LBRACK, + ACTIONS(6192), 1, + anon_sym_LBRACE, STATE(2857), 2, sym_line_comment, sym_block_comment, - [84621] = 4, + [84657] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(4878), 1, + anon_sym_LBRACE, + ACTIONS(6194), 1, + anon_sym_SEMI, + STATE(572), 1, + sym_declaration_list, STATE(2858), 2, sym_line_comment, sym_block_comment, - ACTIONS(6132), 3, - sym_string_content, - anon_sym_DQUOTE, - sym_escape_sequence, - [84637] = 6, + [84677] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5163), 1, - anon_sym_RBRACE, - ACTIONS(6134), 1, - anon_sym_COMMA, - STATE(2844), 1, - aux_sym_struct_pattern_repeat1, + ACTIONS(4896), 1, + anon_sym_where, + ACTIONS(6196), 1, + anon_sym_SEMI, + STATE(3510), 1, + sym_where_clause, STATE(2859), 2, sym_line_comment, sym_block_comment, - [84657] = 5, + [84697] = 6, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5759), 1, - anon_sym_GT, - ACTIONS(6136), 1, - anon_sym_COMMA, - STATE(2860), 3, + ACTIONS(6198), 1, + anon_sym_move, + STATE(233), 1, + sym_closure_parameters, + STATE(2860), 2, sym_line_comment, sym_block_comment, - aux_sym_type_parameters_repeat1, - [84675] = 4, + [84717] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(4878), 1, + anon_sym_LBRACE, + ACTIONS(6200), 1, + anon_sym_SEMI, + STATE(576), 1, + sym_declaration_list, STATE(2861), 2, sym_line_comment, sym_block_comment, - ACTIONS(937), 3, - anon_sym_COLON, - anon_sym_GT, - anon_sym_COMMA, - [84691] = 6, + [84737] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(6139), 1, - anon_sym_SEMI, - STATE(3491), 1, - sym_where_clause, + ACTIONS(6202), 1, + sym_identifier, + ACTIONS(6204), 2, + anon_sym_default, + anon_sym_union, STATE(2862), 2, sym_line_comment, sym_block_comment, - [84711] = 5, + [84755] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(6141), 2, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(4449), 1, + anon_sym_LT2, + ACTIONS(4872), 1, + anon_sym_for, + STATE(1931), 1, + sym_type_arguments, STATE(2863), 2, sym_line_comment, sym_block_comment, - [84729] = 6, + [84775] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3029), 1, + ACTIONS(4983), 1, + anon_sym_PLUS, + ACTIONS(6206), 2, anon_sym_RPAREN, - ACTIONS(6143), 1, anon_sym_COMMA, - STATE(2680), 1, - aux_sym_slice_pattern_repeat1, STATE(2864), 2, sym_line_comment, sym_block_comment, - [84749] = 6, + [84793] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(6145), 1, - anon_sym_for, - STATE(1933), 1, - sym_type_arguments, + ACTIONS(6208), 1, + anon_sym_RPAREN, + ACTIONS(6210), 1, + anon_sym_COMMA, + STATE(2821), 1, + aux_sym_ordered_field_declaration_list_repeat1, STATE(2865), 2, sym_line_comment, sym_block_comment, - [84769] = 6, + [84813] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5165), 1, + ACTIONS(4886), 1, anon_sym_RBRACE, - ACTIONS(6147), 1, + ACTIONS(6212), 1, anon_sym_COMMA, - STATE(2844), 1, - aux_sym_struct_pattern_repeat1, + STATE(2790), 1, + aux_sym_enum_variant_list_repeat2, STATE(2866), 2, sym_line_comment, sym_block_comment, - [84789] = 6, + [84833] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, - anon_sym_LBRACE, - ACTIONS(6149), 1, - anon_sym_SEMI, - STATE(1281), 1, - sym_declaration_list, + ACTIONS(1025), 1, + anon_sym_RPAREN, + ACTIONS(4123), 1, + anon_sym_COMMA, + STATE(2626), 1, + aux_sym_arguments_repeat1, STATE(2867), 2, sym_line_comment, sym_block_comment, - [84809] = 5, + [84853] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6153), 1, - anon_sym_COLON, - ACTIONS(6151), 2, + ACTIONS(4886), 1, anon_sym_RBRACE, + ACTIONS(6212), 1, anon_sym_COMMA, + STATE(2785), 1, + aux_sym_enum_variant_list_repeat2, STATE(2868), 2, sym_line_comment, sym_block_comment, - [84827] = 6, + [84873] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4656), 1, - anon_sym_GT, - ACTIONS(6155), 1, - anon_sym_COMMA, - STATE(2860), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(3322), 1, + anon_sym_LBRACE, + ACTIONS(6214), 1, + anon_sym_COLON_COLON, + STATE(1289), 1, + sym_field_initializer_list, STATE(2869), 2, sym_line_comment, sym_block_comment, - [84847] = 6, + [84893] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6157), 1, - anon_sym_RBRACE, - ACTIONS(6159), 1, + ACTIONS(6216), 1, + anon_sym_GT, + ACTIONS(6218), 1, anon_sym_COMMA, - STATE(2950), 1, - aux_sym_struct_pattern_repeat1, + STATE(2781), 1, + aux_sym_for_lifetimes_repeat1, STATE(2870), 2, sym_line_comment, sym_block_comment, - [84867] = 4, + [84913] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(4878), 1, + anon_sym_LBRACE, + ACTIONS(6220), 1, + anon_sym_SEMI, + STATE(602), 1, + sym_declaration_list, STATE(2871), 2, sym_line_comment, sym_block_comment, - ACTIONS(4754), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [84883] = 6, + [84933] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1466), 1, - anon_sym_RPAREN, - ACTIONS(5534), 1, - anon_sym_COMMA, - STATE(2796), 1, - aux_sym_parameters_repeat1, + ACTIONS(2961), 1, + anon_sym_SQUOTE, + ACTIONS(6216), 1, + anon_sym_GT, + STATE(3230), 1, + sym_lifetime, STATE(2872), 2, sym_line_comment, sym_block_comment, - [84903] = 6, + [84953] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4650), 1, - anon_sym_GT, - ACTIONS(6161), 1, - anon_sym_COMMA, - STATE(2860), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(4878), 1, + anon_sym_LBRACE, + ACTIONS(6222), 1, + anon_sym_SEMI, + STATE(604), 1, + sym_declaration_list, STATE(2873), 2, sym_line_comment, sym_block_comment, - [84923] = 5, + [84973] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(6163), 2, - anon_sym_RPAREN, + ACTIONS(6226), 1, + anon_sym_COLON, + ACTIONS(6224), 2, + anon_sym_RBRACE, anon_sym_COMMA, STATE(2874), 2, sym_line_comment, sym_block_comment, - [84941] = 6, + [84991] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(6165), 1, - anon_sym_SEMI, - STATE(3329), 1, - sym_where_clause, + ACTIONS(6228), 1, + anon_sym_RBRACE, + ACTIONS(6230), 1, + anon_sym_COMMA, + STATE(2893), 1, + aux_sym_struct_pattern_repeat1, STATE(2875), 2, sym_line_comment, sym_block_comment, - [84961] = 6, + [85011] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4878), 1, - anon_sym_LBRACE, - ACTIONS(6167), 1, - anon_sym_SEMI, - STATE(492), 1, - sym_declaration_list, + ACTIONS(1454), 1, + anon_sym_RPAREN, + ACTIONS(6232), 1, + anon_sym_COMMA, + STATE(2760), 1, + aux_sym_parameters_repeat1, STATE(2876), 2, sym_line_comment, sym_block_comment, - [84981] = 4, + [85031] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(1590), 1, + anon_sym_GT, + ACTIONS(6234), 1, + anon_sym_COMMA, + STATE(2747), 1, + aux_sym_type_arguments_repeat1, STATE(2877), 2, sym_line_comment, sym_block_comment, - ACTIONS(4453), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [84997] = 4, + [85051] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(5417), 1, + anon_sym_COLON, + ACTIONS(6236), 2, + anon_sym_PIPE, + anon_sym_COMMA, STATE(2878), 2, sym_line_comment, sym_block_comment, - ACTIONS(4852), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [85013] = 6, + [85069] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1466), 1, - anon_sym_RPAREN, - ACTIONS(5534), 1, - anon_sym_COMMA, - STATE(2961), 1, - aux_sym_parameters_repeat1, + ACTIONS(4878), 1, + anon_sym_LBRACE, + ACTIONS(6238), 1, + anon_sym_SEMI, + STATE(620), 1, + sym_declaration_list, STATE(2879), 2, sym_line_comment, sym_block_comment, - [85033] = 5, + [85089] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6018), 1, + ACTIONS(1470), 1, anon_sym_RPAREN, - ACTIONS(6169), 1, + ACTIONS(5409), 1, anon_sym_COMMA, - STATE(2880), 3, + STATE(2762), 1, + aux_sym_parameters_repeat1, + STATE(2880), 2, sym_line_comment, sym_block_comment, - aux_sym_tuple_type_repeat1, - [85051] = 6, + [85109] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4909), 1, - anon_sym_COLON_COLON, - STATE(1930), 1, - sym_type_arguments, + ACTIONS(4878), 1, + anon_sym_LBRACE, + ACTIONS(6240), 1, + anon_sym_SEMI, + STATE(573), 1, + sym_declaration_list, STATE(2881), 2, sym_line_comment, sym_block_comment, - [85071] = 4, + [85129] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2882), 2, + ACTIONS(6236), 1, + anon_sym_PIPE, + ACTIONS(6242), 1, + anon_sym_COMMA, + STATE(2882), 3, sym_line_comment, sym_block_comment, - ACTIONS(4800), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [85087] = 6, + aux_sym_closure_parameters_repeat1, + [85147] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1470), 1, - anon_sym_RPAREN, - ACTIONS(5524), 1, + ACTIONS(989), 1, + anon_sym_RBRACK, + ACTIONS(6245), 1, anon_sym_COMMA, - STATE(2846), 1, - aux_sym_parameters_repeat1, + STATE(2626), 1, + aux_sym_arguments_repeat1, STATE(2883), 2, sym_line_comment, sym_block_comment, - [85107] = 6, + [85167] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4953), 1, - anon_sym_RBRACE, - ACTIONS(6172), 1, + ACTIONS(1470), 1, + anon_sym_RPAREN, + ACTIONS(5409), 1, anon_sym_COMMA, - STATE(2804), 1, - aux_sym_enum_variant_list_repeat2, + STATE(2760), 1, + aux_sym_parameters_repeat1, STATE(2884), 2, sym_line_comment, sym_block_comment, - [85127] = 6, + [85187] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4953), 1, - anon_sym_RBRACE, - ACTIONS(6172), 1, + ACTIONS(6247), 1, + anon_sym_RPAREN, + ACTIONS(6249), 1, anon_sym_COMMA, - STATE(2963), 1, - aux_sym_enum_variant_list_repeat2, - STATE(2885), 2, + STATE(2885), 3, sym_line_comment, sym_block_comment, - [85147] = 6, + aux_sym_tuple_type_repeat1, + [85205] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4878), 1, - anon_sym_LBRACE, - ACTIONS(6174), 1, - anon_sym_SEMI, - STATE(546), 1, - sym_declaration_list, + ACTIONS(4983), 1, + anon_sym_PLUS, + ACTIONS(6247), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(2886), 2, sym_line_comment, sym_block_comment, - [85167] = 5, + [85223] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6057), 1, - anon_sym_AMP_AMP, - ACTIONS(6176), 2, - anon_sym_LBRACE, - anon_sym_SQUOTE, + ACTIONS(1600), 1, + anon_sym_GT, + ACTIONS(6252), 1, + anon_sym_COMMA, + STATE(2966), 1, + aux_sym_type_arguments_repeat1, STATE(2887), 2, sym_line_comment, sym_block_comment, - [85185] = 4, + [85243] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(1600), 1, + anon_sym_GT, + ACTIONS(6252), 1, + anon_sym_COMMA, + STATE(2747), 1, + aux_sym_type_arguments_repeat1, STATE(2888), 2, sym_line_comment, sym_block_comment, - ACTIONS(6178), 3, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - [85201] = 4, + [85263] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(5147), 1, + anon_sym_RBRACE, + ACTIONS(6254), 1, + anon_sym_COMMA, + STATE(2750), 1, + aux_sym_struct_pattern_repeat1, STATE(2889), 2, sym_line_comment, sym_block_comment, - ACTIONS(6180), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [85217] = 6, + [85283] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4660), 1, - anon_sym_GT, - ACTIONS(6182), 1, + ACTIONS(3033), 1, + anon_sym_RPAREN, + ACTIONS(6256), 1, anon_sym_COMMA, - STATE(2860), 1, - aux_sym_type_parameters_repeat1, + STATE(2561), 1, + aux_sym_slice_pattern_repeat1, STATE(2890), 2, sym_line_comment, sym_block_comment, - [85237] = 6, + [85303] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4632), 1, - anon_sym_GT, - ACTIONS(6184), 1, + ACTIONS(3031), 1, + anon_sym_RPAREN, + ACTIONS(6258), 1, anon_sym_COMMA, - STATE(2860), 1, - aux_sym_type_parameters_repeat1, + STATE(2561), 1, + aux_sym_slice_pattern_repeat1, STATE(2891), 2, sym_line_comment, sym_block_comment, - [85257] = 6, + [85323] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, - anon_sym_LBRACE, - ACTIONS(6186), 1, - anon_sym_SEMI, - STATE(1403), 1, - sym_declaration_list, + ACTIONS(5155), 1, + anon_sym_RBRACE, + ACTIONS(6260), 1, + anon_sym_COMMA, + STATE(2750), 1, + aux_sym_struct_pattern_repeat1, STATE(2892), 2, sym_line_comment, sym_block_comment, - [85277] = 6, + [85343] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6188), 1, - anon_sym_RPAREN, - ACTIONS(6190), 1, + ACTIONS(5157), 1, + anon_sym_RBRACE, + ACTIONS(6262), 1, anon_sym_COMMA, - STATE(2922), 1, - aux_sym_ordered_field_declaration_list_repeat1, + STATE(2750), 1, + aux_sym_struct_pattern_repeat1, STATE(2893), 2, sym_line_comment, sym_block_comment, - [85297] = 4, + [85363] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(3013), 1, + anon_sym_RPAREN, + ACTIONS(6264), 1, + anon_sym_COMMA, + STATE(2561), 1, + aux_sym_slice_pattern_repeat1, STATE(2894), 2, sym_line_comment, sym_block_comment, - ACTIONS(4814), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [85313] = 4, + [85383] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(6268), 1, + anon_sym_COLON, + ACTIONS(6266), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(2895), 2, sym_line_comment, sym_block_comment, - ACTIONS(4690), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [85329] = 5, + [85401] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(6192), 2, + ACTIONS(5159), 1, anon_sym_RBRACE, + ACTIONS(6270), 1, anon_sym_COMMA, + STATE(2750), 1, + aux_sym_struct_pattern_repeat1, STATE(2896), 2, sym_line_comment, sym_block_comment, - [85347] = 4, + [85421] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(4983), 1, + anon_sym_PLUS, + ACTIONS(6272), 1, + anon_sym_SEMI, + ACTIONS(6274), 1, + anon_sym_EQ, STATE(2897), 2, sym_line_comment, sym_block_comment, - ACTIONS(4832), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [85363] = 6, + [85441] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1015), 1, - anon_sym_RBRACK, - ACTIONS(6194), 1, + ACTIONS(3011), 1, + anon_sym_RPAREN, + ACTIONS(6276), 1, anon_sym_COMMA, - STATE(2589), 1, - aux_sym_arguments_repeat1, + STATE(2561), 1, + aux_sym_slice_pattern_repeat1, STATE(2898), 2, sym_line_comment, sym_block_comment, - [85383] = 4, + [85461] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(4894), 1, + anon_sym_LT, + ACTIONS(6278), 1, + anon_sym_EQ, + STATE(3580), 1, + sym_type_parameters, STATE(2899), 2, sym_line_comment, sym_block_comment, - ACTIONS(4772), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [85399] = 6, + [85481] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4375), 1, - anon_sym_RBRACE, - ACTIONS(6196), 1, + ACTIONS(1588), 1, + anon_sym_GT, + ACTIONS(6280), 1, anon_sym_COMMA, - STATE(2920), 1, - aux_sym_use_list_repeat1, + STATE(2747), 1, + aux_sym_type_arguments_repeat1, STATE(2900), 2, sym_line_comment, sym_block_comment, - [85419] = 6, + [85501] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, - anon_sym_LBRACE, - ACTIONS(6198), 1, - anon_sym_SEMI, - STATE(1409), 1, - sym_declaration_list, + ACTIONS(1460), 1, + anon_sym_RPAREN, + ACTIONS(5568), 1, + anon_sym_COMMA, + STATE(2760), 1, + aux_sym_parameters_repeat1, STATE(2901), 2, sym_line_comment, sym_block_comment, - [85439] = 6, + [85521] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3325), 1, - anon_sym_LBRACE, - ACTIONS(6200), 1, - anon_sym_COLON_COLON, - STATE(1208), 1, - sym_field_initializer_list, + ACTIONS(1588), 1, + anon_sym_GT, + ACTIONS(6280), 1, + anon_sym_COMMA, + STATE(2745), 1, + aux_sym_type_arguments_repeat1, STATE(2902), 2, sym_line_comment, sym_block_comment, - [85459] = 6, + [85541] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6202), 1, - anon_sym_LPAREN, - ACTIONS(6204), 1, - anon_sym_LBRACK, - ACTIONS(6206), 1, - anon_sym_LBRACE, STATE(2903), 2, sym_line_comment, sym_block_comment, - [85479] = 6, + ACTIONS(6282), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [85557] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6208), 1, - anon_sym_LPAREN, - ACTIONS(6210), 1, - anon_sym_LBRACK, - ACTIONS(6212), 1, - anon_sym_LBRACE, + ACTIONS(1460), 1, + anon_sym_RPAREN, + ACTIONS(5568), 1, + anon_sym_COMMA, + STATE(2974), 1, + aux_sym_parameters_repeat1, STATE(2904), 2, sym_line_comment, sym_block_comment, - [85499] = 6, + [85577] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4878), 1, - anon_sym_LBRACE, - ACTIONS(6214), 1, - anon_sym_SEMI, - STATE(602), 1, - sym_declaration_list, + ACTIONS(5373), 1, + anon_sym_PIPE, + ACTIONS(6284), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(2905), 2, sym_line_comment, sym_block_comment, - [85519] = 6, + [85595] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6216), 1, - anon_sym_RPAREN, - ACTIONS(6218), 1, - anon_sym_COMMA, - STATE(2922), 1, - aux_sym_ordered_field_declaration_list_repeat1, + ACTIONS(4449), 1, + anon_sym_LT2, + ACTIONS(6286), 1, + anon_sym_for, + STATE(1931), 1, + sym_type_arguments, STATE(2906), 2, sym_line_comment, sym_block_comment, - [85539] = 6, + [85615] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4634), 1, - anon_sym_GT, - ACTIONS(6220), 1, + ACTIONS(4916), 1, + anon_sym_RBRACE, + ACTIONS(6288), 1, anon_sym_COMMA, - STATE(2860), 1, - aux_sym_type_parameters_repeat1, + STATE(2785), 1, + aux_sym_enum_variant_list_repeat2, STATE(2907), 2, sym_line_comment, sym_block_comment, - [85559] = 6, + [85635] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(6222), 1, - anon_sym_LBRACE, - STATE(1933), 1, - sym_type_arguments, + ACTIONS(4916), 1, + anon_sym_RBRACE, + ACTIONS(6288), 1, + anon_sym_COMMA, + STATE(2977), 1, + aux_sym_enum_variant_list_repeat2, STATE(2908), 2, sym_line_comment, sym_block_comment, - [85579] = 6, + [85655] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, + ACTIONS(4983), 1, anon_sym_PLUS, - ACTIONS(6224), 1, - anon_sym_SEMI, - ACTIONS(6226), 1, - anon_sym_EQ, + ACTIONS(6290), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(2909), 2, sym_line_comment, sym_block_comment, - [85599] = 6, + [85673] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4878), 1, - anon_sym_LBRACE, - ACTIONS(6228), 1, - anon_sym_SEMI, - STATE(548), 1, - sym_declaration_list, - STATE(2910), 2, + ACTIONS(6292), 1, + anon_sym_RPAREN, + ACTIONS(6294), 1, + anon_sym_COMMA, + STATE(2910), 3, sym_line_comment, sym_block_comment, - [85619] = 6, + aux_sym_tuple_pattern_repeat1, + [85691] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4878), 1, - anon_sym_LBRACE, - ACTIONS(6230), 1, - anon_sym_SEMI, - STATE(604), 1, - sym_declaration_list, + ACTIONS(5373), 1, + anon_sym_PIPE, + ACTIONS(6292), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(2911), 2, sym_line_comment, sym_block_comment, - [85639] = 4, + [85709] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(1466), 1, + anon_sym_RPAREN, + ACTIONS(5534), 1, + anon_sym_COMMA, + STATE(2876), 1, + aux_sym_parameters_repeat1, STATE(2912), 2, sym_line_comment, sym_block_comment, - ACTIONS(4790), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [85655] = 5, + [85729] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(6232), 2, - anon_sym_RPAREN, + ACTIONS(1027), 1, + anon_sym_RBRACK, + ACTIONS(6297), 1, anon_sym_COMMA, + STATE(2626), 1, + aux_sym_arguments_repeat1, STATE(2913), 2, sym_line_comment, sym_block_comment, - [85673] = 6, + [85749] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4907), 1, - anon_sym_RBRACE, - ACTIONS(6234), 1, - anon_sym_COMMA, - STATE(2931), 1, - aux_sym_field_declaration_list_repeat1, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(4878), 1, + anon_sym_LBRACE, + ACTIONS(6299), 1, + anon_sym_SEMI, + STATE(679), 1, + sym_declaration_list, STATE(2914), 2, sym_line_comment, sym_block_comment, - [85693] = 5, + [85769] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5432), 1, - anon_sym_COLON, - ACTIONS(6236), 2, - anon_sym_PIPE, + ACTIONS(1466), 1, + anon_sym_RPAREN, + ACTIONS(5534), 1, anon_sym_COMMA, + STATE(2760), 1, + aux_sym_parameters_repeat1, STATE(2915), 2, sym_line_comment, sym_block_comment, - [85711] = 6, + [85789] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4878), 1, - anon_sym_LBRACE, - ACTIONS(6238), 1, - anon_sym_SEMI, - STATE(498), 1, - sym_declaration_list, + ACTIONS(4636), 1, + anon_sym_GT, + ACTIONS(6301), 1, + anon_sym_COMMA, + STATE(2835), 1, + aux_sym_type_parameters_repeat1, STATE(2916), 2, sym_line_comment, sym_block_comment, - [85731] = 6, + [85809] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4907), 1, - anon_sym_RBRACE, - ACTIONS(6234), 1, + ACTIONS(4642), 1, + anon_sym_GT, + ACTIONS(6303), 1, anon_sym_COMMA, - STATE(2993), 1, - aux_sym_field_declaration_list_repeat1, + STATE(2835), 1, + aux_sym_type_parameters_repeat1, STATE(2917), 2, sym_line_comment, sym_block_comment, - [85751] = 6, + [85829] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4878), 1, + ACTIONS(4884), 1, anon_sym_LBRACE, - ACTIONS(6240), 1, + ACTIONS(6305), 1, anon_sym_SEMI, - STATE(610), 1, + STATE(1283), 1, sym_declaration_list, STATE(2918), 2, sym_line_comment, sym_block_comment, - [85771] = 6, + [85849] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6242), 1, - anon_sym_EQ_GT, - ACTIONS(6244), 1, - anon_sym_PIPE, - ACTIONS(6246), 1, - anon_sym_if, + ACTIONS(6307), 1, + anon_sym_RBRACE, + ACTIONS(6309), 1, + anon_sym_COMMA, + STATE(2889), 1, + aux_sym_struct_pattern_repeat1, STATE(2919), 2, sym_line_comment, sym_block_comment, - [85791] = 5, + [85869] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6248), 1, - anon_sym_RBRACE, - ACTIONS(6250), 1, + ACTIONS(1586), 1, + anon_sym_GT, + ACTIONS(6311), 1, anon_sym_COMMA, - STATE(2920), 3, + STATE(2747), 1, + aux_sym_type_arguments_repeat1, + STATE(2920), 2, sym_line_comment, sym_block_comment, - aux_sym_use_list_repeat1, - [85809] = 6, + [85889] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, + ACTIONS(4884), 1, anon_sym_LBRACE, - ACTIONS(6253), 1, + ACTIONS(6313), 1, anon_sym_SEMI, - STATE(1423), 1, + STATE(1367), 1, sym_declaration_list, STATE(2921), 2, sym_line_comment, sym_block_comment, - [85829] = 5, + [85909] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6255), 1, - anon_sym_RPAREN, - ACTIONS(6257), 1, - anon_sym_COMMA, - STATE(2922), 3, + STATE(2922), 2, sym_line_comment, sym_block_comment, - aux_sym_ordered_field_declaration_list_repeat1, - [85847] = 4, + ACTIONS(1256), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [85925] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(1586), 1, + anon_sym_GT, + ACTIONS(6311), 1, + anon_sym_COMMA, + STATE(2877), 1, + aux_sym_type_arguments_repeat1, STATE(2923), 2, sym_line_comment, sym_block_comment, - ACTIONS(4798), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [85863] = 5, + [85945] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6236), 1, - anon_sym_PIPE, - ACTIONS(6260), 1, + ACTIONS(3145), 1, + anon_sym_RPAREN, + ACTIONS(6315), 1, anon_sym_COMMA, - STATE(2924), 3, + STATE(2885), 1, + aux_sym_tuple_type_repeat1, + STATE(2924), 2, sym_line_comment, sym_block_comment, - aux_sym_closure_parameters_repeat1, - [85881] = 6, + [85965] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, ACTIONS(4878), 1, anon_sym_LBRACE, - ACTIONS(6263), 1, + ACTIONS(6317), 1, anon_sym_SEMI, - STATE(612), 1, + STATE(687), 1, sym_declaration_list, STATE(2925), 2, sym_line_comment, sym_block_comment, - [85901] = 4, + [85985] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(4983), 1, + anon_sym_PLUS, + ACTIONS(6319), 1, + anon_sym_SEMI, + ACTIONS(6321), 1, + anon_sym_EQ, STATE(2926), 2, sym_line_comment, sym_block_comment, - ACTIONS(4826), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [85917] = 5, + [86005] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(6265), 2, - anon_sym_RBRACE, + ACTIONS(5457), 1, + anon_sym_RPAREN, + ACTIONS(5459), 1, anon_sym_COMMA, + STATE(2884), 1, + aux_sym_parameters_repeat1, STATE(2927), 2, sym_line_comment, sym_block_comment, - [85935] = 5, + [86025] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5452), 1, - anon_sym_PIPE, - ACTIONS(6267), 2, - anon_sym_RPAREN, - anon_sym_COMMA, STATE(2928), 2, sym_line_comment, sym_block_comment, - [85953] = 6, + ACTIONS(6323), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [86041] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(2969), 1, - anon_sym_SQUOTE, - ACTIONS(6269), 1, - anon_sym_GT, - STATE(3196), 1, - sym_lifetime, + ACTIONS(4947), 1, + anon_sym_RBRACE, + ACTIONS(6325), 1, + anon_sym_COMMA, + STATE(2829), 1, + aux_sym_field_declaration_list_repeat1, STATE(2929), 2, sym_line_comment, sym_block_comment, - [85973] = 5, + [86061] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(6271), 2, - anon_sym_GT, + ACTIONS(4947), 1, + anon_sym_RBRACE, + ACTIONS(6325), 1, anon_sym_COMMA, + STATE(2994), 1, + aux_sym_field_declaration_list_repeat1, STATE(2930), 2, sym_line_comment, sym_block_comment, - [85991] = 5, + [86081] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6273), 1, - anon_sym_RBRACE, - ACTIONS(6275), 1, - anon_sym_COMMA, - STATE(2931), 3, + ACTIONS(3087), 1, + anon_sym_PLUS, + ACTIONS(6327), 1, + sym_mutable_specifier, + ACTIONS(6329), 1, + sym_self, + STATE(2931), 2, sym_line_comment, sym_block_comment, - aux_sym_field_declaration_list_repeat1, - [86009] = 6, + [86101] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(6278), 1, - anon_sym_SEMI, - ACTIONS(6280), 1, - anon_sym_EQ, + ACTIONS(6331), 1, + anon_sym_GT, + ACTIONS(6333), 1, + anon_sym_COMMA, + STATE(2870), 1, + aux_sym_for_lifetimes_repeat1, STATE(2932), 2, sym_line_comment, sym_block_comment, - [86029] = 6, + [86121] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(6282), 1, - anon_sym_SEMI, - STATE(3499), 1, - sym_where_clause, + ACTIONS(4983), 1, + anon_sym_PLUS, + ACTIONS(6335), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(2933), 2, sym_line_comment, sym_block_comment, - [86049] = 6, + [86139] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(6284), 1, - anon_sym_SEMI, - ACTIONS(6286), 1, - anon_sym_EQ, STATE(2934), 2, sym_line_comment, sym_block_comment, - [86069] = 6, + ACTIONS(6337), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [86155] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6288), 1, - sym_identifier, - ACTIONS(6290), 1, - anon_sym_await, - ACTIONS(6292), 1, - sym_integer_literal, + ACTIONS(5471), 1, + anon_sym_RPAREN, + ACTIONS(5473), 1, + anon_sym_COMMA, + STATE(2915), 1, + aux_sym_parameters_repeat1, STATE(2935), 2, sym_line_comment, sym_block_comment, - [86089] = 6, + [86175] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4812), 1, - anon_sym_RBRACE, - ACTIONS(6294), 1, - anon_sym_COMMA, - STATE(3026), 1, - aux_sym_field_initializer_list_repeat1, + ACTIONS(4884), 1, + anon_sym_LBRACE, + ACTIONS(6339), 1, + anon_sym_SEMI, + STATE(1464), 1, + sym_declaration_list, STATE(2936), 2, sym_line_comment, sym_block_comment, - [86109] = 6, + [86195] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6296), 1, - anon_sym_RBRACE, - ACTIONS(6298), 1, + ACTIONS(3161), 1, + anon_sym_RPAREN, + ACTIONS(6341), 1, anon_sym_COMMA, - STATE(2764), 1, - aux_sym_struct_pattern_repeat1, + STATE(2885), 1, + aux_sym_tuple_type_repeat1, STATE(2937), 2, sym_line_comment, sym_block_comment, - [86129] = 5, + [86215] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6267), 1, - anon_sym_RPAREN, - ACTIONS(6300), 1, - anon_sym_COMMA, - STATE(2938), 3, + STATE(2938), 2, sym_line_comment, sym_block_comment, - aux_sym_tuple_pattern_repeat1, - [86147] = 6, + ACTIONS(905), 3, + anon_sym_COLON, + anon_sym_GT, + anon_sym_COMMA, + [86231] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(2969), 1, - anon_sym_SQUOTE, - ACTIONS(6303), 1, - anon_sym_GT, - STATE(3196), 1, - sym_lifetime, STATE(2939), 2, sym_line_comment, sym_block_comment, - [86167] = 4, + ACTIONS(4451), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [86247] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -178762,121 +178810,119 @@ static const uint16_t ts_small_parse_table[] = { STATE(2940), 2, sym_line_comment, sym_block_comment, - ACTIONS(6305), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [86183] = 6, + ACTIONS(4756), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [86263] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6269), 1, - anon_sym_GT, - ACTIONS(6307), 1, - anon_sym_COMMA, - STATE(2948), 1, - aux_sym_for_lifetimes_repeat1, STATE(2941), 2, sym_line_comment, sym_block_comment, - [86203] = 6, + ACTIONS(4760), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [86279] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4887), 1, - anon_sym_for, - STATE(1933), 1, - sym_type_arguments, STATE(2942), 2, sym_line_comment, sym_block_comment, - [86223] = 6, + ACTIONS(4762), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [86295] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4955), 1, - anon_sym_RBRACE, - ACTIONS(6309), 1, - anon_sym_COMMA, - STATE(2931), 1, - aux_sym_field_declaration_list_repeat1, + ACTIONS(4983), 1, + anon_sym_PLUS, + ACTIONS(6343), 1, + anon_sym_SEMI, + ACTIONS(6345), 1, + anon_sym_EQ, STATE(2943), 2, sym_line_comment, sym_block_comment, - [86243] = 6, + [86315] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1013), 1, - anon_sym_RPAREN, - ACTIONS(6311), 1, - anon_sym_COMMA, - STATE(2589), 1, - aux_sym_arguments_repeat1, + ACTIONS(4983), 1, + anon_sym_PLUS, + ACTIONS(6347), 1, + anon_sym_SEMI, + ACTIONS(6349), 1, + anon_sym_EQ, STATE(2944), 2, sym_line_comment, sym_block_comment, - [86263] = 5, + [86335] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5617), 1, - anon_sym_EQ, - ACTIONS(5679), 2, - anon_sym_GT, + ACTIONS(6351), 1, + anon_sym_RBRACE, + ACTIONS(6353), 1, anon_sym_COMMA, + STATE(2868), 1, + aux_sym_enum_variant_list_repeat2, STATE(2945), 2, sym_line_comment, sym_block_comment, - [86281] = 6, + [86355] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3137), 1, - anon_sym_RPAREN, - ACTIONS(6313), 1, - anon_sym_COMMA, - STATE(2880), 1, - aux_sym_tuple_type_repeat1, + ACTIONS(4449), 1, + anon_sym_LT2, + ACTIONS(6355), 1, + anon_sym_for, + STATE(1931), 1, + sym_type_arguments, STATE(2946), 2, sym_line_comment, sym_block_comment, - [86301] = 6, + [86375] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(6315), 1, + ACTIONS(4896), 1, + anon_sym_where, + ACTIONS(6357), 1, anon_sym_SEMI, - ACTIONS(6317), 1, - anon_sym_EQ, + STATE(3578), 1, + sym_where_clause, STATE(2947), 2, sym_line_comment, sym_block_comment, - [86321] = 5, + [86395] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6319), 1, - anon_sym_GT, - ACTIONS(6321), 1, - anon_sym_COMMA, - STATE(2948), 3, + ACTIONS(3251), 1, + anon_sym_LT2, + ACTIONS(4961), 1, + anon_sym_COLON_COLON, + STATE(1075), 1, + sym_type_arguments, + STATE(2948), 2, sym_line_comment, sym_block_comment, - aux_sym_for_lifetimes_repeat1, - [86339] = 4, + [86415] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -178884,53 +178930,49 @@ static const uint16_t ts_small_parse_table[] = { STATE(2949), 2, sym_line_comment, sym_block_comment, - ACTIONS(4804), 3, + ACTIONS(4764), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [86355] = 6, + [86431] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5137), 1, - anon_sym_RBRACE, - ACTIONS(6324), 1, - anon_sym_COMMA, - STATE(2844), 1, - aux_sym_struct_pattern_repeat1, STATE(2950), 2, sym_line_comment, sym_block_comment, - [86375] = 6, + ACTIONS(4766), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [86447] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1586), 1, - anon_sym_GT, - ACTIONS(6326), 1, - anon_sym_COMMA, - STATE(2749), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(4983), 1, + anon_sym_PLUS, + ACTIONS(6359), 1, + anon_sym_SEMI, + ACTIONS(6361), 1, + anon_sym_RBRACK, STATE(2951), 2, sym_line_comment, sym_block_comment, - [86395] = 6, + [86467] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(6328), 1, - anon_sym_SEMI, - ACTIONS(6330), 1, - anon_sym_EQ, STATE(2952), 2, sym_line_comment, sym_block_comment, - [86415] = 4, + ACTIONS(4768), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [86483] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -178938,11 +178980,11 @@ static const uint16_t ts_small_parse_table[] = { STATE(2953), 2, sym_line_comment, sym_block_comment, - ACTIONS(4756), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [86431] = 4, + ACTIONS(6363), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [86499] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -178950,53 +178992,51 @@ static const uint16_t ts_small_parse_table[] = { STATE(2954), 2, sym_line_comment, sym_block_comment, - ACTIONS(6332), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [86447] = 6, + ACTIONS(4778), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [86515] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6334), 1, - sym_identifier, - ACTIONS(6336), 1, - anon_sym_ref, - ACTIONS(6338), 1, - sym_mutable_specifier, STATE(2955), 2, sym_line_comment, sym_block_comment, - [86467] = 6, + ACTIONS(4804), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [86531] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3969), 1, - anon_sym_LBRACE, - ACTIONS(6340), 1, - anon_sym_COLON_COLON, - STATE(1651), 1, - sym_field_initializer_list, + ACTIONS(991), 1, + anon_sym_RPAREN, + ACTIONS(6365), 1, + anon_sym_COMMA, + STATE(2626), 1, + aux_sym_arguments_repeat1, STATE(2956), 2, sym_line_comment, sym_block_comment, - [86487] = 6, + [86551] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4678), 1, - anon_sym_COLON_COLON, - ACTIONS(4838), 1, - anon_sym_BANG, - ACTIONS(6342), 1, - sym_identifier, + ACTIONS(1021), 1, + anon_sym_RPAREN, + ACTIONS(4097), 1, + anon_sym_COMMA, + STATE(2626), 1, + aux_sym_arguments_repeat1, STATE(2957), 2, sym_line_comment, sym_block_comment, - [86507] = 4, + [86571] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -179004,53 +179044,47 @@ static const uint16_t ts_small_parse_table[] = { STATE(2958), 2, sym_line_comment, sym_block_comment, - ACTIONS(4762), 3, + ACTIONS(4794), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [86523] = 6, + [86587] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5347), 1, - anon_sym_GT, - ACTIONS(5349), 1, - anon_sym_COMMA, - STATE(2786), 1, - aux_sym_type_parameters_repeat1, STATE(2959), 2, sym_line_comment, sym_block_comment, - [86543] = 6, + ACTIONS(4668), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [86603] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1007), 1, - anon_sym_RBRACK, - ACTIONS(4069), 1, - anon_sym_COMMA, - STATE(2589), 1, - aux_sym_arguments_repeat1, STATE(2960), 2, sym_line_comment, sym_block_comment, - [86563] = 6, + ACTIONS(6367), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [86619] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1454), 1, - anon_sym_RPAREN, - ACTIONS(6344), 1, - anon_sym_COMMA, - STATE(2796), 1, - aux_sym_parameters_repeat1, STATE(2961), 2, sym_line_comment, sym_block_comment, - [86583] = 4, + ACTIONS(4796), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [86635] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -179058,25 +179092,23 @@ static const uint16_t ts_small_parse_table[] = { STATE(2962), 2, sym_line_comment, sym_block_comment, - ACTIONS(4764), 3, + ACTIONS(4798), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [86599] = 6, + [86651] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4885), 1, - anon_sym_RBRACE, - ACTIONS(6346), 1, - anon_sym_COMMA, - STATE(2804), 1, - aux_sym_enum_variant_list_repeat2, STATE(2963), 2, sym_line_comment, sym_block_comment, - [86619] = 4, + ACTIONS(4800), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [86667] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -179084,118 +179116,114 @@ static const uint16_t ts_small_parse_table[] = { STATE(2964), 2, sym_line_comment, sym_block_comment, - ACTIONS(4788), 3, + ACTIONS(4802), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [86635] = 5, + [86683] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5452), 1, - anon_sym_PIPE, - ACTIONS(6348), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(4896), 1, + anon_sym_where, + ACTIONS(6369), 1, + anon_sym_SEMI, + STATE(3335), 1, + sym_where_clause, STATE(2965), 2, sym_line_comment, sym_block_comment, - [86653] = 4, + [86703] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(1596), 1, + anon_sym_GT, + ACTIONS(6371), 1, + anon_sym_COMMA, + STATE(2747), 1, + aux_sym_type_arguments_repeat1, STATE(2966), 2, sym_line_comment, sym_block_comment, - ACTIONS(5502), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [86669] = 6, + [86723] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, - anon_sym_LBRACE, - ACTIONS(6350), 1, - anon_sym_SEMI, - STATE(1461), 1, - sym_declaration_list, + ACTIONS(4533), 1, + anon_sym_COLON_COLON, + ACTIONS(4578), 1, + anon_sym_COLON, + STATE(2577), 1, + sym_trait_bounds, STATE(2967), 2, sym_line_comment, sym_block_comment, - [86689] = 6, - ACTIONS(27), 1, - anon_sym_PIPE, + [86743] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6352), 1, - anon_sym_move, - STATE(224), 1, - sym_closure_parameters, STATE(2968), 2, sym_line_comment, sym_block_comment, - [86709] = 6, + ACTIONS(4694), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [86759] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, - anon_sym_LBRACE, - ACTIONS(6354), 1, - anon_sym_SEMI, - STATE(1465), 1, - sym_declaration_list, STATE(2969), 2, sym_line_comment, sym_block_comment, - [86729] = 6, + ACTIONS(4806), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [86775] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4830), 1, - anon_sym_LBRACE, - STATE(1933), 1, - sym_type_arguments, STATE(2970), 2, sym_line_comment, sym_block_comment, - [86749] = 4, + ACTIONS(4808), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [86791] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(6375), 1, + anon_sym_COLON, + ACTIONS(6373), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(2971), 2, sym_line_comment, sym_block_comment, - ACTIONS(4664), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [86765] = 6, - ACTIONS(27), 1, - anon_sym_PIPE, + [86809] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6356), 1, - anon_sym_move, - STATE(228), 1, - sym_closure_parameters, STATE(2972), 2, sym_line_comment, sym_block_comment, - [86785] = 4, + ACTIONS(4810), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [86825] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -179203,63 +179231,65 @@ static const uint16_t ts_small_parse_table[] = { STATE(2973), 2, sym_line_comment, sym_block_comment, - ACTIONS(4794), 3, + ACTIONS(4822), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [86801] = 4, + [86841] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(1468), 1, + anon_sym_RPAREN, + ACTIONS(6377), 1, + anon_sym_COMMA, + STATE(2760), 1, + aux_sym_parameters_repeat1, STATE(2974), 2, sym_line_comment, sym_block_comment, - ACTIONS(4802), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [86817] = 6, + [86861] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6358), 1, - anon_sym_RPAREN, - ACTIONS(6360), 1, + ACTIONS(4816), 1, + anon_sym_RBRACE, + ACTIONS(6379), 1, anon_sym_COMMA, - STATE(2922), 1, - aux_sym_ordered_field_declaration_list_repeat1, + STATE(2761), 1, + aux_sym_field_initializer_list_repeat1, STATE(2975), 2, sym_line_comment, sym_block_comment, - [86837] = 6, + [86881] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(6362), 1, - anon_sym_SEMI, - STATE(3467), 1, - sym_where_clause, STATE(2976), 2, sym_line_comment, sym_block_comment, - [86857] = 4, + ACTIONS(4824), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [86897] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(4862), 1, + anon_sym_RBRACE, + ACTIONS(6381), 1, + anon_sym_COMMA, + STATE(2785), 1, + aux_sym_enum_variant_list_repeat2, STATE(2977), 2, sym_line_comment, sym_block_comment, - ACTIONS(6364), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [86873] = 4, + [86917] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -179267,67 +179297,65 @@ static const uint16_t ts_small_parse_table[] = { STATE(2978), 2, sym_line_comment, sym_block_comment, - ACTIONS(4758), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [86889] = 6, + ACTIONS(6383), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [86933] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(6366), 1, - anon_sym_for, - STATE(1933), 1, - sym_type_arguments, STATE(2979), 2, sym_line_comment, sym_block_comment, - [86909] = 6, + ACTIONS(6385), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [86949] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, + ACTIONS(4884), 1, anon_sym_LBRACE, - ACTIONS(6368), 1, + ACTIONS(6387), 1, anon_sym_SEMI, - STATE(1093), 1, + STATE(1290), 1, sym_declaration_list, STATE(2980), 2, sym_line_comment, sym_block_comment, - [86929] = 6, + [86969] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5528), 1, - anon_sym_RPAREN, - ACTIONS(5530), 1, - anon_sym_COMMA, - STATE(2822), 1, - aux_sym_parameters_repeat1, + ACTIONS(4884), 1, + anon_sym_LBRACE, + ACTIONS(6389), 1, + anon_sym_SEMI, + STATE(1272), 1, + sym_declaration_list, STATE(2981), 2, sym_line_comment, sym_block_comment, - [86949] = 6, + [86989] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, - anon_sym_LBRACE, - ACTIONS(6370), 1, - anon_sym_SEMI, - STATE(1095), 1, - sym_declaration_list, + ACTIONS(4449), 1, + anon_sym_LT2, + ACTIONS(6391), 1, + anon_sym_for, + STATE(1931), 1, + sym_type_arguments, STATE(2982), 2, sym_line_comment, sym_block_comment, - [86969] = 4, + [87009] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -179335,92 +179363,89 @@ static const uint16_t ts_small_parse_table[] = { STATE(2983), 2, sym_line_comment, sym_block_comment, - ACTIONS(4860), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [86985] = 6, + ACTIONS(6393), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [87025] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1598), 1, - anon_sym_GT, - ACTIONS(6372), 1, - anon_sym_COMMA, - STATE(2747), 1, - aux_sym_type_arguments_repeat1, STATE(2984), 2, sym_line_comment, sym_block_comment, - [87005] = 6, + ACTIONS(6395), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [87041] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3051), 1, - anon_sym_PLUS, - ACTIONS(6374), 1, - sym_mutable_specifier, - ACTIONS(6376), 1, - sym_self, STATE(2985), 2, sym_line_comment, sym_block_comment, - [87025] = 6, + ACTIONS(6397), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [87057] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(6378), 1, + ACTIONS(4884), 1, + anon_sym_LBRACE, + ACTIONS(6399), 1, anon_sym_SEMI, - ACTIONS(6380), 1, - anon_sym_EQ, + STATE(1252), 1, + sym_declaration_list, STATE(2986), 2, sym_line_comment, sym_block_comment, - [87045] = 5, + [87077] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(6382), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(4884), 1, + anon_sym_LBRACE, + ACTIONS(6401), 1, + anon_sym_SEMI, + STATE(1248), 1, + sym_declaration_list, STATE(2987), 2, sym_line_comment, sym_block_comment, - [87063] = 4, + [87097] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(4375), 1, + anon_sym_RBRACE, + ACTIONS(6403), 1, + anon_sym_COMMA, + STATE(2766), 1, + aux_sym_use_list_repeat1, STATE(2988), 2, sym_line_comment, sym_block_comment, - ACTIONS(6384), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [87079] = 6, + [87117] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(2945), 1, - anon_sym_RPAREN, - ACTIONS(6386), 1, - anon_sym_COMMA, - STATE(2938), 1, - aux_sym_tuple_pattern_repeat1, STATE(2989), 2, sym_line_comment, sym_block_comment, - [87099] = 4, + ACTIONS(4826), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [87133] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -179428,67 +179453,63 @@ static const uint16_t ts_small_parse_table[] = { STATE(2990), 2, sym_line_comment, sym_block_comment, - ACTIONS(4760), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [87115] = 6, + ACTIONS(6405), 3, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + [87149] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1598), 1, - anon_sym_GT, - ACTIONS(6372), 1, - anon_sym_COMMA, - STATE(2749), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(4983), 1, + anon_sym_PLUS, + ACTIONS(6407), 1, + anon_sym_SEMI, + ACTIONS(6409), 1, + anon_sym_EQ, STATE(2991), 2, sym_line_comment, sym_block_comment, - [87135] = 6, + [87169] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4959), 1, - anon_sym_RBRACE, - ACTIONS(6388), 1, - anon_sym_COMMA, - STATE(2931), 1, - aux_sym_field_declaration_list_repeat1, STATE(2992), 2, sym_line_comment, sym_block_comment, - [87155] = 6, + ACTIONS(6411), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [87185] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4949), 1, - anon_sym_RBRACE, - ACTIONS(6390), 1, - anon_sym_COMMA, - STATE(2931), 1, - aux_sym_field_declaration_list_repeat1, STATE(2993), 2, sym_line_comment, sym_block_comment, - [87175] = 6, + ACTIONS(4828), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [87201] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4959), 1, + ACTIONS(4951), 1, anon_sym_RBRACE, - ACTIONS(6388), 1, + ACTIONS(6413), 1, anon_sym_COMMA, - STATE(2943), 1, + STATE(2829), 1, aux_sym_field_declaration_list_repeat1, STATE(2994), 2, sym_line_comment, sym_block_comment, - [87195] = 4, + [87221] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -179496,65 +179517,67 @@ static const uint16_t ts_small_parse_table[] = { STATE(2995), 2, sym_line_comment, sym_block_comment, - ACTIONS(4752), 3, + ACTIONS(4830), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [87211] = 6, + [87237] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6392), 1, + ACTIONS(4634), 1, anon_sym_GT, - ACTIONS(6394), 1, + ACTIONS(6415), 1, anon_sym_COMMA, - STATE(2941), 1, - aux_sym_for_lifetimes_repeat1, + STATE(2835), 1, + aux_sym_type_parameters_repeat1, STATE(2996), 2, sym_line_comment, sym_block_comment, - [87231] = 6, + [87257] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(6396), 1, + ACTIONS(4878), 1, + anon_sym_LBRACE, + ACTIONS(6417), 1, anon_sym_SEMI, - ACTIONS(6398), 1, - anon_sym_RBRACK, + STATE(591), 1, + sym_declaration_list, STATE(2997), 2, sym_line_comment, sym_block_comment, - [87251] = 4, + [87277] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(4449), 1, + anon_sym_LT2, + ACTIONS(6419), 1, + anon_sym_for, + STATE(1931), 1, + sym_type_arguments, STATE(2998), 2, sym_line_comment, sym_block_comment, - ACTIONS(4768), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [87267] = 6, + [87297] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4878), 1, - anon_sym_LBRACE, - ACTIONS(6400), 1, - anon_sym_SEMI, - STATE(629), 1, - sym_declaration_list, + ACTIONS(4646), 1, + anon_sym_GT, + ACTIONS(5532), 1, + anon_sym_COMMA, + STATE(2835), 1, + aux_sym_type_parameters_repeat1, STATE(2999), 2, sym_line_comment, sym_block_comment, - [87287] = 4, + [87317] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -179562,1521 +179585,1506 @@ static const uint16_t ts_small_parse_table[] = { STATE(3000), 2, sym_line_comment, sym_block_comment, - ACTIONS(6402), 3, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(6421), 3, + anon_sym_EQ, + anon_sym_GT, anon_sym_COMMA, - [87303] = 6, + [87333] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5436), 1, - anon_sym_COMMA, - ACTIONS(6404), 1, - anon_sym_PIPE, - STATE(2924), 1, - aux_sym_closure_parameters_repeat1, STATE(3001), 2, sym_line_comment, sym_block_comment, - [87323] = 6, + ACTIONS(4820), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [87349] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(6406), 1, - anon_sym_SEMI, - STATE(3371), 1, - sym_where_clause, + ACTIONS(4646), 1, + anon_sym_GT, + ACTIONS(5532), 1, + anon_sym_COMMA, + STATE(2823), 1, + aux_sym_type_parameters_repeat1, STATE(3002), 2, sym_line_comment, sym_block_comment, - [87343] = 6, + [87369] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4878), 1, - anon_sym_LBRACE, - ACTIONS(6408), 1, - anon_sym_SEMI, - STATE(667), 1, - sym_declaration_list, STATE(3003), 2, sym_line_comment, sym_block_comment, - [87363] = 6, + ACTIONS(4840), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [87385] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1005), 1, - anon_sym_RPAREN, - ACTIONS(4067), 1, - anon_sym_COMMA, - STATE(2589), 1, - aux_sym_arguments_repeat1, STATE(3004), 2, sym_line_comment, sym_block_comment, - [87383] = 6, + ACTIONS(4846), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [87401] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4878), 1, - anon_sym_LBRACE, - ACTIONS(6410), 1, - anon_sym_SEMI, - STATE(753), 1, - sym_declaration_list, STATE(3005), 2, sym_line_comment, sym_block_comment, - [87403] = 5, + ACTIONS(4752), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [87417] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6412), 1, - sym_identifier, - ACTIONS(6414), 2, - anon_sym_default, - anon_sym_union, STATE(3006), 2, sym_line_comment, sym_block_comment, - [87421] = 6, + ACTIONS(4838), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [87433] = 6, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3021), 1, - anon_sym_RBRACK, - ACTIONS(6416), 1, - anon_sym_COMMA, - STATE(2680), 1, - aux_sym_slice_pattern_repeat1, + ACTIONS(6423), 1, + anon_sym_move, + STATE(217), 1, + sym_closure_parameters, STATE(3007), 2, sym_line_comment, sym_block_comment, - [87441] = 5, + [87453] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6418), 1, - sym_identifier, - ACTIONS(6420), 2, - anon_sym_default, - anon_sym_union, STATE(3008), 2, sym_line_comment, sym_block_comment, - [87459] = 6, + ACTIONS(4860), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [87469] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, + ACTIONS(4896), 1, anon_sym_where, - ACTIONS(6422), 1, + ACTIONS(6425), 1, anon_sym_SEMI, - STATE(3327), 1, + STATE(3368), 1, sym_where_clause, STATE(3009), 2, sym_line_comment, sym_block_comment, - [87479] = 6, + [87489] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4878), 1, - anon_sym_LBRACE, - ACTIONS(6424), 1, - anon_sym_SEMI, - STATE(554), 1, - sym_declaration_list, STATE(3010), 2, sym_line_comment, sym_block_comment, - [87499] = 6, + ACTIONS(4836), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [87505] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_GT, - ACTIONS(5371), 1, - anon_sym_COMMA, - STATE(2873), 1, - aux_sym_type_parameters_repeat1, STATE(3011), 2, sym_line_comment, sym_block_comment, - [87519] = 6, + ACTIONS(4754), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [87521] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6426), 1, - anon_sym_RBRACE, - ACTIONS(6428), 1, - anon_sym_COMMA, - STATE(2771), 1, - aux_sym_enum_variant_list_repeat2, + ACTIONS(4896), 1, + anon_sym_where, + ACTIONS(6427), 1, + anon_sym_SEMI, + STATE(3380), 1, + sym_where_clause, STATE(3012), 2, sym_line_comment, sym_block_comment, - [87539] = 6, + [87541] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4961), 1, - anon_sym_for, - STATE(1933), 1, - sym_type_arguments, + ACTIONS(4884), 1, + anon_sym_LBRACE, + ACTIONS(6429), 1, + anon_sym_SEMI, + STATE(1121), 1, + sym_declaration_list, STATE(3013), 2, sym_line_comment, sym_block_comment, - [87559] = 5, + [87561] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5452), 1, - anon_sym_PIPE, - ACTIONS(6430), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(4884), 1, + anon_sym_LBRACE, + ACTIONS(6431), 1, + anon_sym_SEMI, + STATE(1111), 1, + sym_declaration_list, STATE(3014), 2, sym_line_comment, sym_block_comment, - [87577] = 6, + [87581] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(6432), 1, - anon_sym_SEMI, - ACTIONS(6434), 1, - anon_sym_EQ, + ACTIONS(6433), 1, + anon_sym_RBRACE, + ACTIONS(6435), 1, + anon_sym_COMMA, + STATE(2804), 1, + aux_sym_field_declaration_list_repeat1, STATE(3015), 2, sym_line_comment, sym_block_comment, - [87597] = 4, + [87601] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(4884), 1, + anon_sym_LBRACE, + ACTIONS(6437), 1, + anon_sym_SEMI, + STATE(1113), 1, + sym_declaration_list, STATE(3016), 2, sym_line_comment, sym_block_comment, - ACTIONS(6436), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [87613] = 6, + [87621] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4872), 1, - anon_sym_LT, - ACTIONS(6438), 1, - anon_sym_EQ, - STATE(3572), 1, - sym_type_parameters, + ACTIONS(4884), 1, + anon_sym_LBRACE, + ACTIONS(6439), 1, + anon_sym_SEMI, + STATE(1109), 1, + sym_declaration_list, STATE(3017), 2, sym_line_comment, sym_block_comment, - [87633] = 6, + [87641] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(6440), 1, - anon_sym_SEMI, - ACTIONS(6442), 1, - anon_sym_EQ, STATE(3018), 2, sym_line_comment, sym_block_comment, - [87653] = 6, + ACTIONS(4858), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [87657] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(6444), 1, - anon_sym_for, - STATE(1933), 1, - sym_type_arguments, + ACTIONS(4884), 1, + anon_sym_LBRACE, + ACTIONS(6441), 1, + anon_sym_SEMI, + STATE(1132), 1, + sym_declaration_list, STATE(3019), 2, sym_line_comment, sym_block_comment, - [87673] = 6, + [87677] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4537), 1, - anon_sym_COLON_COLON, - ACTIONS(4582), 1, - anon_sym_COLON, - STATE(2604), 1, - sym_trait_bounds, + ACTIONS(4884), 1, + anon_sym_LBRACE, + ACTIONS(6443), 1, + anon_sym_SEMI, + STATE(1134), 1, + sym_declaration_list, STATE(3020), 2, sym_line_comment, sym_block_comment, - [87693] = 6, + [87697] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(6446), 1, - anon_sym_for, - STATE(1933), 1, - sym_type_arguments, + ACTIONS(4983), 1, + anon_sym_PLUS, + ACTIONS(6445), 1, + anon_sym_SEMI, + ACTIONS(6447), 1, + anon_sym_EQ, STATE(3021), 2, sym_line_comment, sym_block_comment, - [87713] = 6, + [87717] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6448), 1, - anon_sym_RBRACE, - ACTIONS(6450), 1, - anon_sym_COMMA, - STATE(2859), 1, - aux_sym_struct_pattern_repeat1, + ACTIONS(4983), 1, + anon_sym_PLUS, + ACTIONS(6449), 1, + anon_sym_SEMI, + ACTIONS(6451), 1, + anon_sym_EQ, STATE(3022), 2, sym_line_comment, sym_block_comment, - [87733] = 6, + [87737] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, + ACTIONS(4884), 1, anon_sym_LBRACE, - ACTIONS(6452), 1, + ACTIONS(6453), 1, anon_sym_SEMI, - STATE(1135), 1, + STATE(1191), 1, sym_declaration_list, STATE(3023), 2, sym_line_comment, sym_block_comment, - [87753] = 6, + [87757] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, + ACTIONS(4884), 1, anon_sym_LBRACE, - ACTIONS(6454), 1, + ACTIONS(6455), 1, anon_sym_SEMI, - STATE(1137), 1, + STATE(1194), 1, sym_declaration_list, STATE(3024), 2, sym_line_comment, sym_block_comment, - [87773] = 6, + [87777] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(6456), 1, - anon_sym_for, - STATE(1933), 1, - sym_type_arguments, + ACTIONS(6457), 1, + anon_sym_EQ_GT, + ACTIONS(6459), 1, + anon_sym_PIPE, + ACTIONS(6461), 1, + anon_sym_if, STATE(3025), 2, sym_line_comment, sym_block_comment, - [87793] = 5, + [87797] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6458), 1, - anon_sym_RBRACE, - ACTIONS(6460), 1, - anon_sym_COMMA, - STATE(3026), 3, + STATE(3026), 2, sym_line_comment, sym_block_comment, - aux_sym_field_initializer_list_repeat1, - [87811] = 6, + ACTIONS(4856), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [87813] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5436), 1, - anon_sym_COMMA, - ACTIONS(6463), 1, - anon_sym_PIPE, - STATE(3001), 1, - aux_sym_closure_parameters_repeat1, STATE(3027), 2, sym_line_comment, sym_block_comment, - [87831] = 6, + ACTIONS(4842), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [87829] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6465), 1, - sym_identifier, - ACTIONS(6467), 1, - anon_sym_ref, - ACTIONS(6469), 1, - sym_mutable_specifier, + ACTIONS(4878), 1, + anon_sym_LBRACE, + ACTIONS(6463), 1, + anon_sym_SEMI, + STATE(526), 1, + sym_declaration_list, STATE(3028), 2, sym_line_comment, sym_block_comment, - [87851] = 6, + [87849] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(6471), 1, - anon_sym_for, - STATE(1933), 1, - sym_type_arguments, + ACTIONS(4578), 1, + anon_sym_COLON, + ACTIONS(4926), 1, + anon_sym_COLON_COLON, + STATE(2577), 1, + sym_trait_bounds, STATE(3029), 2, sym_line_comment, sym_block_comment, - [87871] = 6, + [87869] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, - anon_sym_LBRACE, - ACTIONS(6473), 1, - anon_sym_SEMI, - STATE(1184), 1, - sym_declaration_list, + ACTIONS(4449), 1, + anon_sym_LT2, + ACTIONS(6465), 1, + anon_sym_for, + STATE(1931), 1, + sym_type_arguments, STATE(3030), 2, sym_line_comment, sym_block_comment, - [87891] = 6, + [87889] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(6475), 1, - anon_sym_SEMI, - STATE(3556), 1, - sym_where_clause, + ACTIONS(6467), 1, + sym_identifier, + ACTIONS(6469), 1, + anon_sym_ref, + ACTIONS(6471), 1, + sym_mutable_specifier, STATE(3031), 2, sym_line_comment, sym_block_comment, - [87911] = 4, + [87909] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(6473), 1, + sym_identifier, + ACTIONS(6475), 2, + anon_sym_default, + anon_sym_union, STATE(3032), 2, sym_line_comment, sym_block_comment, - ACTIONS(4822), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [87927] = 4, + [87927] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6477), 2, - anon_sym_const, - sym_mutable_specifier, + ACTIONS(6477), 1, + sym_identifier, + ACTIONS(6479), 1, + sym_super, STATE(3033), 2, sym_line_comment, sym_block_comment, - [87942] = 5, + [87944] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6479), 1, - anon_sym_SEMI, - ACTIONS(6481), 1, - anon_sym_as, + ACTIONS(4533), 1, + anon_sym_COLON_COLON, + ACTIONS(4901), 1, + anon_sym_for, STATE(3034), 2, sym_line_comment, sym_block_comment, - [87959] = 5, + [87961] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, - anon_sym_LBRACE, - STATE(1162), 1, - sym_declaration_list, + ACTIONS(3753), 1, + anon_sym_COLON, + ACTIONS(5298), 1, + anon_sym_PLUS, STATE(3035), 2, sym_line_comment, sym_block_comment, - [87976] = 4, + [87978] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6483), 2, - sym_identifier, - sym_metavariable, + ACTIONS(6481), 1, + anon_sym_RPAREN, + ACTIONS(6483), 1, + anon_sym_COLON_COLON, STATE(3036), 2, sym_line_comment, sym_block_comment, - [87991] = 5, + [87995] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5546), 1, + ACTIONS(5773), 1, sym_super, ACTIONS(6485), 1, sym_identifier, STATE(3037), 2, sym_line_comment, sym_block_comment, - [88008] = 5, + [88012] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4878), 1, - anon_sym_LBRACE, - STATE(527), 1, - sym_declaration_list, + ACTIONS(6487), 1, + anon_sym_LBRACK, + ACTIONS(6489), 1, + anon_sym_BANG, STATE(3038), 2, sym_line_comment, sym_block_comment, - [88025] = 4, + [88029] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6487), 2, - sym_identifier, - sym_super, + ACTIONS(4884), 1, + anon_sym_LBRACE, + STATE(1177), 1, + sym_declaration_list, STATE(3039), 2, sym_line_comment, sym_block_comment, - [88040] = 5, + [88046] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5546), 1, - sym_super, - ACTIONS(6489), 1, - sym_identifier, + ACTIONS(6481), 1, + anon_sym_RPAREN, + ACTIONS(6491), 1, + anon_sym_COLON_COLON, STATE(3040), 2, sym_line_comment, sym_block_comment, - [88057] = 4, + [88063] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6491), 2, - sym__block_comment_content, - anon_sym_STAR_SLASH, + ACTIONS(6481), 1, + anon_sym_RPAREN, + ACTIONS(6493), 1, + anon_sym_COLON_COLON, STATE(3041), 2, sym_line_comment, sym_block_comment, - [88072] = 5, + [88080] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6493), 1, + ACTIONS(6495), 2, sym_identifier, - ACTIONS(6495), 1, - sym_super, + sym_metavariable, STATE(3042), 2, sym_line_comment, sym_block_comment, - [88089] = 5, + [88095] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4537), 1, + ACTIONS(6497), 1, + anon_sym_RPAREN, + ACTIONS(6499), 1, anon_sym_COLON_COLON, - ACTIONS(6145), 1, - anon_sym_for, STATE(3043), 2, sym_line_comment, sym_block_comment, - [88106] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, + [88112] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(217), 1, - sym_closure_parameters, + ACTIONS(4878), 1, + anon_sym_LBRACE, + STATE(542), 1, + sym_declaration_list, STATE(3044), 2, sym_line_comment, sym_block_comment, - [88123] = 5, + [88129] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6497), 1, - anon_sym_SEMI, - ACTIONS(6499), 1, - anon_sym_as, + ACTIONS(6501), 1, + sym_identifier, + ACTIONS(6503), 1, + sym_mutable_specifier, STATE(3045), 2, sym_line_comment, sym_block_comment, - [88140] = 5, + [88146] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5281), 1, - anon_sym_LBRACE, - STATE(707), 1, - sym_enum_variant_list, + ACTIONS(3757), 1, + anon_sym_COLON, + ACTIONS(5298), 1, + anon_sym_PLUS, STATE(3046), 2, sym_line_comment, sym_block_comment, - [88157] = 5, + [88163] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5143), 1, - anon_sym_RBRACE, - ACTIONS(6501), 1, - anon_sym_SEMI, + ACTIONS(3851), 1, + anon_sym_COLON, + ACTIONS(5298), 1, + anon_sym_PLUS, STATE(3047), 2, sym_line_comment, sym_block_comment, - [88174] = 5, + [88180] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3579), 1, - anon_sym_COLON, - ACTIONS(5241), 1, - anon_sym_PLUS, + ACTIONS(6467), 1, + sym_identifier, + ACTIONS(6471), 1, + sym_mutable_specifier, STATE(3048), 2, sym_line_comment, sym_block_comment, - [88191] = 4, + [88197] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5703), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(5373), 1, + anon_sym_PIPE, + ACTIONS(6505), 1, + anon_sym_in, STATE(3049), 2, sym_line_comment, sym_block_comment, - [88206] = 5, + [88214] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6503), 1, - sym_identifier, - ACTIONS(6505), 1, - sym_super, + ACTIONS(5373), 1, + anon_sym_PIPE, + ACTIONS(6507), 1, + anon_sym_in, STATE(3050), 2, sym_line_comment, sym_block_comment, - [88223] = 5, + [88231] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5866), 1, - sym_super, - ACTIONS(6507), 1, - sym_identifier, + ACTIONS(5373), 1, + anon_sym_PIPE, + ACTIONS(6509), 1, + anon_sym_in, STATE(3051), 2, sym_line_comment, sym_block_comment, - [88240] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, + [88248] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(228), 1, - sym_closure_parameters, + ACTIONS(5477), 1, + sym_super, + ACTIONS(6511), 1, + sym_identifier, STATE(3052), 2, sym_line_comment, sym_block_comment, - [88257] = 5, + [88265] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5145), 1, - anon_sym_RBRACE, - ACTIONS(6501), 1, - anon_sym_SEMI, + ACTIONS(5373), 1, + anon_sym_PIPE, + ACTIONS(6513), 1, + anon_sym_in, STATE(3053), 2, sym_line_comment, sym_block_comment, - [88274] = 5, + [88282] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3939), 1, - anon_sym_LPAREN, - STATE(1594), 1, - sym_parameters, + ACTIONS(4878), 1, + anon_sym_LBRACE, + STATE(534), 1, + sym_declaration_list, STATE(3054), 2, sym_line_comment, sym_block_comment, - [88291] = 4, + [88299] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6509), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(4892), 1, + anon_sym_LBRACE, + STATE(483), 1, + sym_field_declaration_list, STATE(3055), 2, sym_line_comment, sym_block_comment, - [88306] = 5, + [88316] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6511), 1, - anon_sym_LT, - STATE(1084), 1, - sym_type_parameters, + ACTIONS(5477), 1, + sym_super, + ACTIONS(6515), 1, + sym_identifier, STATE(3056), 2, sym_line_comment, sym_block_comment, - [88323] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, + [88333] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(225), 1, - sym_closure_parameters, + ACTIONS(6517), 1, + anon_sym_LBRACK, + ACTIONS(6519), 1, + anon_sym_BANG, STATE(3057), 2, sym_line_comment, sym_block_comment, - [88340] = 5, + [88350] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5991), 1, - sym_identifier, - ACTIONS(5995), 1, - sym_mutable_specifier, + ACTIONS(3573), 1, + anon_sym_COLON, + ACTIONS(5298), 1, + anon_sym_PLUS, STATE(3058), 2, sym_line_comment, sym_block_comment, - [88357] = 5, + [88367] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3587), 1, - anon_sym_COLON, - ACTIONS(5241), 1, - anon_sym_PLUS, + STATE(217), 1, + sym_closure_parameters, STATE(3059), 2, sym_line_comment, sym_block_comment, - [88374] = 5, + [88384] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4870), 1, - anon_sym_LBRACE, - STATE(747), 1, - sym_field_declaration_list, + ACTIONS(4533), 1, + anon_sym_COLON_COLON, + ACTIONS(6465), 1, + anon_sym_for, STATE(3060), 2, sym_line_comment, sym_block_comment, - [88391] = 5, + [88401] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3591), 1, - anon_sym_COLON, - ACTIONS(5241), 1, - anon_sym_PLUS, + ACTIONS(5773), 2, + sym_identifier, + sym_super, STATE(3061), 2, sym_line_comment, sym_block_comment, - [88408] = 5, + [88416] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5722), 1, - sym_identifier, - ACTIONS(5724), 1, - sym_super, + ACTIONS(5373), 1, + anon_sym_PIPE, + ACTIONS(6521), 1, + anon_sym_in, STATE(3062), 2, sym_line_comment, sym_block_comment, - [88425] = 4, + [88433] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5641), 2, - sym_identifier, - sym_super, + ACTIONS(4533), 1, + anon_sym_COLON_COLON, + ACTIONS(6391), 1, + anon_sym_for, STATE(3063), 2, sym_line_comment, sym_block_comment, - [88440] = 5, + [88450] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6513), 1, - sym_identifier, - ACTIONS(6515), 1, - sym_super, + STATE(225), 1, + sym_closure_parameters, STATE(3064), 2, sym_line_comment, sym_block_comment, - [88457] = 4, + [88467] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6267), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(4884), 1, + anon_sym_LBRACE, + STATE(1377), 1, + sym_declaration_list, STATE(3065), 2, sym_line_comment, sym_block_comment, - [88472] = 5, + [88484] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6489), 1, - sym_identifier, - ACTIONS(6517), 1, - sym_super, + ACTIONS(4884), 1, + anon_sym_LBRACE, + STATE(1168), 1, + sym_declaration_list, STATE(3066), 2, sym_line_comment, sym_block_comment, - [88489] = 5, + [88501] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5103), 1, - sym_super, - ACTIONS(5602), 1, - sym_identifier, + ACTIONS(4884), 1, + anon_sym_LBRACE, + STATE(1172), 1, + sym_declaration_list, STATE(3067), 2, sym_line_comment, sym_block_comment, - [88506] = 5, + [88518] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6519), 1, + ACTIONS(5477), 2, sym_identifier, - ACTIONS(6521), 1, sym_super, STATE(3068), 2, sym_line_comment, sym_block_comment, - [88523] = 5, + [88533] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3637), 1, - anon_sym_COLON, - ACTIONS(5241), 1, - anon_sym_PLUS, + ACTIONS(6523), 1, + sym_identifier, + ACTIONS(6525), 1, + sym_super, STATE(3069), 2, sym_line_comment, sym_block_comment, - [88540] = 5, + [88550] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6511), 1, - anon_sym_LT, - STATE(865), 1, - sym_type_parameters, + ACTIONS(5773), 1, + sym_super, + ACTIONS(6527), 1, + sym_identifier, STATE(3070), 2, sym_line_comment, sym_block_comment, - [88557] = 5, + [88567] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3939), 1, - anon_sym_LPAREN, - STATE(1622), 1, - sym_parameters, + ACTIONS(5477), 1, + sym_super, + ACTIONS(6529), 1, + sym_identifier, STATE(3071), 2, sym_line_comment, sym_block_comment, - [88574] = 5, + [88584] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5604), 1, - sym_super, - ACTIONS(5651), 1, - sym_identifier, + ACTIONS(6531), 2, + anon_sym_const, + sym_mutable_specifier, STATE(3072), 2, sym_line_comment, sym_block_comment, - [88591] = 4, + [88599] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6248), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(4892), 1, + anon_sym_LBRACE, + STATE(567), 1, + sym_field_declaration_list, STATE(3073), 2, sym_line_comment, sym_block_comment, - [88606] = 5, + [88616] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5147), 1, - anon_sym_RPAREN, - ACTIONS(6501), 1, - anon_sym_SEMI, + ACTIONS(4533), 1, + anon_sym_COLON_COLON, + ACTIONS(6355), 1, + anon_sym_for, STATE(3074), 2, sym_line_comment, sym_block_comment, - [88623] = 5, + [88633] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(2969), 1, - anon_sym_SQUOTE, - STATE(3196), 1, - sym_lifetime, + ACTIONS(4884), 1, + anon_sym_LBRACE, + STATE(1200), 1, + sym_declaration_list, STATE(3075), 2, sym_line_comment, sym_block_comment, - [88640] = 4, + [88650] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6523), 2, - sym__block_comment_content, - anon_sym_STAR_SLASH, + ACTIONS(3941), 1, + anon_sym_LPAREN, + STATE(1624), 1, + sym_parameters, STATE(3076), 2, sym_line_comment, sym_block_comment, - [88655] = 4, + [88667] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6525), 2, - sym_identifier, - sym_super, + ACTIONS(4533), 1, + anon_sym_COLON_COLON, + ACTIONS(6419), 1, + anon_sym_for, STATE(3077), 2, sym_line_comment, sym_block_comment, - [88670] = 4, + [88684] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6273), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(4878), 1, + anon_sym_LBRACE, + STATE(595), 1, + sym_declaration_list, STATE(3078), 2, sym_line_comment, sym_block_comment, - [88685] = 5, + [88701] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5866), 1, - sym_super, - ACTIONS(6527), 1, - sym_identifier, + ACTIONS(4878), 1, + anon_sym_LBRACE, + STATE(638), 1, + sym_declaration_list, STATE(3079), 2, sym_line_comment, sym_block_comment, - [88702] = 5, + [88718] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4878), 1, - anon_sym_LBRACE, - STATE(580), 1, - sym_declaration_list, + ACTIONS(4533), 1, + anon_sym_COLON_COLON, + ACTIONS(6286), 1, + anon_sym_for, STATE(3080), 2, sym_line_comment, sym_block_comment, - [88719] = 5, + [88735] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3243), 1, - anon_sym_LPAREN, - STATE(1085), 1, - sym_parameters, + ACTIONS(6533), 2, + sym_identifier, + sym_metavariable, STATE(3081), 2, sym_line_comment, sym_block_comment, - [88736] = 4, + [88750] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6529), 2, - sym_identifier, - sym_super, + ACTIONS(6535), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(3082), 2, sym_line_comment, sym_block_comment, - [88751] = 5, + [88765] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, - anon_sym_LPAREN, - STATE(2219), 1, - sym_parameters, + ACTIONS(3322), 1, + anon_sym_LBRACE, + STATE(1289), 1, + sym_field_initializer_list, STATE(3083), 2, sym_line_comment, sym_block_comment, - [88768] = 4, + [88782] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6531), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(4533), 1, + anon_sym_COLON_COLON, + ACTIONS(4872), 1, + anon_sym_for, STATE(3084), 2, sym_line_comment, sym_block_comment, - [88783] = 5, + [88799] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3939), 1, - anon_sym_LPAREN, - STATE(1598), 1, - sym_parameters, + ACTIONS(6537), 2, + sym_identifier, + sym_metavariable, STATE(3085), 2, sym_line_comment, sym_block_comment, - [88800] = 5, + [88814] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6487), 1, - sym_super, - ACTIONS(6533), 1, - sym_identifier, + ACTIONS(5269), 1, + anon_sym_LBRACE, + STATE(539), 1, + sym_enum_variant_list, STATE(3086), 2, sym_line_comment, sym_block_comment, - [88817] = 5, + [88831] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4878), 1, - anon_sym_LBRACE, - STATE(581), 1, - sym_declaration_list, + ACTIONS(5373), 1, + anon_sym_PIPE, + ACTIONS(6539), 1, + anon_sym_in, STATE(3087), 2, sym_line_comment, sym_block_comment, - [88834] = 4, + [88848] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5610), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + STATE(220), 1, + sym_closure_parameters, STATE(3088), 2, sym_line_comment, sym_block_comment, - [88849] = 4, + [88865] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5679), 2, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(4443), 1, + anon_sym_LPAREN, + STATE(2207), 1, + sym_parameters, STATE(3089), 2, sym_line_comment, sym_block_comment, - [88864] = 5, + [88882] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5235), 1, + ACTIONS(5269), 1, anon_sym_LBRACE, - STATE(1314), 1, + STATE(612), 1, sym_enum_variant_list, STATE(3090), 2, sym_line_comment, sym_block_comment, - [88881] = 5, + [88899] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6535), 1, - anon_sym_RPAREN, - ACTIONS(6537), 1, - anon_sym_COLON_COLON, + ACTIONS(6541), 2, + sym_identifier, + sym_metavariable, STATE(3091), 2, sym_line_comment, sym_block_comment, - [88898] = 5, + [88914] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5866), 1, - sym_super, - ACTIONS(6539), 1, - sym_identifier, + ACTIONS(4892), 1, + anon_sym_LBRACE, + STATE(616), 1, + sym_field_declaration_list, STATE(3092), 2, sym_line_comment, sym_block_comment, - [88915] = 5, + [88931] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6535), 1, - anon_sym_RPAREN, - ACTIONS(6541), 1, - anon_sym_COLON_COLON, + ACTIONS(6543), 1, + anon_sym_LBRACK, + ACTIONS(6545), 1, + anon_sym_BANG, STATE(3093), 2, sym_line_comment, sym_block_comment, - [88932] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, + [88948] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(224), 1, - sym_closure_parameters, + ACTIONS(5630), 1, + sym_identifier, + ACTIONS(5632), 1, + sym_super, STATE(3094), 2, sym_line_comment, sym_block_comment, - [88949] = 5, + [88965] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4537), 1, - anon_sym_COLON_COLON, - ACTIONS(6366), 1, - anon_sym_for, + ACTIONS(5799), 2, + sym_identifier, + sym_super, STATE(3095), 2, sym_line_comment, sym_block_comment, - [88966] = 5, + [88980] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5546), 1, - sym_super, - ACTIONS(6543), 1, + ACTIONS(6547), 1, sym_identifier, + ACTIONS(6549), 1, + sym_super, STATE(3096), 2, sym_line_comment, sym_block_comment, - [88983] = 5, + [88997] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4870), 1, - anon_sym_LBRACE, - STATE(750), 1, - sym_field_declaration_list, + ACTIONS(6551), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(3097), 2, sym_line_comment, sym_block_comment, - [89000] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, + [89012] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(231), 1, - sym_closure_parameters, + ACTIONS(4973), 1, + anon_sym_COLON, + STATE(2577), 1, + sym_trait_bounds, STATE(3098), 2, sym_line_comment, sym_block_comment, - [89017] = 5, + [89029] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4878), 1, - anon_sym_LBRACE, - STATE(512), 1, - sym_declaration_list, + ACTIONS(6511), 1, + sym_identifier, + ACTIONS(6553), 1, + sym_super, STATE(3099), 2, sym_line_comment, sym_block_comment, - [89034] = 5, + [89046] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3969), 1, - anon_sym_LBRACE, - STATE(1651), 1, - sym_field_initializer_list, + ACTIONS(6555), 1, + anon_sym_LPAREN, + ACTIONS(6557), 1, + anon_sym_COLON_COLON, STATE(3100), 2, sym_line_comment, sym_block_comment, - [89051] = 5, + [89063] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, - anon_sym_LPAREN, - STATE(1960), 1, - sym_parameters, + ACTIONS(5151), 1, + sym_super, + ACTIONS(5634), 1, + sym_identifier, STATE(3101), 2, sym_line_comment, sym_block_comment, - [89068] = 5, + [89080] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5866), 1, - sym_super, - ACTIONS(6533), 1, - sym_identifier, + ACTIONS(6559), 2, + sym__block_comment_content, + anon_sym_STAR_SLASH, STATE(3102), 2, sym_line_comment, sym_block_comment, - [89085] = 5, + [89095] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6545), 1, - anon_sym_RPAREN, - ACTIONS(6547), 1, - anon_sym_COLON_COLON, + ACTIONS(6561), 1, + sym_identifier, + ACTIONS(6563), 1, + sym_super, STATE(3103), 2, sym_line_comment, sym_block_comment, - [89102] = 5, + [89112] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6537), 1, - anon_sym_COLON_COLON, - ACTIONS(6549), 1, - anon_sym_RPAREN, + ACTIONS(6565), 1, + anon_sym_SEMI, + ACTIONS(6567), 1, + anon_sym_as, STATE(3104), 2, sym_line_comment, sym_block_comment, - [89119] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, + [89129] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(232), 1, - sym_closure_parameters, + ACTIONS(5373), 1, + anon_sym_PIPE, + ACTIONS(6569), 1, + anon_sym_in, STATE(3105), 2, sym_line_comment, sym_block_comment, - [89136] = 5, + [89146] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6541), 1, - anon_sym_COLON_COLON, - ACTIONS(6549), 1, - anon_sym_RPAREN, + ACTIONS(6571), 2, + sym__block_comment_content, + anon_sym_STAR_SLASH, STATE(3106), 2, sym_line_comment, sym_block_comment, - [89153] = 5, + [89161] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6549), 1, - anon_sym_RPAREN, - ACTIONS(6551), 1, - anon_sym_COLON_COLON, + ACTIONS(4894), 1, + anon_sym_LT, + STATE(877), 1, + sym_type_parameters, STATE(3107), 2, sym_line_comment, sym_block_comment, - [89170] = 5, + [89178] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4607), 1, - anon_sym_BANG, - ACTIONS(4694), 1, - anon_sym_COLON_COLON, + ACTIONS(6573), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(3108), 2, sym_line_comment, sym_block_comment, - [89187] = 4, + [89193] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5724), 2, - sym_identifier, - sym_super, + ACTIONS(2961), 1, + anon_sym_SQUOTE, + STATE(3230), 1, + sym_lifetime, STATE(3109), 2, sym_line_comment, sym_block_comment, - [89202] = 5, + [89210] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6517), 1, - sym_super, - ACTIONS(6553), 1, - sym_identifier, + ACTIONS(4945), 1, + anon_sym_LBRACE, + STATE(1378), 1, + sym_field_declaration_list, STATE(3110), 2, sym_line_comment, sym_block_comment, - [89219] = 5, + [89227] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5103), 1, - sym_super, - ACTIONS(5651), 1, - sym_identifier, + ACTIONS(6575), 1, + anon_sym_LT, + STATE(915), 1, + sym_type_parameters, STATE(3111), 2, sym_line_comment, sym_block_comment, - [89236] = 5, + [89244] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6521), 1, - sym_super, - ACTIONS(6555), 1, - sym_identifier, + ACTIONS(3941), 1, + anon_sym_LPAREN, + STATE(1607), 1, + sym_parameters, STATE(3112), 2, sym_line_comment, sym_block_comment, - [89253] = 5, + [89261] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6557), 1, - anon_sym_LPAREN, - ACTIONS(6559), 1, - anon_sym_COLON_COLON, + ACTIONS(6577), 1, + anon_sym_STAR_SLASH, + ACTIONS(6579), 1, + sym__block_comment_content, STATE(3113), 2, sym_line_comment, sym_block_comment, - [89270] = 5, + [89278] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4870), 1, + ACTIONS(4945), 1, anon_sym_LBRACE, - STATE(684), 1, + STATE(1380), 1, sym_field_declaration_list, STATE(3114), 2, sym_line_comment, sym_block_comment, - [89287] = 5, + [89295] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4891), 1, - anon_sym_LBRACE, - STATE(1341), 1, - sym_field_declaration_list, + ACTIONS(6555), 1, + anon_sym_LPAREN, + ACTIONS(6581), 1, + anon_sym_COLON_COLON, STATE(3115), 2, sym_line_comment, sym_block_comment, - [89304] = 5, + [89312] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, - anon_sym_LBRACE, - STATE(1342), 1, - sym_declaration_list, + ACTIONS(6583), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(3116), 2, sym_line_comment, sym_block_comment, - [89321] = 5, + [89327] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, - anon_sym_LBRACE, - STATE(1343), 1, - sym_declaration_list, + ACTIONS(5712), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(3117), 2, sym_line_comment, sym_block_comment, - [89338] = 5, + [89342] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6561), 1, - anon_sym_SEMI, - ACTIONS(6563), 1, - anon_sym_as, + ACTIONS(6585), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(3118), 2, sym_line_comment, sym_block_comment, - [89355] = 5, + [89357] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4891), 1, + ACTIONS(5285), 1, anon_sym_LBRACE, - STATE(1349), 1, - sym_field_declaration_list, + STATE(1390), 1, + sym_enum_variant_list, STATE(3119), 2, sym_line_comment, sym_block_comment, - [89372] = 4, + [89374] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5759), 2, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(6587), 2, + sym_identifier, + sym_super, STATE(3120), 2, sym_line_comment, sym_block_comment, - [89387] = 5, + [89389] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6565), 1, - anon_sym_LBRACK, - ACTIONS(6567), 1, - anon_sym_BANG, + ACTIONS(5773), 1, + sym_super, + ACTIONS(6589), 1, + sym_identifier, STATE(3121), 2, sym_line_comment, sym_block_comment, - [89404] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, + [89406] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(239), 1, - sym_closure_parameters, + ACTIONS(5477), 1, + sym_super, + ACTIONS(6591), 1, + sym_identifier, STATE(3122), 2, sym_line_comment, sym_block_comment, - [89421] = 5, + [89423] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, - anon_sym_LBRACE, - STATE(1355), 1, - sym_declaration_list, + ACTIONS(6593), 2, + sym_float_literal, + sym_integer_literal, STATE(3123), 2, sym_line_comment, sym_block_comment, @@ -181085,10 +181093,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5546), 1, - sym_super, - ACTIONS(6569), 1, + ACTIONS(6595), 1, sym_identifier, + ACTIONS(6597), 1, + sym_super, STATE(3124), 2, sym_line_comment, sym_block_comment, @@ -181097,10 +181105,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6487), 1, - sym_super, - ACTIONS(6571), 1, - sym_identifier, + ACTIONS(3649), 1, + anon_sym_COLON, + ACTIONS(5298), 1, + anon_sym_PLUS, STATE(3125), 2, sym_line_comment, sym_block_comment, @@ -181109,69 +181117,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5546), 1, - sym_super, - ACTIONS(6573), 1, - sym_identifier, + ACTIONS(6575), 1, + anon_sym_LT, + STATE(1083), 1, + sym_type_parameters, STATE(3126), 2, sym_line_comment, sym_block_comment, [89489] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(241), 1, - sym_closure_parameters, + ACTIONS(4884), 1, + anon_sym_LBRACE, + STATE(1460), 1, + sym_declaration_list, STATE(3127), 2, sym_line_comment, sym_block_comment, - [89506] = 5, + [89506] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4870), 1, - anon_sym_LBRACE, - STATE(675), 1, - sym_field_declaration_list, + ACTIONS(6553), 2, + sym_identifier, + sym_super, STATE(3128), 2, sym_line_comment, sym_block_comment, - [89523] = 5, + [89521] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5235), 1, - anon_sym_LBRACE, - STATE(1360), 1, - sym_enum_variant_list, + ACTIONS(4443), 1, + anon_sym_LPAREN, + STATE(1943), 1, + sym_parameters, STATE(3129), 2, sym_line_comment, sym_block_comment, - [89540] = 5, + [89538] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6529), 1, - sym_super, - ACTIONS(6575), 1, - sym_identifier, + ACTIONS(6599), 1, + anon_sym_BANG, + ACTIONS(6601), 1, + anon_sym_COLON_COLON, STATE(3130), 2, sym_line_comment, sym_block_comment, - [89557] = 4, + [89555] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6577), 2, - sym_float_literal, - sym_integer_literal, + ACTIONS(4884), 1, + anon_sym_LBRACE, + STATE(1463), 1, + sym_declaration_list, STATE(3131), 2, sym_line_comment, sym_block_comment, @@ -181180,10 +181188,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5604), 1, - sym_super, - ACTIONS(5769), 1, - sym_identifier, + ACTIONS(3967), 1, + anon_sym_LBRACE, + STATE(1751), 1, + sym_field_initializer_list, STATE(3132), 2, sym_line_comment, sym_block_comment, @@ -181192,10 +181200,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6579), 1, - sym_identifier, - ACTIONS(6581), 1, - sym_super, + ACTIONS(4983), 1, + anon_sym_PLUS, + ACTIONS(6603), 1, + anon_sym_GT, STATE(3133), 2, sym_line_comment, sym_block_comment, @@ -181204,10 +181212,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6487), 1, - sym_super, - ACTIONS(6507), 1, - sym_identifier, + ACTIONS(3941), 1, + anon_sym_LPAREN, + STATE(1621), 1, + sym_parameters, STATE(3134), 2, sym_line_comment, sym_block_comment, @@ -181216,9 +181224,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5866), 2, - sym_identifier, - sym_super, + ACTIONS(6605), 2, + anon_sym_const, + sym_mutable_specifier, STATE(3135), 2, sym_line_comment, sym_block_comment, @@ -181227,10 +181235,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4891), 1, - anon_sym_LBRACE, - STATE(1363), 1, - sym_field_declaration_list, + ACTIONS(6607), 1, + anon_sym_LPAREN, + ACTIONS(6609), 1, + anon_sym_COLON_COLON, STATE(3136), 2, sym_line_comment, sym_block_comment, @@ -181239,104 +181247,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4891), 1, - anon_sym_LBRACE, - STATE(1370), 1, - sym_field_declaration_list, + ACTIONS(5371), 1, + anon_sym_COLON, + ACTIONS(5373), 1, + anon_sym_PIPE, STATE(3137), 2, sym_line_comment, sym_block_comment, - [89672] = 4, + [89672] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6583), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(4884), 1, + anon_sym_LBRACE, + STATE(1426), 1, + sym_declaration_list, STATE(3138), 2, sym_line_comment, sym_block_comment, - [89687] = 5, + [89689] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6585), 1, - anon_sym_SEMI, - ACTIONS(6587), 1, - anon_sym_as, + ACTIONS(4878), 1, + anon_sym_LBRACE, + STATE(493), 1, + sym_declaration_list, STATE(3139), 2, sym_line_comment, sym_block_comment, - [89704] = 5, + [89706] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6589), 1, - sym_identifier, - ACTIONS(6591), 1, - sym_mutable_specifier, + ACTIONS(6611), 1, + anon_sym_SEMI, + ACTIONS(6613), 1, + anon_sym_RPAREN, STATE(3140), 2, sym_line_comment, sym_block_comment, - [89721] = 5, + [89723] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5147), 1, - anon_sym_RBRACK, - ACTIONS(6501), 1, - anon_sym_SEMI, + ACTIONS(4443), 1, + anon_sym_LPAREN, + STATE(1939), 1, + sym_parameters, STATE(3141), 2, sym_line_comment, sym_block_comment, - [89738] = 5, + [89740] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6487), 1, - sym_super, - ACTIONS(6593), 1, - sym_identifier, + ACTIONS(4878), 1, + anon_sym_LBRACE, + STATE(494), 1, + sym_declaration_list, STATE(3142), 2, sym_line_comment, sym_block_comment, - [89755] = 4, + [89757] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6595), 2, - anon_sym_const, - sym_mutable_specifier, + ACTIONS(6615), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(3143), 2, sym_line_comment, sym_block_comment, - [89770] = 5, + [89772] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4870), 1, - anon_sym_LBRACE, - STATE(726), 1, - sym_field_declaration_list, + ACTIONS(6611), 1, + anon_sym_SEMI, + ACTIONS(6613), 1, + anon_sym_RBRACK, STATE(3144), 2, sym_line_comment, sym_block_comment, - [89787] = 5, + [89789] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6517), 1, - sym_super, - ACTIONS(6597), 1, - sym_identifier, + ACTIONS(6014), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(3145), 2, sym_line_comment, sym_block_comment, @@ -181345,10 +181353,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5604), 1, - sym_super, - ACTIONS(5779), 1, - sym_identifier, + ACTIONS(4445), 1, + anon_sym_BANG, + ACTIONS(6617), 1, + anon_sym_COLON_COLON, STATE(3146), 2, sym_line_comment, sym_block_comment, @@ -181357,45 +181365,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6581), 1, - sym_super, - ACTIONS(6599), 1, - sym_identifier, + ACTIONS(6611), 1, + anon_sym_SEMI, + ACTIONS(6619), 1, + anon_sym_RBRACE, STATE(3147), 2, sym_line_comment, sym_block_comment, - [89838] = 4, + [89838] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5309), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(5477), 1, + sym_super, + ACTIONS(6621), 1, + sym_identifier, STATE(3148), 2, sym_line_comment, sym_block_comment, - [89853] = 5, + [89855] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3243), 1, - anon_sym_LPAREN, - STATE(1060), 1, - sym_parameters, + ACTIONS(4878), 1, + anon_sym_LBRACE, + STATE(503), 1, + sym_declaration_list, STATE(3149), 2, sym_line_comment, sym_block_comment, - [89870] = 5, + [89872] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5157), 1, - anon_sym_RBRACE, - ACTIONS(6501), 1, - anon_sym_SEMI, + ACTIONS(3819), 2, + anon_sym_LPAREN, + anon_sym_COLON_COLON, STATE(3150), 2, sym_line_comment, sym_block_comment, @@ -181404,10 +181412,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6501), 1, + ACTIONS(6611), 1, anon_sym_SEMI, - ACTIONS(6601), 1, - anon_sym_RBRACE, + ACTIONS(6623), 1, + anon_sym_RPAREN, STATE(3151), 2, sym_line_comment, sym_block_comment, @@ -181416,611 +181424,611 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3251), 1, - anon_sym_LT2, - STATE(1183), 1, - sym_type_arguments, + ACTIONS(6611), 1, + anon_sym_SEMI, + ACTIONS(6623), 1, + anon_sym_RBRACK, STATE(3152), 2, sym_line_comment, sym_block_comment, - [89921] = 5, + [89921] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4445), 1, - anon_sym_BANG, - ACTIONS(6603), 1, - anon_sym_COLON_COLON, + ACTIONS(6625), 2, + sym_float_literal, + sym_integer_literal, STATE(3153), 2, sym_line_comment, sym_block_comment, - [89938] = 5, + [89936] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5281), 1, - anon_sym_LBRACE, - STATE(659), 1, - sym_enum_variant_list, + ACTIONS(6611), 1, + anon_sym_SEMI, + ACTIONS(6627), 1, + anon_sym_RBRACE, STATE(3154), 2, sym_line_comment, sym_block_comment, - [89955] = 5, + [89953] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6501), 1, - anon_sym_SEMI, - ACTIONS(6605), 1, - anon_sym_RBRACE, + ACTIONS(6292), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(3155), 2, sym_line_comment, sym_block_comment, - [89972] = 5, + [89968] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4607), 1, - anon_sym_BANG, - ACTIONS(4668), 1, - anon_sym_COLON_COLON, + ACTIONS(6527), 1, + sym_identifier, + ACTIONS(6597), 1, + sym_super, STATE(3156), 2, sym_line_comment, sym_block_comment, - [89989] = 5, + [89985] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6607), 1, - sym_identifier, - ACTIONS(6609), 1, - sym_super, + STATE(219), 1, + sym_closure_parameters, STATE(3157), 2, sym_line_comment, sym_block_comment, - [90006] = 5, + [90002] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6517), 1, - sym_super, - ACTIONS(6611), 1, + ACTIONS(6629), 2, sym_identifier, + sym_super, STATE(3158), 2, sym_line_comment, sym_block_comment, - [90023] = 5, + [90017] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5281), 1, - anon_sym_LBRACE, - STATE(521), 1, - sym_enum_variant_list, + ACTIONS(6611), 1, + anon_sym_SEMI, + ACTIONS(6631), 1, + anon_sym_RBRACE, STATE(3159), 2, sym_line_comment, sym_block_comment, - [90040] = 5, + [90034] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5641), 1, - sym_super, - ACTIONS(5787), 1, - sym_identifier, + ACTIONS(6236), 2, + anon_sym_PIPE, + anon_sym_COMMA, STATE(3160), 2, sym_line_comment, sym_block_comment, - [90057] = 5, + [90049] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6525), 1, - sym_super, - ACTIONS(6613), 1, - sym_identifier, + ACTIONS(5373), 1, + anon_sym_PIPE, + ACTIONS(6633), 1, + anon_sym_in, STATE(3161), 2, sym_line_comment, sym_block_comment, - [90074] = 5, + [90066] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5159), 1, - anon_sym_RPAREN, - ACTIONS(6501), 1, - anon_sym_SEMI, + ACTIONS(6635), 2, + anon_sym_const, + sym_mutable_specifier, STATE(3162), 2, sym_line_comment, sym_block_comment, - [90091] = 5, + [90081] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, ACTIONS(4443), 1, anon_sym_LPAREN, - STATE(2180), 1, + STATE(2188), 1, sym_parameters, STATE(3163), 2, sym_line_comment, sym_block_comment, - [90108] = 5, + [90098] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5866), 1, - sym_super, - ACTIONS(6571), 1, - sym_identifier, + ACTIONS(3859), 2, + anon_sym_LPAREN, + anon_sym_COLON_COLON, STATE(3164), 2, sym_line_comment, sym_block_comment, - [90125] = 5, + [90113] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6517), 1, - sym_super, - ACTIONS(6543), 1, - sym_identifier, + ACTIONS(6611), 1, + anon_sym_SEMI, + ACTIONS(6637), 1, + anon_sym_RBRACE, STATE(3165), 2, sym_line_comment, sym_block_comment, - [90142] = 5, + [90130] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3731), 1, - anon_sym_COLON, - ACTIONS(5241), 1, - anon_sym_PLUS, + ACTIONS(5477), 1, + sym_super, + ACTIONS(6639), 1, + sym_identifier, STATE(3166), 2, sym_line_comment, sym_block_comment, - [90159] = 5, + [90147] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5103), 1, - sym_super, - ACTIONS(5769), 1, - sym_identifier, + ACTIONS(6124), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(3167), 2, sym_line_comment, sym_block_comment, - [90176] = 5, + [90162] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6521), 1, - sym_super, - ACTIONS(6579), 1, - sym_identifier, + ACTIONS(3243), 1, + anon_sym_LPAREN, + STATE(1066), 1, + sym_parameters, STATE(3168), 2, sym_line_comment, sym_block_comment, - [90193] = 5, + [90179] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5159), 1, - anon_sym_RBRACK, - ACTIONS(6501), 1, - anon_sym_SEMI, + ACTIONS(6057), 1, + sym_identifier, + ACTIONS(6061), 1, + sym_mutable_specifier, STATE(3169), 2, sym_line_comment, sym_block_comment, - [90210] = 5, + [90196] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6487), 1, - sym_super, - ACTIONS(6615), 1, - sym_identifier, + STATE(233), 1, + sym_closure_parameters, STATE(3170), 2, sym_line_comment, sym_block_comment, - [90227] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, + [90213] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(236), 1, - sym_closure_parameters, + ACTIONS(5139), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(3171), 2, sym_line_comment, sym_block_comment, - [90244] = 5, + [90228] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5604), 1, - sym_super, - ACTIONS(5789), 1, - sym_identifier, + ACTIONS(4892), 1, + anon_sym_LBRACE, + STATE(624), 1, + sym_field_declaration_list, STATE(3172), 2, sym_line_comment, sym_block_comment, - [90261] = 5, + [90245] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6581), 1, - sym_super, - ACTIONS(6617), 1, - sym_identifier, + STATE(218), 1, + sym_closure_parameters, STATE(3173), 2, sym_line_comment, sym_block_comment, - [90278] = 5, + [90262] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6555), 1, - sym_identifier, - ACTIONS(6581), 1, - sym_super, + ACTIONS(6641), 1, + anon_sym_SEMI, + ACTIONS(6643), 1, + anon_sym_as, STATE(3174), 2, sym_line_comment, sym_block_comment, - [90295] = 5, + [90279] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6487), 1, - sym_super, - ACTIONS(6619), 1, - sym_identifier, + ACTIONS(4945), 1, + anon_sym_LBRACE, + STATE(1123), 1, + sym_field_declaration_list, STATE(3175), 2, sym_line_comment, sym_block_comment, - [90312] = 4, + [90296] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6521), 2, - sym_identifier, - sym_super, + ACTIONS(4283), 1, + anon_sym_EQ_GT, + ACTIONS(6645), 1, + anon_sym_AMP_AMP, STATE(3176), 2, sym_line_comment, sym_block_comment, - [90327] = 5, + [90313] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5604), 1, - sym_super, - ACTIONS(5791), 1, + ACTIONS(6647), 1, sym_identifier, + ACTIONS(6649), 1, + sym_mutable_specifier, STATE(3177), 2, sym_line_comment, sym_block_comment, - [90344] = 5, + [90330] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6581), 1, + ACTIONS(5773), 1, sym_super, - ACTIONS(6621), 1, + ACTIONS(6595), 1, sym_identifier, STATE(3178), 2, sym_line_comment, sym_block_comment, - [90361] = 5, + [90347] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4181), 1, + ACTIONS(6131), 1, anon_sym_EQ_GT, - ACTIONS(6623), 1, + ACTIONS(6645), 1, anon_sym_AMP_AMP, STATE(3179), 2, sym_line_comment, sym_block_comment, - [90378] = 5, + [90364] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6487), 1, - sym_super, - ACTIONS(6625), 1, - sym_identifier, + ACTIONS(4945), 1, + anon_sym_LBRACE, + STATE(1138), 1, + sym_field_declaration_list, STATE(3180), 2, sym_line_comment, sym_block_comment, - [90395] = 5, + [90381] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6176), 1, - anon_sym_EQ_GT, - ACTIONS(6623), 1, - anon_sym_AMP_AMP, + ACTIONS(5285), 1, + anon_sym_LBRACE, + STATE(1142), 1, + sym_enum_variant_list, STATE(3181), 2, sym_line_comment, sym_block_comment, - [90412] = 5, + [90398] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5604), 1, - sym_super, - ACTIONS(5793), 1, - sym_identifier, + ACTIONS(5714), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(3182), 2, sym_line_comment, sym_block_comment, - [90429] = 5, + [90413] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6581), 1, - sym_super, - ACTIONS(6627), 1, - sym_identifier, + ACTIONS(6611), 1, + anon_sym_SEMI, + ACTIONS(6651), 1, + anon_sym_RBRACK, STATE(3183), 2, sym_line_comment, sym_block_comment, - [90446] = 4, + [90430] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6629), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + STATE(242), 1, + sym_closure_parameters, STATE(3184), 2, sym_line_comment, sym_block_comment, - [90461] = 4, + [90447] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6581), 2, - sym_identifier, - sym_super, + ACTIONS(4884), 1, + anon_sym_LBRACE, + STATE(1149), 1, + sym_declaration_list, STATE(3185), 2, sym_line_comment, sym_block_comment, - [90476] = 5, + [90464] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5103), 1, - sym_super, - ACTIONS(5793), 1, - sym_identifier, + ACTIONS(4945), 1, + anon_sym_LBRACE, + STATE(1156), 1, + sym_field_declaration_list, STATE(3186), 2, sym_line_comment, sym_block_comment, - [90493] = 5, + [90481] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6521), 1, - sym_super, - ACTIONS(6627), 1, - sym_identifier, + ACTIONS(6611), 1, + anon_sym_SEMI, + ACTIONS(6651), 1, + anon_sym_RPAREN, STATE(3187), 2, sym_line_comment, sym_block_comment, - [90510] = 5, + [90498] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5452), 1, - anon_sym_PIPE, - ACTIONS(6631), 1, - anon_sym_in, + ACTIONS(5632), 2, + sym_identifier, + sym_super, STATE(3188), 2, sym_line_comment, sym_block_comment, - [90527] = 4, + [90513] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6633), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(6611), 1, + anon_sym_SEMI, + ACTIONS(6653), 1, + anon_sym_RBRACK, STATE(3189), 2, sym_line_comment, sym_block_comment, - [90542] = 5, + [90530] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4870), 1, - anon_sym_LBRACE, - STATE(734), 1, - sym_field_declaration_list, + ACTIONS(6553), 1, + sym_super, + ACTIONS(6655), 1, + sym_identifier, STATE(3190), 2, sym_line_comment, sym_block_comment, - [90559] = 5, + [90547] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5103), 1, - sym_super, - ACTIONS(5629), 1, - sym_identifier, + ACTIONS(4884), 1, + anon_sym_LBRACE, + STATE(1165), 1, + sym_declaration_list, STATE(3191), 2, sym_line_comment, sym_block_comment, - [90576] = 5, + [90564] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5167), 1, - anon_sym_RBRACE, - ACTIONS(6501), 1, - anon_sym_SEMI, + ACTIONS(5151), 1, + sym_super, + ACTIONS(5744), 1, + sym_identifier, STATE(3192), 2, sym_line_comment, sym_block_comment, - [90593] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, + [90581] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(235), 1, - sym_closure_parameters, + ACTIONS(6563), 1, + sym_super, + ACTIONS(6657), 1, + sym_identifier, STATE(3193), 2, sym_line_comment, sym_block_comment, - [90610] = 5, + [90598] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, - anon_sym_COLON, - STATE(2604), 1, - sym_trait_bounds, + ACTIONS(4884), 1, + anon_sym_LBRACE, + STATE(1169), 1, + sym_declaration_list, STATE(3194), 2, sym_line_comment, sym_block_comment, - [90627] = 4, + [90615] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3863), 2, - anon_sym_LPAREN, - anon_sym_COLON_COLON, + ACTIONS(4945), 1, + anon_sym_LBRACE, + STATE(1173), 1, + sym_field_declaration_list, STATE(3195), 2, sym_line_comment, sym_block_comment, - [90642] = 4, + [90632] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6319), 2, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(6611), 1, + anon_sym_SEMI, + ACTIONS(6653), 1, + anon_sym_RPAREN, STATE(3196), 2, sym_line_comment, sym_block_comment, - [90657] = 4, + [90649] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6105), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + STATE(235), 1, + sym_closure_parameters, STATE(3197), 2, sym_line_comment, sym_block_comment, - [90672] = 5, + [90666] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6557), 1, + ACTIONS(4443), 1, anon_sym_LPAREN, - ACTIONS(6635), 1, - anon_sym_COLON_COLON, + STATE(2196), 1, + sym_parameters, STATE(3198), 2, sym_line_comment, sym_block_comment, - [90689] = 4, + [90683] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6637), 2, + ACTIONS(5151), 1, + sym_super, + ACTIONS(5793), 1, sym_identifier, - sym_metavariable, STATE(3199), 2, sym_line_comment, sym_block_comment, - [90704] = 4, + [90700] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6639), 2, - anon_sym_const, - sym_mutable_specifier, + ACTIONS(5791), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(3200), 2, sym_line_comment, sym_block_comment, - [90719] = 4, + [90715] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6236), 2, - anon_sym_PIPE, - anon_sym_COMMA, + ACTIONS(6483), 1, + anon_sym_COLON_COLON, + ACTIONS(6659), 1, + anon_sym_RPAREN, STATE(3201), 2, sym_line_comment, sym_block_comment, - [90734] = 5, + [90732] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6641), 1, - anon_sym_BANG, - ACTIONS(6643), 1, + ACTIONS(6491), 1, anon_sym_COLON_COLON, + ACTIONS(6659), 1, + anon_sym_RPAREN, STATE(3202), 2, sym_line_comment, sym_block_comment, - [90751] = 4, + [90749] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5151), 2, + ACTIONS(6493), 1, + anon_sym_COLON_COLON, + ACTIONS(6659), 1, anon_sym_RPAREN, - anon_sym_COMMA, STATE(3203), 2, sym_line_comment, sym_block_comment, @@ -182029,45 +182037,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5103), 1, - sym_super, - ACTIONS(5588), 1, - sym_identifier, + ACTIONS(5137), 1, + anon_sym_RBRACE, + ACTIONS(6611), 1, + anon_sym_SEMI, STATE(3204), 2, sym_line_comment, sym_block_comment, - [90783] = 4, + [90783] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5604), 2, - sym_identifier, - sym_super, + ACTIONS(5127), 1, + anon_sym_RBRACK, + ACTIONS(6611), 1, + anon_sym_SEMI, STATE(3205), 2, sym_line_comment, sym_block_comment, - [90798] = 5, + [90800] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6521), 1, - sym_super, - ACTIONS(6645), 1, - sym_identifier, + ACTIONS(5127), 1, + anon_sym_RPAREN, + ACTIONS(6611), 1, + anon_sym_SEMI, STATE(3206), 2, sym_line_comment, sym_block_comment, - [90815] = 5, + [90817] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, - anon_sym_LPAREN, - STATE(1963), 1, - sym_parameters, + ACTIONS(5650), 2, + sym_identifier, + sym_super, STATE(3207), 2, sym_line_comment, sym_block_comment, @@ -182076,10 +182084,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4878), 1, - anon_sym_LBRACE, - STATE(678), 1, - sym_declaration_list, + ACTIONS(5151), 1, + sym_super, + ACTIONS(5797), 1, + sym_identifier, STATE(3208), 2, sym_line_comment, sym_block_comment, @@ -182088,10 +182096,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6535), 1, - anon_sym_RPAREN, - ACTIONS(6551), 1, - anon_sym_COLON_COLON, + ACTIONS(5125), 1, + anon_sym_RBRACE, + ACTIONS(6611), 1, + anon_sym_SEMI, STATE(3209), 2, sym_line_comment, sym_block_comment, @@ -182100,10 +182108,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4878), 1, - anon_sym_LBRACE, - STATE(727), 1, - sym_declaration_list, + ACTIONS(5121), 1, + anon_sym_RBRACK, + ACTIONS(6611), 1, + anon_sym_SEMI, STATE(3210), 2, sym_line_comment, sym_block_comment, @@ -182112,10 +182120,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6511), 1, - anon_sym_LT, - STATE(1074), 1, - sym_type_parameters, + ACTIONS(6499), 1, + anon_sym_COLON_COLON, + ACTIONS(6661), 1, + anon_sym_RPAREN, STATE(3211), 2, sym_line_comment, sym_block_comment, @@ -182124,507 +182132,507 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5452), 1, - anon_sym_PIPE, - ACTIONS(6647), 1, - anon_sym_EQ, + ACTIONS(6563), 1, + sym_super, + ACTIONS(6663), 1, + sym_identifier, STATE(3212), 2, sym_line_comment, sym_block_comment, - [90917] = 5, + [90917] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3945), 1, - anon_sym_LT2, - STATE(1668), 1, - sym_type_arguments, + ACTIONS(6665), 2, + sym_identifier, + sym_metavariable, STATE(3213), 2, sym_line_comment, sym_block_comment, - [90934] = 5, + [90932] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, - anon_sym_LPAREN, - STATE(2215), 1, - sym_parameters, + ACTIONS(5121), 1, + anon_sym_RPAREN, + ACTIONS(6611), 1, + anon_sym_SEMI, STATE(3214), 2, sym_line_comment, sym_block_comment, - [90951] = 5, + [90949] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, - anon_sym_LBRACE, - STATE(1416), 1, - sym_declaration_list, + ACTIONS(3947), 1, + anon_sym_LT2, + STATE(1820), 1, + sym_type_arguments, STATE(3215), 2, sym_line_comment, sym_block_comment, - [90968] = 5, + [90966] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3325), 1, - anon_sym_LBRACE, - STATE(1208), 1, - sym_field_initializer_list, + STATE(232), 1, + sym_closure_parameters, STATE(3216), 2, sym_line_comment, sym_block_comment, - [90985] = 4, + [90983] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3827), 2, - anon_sym_LPAREN, - anon_sym_COLON_COLON, + ACTIONS(5151), 2, + sym_identifier, + sym_super, STATE(3217), 2, sym_line_comment, sym_block_comment, - [91000] = 5, + [90998] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4878), 1, - anon_sym_LBRACE, - STATE(728), 1, - sym_declaration_list, + ACTIONS(6563), 1, + sym_super, + ACTIONS(6667), 1, + sym_identifier, STATE(3218), 2, sym_line_comment, sym_block_comment, - [91017] = 5, + [91015] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, - anon_sym_LBRACE, - STATE(1424), 1, - sym_declaration_list, + ACTIONS(6555), 1, + anon_sym_LPAREN, + ACTIONS(6669), 1, + anon_sym_COLON_COLON, STATE(3219), 2, sym_line_comment, sym_block_comment, - [91034] = 5, + [91032] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, - anon_sym_LBRACE, - STATE(1425), 1, - sym_declaration_list, + ACTIONS(3251), 1, + anon_sym_LT2, + STATE(1420), 1, + sym_type_arguments, STATE(3220), 2, sym_line_comment, sym_block_comment, - [91051] = 5, + [91049] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4878), 1, - anon_sym_LBRACE, - STATE(572), 1, - sym_declaration_list, + ACTIONS(5149), 1, + anon_sym_RBRACK, + ACTIONS(6611), 1, + anon_sym_SEMI, STATE(3221), 2, sym_line_comment, sym_block_comment, - [91068] = 5, + [91066] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5199), 1, + ACTIONS(5149), 1, anon_sym_RPAREN, - ACTIONS(6501), 1, + ACTIONS(6611), 1, anon_sym_SEMI, STATE(3222), 2, sym_line_comment, sym_block_comment, - [91085] = 5, + [91083] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5199), 1, - anon_sym_RBRACK, - ACTIONS(6501), 1, - anon_sym_SEMI, + ACTIONS(6597), 1, + sym_super, + ACTIONS(6671), 1, + sym_identifier, STATE(3223), 2, sym_line_comment, sym_block_comment, - [91102] = 5, + [91100] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6501), 1, + ACTIONS(5191), 1, + anon_sym_RBRACK, + ACTIONS(6611), 1, anon_sym_SEMI, - ACTIONS(6649), 1, - anon_sym_RPAREN, STATE(3224), 2, sym_line_comment, sym_block_comment, - [91119] = 5, + [91117] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5201), 1, - anon_sym_RPAREN, - ACTIONS(6501), 1, - anon_sym_SEMI, + STATE(221), 1, + sym_closure_parameters, STATE(3225), 2, sym_line_comment, sym_block_comment, - [91136] = 5, + [91134] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5201), 1, - anon_sym_RBRACK, - ACTIONS(6501), 1, - anon_sym_SEMI, + ACTIONS(5285), 1, + anon_sym_LBRACE, + STATE(1259), 1, + sym_enum_variant_list, STATE(3226), 2, sym_line_comment, sym_block_comment, - [91153] = 5, + [91151] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4537), 1, - anon_sym_COLON_COLON, - ACTIONS(4887), 1, - anon_sym_for, + ACTIONS(5191), 1, + anon_sym_RPAREN, + ACTIONS(6611), 1, + anon_sym_SEMI, STATE(3227), 2, sym_line_comment, sym_block_comment, - [91170] = 5, + [91168] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, - anon_sym_LPAREN, - STATE(2194), 1, - sym_parameters, + ACTIONS(6529), 1, + sym_identifier, + ACTIONS(6553), 1, + sym_super, STATE(3228), 2, sym_line_comment, sym_block_comment, - [91187] = 5, + [91185] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5235), 1, - anon_sym_LBRACE, - STATE(1433), 1, - sym_enum_variant_list, + ACTIONS(6629), 1, + sym_super, + ACTIONS(6673), 1, + sym_identifier, STATE(3229), 2, sym_line_comment, sym_block_comment, - [91204] = 5, + [91202] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4878), 1, - anon_sym_LBRACE, - STATE(620), 1, - sym_declaration_list, + ACTIONS(6005), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(3230), 2, sym_line_comment, sym_block_comment, - [91221] = 5, + [91217] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4891), 1, - anon_sym_LBRACE, - STATE(1436), 1, - sym_field_declaration_list, + ACTIONS(5650), 1, + sym_super, + ACTIONS(5795), 1, + sym_identifier, STATE(3231), 2, sym_line_comment, sym_block_comment, - [91238] = 4, + [91234] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6458), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(6675), 1, + sym_identifier, + ACTIONS(6677), 1, + sym_super, STATE(3232), 2, sym_line_comment, sym_block_comment, - [91253] = 5, + [91251] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4891), 1, - anon_sym_LBRACE, - STATE(1438), 1, - sym_field_declaration_list, + ACTIONS(5634), 1, + sym_identifier, + ACTIONS(5650), 1, + sym_super, STATE(3233), 2, sym_line_comment, sym_block_comment, - [91270] = 5, + [91268] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, - anon_sym_LBRACE, - STATE(1440), 1, - sym_declaration_list, + ACTIONS(6515), 1, + sym_identifier, + ACTIONS(6553), 1, + sym_super, STATE(3234), 2, sym_line_comment, sym_block_comment, - [91287] = 4, + [91285] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5103), 2, + ACTIONS(6679), 2, sym_identifier, - sym_super, + sym_metavariable, STATE(3235), 2, sym_line_comment, sym_block_comment, - [91302] = 5, + [91300] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(6521), 1, - sym_super, - ACTIONS(6651), 1, - sym_identifier, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(4892), 1, + anon_sym_LBRACE, + STATE(654), 1, + sym_field_declaration_list, STATE(3236), 2, sym_line_comment, sym_block_comment, - [91319] = 5, + [91317] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, - anon_sym_LPAREN, - STATE(2202), 1, - sym_parameters, + ACTIONS(6681), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(3237), 2, sym_line_comment, sym_block_comment, - [91336] = 4, + [91332] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6653), 2, + ACTIONS(6561), 1, sym_identifier, - sym_metavariable, + ACTIONS(6677), 1, + sym_super, STATE(3238), 2, sym_line_comment, sym_block_comment, - [91351] = 5, + [91349] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6517), 1, - sym_super, - ACTIONS(6573), 1, - sym_identifier, + ACTIONS(3243), 1, + anon_sym_LPAREN, + STATE(1052), 1, + sym_parameters, STATE(3239), 2, sym_line_comment, sym_block_comment, - [91368] = 5, + [91366] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6511), 1, - anon_sym_LT, - STATE(859), 1, - sym_type_parameters, + ACTIONS(6683), 1, + sym_identifier, + ACTIONS(6685), 1, + sym_mutable_specifier, STATE(3240), 2, sym_line_comment, sym_block_comment, - [91385] = 5, + [91383] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6501), 1, - anon_sym_SEMI, - ACTIONS(6655), 1, - anon_sym_RPAREN, + ACTIONS(5650), 1, + sym_super, + ACTIONS(5744), 1, + sym_identifier, STATE(3241), 2, sym_line_comment, sym_block_comment, - [91402] = 5, + [91400] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6501), 1, - anon_sym_SEMI, - ACTIONS(6655), 1, - anon_sym_RBRACK, + ACTIONS(5273), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(3242), 2, sym_line_comment, sym_block_comment, - [91419] = 5, + [91415] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6501), 1, - anon_sym_SEMI, - ACTIONS(6657), 1, - anon_sym_RPAREN, + ACTIONS(4594), 1, + anon_sym_BANG, + ACTIONS(4684), 1, + anon_sym_COLON_COLON, STATE(3243), 2, sym_line_comment, sym_block_comment, - [91436] = 5, + [91432] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6501), 1, - anon_sym_SEMI, - ACTIONS(6657), 1, - anon_sym_RBRACK, + ACTIONS(4594), 1, + anon_sym_BANG, + ACTIONS(4672), 1, + anon_sym_COLON_COLON, STATE(3244), 2, sym_line_comment, sym_block_comment, - [91453] = 5, + [91449] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6501), 1, - anon_sym_SEMI, - ACTIONS(6649), 1, - anon_sym_RBRACK, + ACTIONS(4443), 1, + anon_sym_LPAREN, + STATE(2215), 1, + sym_parameters, STATE(3245), 2, sym_line_comment, sym_block_comment, - [91470] = 5, + [91466] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6659), 1, - sym_identifier, - ACTIONS(6661), 1, - sym_mutable_specifier, + ACTIONS(4878), 1, + anon_sym_LBRACE, + STATE(727), 1, + sym_declaration_list, STATE(3246), 2, sym_line_comment, sym_block_comment, - [91487] = 5, + [91483] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5602), 1, + ACTIONS(6657), 1, sym_identifier, - ACTIONS(5604), 1, + ACTIONS(6677), 1, sym_super, STATE(3247), 2, sym_line_comment, sym_block_comment, - [91504] = 5, + [91500] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6501), 1, - anon_sym_SEMI, - ACTIONS(6663), 1, - anon_sym_RBRACE, + ACTIONS(6575), 1, + anon_sym_LT, + STATE(1086), 1, + sym_type_parameters, STATE(3248), 2, sym_line_comment, sym_block_comment, - [91521] = 5, + [91517] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6519), 1, - sym_identifier, - ACTIONS(6581), 1, - sym_super, + ACTIONS(5860), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(3249), 2, sym_line_comment, sym_block_comment, - [91538] = 4, + [91532] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6665), 2, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(6597), 1, + sym_super, + ACTIONS(6687), 1, + sym_identifier, STATE(3250), 2, sym_line_comment, sym_block_comment, - [91553] = 5, + [91549] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4870), 1, - anon_sym_LBRACE, - STATE(524), 1, - sym_field_declaration_list, + ACTIONS(2961), 1, + anon_sym_SQUOTE, + STATE(2932), 1, + sym_lifetime, STATE(3251), 2, sym_line_comment, sym_block_comment, - [91570] = 4, + [91566] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6667), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(3243), 1, + anon_sym_LPAREN, + STATE(1080), 1, + sym_parameters, STATE(3252), 2, sym_line_comment, sym_block_comment, - [91585] = 5, + [91583] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, - anon_sym_LPAREN, - STATE(2227), 1, - sym_parameters, + ACTIONS(6553), 1, + sym_super, + ACTIONS(6689), 1, + sym_identifier, STATE(3253), 2, sym_line_comment, sym_block_comment, - [91602] = 4, + [91600] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6669), 2, - anon_sym_const, - sym_mutable_specifier, + ACTIONS(6575), 1, + anon_sym_LT, + STATE(910), 1, + sym_type_parameters, STATE(3254), 2, sym_line_comment, sym_block_comment, @@ -182633,33 +182641,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5281), 1, - anon_sym_LBRACE, - STATE(744), 1, - sym_enum_variant_list, + ACTIONS(5650), 1, + sym_super, + ACTIONS(5819), 1, + sym_identifier, STATE(3255), 2, sym_line_comment, sym_block_comment, - [91634] = 4, + [91634] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6022), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(6677), 1, + sym_super, + ACTIONS(6691), 1, + sym_identifier, STATE(3256), 2, sym_line_comment, sym_block_comment, - [91649] = 5, + [91651] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4878), 1, - anon_sym_LBRACE, - STATE(739), 1, - sym_declaration_list, + ACTIONS(6693), 2, + sym_identifier, + sym_super, STATE(3257), 2, sym_line_comment, sym_block_comment, @@ -182668,10 +182676,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6511), 1, - anon_sym_LT, - STATE(897), 1, - sym_type_parameters, + ACTIONS(4443), 1, + anon_sym_LPAREN, + STATE(1958), 1, + sym_parameters, STATE(3258), 2, sym_line_comment, sym_block_comment, @@ -182680,10 +182688,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3243), 1, - anon_sym_LPAREN, - STATE(1083), 1, - sym_parameters, + ACTIONS(6575), 1, + anon_sym_LT, + STATE(1077), 1, + sym_type_parameters, STATE(3259), 2, sym_line_comment, sym_block_comment, @@ -182692,9 +182700,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5546), 2, - sym_identifier, - sym_super, + ACTIONS(5931), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(3260), 2, sym_line_comment, sym_block_comment, @@ -182703,7 +182711,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6609), 2, + ACTIONS(6597), 2, sym_identifier, sym_super, STATE(3261), 2, @@ -182714,33 +182722,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6671), 1, - anon_sym_LPAREN, - ACTIONS(6673), 1, + ACTIONS(4533), 1, anon_sym_COLON_COLON, + ACTIONS(5995), 1, + anon_sym_for, STATE(3262), 2, sym_line_comment, sym_block_comment, - [91747] = 4, + [91747] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6675), 2, - sym_float_literal, - sym_integer_literal, + ACTIONS(6695), 1, + anon_sym_SEMI, + ACTIONS(6697), 1, + anon_sym_as, STATE(3263), 2, sym_line_comment, sym_block_comment, - [91762] = 5, + [91764] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6677), 1, - anon_sym_BANG, - ACTIONS(6679), 1, - anon_sym_COLON_COLON, + ACTIONS(6563), 2, + sym_identifier, + sym_super, STATE(3264), 2, sym_line_comment, sym_block_comment, @@ -182749,10 +182757,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6681), 1, - anon_sym_STAR_SLASH, - ACTIONS(6683), 1, - sym__block_comment_content, + ACTIONS(5285), 1, + anon_sym_LBRACE, + STATE(1363), 1, + sym_enum_variant_list, STATE(3265), 2, sym_line_comment, sym_block_comment, @@ -182761,10 +182769,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6511), 1, - anon_sym_LT, - STATE(1068), 1, - sym_type_parameters, + ACTIONS(4878), 1, + anon_sym_LBRACE, + STATE(696), 1, + sym_declaration_list, STATE(3266), 2, sym_line_comment, sym_block_comment, @@ -182773,295 +182781,295 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5452), 1, - anon_sym_PIPE, - ACTIONS(6685), 1, - anon_sym_in, + ACTIONS(5269), 1, + anon_sym_LBRACE, + STATE(738), 1, + sym_enum_variant_list, STATE(3267), 2, sym_line_comment, sym_block_comment, - [91830] = 5, + [91830] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5452), 1, - anon_sym_PIPE, - ACTIONS(5510), 1, - anon_sym_COLON, + ACTIONS(5976), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(3268), 2, sym_line_comment, sym_block_comment, - [91847] = 5, + [91845] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5235), 1, - anon_sym_LBRACE, - STATE(1233), 1, - sym_enum_variant_list, + ACTIONS(6699), 1, + anon_sym_BANG, + ACTIONS(6701), 1, + anon_sym_COLON_COLON, STATE(3269), 2, sym_line_comment, sym_block_comment, - [91864] = 5, + [91862] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6517), 1, - sym_super, - ACTIONS(6687), 1, - sym_identifier, + ACTIONS(5373), 1, + anon_sym_PIPE, + ACTIONS(6703), 1, + anon_sym_EQ, STATE(3270), 2, sym_line_comment, sym_block_comment, - [91881] = 5, + [91879] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, - anon_sym_LBRACE, - STATE(1111), 1, - sym_declaration_list, + ACTIONS(6693), 1, + sym_super, + ACTIONS(6705), 1, + sym_identifier, STATE(3271), 2, sym_line_comment, sym_block_comment, - [91898] = 5, + [91896] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5452), 1, - anon_sym_PIPE, - ACTIONS(6689), 1, - anon_sym_EQ, + ACTIONS(5959), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(3272), 2, sym_line_comment, sym_block_comment, - [91915] = 5, + [91911] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6557), 1, - anon_sym_LPAREN, - ACTIONS(6691), 1, - anon_sym_COLON_COLON, + ACTIONS(6553), 1, + sym_super, + ACTIONS(6707), 1, + sym_identifier, STATE(3273), 2, sym_line_comment, sym_block_comment, - [91932] = 5, + [91928] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, - anon_sym_LBRACE, - STATE(1119), 1, - sym_declaration_list, + ACTIONS(5201), 1, + anon_sym_RBRACE, + ACTIONS(6611), 1, + anon_sym_SEMI, STATE(3274), 2, sym_line_comment, sym_block_comment, - [91949] = 5, + [91945] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, - anon_sym_LBRACE, - STATE(1120), 1, - sym_declaration_list, + ACTIONS(5799), 1, + sym_super, + ACTIONS(5854), 1, + sym_identifier, STATE(3275), 2, sym_line_comment, sym_block_comment, - [91966] = 5, + [91962] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4878), 1, - anon_sym_LBRACE, - STATE(513), 1, - sym_declaration_list, + ACTIONS(6587), 1, + sym_super, + ACTIONS(6709), 1, + sym_identifier, STATE(3276), 2, sym_line_comment, sym_block_comment, - [91983] = 5, + [91979] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(6693), 1, - anon_sym_GT, + ACTIONS(6711), 2, + anon_sym_const, + sym_mutable_specifier, STATE(3277), 2, sym_line_comment, sym_block_comment, - [92000] = 5, + [91994] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6557), 1, - anon_sym_LPAREN, - ACTIONS(6695), 1, - anon_sym_COLON_COLON, + ACTIONS(4892), 1, + anon_sym_LBRACE, + STATE(685), 1, + sym_field_declaration_list, STATE(3278), 2, sym_line_comment, sym_block_comment, - [92017] = 5, + [92011] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6501), 1, + ACTIONS(5109), 1, + anon_sym_RBRACE, + ACTIONS(6611), 1, anon_sym_SEMI, - ACTIONS(6697), 1, - anon_sym_RPAREN, STATE(3279), 2, sym_line_comment, sym_block_comment, - [92034] = 5, + [92028] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6699), 1, - anon_sym_LBRACK, - ACTIONS(6701), 1, - anon_sym_BANG, + ACTIONS(4443), 1, + anon_sym_LPAREN, + STATE(2211), 1, + sym_parameters, STATE(3280), 2, sym_line_comment, sym_block_comment, - [92051] = 4, + [92045] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6703), 2, - sym_identifier, - sym_metavariable, + ACTIONS(5269), 1, + anon_sym_LBRACE, + STATE(664), 1, + sym_enum_variant_list, STATE(3281), 2, sym_line_comment, sym_block_comment, - [92066] = 5, + [92062] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4878), 1, - anon_sym_LBRACE, - STATE(506), 1, - sym_declaration_list, + ACTIONS(5773), 1, + sym_super, + ACTIONS(6671), 1, + sym_identifier, STATE(3282), 2, sym_line_comment, sym_block_comment, - [92083] = 5, + [92079] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5452), 1, - anon_sym_PIPE, - ACTIONS(6705), 1, - anon_sym_in, + ACTIONS(6553), 1, + sym_super, + ACTIONS(6639), 1, + sym_identifier, STATE(3283), 2, sym_line_comment, sym_block_comment, - [92100] = 5, + [92096] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6501), 1, - anon_sym_SEMI, - ACTIONS(6697), 1, - anon_sym_RBRACK, + ACTIONS(4878), 1, + anon_sym_LBRACE, + STATE(695), 1, + sym_declaration_list, STATE(3284), 2, sym_line_comment, sym_block_comment, - [92117] = 4, + [92113] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6707), 2, + ACTIONS(5151), 1, + sym_super, + ACTIONS(5795), 1, sym_identifier, - sym_metavariable, STATE(3285), 2, sym_line_comment, sym_block_comment, - [92132] = 5, + [92130] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4870), 1, - anon_sym_LBRACE, - STATE(526), 1, - sym_field_declaration_list, + ACTIONS(6563), 1, + sym_super, + ACTIONS(6675), 1, + sym_identifier, STATE(3286), 2, sym_line_comment, sym_block_comment, - [92149] = 5, + [92147] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4537), 1, - anon_sym_COLON_COLON, - ACTIONS(4961), 1, - anon_sym_for, + ACTIONS(5373), 1, + anon_sym_PIPE, + ACTIONS(6713), 1, + anon_sym_EQ, STATE(3287), 2, sym_line_comment, sym_block_comment, - [92166] = 5, + [92164] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6501), 1, - anon_sym_SEMI, - ACTIONS(6709), 1, - anon_sym_RBRACE, + ACTIONS(6597), 1, + sym_super, + ACTIONS(6715), 1, + sym_identifier, STATE(3288), 2, sym_line_comment, sym_block_comment, - [92183] = 5, + [92181] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5546), 1, - sym_super, - ACTIONS(6687), 1, - sym_identifier, + ACTIONS(6555), 1, + anon_sym_LPAREN, + ACTIONS(6717), 1, + anon_sym_COLON_COLON, STATE(3289), 2, sym_line_comment, sym_block_comment, - [92200] = 5, + [92198] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4891), 1, - anon_sym_LBRACE, - STATE(1253), 1, - sym_field_declaration_list, + ACTIONS(5650), 1, + sym_super, + ACTIONS(5862), 1, + sym_identifier, STATE(3290), 2, sym_line_comment, sym_block_comment, - [92217] = 4, + [92215] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6711), 2, + ACTIONS(6677), 1, + sym_super, + ACTIONS(6719), 1, sym_identifier, - sym_metavariable, STATE(3291), 2, sym_line_comment, sym_block_comment, @@ -183070,10 +183078,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4537), 1, - anon_sym_COLON_COLON, - ACTIONS(6444), 1, - anon_sym_for, + ACTIONS(6575), 1, + anon_sym_LT, + STATE(981), 1, + sym_type_parameters, STATE(3292), 2, sym_line_comment, sym_block_comment, @@ -183082,10 +183090,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, - anon_sym_LBRACE, - STATE(1256), 1, - sym_declaration_list, + ACTIONS(6597), 1, + sym_super, + ACTIONS(6721), 1, + sym_identifier, STATE(3293), 2, sym_line_comment, sym_block_comment, @@ -183094,10 +183102,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4537), 1, - anon_sym_COLON_COLON, - ACTIONS(6446), 1, - anon_sym_for, + ACTIONS(5650), 1, + sym_super, + ACTIONS(5878), 1, + sym_identifier, STATE(3294), 2, sym_line_comment, sym_block_comment, @@ -183106,10 +183114,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4872), 1, - anon_sym_LT, - STATE(912), 1, - sym_type_parameters, + ACTIONS(6677), 1, + sym_super, + ACTIONS(6723), 1, + sym_identifier, STATE(3295), 2, sym_line_comment, sym_block_comment, @@ -183118,10 +183126,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5452), 1, - anon_sym_PIPE, - ACTIONS(6713), 1, - anon_sym_in, + ACTIONS(6597), 1, + sym_super, + ACTIONS(6725), 1, + sym_identifier, STATE(3296), 2, sym_line_comment, sym_block_comment, @@ -183130,10 +183138,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4537), 1, - anon_sym_COLON_COLON, - ACTIONS(6456), 1, - anon_sym_for, + ACTIONS(4892), 1, + anon_sym_LBRACE, + STATE(649), 1, + sym_field_declaration_list, STATE(3297), 2, sym_line_comment, sym_block_comment, @@ -183142,10 +183150,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6715), 1, - anon_sym_LBRACK, - ACTIONS(6717), 1, - anon_sym_BANG, + ACTIONS(5650), 1, + sym_super, + ACTIONS(5880), 1, + sym_identifier, STATE(3298), 2, sym_line_comment, sym_block_comment, @@ -183154,10 +183162,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5452), 1, - anon_sym_PIPE, - ACTIONS(6719), 1, - anon_sym_in, + ACTIONS(6677), 1, + sym_super, + ACTIONS(6727), 1, + sym_identifier, STATE(3299), 2, sym_line_comment, sym_block_comment, @@ -183166,10 +183174,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5452), 1, - anon_sym_PIPE, - ACTIONS(6721), 1, - anon_sym_in, + ACTIONS(4878), 1, + anon_sym_LBRACE, + STATE(648), 1, + sym_declaration_list, STATE(3300), 2, sym_line_comment, sym_block_comment, @@ -183178,10 +183186,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5452), 1, - anon_sym_PIPE, - ACTIONS(6723), 1, - anon_sym_in, + ACTIONS(5773), 1, + sym_super, + ACTIONS(6725), 1, + sym_identifier, STATE(3301), 2, sym_line_comment, sym_block_comment, @@ -183190,10 +183198,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5452), 1, - anon_sym_PIPE, - ACTIONS(6725), 1, - anon_sym_in, + ACTIONS(5151), 1, + sym_super, + ACTIONS(5880), 1, + sym_identifier, STATE(3302), 2, sym_line_comment, sym_block_comment, @@ -183202,10 +183210,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, - anon_sym_LPAREN, - STATE(1941), 1, - sym_parameters, + ACTIONS(6563), 1, + sym_super, + ACTIONS(6727), 1, + sym_identifier, STATE(3303), 2, sym_line_comment, sym_block_comment, @@ -183214,10 +183222,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6465), 1, - sym_identifier, - ACTIONS(6469), 1, - sym_mutable_specifier, + ACTIONS(4878), 1, + anon_sym_LBRACE, + STATE(700), 1, + sym_declaration_list, STATE(3304), 2, sym_line_comment, sym_block_comment, @@ -183226,9 +183234,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4891), 1, + ACTIONS(4892), 1, anon_sym_LBRACE, - STATE(1267), 1, + STATE(704), 1, sym_field_declaration_list, STATE(3305), 2, sym_line_comment, @@ -183238,57 +183246,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4537), 1, - anon_sym_COLON_COLON, - ACTIONS(6471), 1, - anon_sym_for, + ACTIONS(6729), 1, + anon_sym_SEMI, + ACTIONS(6731), 1, + anon_sym_as, STATE(3306), 2, sym_line_comment, sym_block_comment, - [92487] = 5, + [92487] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(2969), 1, - anon_sym_SQUOTE, - STATE(2996), 1, - sym_lifetime, + ACTIONS(6677), 2, + sym_identifier, + sym_super, STATE(3307), 2, sym_line_comment, sym_block_comment, - [92504] = 5, + [92502] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6727), 1, - sym_identifier, - ACTIONS(6729), 1, - sym_mutable_specifier, + ACTIONS(4443), 1, + anon_sym_LPAREN, + STATE(2230), 1, + sym_parameters, STATE(3308), 2, sym_line_comment, sym_block_comment, - [92521] = 5, + [92519] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6547), 1, - anon_sym_COLON_COLON, - ACTIONS(6731), 1, - anon_sym_RPAREN, + ACTIONS(4945), 1, + anon_sym_LBRACE, + STATE(1320), 1, + sym_field_declaration_list, STATE(3309), 2, sym_line_comment, sym_block_comment, - [92538] = 4, + [92536] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6517), 2, - sym_identifier, - sym_super, + ACTIONS(4884), 1, + anon_sym_LBRACE, + STATE(1328), 1, + sym_declaration_list, STATE(3310), 2, sym_line_comment, sym_block_comment, @@ -183297,10 +183305,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5866), 1, - sym_super, - ACTIONS(6625), 1, - sym_identifier, + ACTIONS(4945), 1, + anon_sym_LBRACE, + STATE(1333), 1, + sym_field_declaration_list, STATE(3311), 2, sym_line_comment, sym_block_comment, @@ -183309,7 +183317,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4883), 1, + ACTIONS(4574), 1, anon_sym_COLON_COLON, STATE(3312), 2, sym_line_comment, @@ -183319,8 +183327,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(953), 1, - anon_sym_EQ_GT, + ACTIONS(6733), 1, + anon_sym_SEMI, STATE(3313), 2, sym_line_comment, sym_block_comment, @@ -183329,7 +183337,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6733), 1, + ACTIONS(6735), 1, sym_identifier, STATE(3314), 2, sym_line_comment, @@ -183339,7 +183347,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6735), 1, + ACTIONS(6737), 1, sym_identifier, STATE(3315), 2, sym_line_comment, @@ -183349,7 +183357,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6737), 1, + ACTIONS(6739), 1, sym_identifier, STATE(3316), 2, sym_line_comment, @@ -183359,7 +183367,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6739), 1, + ACTIONS(6741), 1, sym_identifier, STATE(3317), 2, sym_line_comment, @@ -183369,8 +183377,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6741), 1, - anon_sym_COLON, + ACTIONS(6743), 1, + sym_identifier, STATE(3318), 2, sym_line_comment, sym_block_comment, @@ -183379,8 +183387,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6743), 1, - sym__line_doc_content, + ACTIONS(6745), 1, + anon_sym_RPAREN, STATE(3319), 2, sym_line_comment, sym_block_comment, @@ -183389,8 +183397,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6745), 1, - anon_sym_SEMI, + ACTIONS(5912), 1, + anon_sym_RBRACE, STATE(3320), 2, sym_line_comment, sym_block_comment, @@ -183400,7 +183408,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(103), 1, anon_sym_SLASH_STAR, ACTIONS(6747), 1, - anon_sym_RBRACK, + sym_raw_string_literal_content, STATE(3321), 2, sym_line_comment, sym_block_comment, @@ -183409,8 +183417,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4057), 1, - anon_sym_COLON_COLON, + ACTIONS(6749), 1, + sym_identifier, STATE(3322), 2, sym_line_comment, sym_block_comment, @@ -183419,8 +183427,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6749), 1, - anon_sym_LPAREN, + ACTIONS(4051), 1, + anon_sym_COLON_COLON, STATE(3323), 2, sym_line_comment, sym_block_comment, @@ -183429,8 +183437,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4576), 1, - anon_sym_COLON_COLON, + ACTIONS(943), 1, + anon_sym_EQ_GT, STATE(3324), 2, sym_line_comment, sym_block_comment, @@ -183439,8 +183447,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(961), 1, - anon_sym_EQ_GT, + ACTIONS(6751), 1, + anon_sym_SEMI, STATE(3325), 2, sym_line_comment, sym_block_comment, @@ -183449,8 +183457,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6751), 1, - anon_sym_RBRACK, + ACTIONS(6753), 1, + anon_sym_SEMI, STATE(3326), 2, sym_line_comment, sym_block_comment, @@ -183459,8 +183467,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6753), 1, - anon_sym_SEMI, + ACTIONS(6755), 1, + sym_identifier, STATE(3327), 2, sym_line_comment, sym_block_comment, @@ -183469,7 +183477,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6755), 1, + ACTIONS(6757), 1, anon_sym_SEMI, STATE(3328), 2, sym_line_comment, @@ -183479,8 +183487,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6757), 1, - anon_sym_SEMI, + ACTIONS(4107), 1, + anon_sym_RPAREN, STATE(3329), 2, sym_line_comment, sym_block_comment, @@ -183490,7 +183498,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(103), 1, anon_sym_SLASH_STAR, ACTIONS(6759), 1, - anon_sym_fn, + anon_sym_SEMI, STATE(3330), 2, sym_line_comment, sym_block_comment, @@ -183499,8 +183507,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6761), 1, - anon_sym_COLON, + ACTIONS(6611), 1, + anon_sym_SEMI, STATE(3331), 2, sym_line_comment, sym_block_comment, @@ -183509,8 +183517,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4535), 1, - anon_sym_COLON_COLON, + ACTIONS(6761), 1, + anon_sym_RPAREN, STATE(3332), 2, sym_line_comment, sym_block_comment, @@ -183519,8 +183527,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6763), 1, - sym__line_doc_content, + ACTIONS(4554), 1, + anon_sym_COLON_COLON, STATE(3333), 2, sym_line_comment, sym_block_comment, @@ -183529,8 +183537,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5827), 1, - anon_sym_RBRACK, + ACTIONS(6763), 1, + anon_sym_fn, STATE(3334), 2, sym_line_comment, sym_block_comment, @@ -183540,7 +183548,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(103), 1, anon_sym_SLASH_STAR, ACTIONS(6765), 1, - sym_identifier, + anon_sym_SEMI, STATE(3335), 2, sym_line_comment, sym_block_comment, @@ -183550,7 +183558,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(103), 1, anon_sym_SLASH_STAR, ACTIONS(6767), 1, - anon_sym_RBRACK, + anon_sym_COLON, STATE(3336), 2, sym_line_comment, sym_block_comment, @@ -183559,8 +183567,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6769), 1, - anon_sym_EQ_GT, + ACTIONS(5109), 1, + anon_sym_SEMI, STATE(3337), 2, sym_line_comment, sym_block_comment, @@ -183569,8 +183577,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6771), 1, - anon_sym_fn, + ACTIONS(6769), 1, + anon_sym_SEMI, STATE(3338), 2, sym_line_comment, sym_block_comment, @@ -183579,8 +183587,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5771), 1, - anon_sym_RPAREN, + ACTIONS(6771), 1, + anon_sym_fn, STATE(3339), 2, sym_line_comment, sym_block_comment, @@ -183589,8 +183597,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6773), 1, - anon_sym_COLON_COLON, + ACTIONS(5201), 1, + anon_sym_SEMI, STATE(3340), 2, sym_line_comment, sym_block_comment, @@ -183599,8 +183607,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6775), 1, - sym__line_doc_content, + ACTIONS(6773), 1, + anon_sym_COLON_COLON, STATE(3341), 2, sym_line_comment, sym_block_comment, @@ -183609,8 +183617,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6777), 1, - sym_identifier, + ACTIONS(6775), 1, + anon_sym_SEMI, STATE(3342), 2, sym_line_comment, sym_block_comment, @@ -183619,7 +183627,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5973), 1, + ACTIONS(5972), 1, anon_sym_RBRACE, STATE(3343), 2, sym_line_comment, @@ -183629,8 +183637,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6779), 1, - sym_self, + ACTIONS(6777), 1, + sym_identifier, STATE(3344), 2, sym_line_comment, sym_block_comment, @@ -183639,8 +183647,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6781), 1, - anon_sym_EQ_GT, + ACTIONS(5811), 1, + anon_sym_LBRACE, STATE(3345), 2, sym_line_comment, sym_block_comment, @@ -183649,8 +183657,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6783), 1, - anon_sym_COLON_COLON, + ACTIONS(6779), 1, + anon_sym_RBRACK, STATE(3346), 2, sym_line_comment, sym_block_comment, @@ -183659,8 +183667,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(955), 1, - anon_sym_RBRACK, + ACTIONS(6781), 1, + sym_identifier, STATE(3347), 2, sym_line_comment, sym_block_comment, @@ -183669,8 +183677,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6785), 1, - anon_sym_SEMI, + ACTIONS(6001), 1, + anon_sym_RBRACE, STATE(3348), 2, sym_line_comment, sym_block_comment, @@ -183679,8 +183687,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6787), 1, - sym_identifier, + ACTIONS(6783), 1, + anon_sym_RBRACK, STATE(3349), 2, sym_line_comment, sym_block_comment, @@ -183689,8 +183697,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6789), 1, - anon_sym_COLON_COLON, + ACTIONS(6785), 1, + sym_identifier, STATE(3350), 2, sym_line_comment, sym_block_comment, @@ -183699,8 +183707,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6791), 1, - sym_identifier, + ACTIONS(6787), 1, + anon_sym_COLON_COLON, STATE(3351), 2, sym_line_comment, sym_block_comment, @@ -183709,7 +183717,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6793), 1, + ACTIONS(6789), 1, sym_identifier, STATE(3352), 2, sym_line_comment, @@ -183719,7 +183727,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6795), 1, + ACTIONS(6791), 1, sym_identifier, STATE(3353), 2, sym_line_comment, @@ -183729,7 +183737,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6797), 1, + ACTIONS(6793), 1, sym_identifier, STATE(3354), 2, sym_line_comment, @@ -183739,7 +183747,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6799), 1, + ACTIONS(6795), 1, sym_identifier, STATE(3355), 2, sym_line_comment, @@ -183749,7 +183757,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6801), 1, + ACTIONS(6797), 1, sym_identifier, STATE(3356), 2, sym_line_comment, @@ -183759,8 +183767,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6803), 1, - anon_sym_SEMI, + ACTIONS(6799), 1, + anon_sym_COLON, STATE(3357), 2, sym_line_comment, sym_block_comment, @@ -183769,8 +183777,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6805), 1, - anon_sym_RBRACE, + ACTIONS(6801), 1, + anon_sym_COLON_COLON, STATE(3358), 2, sym_line_comment, sym_block_comment, @@ -183779,8 +183787,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6807), 1, - anon_sym_SEMI, + ACTIONS(5821), 1, + anon_sym_RPAREN, STATE(3359), 2, sym_line_comment, sym_block_comment, @@ -183789,8 +183797,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6809), 1, - sym_identifier, + ACTIONS(6010), 1, + anon_sym_RBRACE, STATE(3360), 2, sym_line_comment, sym_block_comment, @@ -183799,7 +183807,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5438), 1, + ACTIONS(5807), 1, anon_sym_RPAREN, STATE(3361), 2, sym_line_comment, @@ -183809,8 +183817,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6811), 1, - anon_sym_SEMI, + ACTIONS(6803), 1, + anon_sym_COLON_COLON, STATE(3362), 2, sym_line_comment, sym_block_comment, @@ -183819,7 +183827,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6813), 1, + ACTIONS(6019), 1, anon_sym_RBRACE, STATE(3363), 2, sym_line_comment, @@ -183829,8 +183837,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6815), 1, - anon_sym_RBRACE, + ACTIONS(6805), 1, + anon_sym_SEMI, STATE(3364), 2, sym_line_comment, sym_block_comment, @@ -183839,8 +183847,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6817), 1, - anon_sym_SEMI, + ACTIONS(4926), 1, + anon_sym_COLON_COLON, STATE(3365), 2, sym_line_comment, sym_block_comment, @@ -183849,8 +183857,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6819), 1, - anon_sym_COLON, + ACTIONS(6807), 1, + sym_identifier, STATE(3366), 2, sym_line_comment, sym_block_comment, @@ -183859,8 +183867,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6821), 1, - sym_identifier, + ACTIONS(5938), 1, + anon_sym_COLON_COLON, STATE(3367), 2, sym_line_comment, sym_block_comment, @@ -183869,8 +183877,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3065), 1, - anon_sym_PLUS, + ACTIONS(6809), 1, + anon_sym_SEMI, STATE(3368), 2, sym_line_comment, sym_block_comment, @@ -183879,7 +183887,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6823), 1, + ACTIONS(4961), 1, anon_sym_COLON_COLON, STATE(3369), 2, sym_line_comment, @@ -183889,8 +183897,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6825), 1, - anon_sym_fn, + ACTIONS(4730), 1, + anon_sym_COLON_COLON, STATE(3370), 2, sym_line_comment, sym_block_comment, @@ -183899,8 +183907,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6827), 1, - anon_sym_SEMI, + ACTIONS(6811), 1, + anon_sym_COLON_COLON, STATE(3371), 2, sym_line_comment, sym_block_comment, @@ -183909,8 +183917,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5813), 1, - anon_sym_LBRACE, + ACTIONS(6813), 1, + anon_sym_fn, STATE(3372), 2, sym_line_comment, sym_block_comment, @@ -183919,8 +183927,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6829), 1, - anon_sym_SEMI, + ACTIONS(6815), 1, + anon_sym_RPAREN, STATE(3373), 2, sym_line_comment, sym_block_comment, @@ -183929,8 +183937,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6831), 1, - anon_sym_COLON_COLON, + ACTIONS(5864), 1, + anon_sym_LBRACE, STATE(3374), 2, sym_line_comment, sym_block_comment, @@ -183939,7 +183947,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6833), 1, + ACTIONS(6817), 1, anon_sym_SEMI, STATE(3375), 2, sym_line_comment, @@ -183949,8 +183957,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6835), 1, - sym_raw_string_literal_content, + ACTIONS(6819), 1, + sym_identifier, STATE(3376), 2, sym_line_comment, sym_block_comment, @@ -183959,8 +183967,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6837), 1, - anon_sym_SEMI, + ACTIONS(6821), 1, + sym__raw_string_literal_end, STATE(3377), 2, sym_line_comment, sym_block_comment, @@ -183969,7 +183977,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5831), 1, + ACTIONS(5429), 1, anon_sym_RPAREN, STATE(3378), 2, sym_line_comment, @@ -183979,8 +183987,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6839), 1, - anon_sym_RPAREN, + ACTIONS(6823), 1, + anon_sym_COLON, STATE(3379), 2, sym_line_comment, sym_block_comment, @@ -183989,8 +183997,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6841), 1, - sym__raw_string_literal_end, + ACTIONS(6825), 1, + anon_sym_SEMI, STATE(3380), 2, sym_line_comment, sym_block_comment, @@ -183999,8 +184007,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6843), 1, - anon_sym_SEMI, + ACTIONS(6827), 1, + sym_identifier, STATE(3381), 2, sym_line_comment, sym_block_comment, @@ -184009,7 +184017,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6663), 1, + ACTIONS(6829), 1, anon_sym_SEMI, STATE(3382), 2, sym_line_comment, @@ -184019,8 +184027,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6845), 1, - anon_sym_SEMI, + ACTIONS(6831), 1, + sym_identifier, STATE(3383), 2, sym_line_comment, sym_block_comment, @@ -184029,8 +184037,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6847), 1, - anon_sym_SEMI, + ACTIONS(6833), 1, + anon_sym_RBRACK, STATE(3384), 2, sym_line_comment, sym_block_comment, @@ -184039,8 +184047,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6849), 1, - anon_sym_COLON_COLON, + ACTIONS(5844), 1, + anon_sym_RBRACK, STATE(3385), 2, sym_line_comment, sym_block_comment, @@ -184049,8 +184057,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6851), 1, - anon_sym_COLON, + ACTIONS(6835), 1, + anon_sym_RBRACK, STATE(3386), 2, sym_line_comment, sym_block_comment, @@ -184059,8 +184067,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6853), 1, - sym_identifier, + ACTIONS(6837), 1, + anon_sym_COLON, STATE(3387), 2, sym_line_comment, sym_block_comment, @@ -184069,8 +184077,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6855), 1, - anon_sym_SEMI, + ACTIONS(5835), 1, + anon_sym_RPAREN, STATE(3388), 2, sym_line_comment, sym_block_comment, @@ -184079,8 +184087,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6857), 1, - sym_identifier, + ACTIONS(1013), 1, + anon_sym_RBRACK, STATE(3389), 2, sym_line_comment, sym_block_comment, @@ -184089,8 +184097,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6859), 1, - sym_identifier, + ACTIONS(5831), 1, + anon_sym_RBRACK, STATE(3390), 2, sym_line_comment, sym_block_comment, @@ -184099,8 +184107,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6296), 1, - anon_sym_RBRACE, + ACTIONS(6839), 1, + sym_identifier, STATE(3391), 2, sym_line_comment, sym_block_comment, @@ -184109,8 +184117,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6861), 1, - anon_sym_RBRACK, + ACTIONS(6841), 1, + sym_identifier, STATE(3392), 2, sym_line_comment, sym_block_comment, @@ -184119,8 +184127,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5157), 1, - anon_sym_SEMI, + ACTIONS(5825), 1, + anon_sym_RPAREN, STATE(3393), 2, sym_line_comment, sym_block_comment, @@ -184129,7 +184137,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6863), 1, + ACTIONS(6843), 1, anon_sym_SEMI, STATE(3394), 2, sym_line_comment, @@ -184139,8 +184147,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6865), 1, - sym_identifier, + ACTIONS(4085), 1, + anon_sym_RPAREN, STATE(3395), 2, sym_line_comment, sym_block_comment, @@ -184149,7 +184157,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6867), 1, + ACTIONS(6845), 1, anon_sym_STAR_SLASH, STATE(3396), 2, sym_line_comment, @@ -184159,8 +184167,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5426), 1, - anon_sym_RPAREN, + ACTIONS(6075), 1, + anon_sym_RBRACE, STATE(3397), 2, sym_line_comment, sym_block_comment, @@ -184169,8 +184177,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1003), 1, - anon_sym_RBRACK, + ACTIONS(6847), 1, + anon_sym_SEMI, STATE(3398), 2, sym_line_comment, sym_block_comment, @@ -184179,8 +184187,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6869), 1, - sym_identifier, + ACTIONS(6849), 1, + anon_sym_EQ_GT, STATE(3399), 2, sym_line_comment, sym_block_comment, @@ -184189,7 +184197,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6871), 1, + ACTIONS(6851), 1, anon_sym_SEMI, STATE(3400), 2, sym_line_comment, @@ -184199,18 +184207,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6873), 1, - anon_sym_RBRACK, + ACTIONS(6853), 1, + anon_sym_RBRACE, STATE(3401), 2, sym_line_comment, sym_block_comment, [93830] = 4, - ACTIONS(3), 1, + ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6875), 1, - aux_sym_line_comment_token2, + ACTIONS(6855), 1, + sym_identifier, STATE(3402), 2, sym_line_comment, sym_block_comment, @@ -184219,8 +184227,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4537), 1, - anon_sym_COLON_COLON, + ACTIONS(6857), 1, + sym_identifier, STATE(3403), 2, sym_line_comment, sym_block_comment, @@ -184229,7 +184237,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6877), 1, + ACTIONS(6859), 1, anon_sym_SEMI, STATE(3404), 2, sym_line_comment, @@ -184239,8 +184247,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6879), 1, - anon_sym_RBRACE, + ACTIONS(1019), 1, + anon_sym_RBRACK, STATE(3405), 2, sym_line_comment, sym_block_comment, @@ -184249,8 +184257,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5590), 1, - anon_sym_RPAREN, + ACTIONS(6861), 1, + anon_sym_SEMI, STATE(3406), 2, sym_line_comment, sym_block_comment, @@ -184259,8 +184267,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6881), 1, - anon_sym_fn, + ACTIONS(6863), 1, + anon_sym_SEMI, STATE(3407), 2, sym_line_comment, sym_block_comment, @@ -184269,8 +184277,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6883), 1, - anon_sym_RBRACK, + ACTIONS(6865), 1, + sym__raw_string_literal_end, STATE(3408), 2, sym_line_comment, sym_block_comment, @@ -184279,8 +184287,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6885), 1, - sym_identifier, + ACTIONS(6867), 1, + anon_sym_fn, STATE(3409), 2, sym_line_comment, sym_block_comment, @@ -184289,8 +184297,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6887), 1, - anon_sym_EQ_GT, + ACTIONS(6869), 1, + sym_identifier, STATE(3410), 2, sym_line_comment, sym_block_comment, @@ -184299,8 +184307,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6889), 1, - anon_sym_RBRACK, + ACTIONS(6871), 1, + sym_identifier, STATE(3411), 2, sym_line_comment, sym_block_comment, @@ -184309,8 +184317,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6891), 1, - anon_sym_COLON, + ACTIONS(6873), 1, + sym_identifier, STATE(3412), 2, sym_line_comment, sym_block_comment, @@ -184319,8 +184327,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6893), 1, - anon_sym_SEMI, + ACTIONS(6875), 1, + anon_sym_RBRACE, STATE(3413), 2, sym_line_comment, sym_block_comment, @@ -184329,8 +184337,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6895), 1, - anon_sym_SEMI, + ACTIONS(6877), 1, + sym_identifier, STATE(3414), 2, sym_line_comment, sym_block_comment, @@ -184339,8 +184347,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6897), 1, - anon_sym_RBRACK, + ACTIONS(6879), 1, + sym_identifier, STATE(3415), 2, sym_line_comment, sym_block_comment, @@ -184349,8 +184357,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5594), 1, - anon_sym_RBRACK, + ACTIONS(5125), 1, + anon_sym_SEMI, STATE(3416), 2, sym_line_comment, sym_block_comment, @@ -184359,8 +184367,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5508), 1, - anon_sym_RPAREN, + ACTIONS(6881), 1, + anon_sym_EQ_GT, STATE(3417), 2, sym_line_comment, sym_block_comment, @@ -184369,8 +184377,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6501), 1, - anon_sym_SEMI, + ACTIONS(6883), 1, + anon_sym_RBRACE, STATE(3418), 2, sym_line_comment, sym_block_comment, @@ -184379,8 +184387,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6899), 1, - anon_sym_STAR_SLASH, + ACTIONS(6885), 1, + anon_sym_RBRACE, STATE(3419), 2, sym_line_comment, sym_block_comment, @@ -184389,8 +184397,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6901), 1, - sym_identifier, + ACTIONS(5137), 1, + anon_sym_SEMI, STATE(3420), 2, sym_line_comment, sym_block_comment, @@ -184399,7 +184407,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6118), 1, + ACTIONS(6146), 1, anon_sym_RBRACE, STATE(3421), 2, sym_line_comment, @@ -184409,8 +184417,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6157), 1, - anon_sym_RBRACE, + ACTIONS(6887), 1, + anon_sym_SEMI, STATE(3422), 2, sym_line_comment, sym_block_comment, @@ -184419,8 +184427,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6903), 1, - anon_sym_EQ_GT, + ACTIONS(6889), 1, + sym_identifier, STATE(3423), 2, sym_line_comment, sym_block_comment, @@ -184429,7 +184437,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6905), 1, + ACTIONS(6891), 1, anon_sym_SEMI, STATE(3424), 2, sym_line_comment, @@ -184439,8 +184447,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6907), 1, - anon_sym_SEMI, + ACTIONS(6893), 1, + sym_identifier, STATE(3425), 2, sym_line_comment, sym_block_comment, @@ -184449,8 +184457,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6909), 1, - anon_sym_RBRACE, + ACTIONS(6895), 1, + anon_sym_SEMI, STATE(3426), 2, sym_line_comment, sym_block_comment, @@ -184459,8 +184467,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6911), 1, - anon_sym_fn, + ACTIONS(6897), 1, + sym_identifier, STATE(3427), 2, sym_line_comment, sym_block_comment, @@ -184469,8 +184477,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6039), 1, - anon_sym_RBRACE, + ACTIONS(5369), 1, + anon_sym_RPAREN, STATE(3428), 2, sym_line_comment, sym_block_comment, @@ -184479,8 +184487,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6913), 1, - sym__raw_string_literal_end, + ACTIONS(6899), 1, + anon_sym_RBRACK, STATE(3429), 2, sym_line_comment, sym_block_comment, @@ -184489,8 +184497,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6915), 1, - anon_sym_COLON_COLON, + ACTIONS(6901), 1, + anon_sym_SEMI, STATE(3430), 2, sym_line_comment, sym_block_comment, @@ -184499,8 +184507,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6715), 1, - anon_sym_LBRACK, + ACTIONS(6903), 1, + anon_sym_SEMI, STATE(3431), 2, sym_line_comment, sym_block_comment, @@ -184509,8 +184517,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6917), 1, - anon_sym_SEMI, + ACTIONS(6905), 1, + anon_sym_COLON_COLON, STATE(3432), 2, sym_line_comment, sym_block_comment, @@ -184519,7 +184527,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6919), 1, + ACTIONS(6907), 1, anon_sym_SEMI, STATE(3433), 2, sym_line_comment, @@ -184529,8 +184537,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6921), 1, - sym_identifier, + ACTIONS(6909), 1, + anon_sym_SEMI, STATE(3434), 2, sym_line_comment, sym_block_comment, @@ -184539,8 +184547,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6923), 1, - anon_sym_COLON, + ACTIONS(6911), 1, + anon_sym_EQ_GT, STATE(3435), 2, sym_line_comment, sym_block_comment, @@ -184549,8 +184557,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6925), 1, - sym_identifier, + ACTIONS(6913), 1, + anon_sym_EQ_GT, STATE(3436), 2, sym_line_comment, sym_block_comment, @@ -184559,8 +184567,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5953), 1, - anon_sym_RBRACE, + ACTIONS(6915), 1, + sym_identifier, STATE(3437), 2, sym_line_comment, sym_block_comment, @@ -184569,8 +184577,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5737), 1, - anon_sym_LBRACE, + ACTIONS(6228), 1, + anon_sym_RBRACE, STATE(3438), 2, sym_line_comment, sym_block_comment, @@ -184579,8 +184587,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6927), 1, - anon_sym_LT, + ACTIONS(6917), 1, + sym_identifier, STATE(3439), 2, sym_line_comment, sym_block_comment, @@ -184589,8 +184597,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4909), 1, - anon_sym_COLON_COLON, + ACTIONS(6919), 1, + anon_sym_COLON, STATE(3440), 2, sym_line_comment, sym_block_comment, @@ -184599,8 +184607,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6929), 1, - anon_sym_SEMI, + ACTIONS(6921), 1, + sym_identifier, STATE(3441), 2, sym_line_comment, sym_block_comment, @@ -184609,8 +184617,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5528), 1, - anon_sym_RPAREN, + ACTIONS(6923), 1, + sym_identifier, STATE(3442), 2, sym_line_comment, sym_block_comment, @@ -184619,8 +184627,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6931), 1, - anon_sym_SEMI, + ACTIONS(6925), 1, + sym__raw_string_literal_end, STATE(3443), 2, sym_line_comment, sym_block_comment, @@ -184629,8 +184637,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6933), 1, - sym_identifier, + ACTIONS(3099), 1, + anon_sym_PLUS, STATE(3444), 2, sym_line_comment, sym_block_comment, @@ -184639,8 +184647,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6935), 1, - sym_identifier, + ACTIONS(6927), 1, + sym_self, STATE(3445), 2, sym_line_comment, sym_block_comment, @@ -184649,8 +184657,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6122), 1, - anon_sym_RBRACE, + ACTIONS(6929), 1, + sym_identifier, STATE(3446), 2, sym_line_comment, sym_block_comment, @@ -184659,8 +184667,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6937), 1, - anon_sym_RPAREN, + ACTIONS(6931), 1, + sym_identifier, STATE(3447), 2, sym_line_comment, sym_block_comment, @@ -184669,7 +184677,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6939), 1, + ACTIONS(6933), 1, sym_identifier, STATE(3448), 2, sym_line_comment, @@ -184679,8 +184687,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6941), 1, - sym_identifier, + ACTIONS(6637), 1, + anon_sym_SEMI, STATE(3449), 2, sym_line_comment, sym_block_comment, @@ -184689,7 +184697,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1035), 1, + ACTIONS(6935), 1, anon_sym_RBRACK, STATE(3450), 2, sym_line_comment, @@ -184699,8 +184707,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6943), 1, - sym__raw_string_literal_end, + ACTIONS(6631), 1, + anon_sym_SEMI, STATE(3451), 2, sym_line_comment, sym_block_comment, @@ -184709,8 +184717,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4475), 1, - anon_sym_fn, + ACTIONS(6937), 1, + anon_sym_RPAREN, STATE(3452), 2, sym_line_comment, sym_block_comment, @@ -184719,7 +184727,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6945), 1, + ACTIONS(6939), 1, sym_identifier, STATE(3453), 2, sym_line_comment, @@ -184729,8 +184737,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5941), 1, - anon_sym_COLON_COLON, + ACTIONS(6941), 1, + anon_sym_RBRACE, STATE(3454), 2, sym_line_comment, sym_block_comment, @@ -184739,8 +184747,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3889), 1, - anon_sym_COLON_COLON, + ACTIONS(5670), 1, + anon_sym_RPAREN, STATE(3455), 2, sym_line_comment, sym_block_comment, @@ -184749,8 +184757,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6947), 1, - anon_sym_SEMI, + ACTIONS(6943), 1, + anon_sym_COLON, STATE(3456), 2, sym_line_comment, sym_block_comment, @@ -184759,8 +184767,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6949), 1, - anon_sym_LBRACK, + ACTIONS(6945), 1, + anon_sym_COLON, STATE(3457), 2, sym_line_comment, sym_block_comment, @@ -184769,8 +184777,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6951), 1, - sym_identifier, + ACTIONS(6307), 1, + anon_sym_RBRACE, STATE(3458), 2, sym_line_comment, sym_block_comment, @@ -184779,8 +184787,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6953), 1, - sym_identifier, + ACTIONS(6947), 1, + anon_sym_LBRACK, STATE(3459), 2, sym_line_comment, sym_block_comment, @@ -184789,8 +184797,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6955), 1, - sym_identifier, + ACTIONS(6627), 1, + anon_sym_SEMI, STATE(3460), 2, sym_line_comment, sym_block_comment, @@ -184799,8 +184807,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6957), 1, - sym_raw_string_literal_content, + ACTIONS(6949), 1, + anon_sym_COLON_COLON, STATE(3461), 2, sym_line_comment, sym_block_comment, @@ -184809,7 +184817,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6601), 1, + ACTIONS(6951), 1, anon_sym_SEMI, STATE(3462), 2, sym_line_comment, @@ -184819,8 +184827,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6959), 1, - anon_sym_SEMI, + ACTIONS(3087), 1, + anon_sym_PLUS, STATE(3463), 2, sym_line_comment, sym_block_comment, @@ -184829,8 +184837,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4123), 1, - anon_sym_COLON_COLON, + ACTIONS(6154), 1, + anon_sym_GT, STATE(3464), 2, sym_line_comment, sym_block_comment, @@ -184839,8 +184847,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5840), 1, - anon_sym_COLON_COLON, + ACTIONS(6953), 1, + anon_sym_COLON, STATE(3465), 2, sym_line_comment, sym_block_comment, @@ -184849,8 +184857,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6961), 1, - anon_sym_SEMI, + ACTIONS(6955), 1, + anon_sym_RBRACE, STATE(3466), 2, sym_line_comment, sym_block_comment, @@ -184859,8 +184867,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6963), 1, - anon_sym_SEMI, + ACTIONS(6957), 1, + sym_raw_string_literal_content, STATE(3467), 2, sym_line_comment, sym_block_comment, @@ -184869,8 +184877,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6965), 1, - anon_sym_RBRACK, + ACTIONS(6959), 1, + anon_sym_fn, STATE(3468), 2, sym_line_comment, sym_block_comment, @@ -184879,8 +184887,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6967), 1, - anon_sym_COLON_COLON, + ACTIONS(953), 1, + anon_sym_RBRACK, STATE(3469), 2, sym_line_comment, sym_block_comment, @@ -184889,8 +184897,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6969), 1, - sym_identifier, + ACTIONS(6961), 1, + anon_sym_LT, STATE(3470), 2, sym_line_comment, sym_block_comment, @@ -184899,8 +184907,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6971), 1, - anon_sym_SEMI, + ACTIONS(4081), 1, + anon_sym_COLON_COLON, STATE(3471), 2, sym_line_comment, sym_block_comment, @@ -184909,8 +184917,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6973), 1, - anon_sym_EQ, + ACTIONS(5622), 1, + anon_sym_COLON_COLON, STATE(3472), 2, sym_line_comment, sym_block_comment, @@ -184919,8 +184927,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6975), 1, - anon_sym_fn, + ACTIONS(5457), 1, + anon_sym_RPAREN, STATE(3473), 2, sym_line_comment, sym_block_comment, @@ -184929,8 +184937,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6977), 1, - anon_sym_LPAREN, + ACTIONS(6963), 1, + sym_identifier, STATE(3474), 2, sym_line_comment, sym_block_comment, @@ -184939,8 +184947,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6979), 1, - anon_sym_COLON_COLON, + ACTIONS(6965), 1, + anon_sym_RBRACE, STATE(3475), 2, sym_line_comment, sym_block_comment, @@ -184949,8 +184957,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5143), 1, - anon_sym_SEMI, + ACTIONS(6967), 1, + anon_sym_COLON_COLON, STATE(3476), 2, sym_line_comment, sym_block_comment, @@ -184959,8 +184967,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6981), 1, - anon_sym_RBRACE, + ACTIONS(6969), 1, + anon_sym_SEMI, STATE(3477), 2, sym_line_comment, sym_block_comment, @@ -184969,8 +184977,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6983), 1, - anon_sym_COLON_COLON, + ACTIONS(6971), 1, + anon_sym_SEMI, STATE(3478), 2, sym_line_comment, sym_block_comment, @@ -184979,8 +184987,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6985), 1, - anon_sym_SEMI, + ACTIONS(6973), 1, + sym__raw_string_literal_end, STATE(3479), 2, sym_line_comment, sym_block_comment, @@ -184989,8 +184997,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6987), 1, - anon_sym_COLON, + ACTIONS(6975), 1, + anon_sym_fn, STATE(3480), 2, sym_line_comment, sym_block_comment, @@ -184999,8 +185007,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4943), 1, - anon_sym_COLON_COLON, + ACTIONS(6977), 1, + anon_sym_RBRACK, STATE(3481), 2, sym_line_comment, sym_block_comment, @@ -185009,8 +185017,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6605), 1, - anon_sym_SEMI, + ACTIONS(6979), 1, + anon_sym_COLON_COLON, STATE(3482), 2, sym_line_comment, sym_block_comment, @@ -185019,8 +185027,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6989), 1, - anon_sym_COLON_COLON, + ACTIONS(6981), 1, + anon_sym_SEMI, STATE(3483), 2, sym_line_comment, sym_block_comment, @@ -185029,8 +185037,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6991), 1, - anon_sym_fn, + ACTIONS(5143), 1, + anon_sym_COLON_COLON, STATE(3484), 2, sym_line_comment, sym_block_comment, @@ -185039,8 +185047,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6993), 1, - anon_sym_COLON, + ACTIONS(6983), 1, + anon_sym_COLON_COLON, STATE(3485), 2, sym_line_comment, sym_block_comment, @@ -185049,8 +185057,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6995), 1, - anon_sym_LBRACE, + ACTIONS(6985), 1, + anon_sym_SEMI, STATE(3486), 2, sym_line_comment, sym_block_comment, @@ -185059,8 +185067,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6997), 1, - anon_sym_SEMI, + ACTIONS(4533), 1, + anon_sym_COLON_COLON, STATE(3487), 2, sym_line_comment, sym_block_comment, @@ -185069,8 +185077,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6999), 1, - anon_sym_SEMI, + ACTIONS(4866), 1, + anon_sym_COLON_COLON, STATE(3488), 2, sym_line_comment, sym_block_comment, @@ -185079,8 +185087,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7001), 1, - sym__line_doc_content, + ACTIONS(5471), 1, + anon_sym_RPAREN, STATE(3489), 2, sym_line_comment, sym_block_comment, @@ -185089,8 +185097,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7003), 1, - anon_sym_RBRACK, + ACTIONS(6987), 1, + anon_sym_COLON_COLON, STATE(3490), 2, sym_line_comment, sym_block_comment, @@ -185099,8 +185107,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7005), 1, - anon_sym_SEMI, + ACTIONS(6989), 1, + anon_sym_fn, STATE(3491), 2, sym_line_comment, sym_block_comment, @@ -185109,8 +185117,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5167), 1, - anon_sym_SEMI, + ACTIONS(6991), 1, + sym_raw_string_literal_content, STATE(3492), 2, sym_line_comment, sym_block_comment, @@ -185119,8 +185127,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7007), 1, - sym_identifier, + ACTIONS(6993), 1, + anon_sym_LBRACE, STATE(3493), 2, sym_line_comment, sym_block_comment, @@ -185129,8 +185137,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7009), 1, - sym_raw_string_literal_content, + ACTIONS(6995), 1, + anon_sym_COLON, STATE(3494), 2, sym_line_comment, sym_block_comment, @@ -185139,8 +185147,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6541), 1, - anon_sym_COLON_COLON, + ACTIONS(6997), 1, + sym_identifier, STATE(3495), 2, sym_line_comment, sym_block_comment, @@ -185149,8 +185157,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7011), 1, - anon_sym_RPAREN, + ACTIONS(6999), 1, + anon_sym_SEMI, STATE(3496), 2, sym_line_comment, sym_block_comment, @@ -185159,8 +185167,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7013), 1, - sym_identifier, + ACTIONS(7001), 1, + anon_sym_RBRACK, STATE(3497), 2, sym_line_comment, sym_block_comment, @@ -185169,8 +185177,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7015), 1, - anon_sym_COLON_COLON, + ACTIONS(6619), 1, + anon_sym_SEMI, STATE(3498), 2, sym_line_comment, sym_block_comment, @@ -185179,8 +185187,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7017), 1, - anon_sym_SEMI, + ACTIONS(873), 1, + anon_sym_RBRACK, STATE(3499), 2, sym_line_comment, sym_block_comment, @@ -185189,8 +185197,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7019), 1, - anon_sym_SEMI, + ACTIONS(7003), 1, + anon_sym_LPAREN, STATE(3500), 2, sym_line_comment, sym_block_comment, @@ -185199,8 +185207,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7021), 1, - anon_sym_COLON_COLON, + ACTIONS(7005), 1, + anon_sym_SEMI, STATE(3501), 2, sym_line_comment, sym_block_comment, @@ -185209,8 +185217,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7023), 1, - sym__line_doc_content, + ACTIONS(7007), 1, + sym_raw_string_literal_content, STATE(3502), 2, sym_line_comment, sym_block_comment, @@ -185219,8 +185227,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7025), 1, - anon_sym_SEMI, + ACTIONS(7009), 1, + anon_sym_LPAREN, STATE(3503), 2, sym_line_comment, sym_block_comment, @@ -185229,8 +185237,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7027), 1, - anon_sym_COLON_COLON, + ACTIONS(6517), 1, + anon_sym_LBRACK, STATE(3504), 2, sym_line_comment, sym_block_comment, @@ -185239,8 +185247,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7029), 1, - anon_sym_SEMI, + ACTIONS(7011), 1, + anon_sym_RBRACK, STATE(3505), 2, sym_line_comment, sym_block_comment, @@ -185249,8 +185257,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7031), 1, - anon_sym_SEMI, + ACTIONS(7013), 1, + anon_sym_COLON_COLON, STATE(3506), 2, sym_line_comment, sym_block_comment, @@ -185259,8 +185267,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7033), 1, - anon_sym_COLON_COLON, + ACTIONS(6351), 1, + anon_sym_RBRACE, STATE(3507), 2, sym_line_comment, sym_block_comment, @@ -185269,8 +185277,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7035), 1, - anon_sym_LBRACE, + ACTIONS(3984), 1, + sym_identifier, STATE(3508), 2, sym_line_comment, sym_block_comment, @@ -185279,8 +185287,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7037), 1, - sym_identifier, + ACTIONS(7015), 1, + anon_sym_COLON_COLON, STATE(3509), 2, sym_line_comment, sym_block_comment, @@ -185289,8 +185297,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7039), 1, - anon_sym_COLON, + ACTIONS(7017), 1, + anon_sym_SEMI, STATE(3510), 2, sym_line_comment, sym_block_comment, @@ -185299,8 +185307,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3101), 1, - anon_sym_PLUS, + ACTIONS(7019), 1, + sym__raw_string_literal_end, STATE(3511), 2, sym_line_comment, sym_block_comment, @@ -185309,8 +185317,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7041), 1, - ts_builtin_sym_end, + ACTIONS(7021), 1, + anon_sym_COLON_COLON, STATE(3512), 2, sym_line_comment, sym_block_comment, @@ -185319,8 +185327,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7043), 1, - sym_raw_string_literal_content, + ACTIONS(7023), 1, + anon_sym_RBRACK, STATE(3513), 2, sym_line_comment, sym_block_comment, @@ -185329,8 +185337,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3473), 1, - anon_sym_COLON_COLON, + ACTIONS(7025), 1, + sym_identifier, STATE(3514), 2, sym_line_comment, sym_block_comment, @@ -185339,8 +185347,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6049), 1, - anon_sym_GT, + ACTIONS(7027), 1, + anon_sym_COLON_COLON, STATE(3515), 2, sym_line_comment, sym_block_comment, @@ -185349,8 +185357,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7045), 1, - anon_sym_COLON_COLON, + ACTIONS(7029), 1, + anon_sym_LBRACE, STATE(3516), 2, sym_line_comment, sym_block_comment, @@ -185359,8 +185367,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7047), 1, - anon_sym_SEMI, + ACTIONS(7031), 1, + sym_identifier, STATE(3517), 2, sym_line_comment, sym_block_comment, @@ -185369,8 +185377,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7049), 1, - anon_sym_LBRACE, + ACTIONS(7033), 1, + anon_sym_STAR_SLASH, STATE(3518), 2, sym_line_comment, sym_block_comment, @@ -185379,8 +185387,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7051), 1, - sym_raw_string_literal_content, + ACTIONS(7035), 1, + sym_identifier, STATE(3519), 2, sym_line_comment, sym_block_comment, @@ -185389,8 +185397,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5211), 1, - anon_sym_COLON_COLON, + ACTIONS(959), 1, + anon_sym_EQ_GT, STATE(3520), 2, sym_line_comment, sym_block_comment, @@ -185399,8 +185407,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7053), 1, - anon_sym_COLON_COLON, + ACTIONS(7037), 1, + sym_raw_string_literal_content, STATE(3521), 2, sym_line_comment, sym_block_comment, @@ -185409,8 +185417,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5858), 1, - anon_sym_LBRACE, + ACTIONS(3428), 1, + anon_sym_COLON_COLON, STATE(3522), 2, sym_line_comment, sym_block_comment, @@ -185419,8 +185427,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5856), 1, - anon_sym_COLON_COLON, + ACTIONS(7039), 1, + sym_identifier, STATE(3523), 2, sym_line_comment, sym_block_comment, @@ -185429,7 +185437,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7055), 1, + ACTIONS(7041), 1, anon_sym_COLON_COLON, STATE(3524), 2, sym_line_comment, @@ -185439,8 +185447,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5868), 1, - anon_sym_LBRACE, + ACTIONS(7043), 1, + sym__line_doc_content, STATE(3525), 2, sym_line_comment, sym_block_comment, @@ -185449,8 +185457,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7057), 1, - anon_sym_COLON_COLON, + ACTIONS(7045), 1, + anon_sym_LBRACE, STATE(3526), 2, sym_line_comment, sym_block_comment, @@ -185459,8 +185467,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5207), 1, - anon_sym_COLON_COLON, + ACTIONS(7047), 1, + sym_raw_string_literal_content, STATE(3527), 2, sym_line_comment, sym_block_comment, @@ -185469,7 +185477,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5101), 1, + ACTIONS(5165), 1, anon_sym_COLON_COLON, STATE(3528), 2, sym_line_comment, @@ -185479,7 +185487,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4081), 1, + ACTIONS(7049), 1, anon_sym_COLON_COLON, STATE(3529), 2, sym_line_comment, @@ -185489,8 +185497,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7059), 1, - anon_sym_COLON_COLON, + ACTIONS(5724), 1, + anon_sym_LBRACE, STATE(3530), 2, sym_line_comment, sym_block_comment, @@ -185499,8 +185507,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7061), 1, - sym_identifier, + ACTIONS(5746), 1, + anon_sym_COLON_COLON, STATE(3531), 2, sym_line_comment, sym_block_comment, @@ -185509,7 +185517,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4678), 1, + ACTIONS(7051), 1, anon_sym_COLON_COLON, STATE(3532), 2, sym_line_comment, @@ -185519,8 +185527,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3051), 1, - anon_sym_PLUS, + ACTIONS(5695), 1, + anon_sym_LBRACE, STATE(3533), 2, sym_line_comment, sym_block_comment, @@ -185529,8 +185537,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7063), 1, - sym_identifier, + ACTIONS(7053), 1, + anon_sym_COLON_COLON, STATE(3534), 2, sym_line_comment, sym_block_comment, @@ -185539,8 +185547,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7065), 1, - anon_sym_COLON, + ACTIONS(5197), 1, + anon_sym_COLON_COLON, STATE(3535), 2, sym_line_comment, sym_block_comment, @@ -185549,8 +185557,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7067), 1, - anon_sym_LBRACK, + ACTIONS(5217), 1, + anon_sym_COLON_COLON, STATE(3536), 2, sym_line_comment, sym_block_comment, @@ -185559,8 +185567,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7069), 1, - sym_identifier, + ACTIONS(4091), 1, + anon_sym_COLON_COLON, STATE(3537), 2, sym_line_comment, sym_block_comment, @@ -185569,8 +185577,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7071), 1, - anon_sym_LBRACK, + ACTIONS(7055), 1, + anon_sym_COLON_COLON, STATE(3538), 2, sym_line_comment, sym_block_comment, @@ -185579,8 +185587,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7073), 1, - anon_sym_COLON, + ACTIONS(7057), 1, + anon_sym_SEMI, STATE(3539), 2, sym_line_comment, sym_block_comment, @@ -185589,8 +185597,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7075), 1, - anon_sym_COLON, + ACTIONS(7059), 1, + anon_sym_SEMI, STATE(3540), 2, sym_line_comment, sym_block_comment, @@ -185599,8 +185607,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4115), 1, - anon_sym_RPAREN, + ACTIONS(7061), 1, + anon_sym_EQ, STATE(3541), 2, sym_line_comment, sym_block_comment, @@ -185609,8 +185617,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7077), 1, - anon_sym_SEMI, + ACTIONS(7063), 1, + sym__line_doc_content, STATE(3542), 2, sym_line_comment, sym_block_comment, @@ -185619,8 +185627,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5633), 1, - anon_sym_RPAREN, + ACTIONS(7065), 1, + anon_sym_COLON, STATE(3543), 2, sym_line_comment, sym_block_comment, @@ -185629,8 +185637,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7079), 1, - anon_sym_COLON, + ACTIONS(7067), 1, + anon_sym_LBRACK, STATE(3544), 2, sym_line_comment, sym_block_comment, @@ -185639,8 +185647,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7081), 1, - anon_sym_COLON, + ACTIONS(7069), 1, + sym__line_doc_content, STATE(3545), 2, sym_line_comment, sym_block_comment, @@ -185649,8 +185657,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7083), 1, - anon_sym_RBRACE, + ACTIONS(7071), 1, + anon_sym_LBRACK, STATE(3546), 2, sym_line_comment, sym_block_comment, @@ -185659,8 +185667,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7085), 1, - sym_identifier, + ACTIONS(7073), 1, + anon_sym_COLON, STATE(3547), 2, sym_line_comment, sym_block_comment, @@ -185669,8 +185677,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7087), 1, - anon_sym_SEMI, + ACTIONS(7075), 1, + anon_sym_COLON, STATE(3548), 2, sym_line_comment, sym_block_comment, @@ -185679,7 +185687,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7089), 1, + ACTIONS(7077), 1, sym_identifier, STATE(3549), 2, sym_line_comment, @@ -185689,8 +185697,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7091), 1, - sym__raw_string_literal_end, + ACTIONS(7079), 1, + sym__line_doc_content, STATE(3550), 2, sym_line_comment, sym_block_comment, @@ -185699,8 +185707,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7093), 1, - sym_identifier, + ACTIONS(7081), 1, + sym__line_doc_content, STATE(3551), 2, sym_line_comment, sym_block_comment, @@ -185709,8 +185717,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7095), 1, - anon_sym_RPAREN, + ACTIONS(7083), 1, + anon_sym_SEMI, STATE(3552), 2, sym_line_comment, sym_block_comment, @@ -185719,8 +185727,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7097), 1, - sym__raw_string_literal_end, + ACTIONS(7085), 1, + anon_sym_COLON, STATE(3553), 2, sym_line_comment, sym_block_comment, @@ -185729,18 +185737,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7099), 1, + ACTIONS(7087), 1, anon_sym_COLON, STATE(3554), 2, sym_line_comment, sym_block_comment, [95972] = 4, - ACTIONS(101), 1, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7101), 1, - anon_sym_COLON, + ACTIONS(7089), 1, + aux_sym_line_comment_token2, STATE(3555), 2, sym_line_comment, sym_block_comment, @@ -185749,8 +185757,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7103), 1, - anon_sym_SEMI, + ACTIONS(7091), 1, + anon_sym_COLON, STATE(3556), 2, sym_line_comment, sym_block_comment, @@ -185759,8 +185767,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7105), 1, - sym_identifier, + ACTIONS(7093), 1, + anon_sym_SEMI, STATE(3557), 2, sym_line_comment, sym_block_comment, @@ -185769,8 +185777,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7107), 1, - sym_identifier, + ACTIONS(7095), 1, + anon_sym_RPAREN, STATE(3558), 2, sym_line_comment, sym_block_comment, @@ -185779,8 +185787,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7109), 1, - anon_sym_COLON, + ACTIONS(7097), 1, + anon_sym_SEMI, STATE(3559), 2, sym_line_comment, sym_block_comment, @@ -185789,7 +185797,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7111), 1, + ACTIONS(7099), 1, sym_identifier, STATE(3560), 2, sym_line_comment, @@ -185799,8 +185807,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7113), 1, - sym__raw_string_literal_end, + ACTIONS(7101), 1, + anon_sym_EQ_GT, STATE(3561), 2, sym_line_comment, sym_block_comment, @@ -185809,8 +185817,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7115), 1, - sym_identifier, + ACTIONS(6491), 1, + anon_sym_COLON_COLON, STATE(3562), 2, sym_line_comment, sym_block_comment, @@ -185819,8 +185827,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4119), 1, - anon_sym_RPAREN, + ACTIONS(7103), 1, + anon_sym_COLON, STATE(3563), 2, sym_line_comment, sym_block_comment, @@ -185829,8 +185837,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7117), 1, - sym_identifier, + ACTIONS(4487), 1, + anon_sym_fn, STATE(3564), 2, sym_line_comment, sym_block_comment, @@ -185839,8 +185847,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7119), 1, - anon_sym_COLON, + ACTIONS(7105), 1, + ts_builtin_sym_end, STATE(3565), 2, sym_line_comment, sym_block_comment, @@ -185849,8 +185857,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7121), 1, - sym_identifier, + ACTIONS(3885), 1, + anon_sym_COLON_COLON, STATE(3566), 2, sym_line_comment, sym_block_comment, @@ -185859,8 +185867,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7123), 1, - anon_sym_SEMI, + ACTIONS(7107), 1, + anon_sym_COLON, STATE(3567), 2, sym_line_comment, sym_block_comment, @@ -185869,8 +185877,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7125), 1, - anon_sym_RBRACE, + ACTIONS(7109), 1, + anon_sym_SEMI, STATE(3568), 2, sym_line_comment, sym_block_comment, @@ -185879,8 +185887,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7127), 1, - sym_identifier, + ACTIONS(7111), 1, + anon_sym_SEMI, STATE(3569), 2, sym_line_comment, sym_block_comment, @@ -185889,7 +185897,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7129), 1, + ACTIONS(7113), 1, anon_sym_SEMI, STATE(3570), 2, sym_line_comment, @@ -185899,8 +185907,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7131), 1, - anon_sym_SEMI, + ACTIONS(7115), 1, + anon_sym_COLON, STATE(3571), 2, sym_line_comment, sym_block_comment, @@ -185909,8 +185917,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7133), 1, - anon_sym_EQ, + ACTIONS(3057), 1, + anon_sym_PLUS, STATE(3572), 2, sym_line_comment, sym_block_comment, @@ -185919,8 +185927,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6448), 1, - anon_sym_RBRACE, + ACTIONS(7117), 1, + anon_sym_COLON, STATE(3573), 2, sym_line_comment, sym_block_comment, @@ -185929,8 +185937,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7135), 1, - anon_sym_RPAREN, + ACTIONS(7119), 1, + anon_sym_SEMI, STATE(3574), 2, sym_line_comment, sym_block_comment, @@ -185939,7 +185947,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5145), 1, + ACTIONS(7121), 1, anon_sym_SEMI, STATE(3575), 2, sym_line_comment, @@ -185949,7 +185957,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7137), 1, + ACTIONS(7123), 1, anon_sym_SEMI, STATE(3576), 2, sym_line_comment, @@ -185959,8 +185967,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7139), 1, - anon_sym_COLON, + ACTIONS(7125), 1, + sym_identifier, STATE(3577), 2, sym_line_comment, sym_block_comment, @@ -185969,8 +185977,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5637), 1, - anon_sym_RPAREN, + ACTIONS(7127), 1, + anon_sym_SEMI, STATE(3578), 2, sym_line_comment, sym_block_comment, @@ -185979,8 +185987,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7141), 1, - anon_sym_COLON, + ACTIONS(7129), 1, + anon_sym_SEMI, STATE(3579), 2, sym_line_comment, sym_block_comment, @@ -185989,8 +185997,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7143), 1, - anon_sym_LBRACK, + ACTIONS(7131), 1, + anon_sym_EQ, STATE(3580), 2, sym_line_comment, sym_block_comment, @@ -185999,8 +186007,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7145), 1, - anon_sym_LBRACK, + ACTIONS(7133), 1, + sym_identifier, STATE(3581), 2, sym_line_comment, sym_block_comment, @@ -186009,8 +186017,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7147), 1, - anon_sym_COLON, + ACTIONS(7135), 1, + sym__raw_string_literal_end, STATE(3582), 2, sym_line_comment, sym_block_comment, @@ -186019,8 +186027,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6426), 1, - anon_sym_RBRACE, + ACTIONS(7137), 1, + anon_sym_SEMI, STATE(3583), 2, sym_line_comment, sym_block_comment, @@ -186029,8 +186037,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5902), 1, - anon_sym_RBRACE, + ACTIONS(7139), 1, + anon_sym_RPAREN, STATE(3584), 2, sym_line_comment, sym_block_comment, @@ -186039,7 +186047,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7149), 1, + ACTIONS(7141), 1, anon_sym_COLON, STATE(3585), 2, sym_line_comment, @@ -186049,8 +186057,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7151), 1, - anon_sym_COLON, + ACTIONS(7143), 1, + anon_sym_SEMI, STATE(3586), 2, sym_line_comment, sym_block_comment, @@ -186059,8 +186067,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7153), 1, - sym_identifier, + ACTIONS(7145), 1, + anon_sym_COLON, STATE(3587), 2, sym_line_comment, sym_block_comment, @@ -186069,8 +186077,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7155), 1, - anon_sym_COLON, + ACTIONS(7147), 1, + anon_sym_LBRACK, STATE(3588), 2, sym_line_comment, sym_block_comment, @@ -186079,8 +186087,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7157), 1, - anon_sym_COLON, + ACTIONS(7149), 1, + anon_sym_LBRACK, STATE(3589), 2, sym_line_comment, sym_block_comment, @@ -186089,7 +186097,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7159), 1, + ACTIONS(7151), 1, anon_sym_COLON, STATE(3590), 2, sym_line_comment, @@ -186099,8 +186107,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7161), 1, - anon_sym_COLON, + ACTIONS(7153), 1, + sym_identifier, STATE(3591), 2, sym_line_comment, sym_block_comment, @@ -186109,8 +186117,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7163), 1, - anon_sym_COLON, + ACTIONS(6433), 1, + anon_sym_RBRACE, STATE(3592), 2, sym_line_comment, sym_block_comment, @@ -186119,8 +186127,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4499), 1, - anon_sym_fn, + ACTIONS(7155), 1, + anon_sym_COLON, STATE(3593), 2, sym_line_comment, sym_block_comment, @@ -186129,8 +186137,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7165), 1, - anon_sym_EQ_GT, + ACTIONS(7157), 1, + anon_sym_COLON, STATE(3594), 2, sym_line_comment, sym_block_comment, @@ -186139,8 +186147,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3979), 1, - sym_identifier, + ACTIONS(7159), 1, + anon_sym_COLON, STATE(3595), 2, sym_line_comment, sym_block_comment, @@ -186149,8 +186157,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7167), 1, - sym_identifier, + ACTIONS(7161), 1, + anon_sym_SEMI, STATE(3596), 2, sym_line_comment, sym_block_comment, @@ -186159,8 +186167,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7169), 1, - anon_sym_SEMI, + ACTIONS(7163), 1, + anon_sym_COLON, STATE(3597), 2, sym_line_comment, sym_block_comment, @@ -186169,8 +186177,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7171), 1, - anon_sym_SEMI, + ACTIONS(7165), 1, + anon_sym_COLON, STATE(3598), 2, sym_line_comment, sym_block_comment, @@ -186179,8 +186187,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7173), 1, - sym_identifier, + ACTIONS(7167), 1, + anon_sym_COLON, STATE(3599), 2, sym_line_comment, sym_block_comment, @@ -186189,8 +186197,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7175), 1, - anon_sym_fn, + ACTIONS(7169), 1, + sym_identifier, STATE(3600), 2, sym_line_comment, sym_block_comment, @@ -186199,8 +186207,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7177), 1, - sym_raw_string_literal_content, + ACTIONS(4511), 1, + anon_sym_fn, STATE(3601), 2, sym_line_comment, sym_block_comment, @@ -186209,7 +186217,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7179), 1, + ACTIONS(7171), 1, sym_identifier, STATE(3602), 2, sym_line_comment, @@ -186219,8 +186227,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7181), 1, - sym_identifier, + ACTIONS(7173), 1, + anon_sym_SEMI, STATE(3603), 2, sym_line_comment, sym_block_comment, @@ -186229,7 +186237,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7183), 1, + ACTIONS(7175), 1, sym_identifier, STATE(3604), 2, sym_line_comment, @@ -186239,8 +186247,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7185), 1, - anon_sym_EQ_GT, + ACTIONS(7177), 1, + sym_identifier, STATE(3605), 2, sym_line_comment, sym_block_comment, @@ -186249,7 +186257,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6005), 1, + ACTIONS(7179), 1, anon_sym_RBRACE, STATE(3606), 2, sym_line_comment, @@ -186259,7 +186267,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7187), 1, + ACTIONS(7181), 1, sym_identifier, STATE(3607), 2, sym_line_comment, @@ -186269,8 +186277,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7189), 1, - anon_sym_RPAREN, + ACTIONS(7183), 1, + anon_sym_fn, STATE(3608), 2, sym_line_comment, sym_block_comment, @@ -186279,8 +186287,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5155), 1, - anon_sym_COLON_COLON, + ACTIONS(7185), 1, + sym_identifier, STATE(3609), 2, sym_line_comment, sym_block_comment, @@ -186289,8 +186297,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(915), 1, - anon_sym_RBRACK, + ACTIONS(7187), 1, + sym_identifier, STATE(3610), 2, sym_line_comment, sym_block_comment, @@ -186299,8 +186307,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7191), 1, - sym_identifier, + ACTIONS(7189), 1, + anon_sym_EQ_GT, STATE(3611), 2, sym_line_comment, sym_block_comment, @@ -186309,7 +186317,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6709), 1, + ACTIONS(7191), 1, anon_sym_SEMI, STATE(3612), 2, sym_line_comment, @@ -186350,80 +186358,80 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(1013)] = 712, [SMALL_STATE(1014)] = 786, [SMALL_STATE(1015)] = 860, - [SMALL_STATE(1016)] = 923, - [SMALL_STATE(1017)] = 990, - [SMALL_STATE(1018)] = 1057, - [SMALL_STATE(1019)] = 1120, - [SMALL_STATE(1020)] = 1183, - [SMALL_STATE(1021)] = 1246, - [SMALL_STATE(1022)] = 1317, - [SMALL_STATE(1023)] = 1388, + [SMALL_STATE(1016)] = 931, + [SMALL_STATE(1017)] = 994, + [SMALL_STATE(1018)] = 1061, + [SMALL_STATE(1019)] = 1124, + [SMALL_STATE(1020)] = 1195, + [SMALL_STATE(1021)] = 1258, + [SMALL_STATE(1022)] = 1321, + [SMALL_STATE(1023)] = 1384, [SMALL_STATE(1024)] = 1451, - [SMALL_STATE(1025)] = 1518, - [SMALL_STATE(1026)] = 1581, - [SMALL_STATE(1027)] = 1644, - [SMALL_STATE(1028)] = 1707, - [SMALL_STATE(1029)] = 1778, - [SMALL_STATE(1030)] = 1849, - [SMALL_STATE(1031)] = 1912, + [SMALL_STATE(1025)] = 1522, + [SMALL_STATE(1026)] = 1585, + [SMALL_STATE(1027)] = 1652, + [SMALL_STATE(1028)] = 1715, + [SMALL_STATE(1029)] = 1782, + [SMALL_STATE(1030)] = 1845, + [SMALL_STATE(1031)] = 1908, [SMALL_STATE(1032)] = 1979, - [SMALL_STATE(1033)] = 2047, - [SMALL_STATE(1034)] = 2109, - [SMALL_STATE(1035)] = 2171, - [SMALL_STATE(1036)] = 2233, - [SMALL_STATE(1037)] = 2295, - [SMALL_STATE(1038)] = 2357, - [SMALL_STATE(1039)] = 2419, - [SMALL_STATE(1040)] = 2481, - [SMALL_STATE(1041)] = 2551, + [SMALL_STATE(1033)] = 2045, + [SMALL_STATE(1034)] = 2107, + [SMALL_STATE(1035)] = 2177, + [SMALL_STATE(1036)] = 2239, + [SMALL_STATE(1037)] = 2301, + [SMALL_STATE(1038)] = 2369, + [SMALL_STATE(1039)] = 2431, + [SMALL_STATE(1040)] = 2493, + [SMALL_STATE(1041)] = 2555, [SMALL_STATE(1042)] = 2617, [SMALL_STATE(1043)] = 2679, [SMALL_STATE(1044)] = 2741, [SMALL_STATE(1045)] = 2802, - [SMALL_STATE(1046)] = 2867, - [SMALL_STATE(1047)] = 2930, - [SMALL_STATE(1048)] = 2991, - [SMALL_STATE(1049)] = 3052, - [SMALL_STATE(1050)] = 3115, - [SMALL_STATE(1051)] = 3180, - [SMALL_STATE(1052)] = 3243, - [SMALL_STATE(1053)] = 3304, - [SMALL_STATE(1054)] = 3365, - [SMALL_STATE(1055)] = 3470, - [SMALL_STATE(1056)] = 3535, - [SMALL_STATE(1057)] = 3598, - [SMALL_STATE(1058)] = 3659, - [SMALL_STATE(1059)] = 3720, - [SMALL_STATE(1060)] = 3781, - [SMALL_STATE(1061)] = 3844, - [SMALL_STATE(1062)] = 3905, + [SMALL_STATE(1046)] = 2863, + [SMALL_STATE(1047)] = 2962, + [SMALL_STATE(1048)] = 3025, + [SMALL_STATE(1049)] = 3090, + [SMALL_STATE(1050)] = 3153, + [SMALL_STATE(1051)] = 3216, + [SMALL_STATE(1052)] = 3279, + [SMALL_STATE(1053)] = 3342, + [SMALL_STATE(1054)] = 3405, + [SMALL_STATE(1055)] = 3510, + [SMALL_STATE(1056)] = 3573, + [SMALL_STATE(1057)] = 3634, + [SMALL_STATE(1058)] = 3697, + [SMALL_STATE(1059)] = 3758, + [SMALL_STATE(1060)] = 3821, + [SMALL_STATE(1061)] = 3886, + [SMALL_STATE(1062)] = 3947, [SMALL_STATE(1063)] = 4010, [SMALL_STATE(1064)] = 4071, [SMALL_STATE(1065)] = 4132, - [SMALL_STATE(1066)] = 4197, + [SMALL_STATE(1066)] = 4195, [SMALL_STATE(1067)] = 4258, - [SMALL_STATE(1068)] = 4321, - [SMALL_STATE(1069)] = 4426, - [SMALL_STATE(1070)] = 4489, - [SMALL_STATE(1071)] = 4552, - [SMALL_STATE(1072)] = 4613, - [SMALL_STATE(1073)] = 4674, - [SMALL_STATE(1074)] = 4737, - [SMALL_STATE(1075)] = 4842, - [SMALL_STATE(1076)] = 4903, - [SMALL_STATE(1077)] = 4966, - [SMALL_STATE(1078)] = 5065, - [SMALL_STATE(1079)] = 5128, - [SMALL_STATE(1080)] = 5233, - [SMALL_STATE(1081)] = 5294, - [SMALL_STATE(1082)] = 5355, - [SMALL_STATE(1083)] = 5454, - [SMALL_STATE(1084)] = 5517, - [SMALL_STATE(1085)] = 5622, - [SMALL_STATE(1086)] = 5685, - [SMALL_STATE(1087)] = 5748, - [SMALL_STATE(1088)] = 5811, - [SMALL_STATE(1089)] = 5874, + [SMALL_STATE(1068)] = 4323, + [SMALL_STATE(1069)] = 4384, + [SMALL_STATE(1070)] = 4445, + [SMALL_STATE(1071)] = 4506, + [SMALL_STATE(1072)] = 4569, + [SMALL_STATE(1073)] = 4630, + [SMALL_STATE(1074)] = 4691, + [SMALL_STATE(1075)] = 4796, + [SMALL_STATE(1076)] = 4857, + [SMALL_STATE(1077)] = 4918, + [SMALL_STATE(1078)] = 5023, + [SMALL_STATE(1079)] = 5088, + [SMALL_STATE(1080)] = 5149, + [SMALL_STATE(1081)] = 5212, + [SMALL_STATE(1082)] = 5275, + [SMALL_STATE(1083)] = 5338, + [SMALL_STATE(1084)] = 5443, + [SMALL_STATE(1085)] = 5504, + [SMALL_STATE(1086)] = 5565, + [SMALL_STATE(1087)] = 5670, + [SMALL_STATE(1088)] = 5733, + [SMALL_STATE(1089)] = 5838, [SMALL_STATE(1090)] = 5937, [SMALL_STATE(1091)] = 6000, [SMALL_STATE(1092)] = 6060, @@ -186460,333 +186468,333 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(1123)] = 7920, [SMALL_STATE(1124)] = 7980, [SMALL_STATE(1125)] = 8040, - [SMALL_STATE(1126)] = 8100, - [SMALL_STATE(1127)] = 8160, - [SMALL_STATE(1128)] = 8220, - [SMALL_STATE(1129)] = 8280, - [SMALL_STATE(1130)] = 8340, - [SMALL_STATE(1131)] = 8400, - [SMALL_STATE(1132)] = 8460, - [SMALL_STATE(1133)] = 8520, - [SMALL_STATE(1134)] = 8580, - [SMALL_STATE(1135)] = 8640, - [SMALL_STATE(1136)] = 8700, - [SMALL_STATE(1137)] = 8760, - [SMALL_STATE(1138)] = 8820, - [SMALL_STATE(1139)] = 8880, - [SMALL_STATE(1140)] = 8940, - [SMALL_STATE(1141)] = 9000, - [SMALL_STATE(1142)] = 9060, - [SMALL_STATE(1143)] = 9120, - [SMALL_STATE(1144)] = 9180, - [SMALL_STATE(1145)] = 9240, - [SMALL_STATE(1146)] = 9300, - [SMALL_STATE(1147)] = 9360, - [SMALL_STATE(1148)] = 9420, - [SMALL_STATE(1149)] = 9480, - [SMALL_STATE(1150)] = 9540, - [SMALL_STATE(1151)] = 9600, - [SMALL_STATE(1152)] = 9660, - [SMALL_STATE(1153)] = 9720, - [SMALL_STATE(1154)] = 9780, - [SMALL_STATE(1155)] = 9840, - [SMALL_STATE(1156)] = 9900, - [SMALL_STATE(1157)] = 9960, - [SMALL_STATE(1158)] = 10020, - [SMALL_STATE(1159)] = 10080, - [SMALL_STATE(1160)] = 10140, - [SMALL_STATE(1161)] = 10200, - [SMALL_STATE(1162)] = 10260, - [SMALL_STATE(1163)] = 10320, - [SMALL_STATE(1164)] = 10380, - [SMALL_STATE(1165)] = 10440, - [SMALL_STATE(1166)] = 10500, - [SMALL_STATE(1167)] = 10560, - [SMALL_STATE(1168)] = 10620, - [SMALL_STATE(1169)] = 10680, - [SMALL_STATE(1170)] = 10740, - [SMALL_STATE(1171)] = 10800, - [SMALL_STATE(1172)] = 10860, - [SMALL_STATE(1173)] = 10920, - [SMALL_STATE(1174)] = 10980, - [SMALL_STATE(1175)] = 11040, - [SMALL_STATE(1176)] = 11100, - [SMALL_STATE(1177)] = 11160, - [SMALL_STATE(1178)] = 11220, - [SMALL_STATE(1179)] = 11280, - [SMALL_STATE(1180)] = 11340, - [SMALL_STATE(1181)] = 11400, - [SMALL_STATE(1182)] = 11460, - [SMALL_STATE(1183)] = 11520, - [SMALL_STATE(1184)] = 11580, - [SMALL_STATE(1185)] = 11640, - [SMALL_STATE(1186)] = 11700, - [SMALL_STATE(1187)] = 11760, - [SMALL_STATE(1188)] = 11820, - [SMALL_STATE(1189)] = 11880, - [SMALL_STATE(1190)] = 11940, - [SMALL_STATE(1191)] = 12000, - [SMALL_STATE(1192)] = 12060, - [SMALL_STATE(1193)] = 12120, - [SMALL_STATE(1194)] = 12180, - [SMALL_STATE(1195)] = 12240, - [SMALL_STATE(1196)] = 12300, - [SMALL_STATE(1197)] = 12360, - [SMALL_STATE(1198)] = 12420, - [SMALL_STATE(1199)] = 12480, - [SMALL_STATE(1200)] = 12540, - [SMALL_STATE(1201)] = 12600, - [SMALL_STATE(1202)] = 12660, - [SMALL_STATE(1203)] = 12720, - [SMALL_STATE(1204)] = 12780, - [SMALL_STATE(1205)] = 12840, - [SMALL_STATE(1206)] = 12900, - [SMALL_STATE(1207)] = 12960, - [SMALL_STATE(1208)] = 13020, - [SMALL_STATE(1209)] = 13080, - [SMALL_STATE(1210)] = 13140, - [SMALL_STATE(1211)] = 13200, - [SMALL_STATE(1212)] = 13260, - [SMALL_STATE(1213)] = 13320, - [SMALL_STATE(1214)] = 13380, - [SMALL_STATE(1215)] = 13440, - [SMALL_STATE(1216)] = 13500, - [SMALL_STATE(1217)] = 13592, - [SMALL_STATE(1218)] = 13652, - [SMALL_STATE(1219)] = 13712, - [SMALL_STATE(1220)] = 13772, - [SMALL_STATE(1221)] = 13832, - [SMALL_STATE(1222)] = 13892, - [SMALL_STATE(1223)] = 13952, - [SMALL_STATE(1224)] = 14012, - [SMALL_STATE(1225)] = 14072, - [SMALL_STATE(1226)] = 14132, - [SMALL_STATE(1227)] = 14192, - [SMALL_STATE(1228)] = 14252, - [SMALL_STATE(1229)] = 14312, - [SMALL_STATE(1230)] = 14372, - [SMALL_STATE(1231)] = 14432, - [SMALL_STATE(1232)] = 14492, - [SMALL_STATE(1233)] = 14552, - [SMALL_STATE(1234)] = 14612, - [SMALL_STATE(1235)] = 14672, - [SMALL_STATE(1236)] = 14732, - [SMALL_STATE(1237)] = 14792, - [SMALL_STATE(1238)] = 14852, - [SMALL_STATE(1239)] = 14916, - [SMALL_STATE(1240)] = 14976, - [SMALL_STATE(1241)] = 15036, - [SMALL_STATE(1242)] = 15096, - [SMALL_STATE(1243)] = 15156, - [SMALL_STATE(1244)] = 15218, - [SMALL_STATE(1245)] = 15278, - [SMALL_STATE(1246)] = 15338, - [SMALL_STATE(1247)] = 15398, - [SMALL_STATE(1248)] = 15458, - [SMALL_STATE(1249)] = 15518, - [SMALL_STATE(1250)] = 15578, - [SMALL_STATE(1251)] = 15638, - [SMALL_STATE(1252)] = 15706, - [SMALL_STATE(1253)] = 15766, - [SMALL_STATE(1254)] = 15826, - [SMALL_STATE(1255)] = 15886, - [SMALL_STATE(1256)] = 15946, - [SMALL_STATE(1257)] = 16006, - [SMALL_STATE(1258)] = 16066, - [SMALL_STATE(1259)] = 16126, - [SMALL_STATE(1260)] = 16186, - [SMALL_STATE(1261)] = 16246, - [SMALL_STATE(1262)] = 16306, - [SMALL_STATE(1263)] = 16366, - [SMALL_STATE(1264)] = 16426, - [SMALL_STATE(1265)] = 16486, - [SMALL_STATE(1266)] = 16546, - [SMALL_STATE(1267)] = 16606, - [SMALL_STATE(1268)] = 16666, - [SMALL_STATE(1269)] = 16726, - [SMALL_STATE(1270)] = 16786, - [SMALL_STATE(1271)] = 16846, - [SMALL_STATE(1272)] = 16906, - [SMALL_STATE(1273)] = 16966, - [SMALL_STATE(1274)] = 17026, - [SMALL_STATE(1275)] = 17086, - [SMALL_STATE(1276)] = 17146, - [SMALL_STATE(1277)] = 17206, - [SMALL_STATE(1278)] = 17266, - [SMALL_STATE(1279)] = 17326, - [SMALL_STATE(1280)] = 17386, - [SMALL_STATE(1281)] = 17446, - [SMALL_STATE(1282)] = 17506, - [SMALL_STATE(1283)] = 17566, - [SMALL_STATE(1284)] = 17626, - [SMALL_STATE(1285)] = 17686, - [SMALL_STATE(1286)] = 17746, - [SMALL_STATE(1287)] = 17806, - [SMALL_STATE(1288)] = 17866, - [SMALL_STATE(1289)] = 17928, - [SMALL_STATE(1290)] = 17988, - [SMALL_STATE(1291)] = 18048, - [SMALL_STATE(1292)] = 18108, - [SMALL_STATE(1293)] = 18168, - [SMALL_STATE(1294)] = 18228, - [SMALL_STATE(1295)] = 18288, - [SMALL_STATE(1296)] = 18348, - [SMALL_STATE(1297)] = 18408, - [SMALL_STATE(1298)] = 18468, - [SMALL_STATE(1299)] = 18528, - [SMALL_STATE(1300)] = 18588, - [SMALL_STATE(1301)] = 18648, - [SMALL_STATE(1302)] = 18708, - [SMALL_STATE(1303)] = 18768, - [SMALL_STATE(1304)] = 18860, - [SMALL_STATE(1305)] = 18920, - [SMALL_STATE(1306)] = 18980, - [SMALL_STATE(1307)] = 19040, - [SMALL_STATE(1308)] = 19100, - [SMALL_STATE(1309)] = 19160, - [SMALL_STATE(1310)] = 19220, - [SMALL_STATE(1311)] = 19280, - [SMALL_STATE(1312)] = 19340, - [SMALL_STATE(1313)] = 19400, - [SMALL_STATE(1314)] = 19460, - [SMALL_STATE(1315)] = 19520, - [SMALL_STATE(1316)] = 19580, - [SMALL_STATE(1317)] = 19640, - [SMALL_STATE(1318)] = 19700, - [SMALL_STATE(1319)] = 19760, - [SMALL_STATE(1320)] = 19820, - [SMALL_STATE(1321)] = 19880, - [SMALL_STATE(1322)] = 19940, - [SMALL_STATE(1323)] = 20000, - [SMALL_STATE(1324)] = 20066, - [SMALL_STATE(1325)] = 20126, - [SMALL_STATE(1326)] = 20186, - [SMALL_STATE(1327)] = 20246, - [SMALL_STATE(1328)] = 20306, - [SMALL_STATE(1329)] = 20366, - [SMALL_STATE(1330)] = 20426, - [SMALL_STATE(1331)] = 20486, - [SMALL_STATE(1332)] = 20546, - [SMALL_STATE(1333)] = 20606, - [SMALL_STATE(1334)] = 20666, - [SMALL_STATE(1335)] = 20726, - [SMALL_STATE(1336)] = 20786, - [SMALL_STATE(1337)] = 20846, - [SMALL_STATE(1338)] = 20912, - [SMALL_STATE(1339)] = 20972, - [SMALL_STATE(1340)] = 21032, - [SMALL_STATE(1341)] = 21092, - [SMALL_STATE(1342)] = 21152, - [SMALL_STATE(1343)] = 21212, - [SMALL_STATE(1344)] = 21272, - [SMALL_STATE(1345)] = 21332, - [SMALL_STATE(1346)] = 21392, - [SMALL_STATE(1347)] = 21452, - [SMALL_STATE(1348)] = 21512, - [SMALL_STATE(1349)] = 21572, - [SMALL_STATE(1350)] = 21632, - [SMALL_STATE(1351)] = 21692, - [SMALL_STATE(1352)] = 21752, - [SMALL_STATE(1353)] = 21812, - [SMALL_STATE(1354)] = 21878, - [SMALL_STATE(1355)] = 21938, - [SMALL_STATE(1356)] = 21998, - [SMALL_STATE(1357)] = 22058, - [SMALL_STATE(1358)] = 22118, - [SMALL_STATE(1359)] = 22178, - [SMALL_STATE(1360)] = 22238, - [SMALL_STATE(1361)] = 22298, - [SMALL_STATE(1362)] = 22358, - [SMALL_STATE(1363)] = 22418, - [SMALL_STATE(1364)] = 22478, - [SMALL_STATE(1365)] = 22538, - [SMALL_STATE(1366)] = 22598, - [SMALL_STATE(1367)] = 22658, - [SMALL_STATE(1368)] = 22718, - [SMALL_STATE(1369)] = 22778, - [SMALL_STATE(1370)] = 22838, - [SMALL_STATE(1371)] = 22898, - [SMALL_STATE(1372)] = 22958, - [SMALL_STATE(1373)] = 23018, - [SMALL_STATE(1374)] = 23078, - [SMALL_STATE(1375)] = 23138, - [SMALL_STATE(1376)] = 23198, - [SMALL_STATE(1377)] = 23258, - [SMALL_STATE(1378)] = 23320, - [SMALL_STATE(1379)] = 23380, - [SMALL_STATE(1380)] = 23440, - [SMALL_STATE(1381)] = 23500, - [SMALL_STATE(1382)] = 23560, - [SMALL_STATE(1383)] = 23620, - [SMALL_STATE(1384)] = 23680, - [SMALL_STATE(1385)] = 23740, - [SMALL_STATE(1386)] = 23800, - [SMALL_STATE(1387)] = 23860, - [SMALL_STATE(1388)] = 23920, - [SMALL_STATE(1389)] = 23980, - [SMALL_STATE(1390)] = 24040, - [SMALL_STATE(1391)] = 24100, - [SMALL_STATE(1392)] = 24160, - [SMALL_STATE(1393)] = 24220, - [SMALL_STATE(1394)] = 24284, - [SMALL_STATE(1395)] = 24344, - [SMALL_STATE(1396)] = 24404, - [SMALL_STATE(1397)] = 24464, - [SMALL_STATE(1398)] = 24524, - [SMALL_STATE(1399)] = 24584, - [SMALL_STATE(1400)] = 24644, - [SMALL_STATE(1401)] = 24704, - [SMALL_STATE(1402)] = 24764, - [SMALL_STATE(1403)] = 24824, - [SMALL_STATE(1404)] = 24884, - [SMALL_STATE(1405)] = 24944, - [SMALL_STATE(1406)] = 25004, - [SMALL_STATE(1407)] = 25064, - [SMALL_STATE(1408)] = 25124, - [SMALL_STATE(1409)] = 25184, - [SMALL_STATE(1410)] = 25244, - [SMALL_STATE(1411)] = 25304, - [SMALL_STATE(1412)] = 25364, - [SMALL_STATE(1413)] = 25424, - [SMALL_STATE(1414)] = 25484, - [SMALL_STATE(1415)] = 25544, - [SMALL_STATE(1416)] = 25604, - [SMALL_STATE(1417)] = 25664, - [SMALL_STATE(1418)] = 25724, - [SMALL_STATE(1419)] = 25784, - [SMALL_STATE(1420)] = 25846, - [SMALL_STATE(1421)] = 25906, - [SMALL_STATE(1422)] = 25966, - [SMALL_STATE(1423)] = 26026, - [SMALL_STATE(1424)] = 26086, - [SMALL_STATE(1425)] = 26146, - [SMALL_STATE(1426)] = 26206, - [SMALL_STATE(1427)] = 26266, - [SMALL_STATE(1428)] = 26326, - [SMALL_STATE(1429)] = 26386, - [SMALL_STATE(1430)] = 26446, - [SMALL_STATE(1431)] = 26506, - [SMALL_STATE(1432)] = 26566, - [SMALL_STATE(1433)] = 26626, - [SMALL_STATE(1434)] = 26686, - [SMALL_STATE(1435)] = 26746, - [SMALL_STATE(1436)] = 26806, - [SMALL_STATE(1437)] = 26866, - [SMALL_STATE(1438)] = 26926, - [SMALL_STATE(1439)] = 26986, - [SMALL_STATE(1440)] = 27046, - [SMALL_STATE(1441)] = 27106, - [SMALL_STATE(1442)] = 27166, - [SMALL_STATE(1443)] = 27226, - [SMALL_STATE(1444)] = 27286, - [SMALL_STATE(1445)] = 27346, - [SMALL_STATE(1446)] = 27406, - [SMALL_STATE(1447)] = 27466, - [SMALL_STATE(1448)] = 27526, - [SMALL_STATE(1449)] = 27586, - [SMALL_STATE(1450)] = 27646, - [SMALL_STATE(1451)] = 27706, - [SMALL_STATE(1452)] = 27766, + [SMALL_STATE(1126)] = 8106, + [SMALL_STATE(1127)] = 8166, + [SMALL_STATE(1128)] = 8226, + [SMALL_STATE(1129)] = 8286, + [SMALL_STATE(1130)] = 8346, + [SMALL_STATE(1131)] = 8406, + [SMALL_STATE(1132)] = 8466, + [SMALL_STATE(1133)] = 8526, + [SMALL_STATE(1134)] = 8586, + [SMALL_STATE(1135)] = 8646, + [SMALL_STATE(1136)] = 8706, + [SMALL_STATE(1137)] = 8766, + [SMALL_STATE(1138)] = 8826, + [SMALL_STATE(1139)] = 8886, + [SMALL_STATE(1140)] = 8946, + [SMALL_STATE(1141)] = 9006, + [SMALL_STATE(1142)] = 9066, + [SMALL_STATE(1143)] = 9126, + [SMALL_STATE(1144)] = 9186, + [SMALL_STATE(1145)] = 9246, + [SMALL_STATE(1146)] = 9306, + [SMALL_STATE(1147)] = 9366, + [SMALL_STATE(1148)] = 9426, + [SMALL_STATE(1149)] = 9486, + [SMALL_STATE(1150)] = 9546, + [SMALL_STATE(1151)] = 9606, + [SMALL_STATE(1152)] = 9666, + [SMALL_STATE(1153)] = 9726, + [SMALL_STATE(1154)] = 9786, + [SMALL_STATE(1155)] = 9846, + [SMALL_STATE(1156)] = 9906, + [SMALL_STATE(1157)] = 9966, + [SMALL_STATE(1158)] = 10026, + [SMALL_STATE(1159)] = 10086, + [SMALL_STATE(1160)] = 10146, + [SMALL_STATE(1161)] = 10206, + [SMALL_STATE(1162)] = 10266, + [SMALL_STATE(1163)] = 10326, + [SMALL_STATE(1164)] = 10386, + [SMALL_STATE(1165)] = 10446, + [SMALL_STATE(1166)] = 10506, + [SMALL_STATE(1167)] = 10566, + [SMALL_STATE(1168)] = 10626, + [SMALL_STATE(1169)] = 10686, + [SMALL_STATE(1170)] = 10746, + [SMALL_STATE(1171)] = 10806, + [SMALL_STATE(1172)] = 10866, + [SMALL_STATE(1173)] = 10926, + [SMALL_STATE(1174)] = 10986, + [SMALL_STATE(1175)] = 11046, + [SMALL_STATE(1176)] = 11106, + [SMALL_STATE(1177)] = 11166, + [SMALL_STATE(1178)] = 11226, + [SMALL_STATE(1179)] = 11286, + [SMALL_STATE(1180)] = 11346, + [SMALL_STATE(1181)] = 11406, + [SMALL_STATE(1182)] = 11466, + [SMALL_STATE(1183)] = 11526, + [SMALL_STATE(1184)] = 11586, + [SMALL_STATE(1185)] = 11646, + [SMALL_STATE(1186)] = 11706, + [SMALL_STATE(1187)] = 11766, + [SMALL_STATE(1188)] = 11826, + [SMALL_STATE(1189)] = 11886, + [SMALL_STATE(1190)] = 11946, + [SMALL_STATE(1191)] = 12006, + [SMALL_STATE(1192)] = 12066, + [SMALL_STATE(1193)] = 12126, + [SMALL_STATE(1194)] = 12186, + [SMALL_STATE(1195)] = 12246, + [SMALL_STATE(1196)] = 12306, + [SMALL_STATE(1197)] = 12366, + [SMALL_STATE(1198)] = 12426, + [SMALL_STATE(1199)] = 12486, + [SMALL_STATE(1200)] = 12546, + [SMALL_STATE(1201)] = 12606, + [SMALL_STATE(1202)] = 12666, + [SMALL_STATE(1203)] = 12726, + [SMALL_STATE(1204)] = 12786, + [SMALL_STATE(1205)] = 12846, + [SMALL_STATE(1206)] = 12906, + [SMALL_STATE(1207)] = 12966, + [SMALL_STATE(1208)] = 13026, + [SMALL_STATE(1209)] = 13086, + [SMALL_STATE(1210)] = 13146, + [SMALL_STATE(1211)] = 13206, + [SMALL_STATE(1212)] = 13266, + [SMALL_STATE(1213)] = 13326, + [SMALL_STATE(1214)] = 13386, + [SMALL_STATE(1215)] = 13446, + [SMALL_STATE(1216)] = 13506, + [SMALL_STATE(1217)] = 13566, + [SMALL_STATE(1218)] = 13626, + [SMALL_STATE(1219)] = 13686, + [SMALL_STATE(1220)] = 13746, + [SMALL_STATE(1221)] = 13806, + [SMALL_STATE(1222)] = 13866, + [SMALL_STATE(1223)] = 13926, + [SMALL_STATE(1224)] = 13986, + [SMALL_STATE(1225)] = 14046, + [SMALL_STATE(1226)] = 14106, + [SMALL_STATE(1227)] = 14166, + [SMALL_STATE(1228)] = 14226, + [SMALL_STATE(1229)] = 14286, + [SMALL_STATE(1230)] = 14346, + [SMALL_STATE(1231)] = 14406, + [SMALL_STATE(1232)] = 14466, + [SMALL_STATE(1233)] = 14526, + [SMALL_STATE(1234)] = 14586, + [SMALL_STATE(1235)] = 14646, + [SMALL_STATE(1236)] = 14706, + [SMALL_STATE(1237)] = 14766, + [SMALL_STATE(1238)] = 14826, + [SMALL_STATE(1239)] = 14886, + [SMALL_STATE(1240)] = 14946, + [SMALL_STATE(1241)] = 15006, + [SMALL_STATE(1242)] = 15066, + [SMALL_STATE(1243)] = 15126, + [SMALL_STATE(1244)] = 15186, + [SMALL_STATE(1245)] = 15246, + [SMALL_STATE(1246)] = 15306, + [SMALL_STATE(1247)] = 15366, + [SMALL_STATE(1248)] = 15426, + [SMALL_STATE(1249)] = 15486, + [SMALL_STATE(1250)] = 15546, + [SMALL_STATE(1251)] = 15606, + [SMALL_STATE(1252)] = 15666, + [SMALL_STATE(1253)] = 15726, + [SMALL_STATE(1254)] = 15786, + [SMALL_STATE(1255)] = 15846, + [SMALL_STATE(1256)] = 15906, + [SMALL_STATE(1257)] = 15966, + [SMALL_STATE(1258)] = 16026, + [SMALL_STATE(1259)] = 16086, + [SMALL_STATE(1260)] = 16146, + [SMALL_STATE(1261)] = 16206, + [SMALL_STATE(1262)] = 16266, + [SMALL_STATE(1263)] = 16326, + [SMALL_STATE(1264)] = 16386, + [SMALL_STATE(1265)] = 16446, + [SMALL_STATE(1266)] = 16506, + [SMALL_STATE(1267)] = 16566, + [SMALL_STATE(1268)] = 16628, + [SMALL_STATE(1269)] = 16692, + [SMALL_STATE(1270)] = 16752, + [SMALL_STATE(1271)] = 16812, + [SMALL_STATE(1272)] = 16872, + [SMALL_STATE(1273)] = 16932, + [SMALL_STATE(1274)] = 16992, + [SMALL_STATE(1275)] = 17052, + [SMALL_STATE(1276)] = 17112, + [SMALL_STATE(1277)] = 17172, + [SMALL_STATE(1278)] = 17232, + [SMALL_STATE(1279)] = 17292, + [SMALL_STATE(1280)] = 17352, + [SMALL_STATE(1281)] = 17412, + [SMALL_STATE(1282)] = 17472, + [SMALL_STATE(1283)] = 17532, + [SMALL_STATE(1284)] = 17592, + [SMALL_STATE(1285)] = 17652, + [SMALL_STATE(1286)] = 17712, + [SMALL_STATE(1287)] = 17772, + [SMALL_STATE(1288)] = 17832, + [SMALL_STATE(1289)] = 17892, + [SMALL_STATE(1290)] = 17952, + [SMALL_STATE(1291)] = 18012, + [SMALL_STATE(1292)] = 18072, + [SMALL_STATE(1293)] = 18132, + [SMALL_STATE(1294)] = 18192, + [SMALL_STATE(1295)] = 18252, + [SMALL_STATE(1296)] = 18312, + [SMALL_STATE(1297)] = 18372, + [SMALL_STATE(1298)] = 18432, + [SMALL_STATE(1299)] = 18492, + [SMALL_STATE(1300)] = 18552, + [SMALL_STATE(1301)] = 18612, + [SMALL_STATE(1302)] = 18672, + [SMALL_STATE(1303)] = 18732, + [SMALL_STATE(1304)] = 18792, + [SMALL_STATE(1305)] = 18852, + [SMALL_STATE(1306)] = 18912, + [SMALL_STATE(1307)] = 18972, + [SMALL_STATE(1308)] = 19032, + [SMALL_STATE(1309)] = 19092, + [SMALL_STATE(1310)] = 19152, + [SMALL_STATE(1311)] = 19212, + [SMALL_STATE(1312)] = 19272, + [SMALL_STATE(1313)] = 19332, + [SMALL_STATE(1314)] = 19392, + [SMALL_STATE(1315)] = 19452, + [SMALL_STATE(1316)] = 19512, + [SMALL_STATE(1317)] = 19572, + [SMALL_STATE(1318)] = 19632, + [SMALL_STATE(1319)] = 19692, + [SMALL_STATE(1320)] = 19752, + [SMALL_STATE(1321)] = 19812, + [SMALL_STATE(1322)] = 19872, + [SMALL_STATE(1323)] = 19932, + [SMALL_STATE(1324)] = 19992, + [SMALL_STATE(1325)] = 20052, + [SMALL_STATE(1326)] = 20112, + [SMALL_STATE(1327)] = 20172, + [SMALL_STATE(1328)] = 20232, + [SMALL_STATE(1329)] = 20292, + [SMALL_STATE(1330)] = 20352, + [SMALL_STATE(1331)] = 20412, + [SMALL_STATE(1332)] = 20472, + [SMALL_STATE(1333)] = 20532, + [SMALL_STATE(1334)] = 20592, + [SMALL_STATE(1335)] = 20652, + [SMALL_STATE(1336)] = 20712, + [SMALL_STATE(1337)] = 20772, + [SMALL_STATE(1338)] = 20832, + [SMALL_STATE(1339)] = 20892, + [SMALL_STATE(1340)] = 20952, + [SMALL_STATE(1341)] = 21012, + [SMALL_STATE(1342)] = 21072, + [SMALL_STATE(1343)] = 21132, + [SMALL_STATE(1344)] = 21192, + [SMALL_STATE(1345)] = 21252, + [SMALL_STATE(1346)] = 21312, + [SMALL_STATE(1347)] = 21372, + [SMALL_STATE(1348)] = 21432, + [SMALL_STATE(1349)] = 21492, + [SMALL_STATE(1350)] = 21552, + [SMALL_STATE(1351)] = 21612, + [SMALL_STATE(1352)] = 21672, + [SMALL_STATE(1353)] = 21732, + [SMALL_STATE(1354)] = 21792, + [SMALL_STATE(1355)] = 21852, + [SMALL_STATE(1356)] = 21912, + [SMALL_STATE(1357)] = 21972, + [SMALL_STATE(1358)] = 22032, + [SMALL_STATE(1359)] = 22092, + [SMALL_STATE(1360)] = 22152, + [SMALL_STATE(1361)] = 22212, + [SMALL_STATE(1362)] = 22272, + [SMALL_STATE(1363)] = 22332, + [SMALL_STATE(1364)] = 22392, + [SMALL_STATE(1365)] = 22452, + [SMALL_STATE(1366)] = 22512, + [SMALL_STATE(1367)] = 22572, + [SMALL_STATE(1368)] = 22632, + [SMALL_STATE(1369)] = 22692, + [SMALL_STATE(1370)] = 22752, + [SMALL_STATE(1371)] = 22812, + [SMALL_STATE(1372)] = 22872, + [SMALL_STATE(1373)] = 22932, + [SMALL_STATE(1374)] = 22992, + [SMALL_STATE(1375)] = 23052, + [SMALL_STATE(1376)] = 23112, + [SMALL_STATE(1377)] = 23172, + [SMALL_STATE(1378)] = 23232, + [SMALL_STATE(1379)] = 23292, + [SMALL_STATE(1380)] = 23352, + [SMALL_STATE(1381)] = 23412, + [SMALL_STATE(1382)] = 23472, + [SMALL_STATE(1383)] = 23532, + [SMALL_STATE(1384)] = 23592, + [SMALL_STATE(1385)] = 23652, + [SMALL_STATE(1386)] = 23712, + [SMALL_STATE(1387)] = 23772, + [SMALL_STATE(1388)] = 23832, + [SMALL_STATE(1389)] = 23892, + [SMALL_STATE(1390)] = 23952, + [SMALL_STATE(1391)] = 24012, + [SMALL_STATE(1392)] = 24072, + [SMALL_STATE(1393)] = 24132, + [SMALL_STATE(1394)] = 24192, + [SMALL_STATE(1395)] = 24252, + [SMALL_STATE(1396)] = 24312, + [SMALL_STATE(1397)] = 24372, + [SMALL_STATE(1398)] = 24432, + [SMALL_STATE(1399)] = 24492, + [SMALL_STATE(1400)] = 24552, + [SMALL_STATE(1401)] = 24612, + [SMALL_STATE(1402)] = 24672, + [SMALL_STATE(1403)] = 24732, + [SMALL_STATE(1404)] = 24792, + [SMALL_STATE(1405)] = 24856, + [SMALL_STATE(1406)] = 24916, + [SMALL_STATE(1407)] = 24976, + [SMALL_STATE(1408)] = 25036, + [SMALL_STATE(1409)] = 25096, + [SMALL_STATE(1410)] = 25156, + [SMALL_STATE(1411)] = 25216, + [SMALL_STATE(1412)] = 25276, + [SMALL_STATE(1413)] = 25336, + [SMALL_STATE(1414)] = 25396, + [SMALL_STATE(1415)] = 25464, + [SMALL_STATE(1416)] = 25556, + [SMALL_STATE(1417)] = 25618, + [SMALL_STATE(1418)] = 25678, + [SMALL_STATE(1419)] = 25738, + [SMALL_STATE(1420)] = 25800, + [SMALL_STATE(1421)] = 25860, + [SMALL_STATE(1422)] = 25920, + [SMALL_STATE(1423)] = 25980, + [SMALL_STATE(1424)] = 26072, + [SMALL_STATE(1425)] = 26132, + [SMALL_STATE(1426)] = 26192, + [SMALL_STATE(1427)] = 26252, + [SMALL_STATE(1428)] = 26312, + [SMALL_STATE(1429)] = 26372, + [SMALL_STATE(1430)] = 26432, + [SMALL_STATE(1431)] = 26492, + [SMALL_STATE(1432)] = 26552, + [SMALL_STATE(1433)] = 26612, + [SMALL_STATE(1434)] = 26672, + [SMALL_STATE(1435)] = 26732, + [SMALL_STATE(1436)] = 26792, + [SMALL_STATE(1437)] = 26852, + [SMALL_STATE(1438)] = 26914, + [SMALL_STATE(1439)] = 26974, + [SMALL_STATE(1440)] = 27034, + [SMALL_STATE(1441)] = 27094, + [SMALL_STATE(1442)] = 27154, + [SMALL_STATE(1443)] = 27220, + [SMALL_STATE(1444)] = 27280, + [SMALL_STATE(1445)] = 27340, + [SMALL_STATE(1446)] = 27400, + [SMALL_STATE(1447)] = 27460, + [SMALL_STATE(1448)] = 27520, + [SMALL_STATE(1449)] = 27580, + [SMALL_STATE(1450)] = 27640, + [SMALL_STATE(1451)] = 27700, + [SMALL_STATE(1452)] = 27760, [SMALL_STATE(1453)] = 27826, [SMALL_STATE(1454)] = 27886, [SMALL_STATE(1455)] = 27946, @@ -186806,402 +186814,402 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(1469)] = 28786, [SMALL_STATE(1470)] = 28846, [SMALL_STATE(1471)] = 28906, - [SMALL_STATE(1472)] = 28965, - [SMALL_STATE(1473)] = 29024, - [SMALL_STATE(1474)] = 29083, - [SMALL_STATE(1475)] = 29142, - [SMALL_STATE(1476)] = 29203, - [SMALL_STATE(1477)] = 29262, - [SMALL_STATE(1478)] = 29321, - [SMALL_STATE(1479)] = 29382, - [SMALL_STATE(1480)] = 29441, - [SMALL_STATE(1481)] = 29536, + [SMALL_STATE(1472)] = 29001, + [SMALL_STATE(1473)] = 29060, + [SMALL_STATE(1474)] = 29121, + [SMALL_STATE(1475)] = 29180, + [SMALL_STATE(1476)] = 29239, + [SMALL_STATE(1477)] = 29298, + [SMALL_STATE(1478)] = 29357, + [SMALL_STATE(1479)] = 29416, + [SMALL_STATE(1480)] = 29511, + [SMALL_STATE(1481)] = 29570, [SMALL_STATE(1482)] = 29631, - [SMALL_STATE(1483)] = 29717, - [SMALL_STATE(1484)] = 29807, - [SMALL_STATE(1485)] = 29873, - [SMALL_STATE(1486)] = 29947, - [SMALL_STATE(1487)] = 30019, - [SMALL_STATE(1488)] = 30111, - [SMALL_STATE(1489)] = 30187, - [SMALL_STATE(1490)] = 30277, - [SMALL_STATE(1491)] = 30359, - [SMALL_STATE(1492)] = 30457, - [SMALL_STATE(1493)] = 30527, - [SMALL_STATE(1494)] = 30613, - [SMALL_STATE(1495)] = 30703, - [SMALL_STATE(1496)] = 30771, - [SMALL_STATE(1497)] = 30863, - [SMALL_STATE(1498)] = 30941, - [SMALL_STATE(1499)] = 31039, - [SMALL_STATE(1500)] = 31129, - [SMALL_STATE(1501)] = 31213, - [SMALL_STATE(1502)] = 31283, - [SMALL_STATE(1503)] = 31373, - [SMALL_STATE(1504)] = 31463, - [SMALL_STATE(1505)] = 31561, + [SMALL_STATE(1483)] = 29723, + [SMALL_STATE(1484)] = 29801, + [SMALL_STATE(1485)] = 29899, + [SMALL_STATE(1486)] = 29989, + [SMALL_STATE(1487)] = 30079, + [SMALL_STATE(1488)] = 30169, + [SMALL_STATE(1489)] = 30235, + [SMALL_STATE(1490)] = 30325, + [SMALL_STATE(1491)] = 30411, + [SMALL_STATE(1492)] = 30481, + [SMALL_STATE(1493)] = 30579, + [SMALL_STATE(1494)] = 30647, + [SMALL_STATE(1495)] = 30721, + [SMALL_STATE(1496)] = 30793, + [SMALL_STATE(1497)] = 30869, + [SMALL_STATE(1498)] = 30951, + [SMALL_STATE(1499)] = 31049, + [SMALL_STATE(1500)] = 31133, + [SMALL_STATE(1501)] = 31203, + [SMALL_STATE(1502)] = 31293, + [SMALL_STATE(1503)] = 31383, + [SMALL_STATE(1504)] = 31475, + [SMALL_STATE(1505)] = 31567, [SMALL_STATE(1506)] = 31653, - [SMALL_STATE(1507)] = 31720, - [SMALL_STATE(1508)] = 31785, - [SMALL_STATE(1509)] = 31852, + [SMALL_STATE(1507)] = 31718, + [SMALL_STATE(1508)] = 31781, + [SMALL_STATE(1509)] = 31848, [SMALL_STATE(1510)] = 31915, [SMALL_STATE(1511)] = 32000, - [SMALL_STATE(1512)] = 32063, - [SMALL_STATE(1513)] = 32148, - [SMALL_STATE(1514)] = 32215, + [SMALL_STATE(1512)] = 32085, + [SMALL_STATE(1513)] = 32170, + [SMALL_STATE(1514)] = 32237, [SMALL_STATE(1515)] = 32300, [SMALL_STATE(1516)] = 32385, - [SMALL_STATE(1517)] = 32441, - [SMALL_STATE(1518)] = 32499, - [SMALL_STATE(1519)] = 32557, - [SMALL_STATE(1520)] = 32617, - [SMALL_STATE(1521)] = 32681, - [SMALL_STATE(1522)] = 32737, - [SMALL_STATE(1523)] = 32795, - [SMALL_STATE(1524)] = 32851, - [SMALL_STATE(1525)] = 32909, - [SMALL_STATE(1526)] = 32965, - [SMALL_STATE(1527)] = 33029, + [SMALL_STATE(1517)] = 32449, + [SMALL_STATE(1518)] = 32509, + [SMALL_STATE(1519)] = 32569, + [SMALL_STATE(1520)] = 32627, + [SMALL_STATE(1521)] = 32683, + [SMALL_STATE(1522)] = 32739, + [SMALL_STATE(1523)] = 32797, + [SMALL_STATE(1524)] = 32855, + [SMALL_STATE(1525)] = 32919, + [SMALL_STATE(1526)] = 32975, + [SMALL_STATE(1527)] = 33033, [SMALL_STATE(1528)] = 33089, [SMALL_STATE(1529)] = 33145, - [SMALL_STATE(1530)] = 33205, - [SMALL_STATE(1531)] = 33269, - [SMALL_STATE(1532)] = 33327, - [SMALL_STATE(1533)] = 33391, - [SMALL_STATE(1534)] = 33451, - [SMALL_STATE(1535)] = 33511, - [SMALL_STATE(1536)] = 33571, - [SMALL_STATE(1537)] = 33627, - [SMALL_STATE(1538)] = 33687, - [SMALL_STATE(1539)] = 33745, - [SMALL_STATE(1540)] = 33801, - [SMALL_STATE(1541)] = 33857, + [SMALL_STATE(1530)] = 33203, + [SMALL_STATE(1531)] = 33263, + [SMALL_STATE(1532)] = 33321, + [SMALL_STATE(1533)] = 33385, + [SMALL_STATE(1534)] = 33441, + [SMALL_STATE(1535)] = 33497, + [SMALL_STATE(1536)] = 33553, + [SMALL_STATE(1537)] = 33613, + [SMALL_STATE(1538)] = 33673, + [SMALL_STATE(1539)] = 33737, + [SMALL_STATE(1540)] = 33797, + [SMALL_STATE(1541)] = 33853, [SMALL_STATE(1542)] = 33913, - [SMALL_STATE(1543)] = 33970, - [SMALL_STATE(1544)] = 34065, - [SMALL_STATE(1545)] = 34124, - [SMALL_STATE(1546)] = 34179, - [SMALL_STATE(1547)] = 34238, - [SMALL_STATE(1548)] = 34293, - [SMALL_STATE(1549)] = 34352, - [SMALL_STATE(1550)] = 34447, - [SMALL_STATE(1551)] = 34502, - [SMALL_STATE(1552)] = 34597, - [SMALL_STATE(1553)] = 34654, - [SMALL_STATE(1554)] = 34711, - [SMALL_STATE(1555)] = 34770, - [SMALL_STATE(1556)] = 34865, - [SMALL_STATE(1557)] = 34920, - [SMALL_STATE(1558)] = 34975, - [SMALL_STATE(1559)] = 35032, - [SMALL_STATE(1560)] = 35087, - [SMALL_STATE(1561)] = 35182, - [SMALL_STATE(1562)] = 35237, - [SMALL_STATE(1563)] = 35332, - [SMALL_STATE(1564)] = 35427, - [SMALL_STATE(1565)] = 35482, - [SMALL_STATE(1566)] = 35539, - [SMALL_STATE(1567)] = 35634, - [SMALL_STATE(1568)] = 35729, - [SMALL_STATE(1569)] = 35786, - [SMALL_STATE(1570)] = 35881, - [SMALL_STATE(1571)] = 35938, - [SMALL_STATE(1572)] = 36033, + [SMALL_STATE(1543)] = 34008, + [SMALL_STATE(1544)] = 34063, + [SMALL_STATE(1545)] = 34158, + [SMALL_STATE(1546)] = 34253, + [SMALL_STATE(1547)] = 34308, + [SMALL_STATE(1548)] = 34363, + [SMALL_STATE(1549)] = 34420, + [SMALL_STATE(1550)] = 34515, + [SMALL_STATE(1551)] = 34572, + [SMALL_STATE(1552)] = 34631, + [SMALL_STATE(1553)] = 34726, + [SMALL_STATE(1554)] = 34821, + [SMALL_STATE(1555)] = 34876, + [SMALL_STATE(1556)] = 34935, + [SMALL_STATE(1557)] = 35030, + [SMALL_STATE(1558)] = 35087, + [SMALL_STATE(1559)] = 35144, + [SMALL_STATE(1560)] = 35239, + [SMALL_STATE(1561)] = 35334, + [SMALL_STATE(1562)] = 35391, + [SMALL_STATE(1563)] = 35486, + [SMALL_STATE(1564)] = 35543, + [SMALL_STATE(1565)] = 35598, + [SMALL_STATE(1566)] = 35653, + [SMALL_STATE(1567)] = 35748, + [SMALL_STATE(1568)] = 35805, + [SMALL_STATE(1569)] = 35864, + [SMALL_STATE(1570)] = 35923, + [SMALL_STATE(1571)] = 35978, + [SMALL_STATE(1572)] = 36073, [SMALL_STATE(1573)] = 36128, - [SMALL_STATE(1574)] = 36216, - [SMALL_STATE(1575)] = 36308, - [SMALL_STATE(1576)] = 36394, - [SMALL_STATE(1577)] = 36486, - [SMALL_STATE(1578)] = 36572, - [SMALL_STATE(1579)] = 36664, - [SMALL_STATE(1580)] = 36746, - [SMALL_STATE(1581)] = 36814, - [SMALL_STATE(1582)] = 36868, - [SMALL_STATE(1583)] = 36922, - [SMALL_STATE(1584)] = 36976, - [SMALL_STATE(1585)] = 37030, - [SMALL_STATE(1586)] = 37118, - [SMALL_STATE(1587)] = 37172, - [SMALL_STATE(1588)] = 37226, - [SMALL_STATE(1589)] = 37298, - [SMALL_STATE(1590)] = 37390, - [SMALL_STATE(1591)] = 37468, - [SMALL_STATE(1592)] = 37524, - [SMALL_STATE(1593)] = 37612, - [SMALL_STATE(1594)] = 37692, - [SMALL_STATE(1595)] = 37748, - [SMALL_STATE(1596)] = 37802, - [SMALL_STATE(1597)] = 37858, - [SMALL_STATE(1598)] = 37914, - [SMALL_STATE(1599)] = 37970, - [SMALL_STATE(1600)] = 38024, - [SMALL_STATE(1601)] = 38080, - [SMALL_STATE(1602)] = 38166, - [SMALL_STATE(1603)] = 38222, - [SMALL_STATE(1604)] = 38276, - [SMALL_STATE(1605)] = 38334, - [SMALL_STATE(1606)] = 38388, - [SMALL_STATE(1607)] = 38454, - [SMALL_STATE(1608)] = 38542, - [SMALL_STATE(1609)] = 38598, - [SMALL_STATE(1610)] = 38652, - [SMALL_STATE(1611)] = 38740, - [SMALL_STATE(1612)] = 38794, - [SMALL_STATE(1613)] = 38850, - [SMALL_STATE(1614)] = 38938, - [SMALL_STATE(1615)] = 38994, - [SMALL_STATE(1616)] = 39080, - [SMALL_STATE(1617)] = 39166, - [SMALL_STATE(1618)] = 39220, - [SMALL_STATE(1619)] = 39308, - [SMALL_STATE(1620)] = 39382, - [SMALL_STATE(1621)] = 39438, - [SMALL_STATE(1622)] = 39492, - [SMALL_STATE(1623)] = 39548, - [SMALL_STATE(1624)] = 39604, - [SMALL_STATE(1625)] = 39658, - [SMALL_STATE(1626)] = 39744, - [SMALL_STATE(1627)] = 39800, - [SMALL_STATE(1628)] = 39882, - [SMALL_STATE(1629)] = 39974, - [SMALL_STATE(1630)] = 40038, - [SMALL_STATE(1631)] = 40108, - [SMALL_STATE(1632)] = 40162, - [SMALL_STATE(1633)] = 40254, - [SMALL_STATE(1634)] = 40310, + [SMALL_STATE(1574)] = 36206, + [SMALL_STATE(1575)] = 36260, + [SMALL_STATE(1576)] = 36316, + [SMALL_STATE(1577)] = 36370, + [SMALL_STATE(1578)] = 36424, + [SMALL_STATE(1579)] = 36510, + [SMALL_STATE(1580)] = 36564, + [SMALL_STATE(1581)] = 36638, + [SMALL_STATE(1582)] = 36724, + [SMALL_STATE(1583)] = 36778, + [SMALL_STATE(1584)] = 36834, + [SMALL_STATE(1585)] = 36920, + [SMALL_STATE(1586)] = 36986, + [SMALL_STATE(1587)] = 37066, + [SMALL_STATE(1588)] = 37154, + [SMALL_STATE(1589)] = 37208, + [SMALL_STATE(1590)] = 37264, + [SMALL_STATE(1591)] = 37322, + [SMALL_STATE(1592)] = 37378, + [SMALL_STATE(1593)] = 37434, + [SMALL_STATE(1594)] = 37490, + [SMALL_STATE(1595)] = 37544, + [SMALL_STATE(1596)] = 37636, + [SMALL_STATE(1597)] = 37724, + [SMALL_STATE(1598)] = 37796, + [SMALL_STATE(1599)] = 37850, + [SMALL_STATE(1600)] = 37904, + [SMALL_STATE(1601)] = 37992, + [SMALL_STATE(1602)] = 38048, + [SMALL_STATE(1603)] = 38130, + [SMALL_STATE(1604)] = 38184, + [SMALL_STATE(1605)] = 38240, + [SMALL_STATE(1606)] = 38296, + [SMALL_STATE(1607)] = 38382, + [SMALL_STATE(1608)] = 38438, + [SMALL_STATE(1609)] = 38494, + [SMALL_STATE(1610)] = 38586, + [SMALL_STATE(1611)] = 38640, + [SMALL_STATE(1612)] = 38728, + [SMALL_STATE(1613)] = 38796, + [SMALL_STATE(1614)] = 38852, + [SMALL_STATE(1615)] = 38940, + [SMALL_STATE(1616)] = 39026, + [SMALL_STATE(1617)] = 39096, + [SMALL_STATE(1618)] = 39160, + [SMALL_STATE(1619)] = 39214, + [SMALL_STATE(1620)] = 39300, + [SMALL_STATE(1621)] = 39382, + [SMALL_STATE(1622)] = 39438, + [SMALL_STATE(1623)] = 39530, + [SMALL_STATE(1624)] = 39618, + [SMALL_STATE(1625)] = 39674, + [SMALL_STATE(1626)] = 39728, + [SMALL_STATE(1627)] = 39816, + [SMALL_STATE(1628)] = 39908, + [SMALL_STATE(1629)] = 40000, + [SMALL_STATE(1630)] = 40092, + [SMALL_STATE(1631)] = 40146, + [SMALL_STATE(1632)] = 40202, + [SMALL_STATE(1633)] = 40256, + [SMALL_STATE(1634)] = 40344, [SMALL_STATE(1635)] = 40398, [SMALL_STATE(1636)] = 40454, [SMALL_STATE(1637)] = 40543, - [SMALL_STATE(1638)] = 40596, - [SMALL_STATE(1639)] = 40681, - [SMALL_STATE(1640)] = 40734, - [SMALL_STATE(1641)] = 40787, - [SMALL_STATE(1642)] = 40840, - [SMALL_STATE(1643)] = 40893, - [SMALL_STATE(1644)] = 40952, - [SMALL_STATE(1645)] = 41011, - [SMALL_STATE(1646)] = 41092, - [SMALL_STATE(1647)] = 41177, - [SMALL_STATE(1648)] = 41230, - [SMALL_STATE(1649)] = 41315, - [SMALL_STATE(1650)] = 41400, - [SMALL_STATE(1651)] = 41453, - [SMALL_STATE(1652)] = 41506, - [SMALL_STATE(1653)] = 41559, - [SMALL_STATE(1654)] = 41612, - [SMALL_STATE(1655)] = 41701, - [SMALL_STATE(1656)] = 41754, - [SMALL_STATE(1657)] = 41807, - [SMALL_STATE(1658)] = 41860, - [SMALL_STATE(1659)] = 41913, - [SMALL_STATE(1660)] = 41972, - [SMALL_STATE(1661)] = 42061, - [SMALL_STATE(1662)] = 42114, - [SMALL_STATE(1663)] = 42167, - [SMALL_STATE(1664)] = 42220, - [SMALL_STATE(1665)] = 42273, - [SMALL_STATE(1666)] = 42334, - [SMALL_STATE(1667)] = 42387, - [SMALL_STATE(1668)] = 42440, - [SMALL_STATE(1669)] = 42493, - [SMALL_STATE(1670)] = 42546, - [SMALL_STATE(1671)] = 42599, - [SMALL_STATE(1672)] = 42686, - [SMALL_STATE(1673)] = 42739, - [SMALL_STATE(1674)] = 42792, - [SMALL_STATE(1675)] = 42881, - [SMALL_STATE(1676)] = 42934, - [SMALL_STATE(1677)] = 42987, - [SMALL_STATE(1678)] = 43040, - [SMALL_STATE(1679)] = 43093, - [SMALL_STATE(1680)] = 43146, - [SMALL_STATE(1681)] = 43199, - [SMALL_STATE(1682)] = 43252, - [SMALL_STATE(1683)] = 43341, - [SMALL_STATE(1684)] = 43394, - [SMALL_STATE(1685)] = 43447, - [SMALL_STATE(1686)] = 43500, - [SMALL_STATE(1687)] = 43553, - [SMALL_STATE(1688)] = 43606, - [SMALL_STATE(1689)] = 43659, - [SMALL_STATE(1690)] = 43712, - [SMALL_STATE(1691)] = 43797, - [SMALL_STATE(1692)] = 43850, - [SMALL_STATE(1693)] = 43903, - [SMALL_STATE(1694)] = 43956, - [SMALL_STATE(1695)] = 44009, - [SMALL_STATE(1696)] = 44098, - [SMALL_STATE(1697)] = 44151, - [SMALL_STATE(1698)] = 44238, - [SMALL_STATE(1699)] = 44325, - [SMALL_STATE(1700)] = 44412, - [SMALL_STATE(1701)] = 44465, - [SMALL_STATE(1702)] = 44518, - [SMALL_STATE(1703)] = 44607, - [SMALL_STATE(1704)] = 44694, - [SMALL_STATE(1705)] = 44783, - [SMALL_STATE(1706)] = 44836, - [SMALL_STATE(1707)] = 44889, - [SMALL_STATE(1708)] = 44942, - [SMALL_STATE(1709)] = 44995, - [SMALL_STATE(1710)] = 45048, - [SMALL_STATE(1711)] = 45133, - [SMALL_STATE(1712)] = 45220, - [SMALL_STATE(1713)] = 45283, - [SMALL_STATE(1714)] = 45352, - [SMALL_STATE(1715)] = 45419, - [SMALL_STATE(1716)] = 45490, - [SMALL_STATE(1717)] = 45567, - [SMALL_STATE(1718)] = 45646, - [SMALL_STATE(1719)] = 45711, - [SMALL_STATE(1720)] = 45796, - [SMALL_STATE(1721)] = 45881, - [SMALL_STATE(1722)] = 45954, - [SMALL_STATE(1723)] = 46035, - [SMALL_STATE(1724)] = 46088, - [SMALL_STATE(1725)] = 46141, - [SMALL_STATE(1726)] = 46194, - [SMALL_STATE(1727)] = 46247, - [SMALL_STATE(1728)] = 46334, - [SMALL_STATE(1729)] = 46387, - [SMALL_STATE(1730)] = 46440, - [SMALL_STATE(1731)] = 46493, - [SMALL_STATE(1732)] = 46546, - [SMALL_STATE(1733)] = 46599, - [SMALL_STATE(1734)] = 46686, - [SMALL_STATE(1735)] = 46739, - [SMALL_STATE(1736)] = 46792, - [SMALL_STATE(1737)] = 46845, - [SMALL_STATE(1738)] = 46898, - [SMALL_STATE(1739)] = 46951, - [SMALL_STATE(1740)] = 47004, - [SMALL_STATE(1741)] = 47093, - [SMALL_STATE(1742)] = 47146, - [SMALL_STATE(1743)] = 47199, - [SMALL_STATE(1744)] = 47252, - [SMALL_STATE(1745)] = 47305, - [SMALL_STATE(1746)] = 47358, - [SMALL_STATE(1747)] = 47445, - [SMALL_STATE(1748)] = 47498, - [SMALL_STATE(1749)] = 47587, - [SMALL_STATE(1750)] = 47672, - [SMALL_STATE(1751)] = 47725, - [SMALL_STATE(1752)] = 47812, - [SMALL_STATE(1753)] = 47865, - [SMALL_STATE(1754)] = 47928, - [SMALL_STATE(1755)] = 47997, - [SMALL_STATE(1756)] = 48064, - [SMALL_STATE(1757)] = 48135, - [SMALL_STATE(1758)] = 48212, - [SMALL_STATE(1759)] = 48291, - [SMALL_STATE(1760)] = 48356, - [SMALL_STATE(1761)] = 48441, - [SMALL_STATE(1762)] = 48526, - [SMALL_STATE(1763)] = 48599, - [SMALL_STATE(1764)] = 48680, - [SMALL_STATE(1765)] = 48733, - [SMALL_STATE(1766)] = 48786, - [SMALL_STATE(1767)] = 48839, - [SMALL_STATE(1768)] = 48892, - [SMALL_STATE(1769)] = 48979, - [SMALL_STATE(1770)] = 49032, - [SMALL_STATE(1771)] = 49085, - [SMALL_STATE(1772)] = 49138, - [SMALL_STATE(1773)] = 49191, - [SMALL_STATE(1774)] = 49244, - [SMALL_STATE(1775)] = 49297, - [SMALL_STATE(1776)] = 49350, - [SMALL_STATE(1777)] = 49403, - [SMALL_STATE(1778)] = 49456, - [SMALL_STATE(1779)] = 49509, - [SMALL_STATE(1780)] = 49562, - [SMALL_STATE(1781)] = 49615, - [SMALL_STATE(1782)] = 49668, - [SMALL_STATE(1783)] = 49757, - [SMALL_STATE(1784)] = 49844, - [SMALL_STATE(1785)] = 49897, - [SMALL_STATE(1786)] = 49950, - [SMALL_STATE(1787)] = 50039, - [SMALL_STATE(1788)] = 50126, - [SMALL_STATE(1789)] = 50179, - [SMALL_STATE(1790)] = 50232, - [SMALL_STATE(1791)] = 50319, - [SMALL_STATE(1792)] = 50372, - [SMALL_STATE(1793)] = 50425, - [SMALL_STATE(1794)] = 50514, - [SMALL_STATE(1795)] = 50603, - [SMALL_STATE(1796)] = 50682, - [SMALL_STATE(1797)] = 50771, - [SMALL_STATE(1798)] = 50860, - [SMALL_STATE(1799)] = 50947, - [SMALL_STATE(1800)] = 51034, - [SMALL_STATE(1801)] = 51123, - [SMALL_STATE(1802)] = 51212, - [SMALL_STATE(1803)] = 51301, - [SMALL_STATE(1804)] = 51390, - [SMALL_STATE(1805)] = 51479, - [SMALL_STATE(1806)] = 51568, - [SMALL_STATE(1807)] = 51657, - [SMALL_STATE(1808)] = 51746, - [SMALL_STATE(1809)] = 51835, - [SMALL_STATE(1810)] = 51924, - [SMALL_STATE(1811)] = 52013, - [SMALL_STATE(1812)] = 52094, - [SMALL_STATE(1813)] = 52179, - [SMALL_STATE(1814)] = 52268, - [SMALL_STATE(1815)] = 52353, - [SMALL_STATE(1816)] = 52438, - [SMALL_STATE(1817)] = 52527, - [SMALL_STATE(1818)] = 52614, - [SMALL_STATE(1819)] = 52701, - [SMALL_STATE(1820)] = 52790, - [SMALL_STATE(1821)] = 52879, - [SMALL_STATE(1822)] = 52968, - [SMALL_STATE(1823)] = 53057, - [SMALL_STATE(1824)] = 53146, - [SMALL_STATE(1825)] = 53235, - [SMALL_STATE(1826)] = 53324, - [SMALL_STATE(1827)] = 53413, - [SMALL_STATE(1828)] = 53502, - [SMALL_STATE(1829)] = 53591, - [SMALL_STATE(1830)] = 53680, - [SMALL_STATE(1831)] = 53769, - [SMALL_STATE(1832)] = 53858, - [SMALL_STATE(1833)] = 53947, - [SMALL_STATE(1834)] = 54036, - [SMALL_STATE(1835)] = 54125, - [SMALL_STATE(1836)] = 54214, - [SMALL_STATE(1837)] = 54303, - [SMALL_STATE(1838)] = 54392, - [SMALL_STATE(1839)] = 54481, - [SMALL_STATE(1840)] = 54568, + [SMALL_STATE(1638)] = 40632, + [SMALL_STATE(1639)] = 40695, + [SMALL_STATE(1640)] = 40748, + [SMALL_STATE(1641)] = 40801, + [SMALL_STATE(1642)] = 40854, + [SMALL_STATE(1643)] = 40907, + [SMALL_STATE(1644)] = 40960, + [SMALL_STATE(1645)] = 41045, + [SMALL_STATE(1646)] = 41098, + [SMALL_STATE(1647)] = 41187, + [SMALL_STATE(1648)] = 41240, + [SMALL_STATE(1649)] = 41329, + [SMALL_STATE(1650)] = 41382, + [SMALL_STATE(1651)] = 41471, + [SMALL_STATE(1652)] = 41560, + [SMALL_STATE(1653)] = 41649, + [SMALL_STATE(1654)] = 41736, + [SMALL_STATE(1655)] = 41823, + [SMALL_STATE(1656)] = 41876, + [SMALL_STATE(1657)] = 41965, + [SMALL_STATE(1658)] = 42054, + [SMALL_STATE(1659)] = 42143, + [SMALL_STATE(1660)] = 42232, + [SMALL_STATE(1661)] = 42285, + [SMALL_STATE(1662)] = 42374, + [SMALL_STATE(1663)] = 42441, + [SMALL_STATE(1664)] = 42530, + [SMALL_STATE(1665)] = 42619, + [SMALL_STATE(1666)] = 42672, + [SMALL_STATE(1667)] = 42725, + [SMALL_STATE(1668)] = 42778, + [SMALL_STATE(1669)] = 42865, + [SMALL_STATE(1670)] = 42918, + [SMALL_STATE(1671)] = 42971, + [SMALL_STATE(1672)] = 43024, + [SMALL_STATE(1673)] = 43111, + [SMALL_STATE(1674)] = 43164, + [SMALL_STATE(1675)] = 43217, + [SMALL_STATE(1676)] = 43306, + [SMALL_STATE(1677)] = 43395, + [SMALL_STATE(1678)] = 43448, + [SMALL_STATE(1679)] = 43501, + [SMALL_STATE(1680)] = 43588, + [SMALL_STATE(1681)] = 43641, + [SMALL_STATE(1682)] = 43694, + [SMALL_STATE(1683)] = 43781, + [SMALL_STATE(1684)] = 43834, + [SMALL_STATE(1685)] = 43887, + [SMALL_STATE(1686)] = 43940, + [SMALL_STATE(1687)] = 43993, + [SMALL_STATE(1688)] = 44064, + [SMALL_STATE(1689)] = 44117, + [SMALL_STATE(1690)] = 44170, + [SMALL_STATE(1691)] = 44223, + [SMALL_STATE(1692)] = 44276, + [SMALL_STATE(1693)] = 44345, + [SMALL_STATE(1694)] = 44432, + [SMALL_STATE(1695)] = 44519, + [SMALL_STATE(1696)] = 44572, + [SMALL_STATE(1697)] = 44659, + [SMALL_STATE(1698)] = 44712, + [SMALL_STATE(1699)] = 44765, + [SMALL_STATE(1700)] = 44818, + [SMALL_STATE(1701)] = 44871, + [SMALL_STATE(1702)] = 44960, + [SMALL_STATE(1703)] = 45013, + [SMALL_STATE(1704)] = 45102, + [SMALL_STATE(1705)] = 45191, + [SMALL_STATE(1706)] = 45244, + [SMALL_STATE(1707)] = 45297, + [SMALL_STATE(1708)] = 45386, + [SMALL_STATE(1709)] = 45445, + [SMALL_STATE(1710)] = 45534, + [SMALL_STATE(1711)] = 45593, + [SMALL_STATE(1712)] = 45680, + [SMALL_STATE(1713)] = 45733, + [SMALL_STATE(1714)] = 45818, + [SMALL_STATE(1715)] = 45903, + [SMALL_STATE(1716)] = 45976, + [SMALL_STATE(1717)] = 46057, + [SMALL_STATE(1718)] = 46146, + [SMALL_STATE(1719)] = 46199, + [SMALL_STATE(1720)] = 46252, + [SMALL_STATE(1721)] = 46341, + [SMALL_STATE(1722)] = 46394, + [SMALL_STATE(1723)] = 46483, + [SMALL_STATE(1724)] = 46536, + [SMALL_STATE(1725)] = 46625, + [SMALL_STATE(1726)] = 46714, + [SMALL_STATE(1727)] = 46767, + [SMALL_STATE(1728)] = 46856, + [SMALL_STATE(1729)] = 46945, + [SMALL_STATE(1730)] = 47026, + [SMALL_STATE(1731)] = 47079, + [SMALL_STATE(1732)] = 47132, + [SMALL_STATE(1733)] = 47185, + [SMALL_STATE(1734)] = 47238, + [SMALL_STATE(1735)] = 47323, + [SMALL_STATE(1736)] = 47412, + [SMALL_STATE(1737)] = 47497, + [SMALL_STATE(1738)] = 47550, + [SMALL_STATE(1739)] = 47603, + [SMALL_STATE(1740)] = 47656, + [SMALL_STATE(1741)] = 47737, + [SMALL_STATE(1742)] = 47790, + [SMALL_STATE(1743)] = 47875, + [SMALL_STATE(1744)] = 47928, + [SMALL_STATE(1745)] = 48017, + [SMALL_STATE(1746)] = 48102, + [SMALL_STATE(1747)] = 48191, + [SMALL_STATE(1748)] = 48244, + [SMALL_STATE(1749)] = 48297, + [SMALL_STATE(1750)] = 48374, + [SMALL_STATE(1751)] = 48459, + [SMALL_STATE(1752)] = 48512, + [SMALL_STATE(1753)] = 48565, + [SMALL_STATE(1754)] = 48644, + [SMALL_STATE(1755)] = 48697, + [SMALL_STATE(1756)] = 48750, + [SMALL_STATE(1757)] = 48803, + [SMALL_STATE(1758)] = 48892, + [SMALL_STATE(1759)] = 48981, + [SMALL_STATE(1760)] = 49034, + [SMALL_STATE(1761)] = 49123, + [SMALL_STATE(1762)] = 49176, + [SMALL_STATE(1763)] = 49263, + [SMALL_STATE(1764)] = 49342, + [SMALL_STATE(1765)] = 49395, + [SMALL_STATE(1766)] = 49480, + [SMALL_STATE(1767)] = 49533, + [SMALL_STATE(1768)] = 49586, + [SMALL_STATE(1769)] = 49675, + [SMALL_STATE(1770)] = 49728, + [SMALL_STATE(1771)] = 49813, + [SMALL_STATE(1772)] = 49866, + [SMALL_STATE(1773)] = 49919, + [SMALL_STATE(1774)] = 49972, + [SMALL_STATE(1775)] = 50025, + [SMALL_STATE(1776)] = 50078, + [SMALL_STATE(1777)] = 50131, + [SMALL_STATE(1778)] = 50190, + [SMALL_STATE(1779)] = 50279, + [SMALL_STATE(1780)] = 50332, + [SMALL_STATE(1781)] = 50385, + [SMALL_STATE(1782)] = 50474, + [SMALL_STATE(1783)] = 50527, + [SMALL_STATE(1784)] = 50616, + [SMALL_STATE(1785)] = 50701, + [SMALL_STATE(1786)] = 50754, + [SMALL_STATE(1787)] = 50841, + [SMALL_STATE(1788)] = 50926, + [SMALL_STATE(1789)] = 51013, + [SMALL_STATE(1790)] = 51066, + [SMALL_STATE(1791)] = 51155, + [SMALL_STATE(1792)] = 51244, + [SMALL_STATE(1793)] = 51333, + [SMALL_STATE(1794)] = 51386, + [SMALL_STATE(1795)] = 51439, + [SMALL_STATE(1796)] = 51520, + [SMALL_STATE(1797)] = 51573, + [SMALL_STATE(1798)] = 51646, + [SMALL_STATE(1799)] = 51699, + [SMALL_STATE(1800)] = 51786, + [SMALL_STATE(1801)] = 51839, + [SMALL_STATE(1802)] = 51892, + [SMALL_STATE(1803)] = 51981, + [SMALL_STATE(1804)] = 52070, + [SMALL_STATE(1805)] = 52157, + [SMALL_STATE(1806)] = 52210, + [SMALL_STATE(1807)] = 52263, + [SMALL_STATE(1808)] = 52316, + [SMALL_STATE(1809)] = 52403, + [SMALL_STATE(1810)] = 52490, + [SMALL_STATE(1811)] = 52577, + [SMALL_STATE(1812)] = 52642, + [SMALL_STATE(1813)] = 52695, + [SMALL_STATE(1814)] = 52748, + [SMALL_STATE(1815)] = 52801, + [SMALL_STATE(1816)] = 52886, + [SMALL_STATE(1817)] = 52971, + [SMALL_STATE(1818)] = 53024, + [SMALL_STATE(1819)] = 53089, + [SMALL_STATE(1820)] = 53178, + [SMALL_STATE(1821)] = 53231, + [SMALL_STATE(1822)] = 53318, + [SMALL_STATE(1823)] = 53371, + [SMALL_STATE(1824)] = 53424, + [SMALL_STATE(1825)] = 53513, + [SMALL_STATE(1826)] = 53602, + [SMALL_STATE(1827)] = 53663, + [SMALL_STATE(1828)] = 53716, + [SMALL_STATE(1829)] = 53769, + [SMALL_STATE(1830)] = 53858, + [SMALL_STATE(1831)] = 53947, + [SMALL_STATE(1832)] = 54000, + [SMALL_STATE(1833)] = 54079, + [SMALL_STATE(1834)] = 54132, + [SMALL_STATE(1835)] = 54221, + [SMALL_STATE(1836)] = 54298, + [SMALL_STATE(1837)] = 54387, + [SMALL_STATE(1838)] = 54458, + [SMALL_STATE(1839)] = 54525, + [SMALL_STATE(1840)] = 54594, [SMALL_STATE(1841)] = 54657, [SMALL_STATE(1842)] = 54710, [SMALL_STATE(1843)] = 54796, [SMALL_STATE(1844)] = 54882, [SMALL_STATE(1845)] = 54968, [SMALL_STATE(1846)] = 55054, - [SMALL_STATE(1847)] = 55130, - [SMALL_STATE(1848)] = 55214, - [SMALL_STATE(1849)] = 55300, - [SMALL_STATE(1850)] = 55386, - [SMALL_STATE(1851)] = 55472, - [SMALL_STATE(1852)] = 55558, - [SMALL_STATE(1853)] = 55644, - [SMALL_STATE(1854)] = 55730, - [SMALL_STATE(1855)] = 55816, - [SMALL_STATE(1856)] = 55902, - [SMALL_STATE(1857)] = 55988, - [SMALL_STATE(1858)] = 56074, - [SMALL_STATE(1859)] = 56160, - [SMALL_STATE(1860)] = 56246, - [SMALL_STATE(1861)] = 56332, + [SMALL_STATE(1847)] = 55140, + [SMALL_STATE(1848)] = 55226, + [SMALL_STATE(1849)] = 55312, + [SMALL_STATE(1850)] = 55398, + [SMALL_STATE(1851)] = 55484, + [SMALL_STATE(1852)] = 55570, + [SMALL_STATE(1853)] = 55646, + [SMALL_STATE(1854)] = 55732, + [SMALL_STATE(1855)] = 55818, + [SMALL_STATE(1856)] = 55904, + [SMALL_STATE(1857)] = 55990, + [SMALL_STATE(1858)] = 56076, + [SMALL_STATE(1859)] = 56162, + [SMALL_STATE(1860)] = 56248, + [SMALL_STATE(1861)] = 56334, [SMALL_STATE(1862)] = 56418, [SMALL_STATE(1863)] = 56504, [SMALL_STATE(1864)] = 56590, [SMALL_STATE(1865)] = 56676, - [SMALL_STATE(1866)] = 56760, - [SMALL_STATE(1867)] = 56846, + [SMALL_STATE(1866)] = 56762, + [SMALL_STATE(1867)] = 56848, [SMALL_STATE(1868)] = 56932, [SMALL_STATE(1869)] = 57018, [SMALL_STATE(1870)] = 57104, @@ -187240,65 +187248,65 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(1903)] = 59345, [SMALL_STATE(1904)] = 59393, [SMALL_STATE(1905)] = 59429, - [SMALL_STATE(1906)] = 59474, - [SMALL_STATE(1907)] = 59511, + [SMALL_STATE(1906)] = 59466, + [SMALL_STATE(1907)] = 59519, [SMALL_STATE(1908)] = 59556, - [SMALL_STATE(1909)] = 59593, - [SMALL_STATE(1910)] = 59630, + [SMALL_STATE(1909)] = 59601, + [SMALL_STATE(1910)] = 59638, [SMALL_STATE(1911)] = 59683, [SMALL_STATE(1912)] = 59728, [SMALL_STATE(1913)] = 59765, - [SMALL_STATE(1914)] = 59801, + [SMALL_STATE(1914)] = 59805, [SMALL_STATE(1915)] = 59841, - [SMALL_STATE(1916)] = 59877, - [SMALL_STATE(1917)] = 59917, + [SMALL_STATE(1916)] = 59881, + [SMALL_STATE(1917)] = 59921, [SMALL_STATE(1918)] = 59957, - [SMALL_STATE(1919)] = 59993, - [SMALL_STATE(1920)] = 60029, + [SMALL_STATE(1919)] = 59997, + [SMALL_STATE(1920)] = 60033, [SMALL_STATE(1921)] = 60069, [SMALL_STATE(1922)] = 60102, [SMALL_STATE(1923)] = 60135, [SMALL_STATE(1924)] = 60168, - [SMALL_STATE(1925)] = 60201, - [SMALL_STATE(1926)] = 60234, + [SMALL_STATE(1925)] = 60199, + [SMALL_STATE(1926)] = 60232, [SMALL_STATE(1927)] = 60265, [SMALL_STATE(1928)] = 60298, [SMALL_STATE(1929)] = 60331, [SMALL_STATE(1930)] = 60364, - [SMALL_STATE(1931)] = 60396, - [SMALL_STATE(1932)] = 60428, - [SMALL_STATE(1933)] = 60488, - [SMALL_STATE(1934)] = 60520, - [SMALL_STATE(1935)] = 60580, - [SMALL_STATE(1936)] = 60624, + [SMALL_STATE(1931)] = 60408, + [SMALL_STATE(1932)] = 60440, + [SMALL_STATE(1933)] = 60500, + [SMALL_STATE(1934)] = 60560, + [SMALL_STATE(1935)] = 60606, + [SMALL_STATE(1936)] = 60638, [SMALL_STATE(1937)] = 60670, - [SMALL_STATE(1938)] = 60713, - [SMALL_STATE(1939)] = 60746, - [SMALL_STATE(1940)] = 60775, - [SMALL_STATE(1941)] = 60808, - [SMALL_STATE(1942)] = 60839, - [SMALL_STATE(1943)] = 60894, - [SMALL_STATE(1944)] = 60923, - [SMALL_STATE(1945)] = 60956, - [SMALL_STATE(1946)] = 60987, - [SMALL_STATE(1947)] = 61016, - [SMALL_STATE(1948)] = 61047, - [SMALL_STATE(1949)] = 61078, - [SMALL_STATE(1950)] = 61111, - [SMALL_STATE(1951)] = 61140, - [SMALL_STATE(1952)] = 61173, - [SMALL_STATE(1953)] = 61206, - [SMALL_STATE(1954)] = 61235, - [SMALL_STATE(1955)] = 61264, - [SMALL_STATE(1956)] = 61317, + [SMALL_STATE(1938)] = 60703, + [SMALL_STATE(1939)] = 60732, + [SMALL_STATE(1940)] = 60763, + [SMALL_STATE(1941)] = 60796, + [SMALL_STATE(1942)] = 60825, + [SMALL_STATE(1943)] = 60856, + [SMALL_STATE(1944)] = 60887, + [SMALL_STATE(1945)] = 60916, + [SMALL_STATE(1946)] = 60969, + [SMALL_STATE(1947)] = 61000, + [SMALL_STATE(1948)] = 61031, + [SMALL_STATE(1949)] = 61064, + [SMALL_STATE(1950)] = 61097, + [SMALL_STATE(1951)] = 61126, + [SMALL_STATE(1952)] = 61159, + [SMALL_STATE(1953)] = 61192, + [SMALL_STATE(1954)] = 61245, + [SMALL_STATE(1955)] = 61286, + [SMALL_STATE(1956)] = 61315, [SMALL_STATE(1957)] = 61346, [SMALL_STATE(1958)] = 61375, - [SMALL_STATE(1959)] = 61428, - [SMALL_STATE(1960)] = 61457, - [SMALL_STATE(1961)] = 61488, - [SMALL_STATE(1962)] = 61529, - [SMALL_STATE(1963)] = 61560, - [SMALL_STATE(1964)] = 61591, + [SMALL_STATE(1959)] = 61406, + [SMALL_STATE(1960)] = 61435, + [SMALL_STATE(1961)] = 61464, + [SMALL_STATE(1962)] = 61507, + [SMALL_STATE(1963)] = 61562, + [SMALL_STATE(1964)] = 61593, [SMALL_STATE(1965)] = 61622, [SMALL_STATE(1966)] = 61650, [SMALL_STATE(1967)] = 61678, @@ -187310,18 +187318,18 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(1973)] = 61846, [SMALL_STATE(1974)] = 61874, [SMALL_STATE(1975)] = 61902, - [SMALL_STATE(1976)] = 61930, - [SMALL_STATE(1977)] = 61958, - [SMALL_STATE(1978)] = 61986, - [SMALL_STATE(1979)] = 62014, - [SMALL_STATE(1980)] = 62042, - [SMALL_STATE(1981)] = 62070, - [SMALL_STATE(1982)] = 62114, - [SMALL_STATE(1983)] = 62144, - [SMALL_STATE(1984)] = 62172, - [SMALL_STATE(1985)] = 62200, - [SMALL_STATE(1986)] = 62228, - [SMALL_STATE(1987)] = 62256, + [SMALL_STATE(1976)] = 61932, + [SMALL_STATE(1977)] = 61960, + [SMALL_STATE(1978)] = 61988, + [SMALL_STATE(1979)] = 62016, + [SMALL_STATE(1980)] = 62044, + [SMALL_STATE(1981)] = 62072, + [SMALL_STATE(1982)] = 62100, + [SMALL_STATE(1983)] = 62130, + [SMALL_STATE(1984)] = 62158, + [SMALL_STATE(1985)] = 62186, + [SMALL_STATE(1986)] = 62230, + [SMALL_STATE(1987)] = 62258, [SMALL_STATE(1988)] = 62286, [SMALL_STATE(1989)] = 62314, [SMALL_STATE(1990)] = 62342, @@ -187332,20 +187340,20 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(1995)] = 62482, [SMALL_STATE(1996)] = 62510, [SMALL_STATE(1997)] = 62538, - [SMALL_STATE(1998)] = 62567, - [SMALL_STATE(1999)] = 62598, - [SMALL_STATE(2000)] = 62633, - [SMALL_STATE(2001)] = 62684, + [SMALL_STATE(1998)] = 62589, + [SMALL_STATE(1999)] = 62618, + [SMALL_STATE(2000)] = 62647, + [SMALL_STATE(2001)] = 62678, [SMALL_STATE(2002)] = 62713, - [SMALL_STATE(2003)] = 62745, - [SMALL_STATE(2004)] = 62777, - [SMALL_STATE(2005)] = 62805, - [SMALL_STATE(2006)] = 62835, - [SMALL_STATE(2007)] = 62867, - [SMALL_STATE(2008)] = 62911, + [SMALL_STATE(2003)] = 62757, + [SMALL_STATE(2004)] = 62789, + [SMALL_STATE(2005)] = 62821, + [SMALL_STATE(2006)] = 62853, + [SMALL_STATE(2007)] = 62883, + [SMALL_STATE(2008)] = 62915, [SMALL_STATE(2009)] = 62943, - [SMALL_STATE(2010)] = 62975, - [SMALL_STATE(2011)] = 63007, + [SMALL_STATE(2010)] = 62971, + [SMALL_STATE(2011)] = 63003, [SMALL_STATE(2012)] = 63035, [SMALL_STATE(2013)] = 63067, [SMALL_STATE(2014)] = 63099, @@ -187361,1111 +187369,1111 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(2024)] = 63497, [SMALL_STATE(2025)] = 63542, [SMALL_STATE(2026)] = 63587, - [SMALL_STATE(2027)] = 63624, - [SMALL_STATE(2028)] = 63669, + [SMALL_STATE(2027)] = 63632, + [SMALL_STATE(2028)] = 63677, [SMALL_STATE(2029)] = 63714, [SMALL_STATE(2030)] = 63759, [SMALL_STATE(2031)] = 63804, [SMALL_STATE(2032)] = 63849, [SMALL_STATE(2033)] = 63894, [SMALL_STATE(2034)] = 63939, - [SMALL_STATE(2035)] = 63977, + [SMALL_STATE(2035)] = 63981, [SMALL_STATE(2036)] = 64005, - [SMALL_STATE(2037)] = 64033, - [SMALL_STATE(2038)] = 64071, - [SMALL_STATE(2039)] = 64111, - [SMALL_STATE(2040)] = 64135, - [SMALL_STATE(2041)] = 64163, - [SMALL_STATE(2042)] = 64191, - [SMALL_STATE(2043)] = 64231, - [SMALL_STATE(2044)] = 64259, - [SMALL_STATE(2045)] = 64297, - [SMALL_STATE(2046)] = 64325, - [SMALL_STATE(2047)] = 64353, - [SMALL_STATE(2048)] = 64377, - [SMALL_STATE(2049)] = 64405, - [SMALL_STATE(2050)] = 64445, - [SMALL_STATE(2051)] = 64475, - [SMALL_STATE(2052)] = 64517, - [SMALL_STATE(2053)] = 64559, - [SMALL_STATE(2054)] = 64583, - [SMALL_STATE(2055)] = 64611, - [SMALL_STATE(2056)] = 64653, - [SMALL_STATE(2057)] = 64677, - [SMALL_STATE(2058)] = 64719, - [SMALL_STATE(2059)] = 64757, - [SMALL_STATE(2060)] = 64781, - [SMALL_STATE(2061)] = 64823, - [SMALL_STATE(2062)] = 64857, - [SMALL_STATE(2063)] = 64899, - [SMALL_STATE(2064)] = 64933, - [SMALL_STATE(2065)] = 64963, - [SMALL_STATE(2066)] = 65001, - [SMALL_STATE(2067)] = 65029, - [SMALL_STATE(2068)] = 65057, - [SMALL_STATE(2069)] = 65087, - [SMALL_STATE(2070)] = 65115, - [SMALL_STATE(2071)] = 65153, - [SMALL_STATE(2072)] = 65183, - [SMALL_STATE(2073)] = 65221, - [SMALL_STATE(2074)] = 65259, - [SMALL_STATE(2075)] = 65297, + [SMALL_STATE(2037)] = 64045, + [SMALL_STATE(2038)] = 64073, + [SMALL_STATE(2039)] = 64113, + [SMALL_STATE(2040)] = 64155, + [SMALL_STATE(2041)] = 64183, + [SMALL_STATE(2042)] = 64211, + [SMALL_STATE(2043)] = 64235, + [SMALL_STATE(2044)] = 64273, + [SMALL_STATE(2045)] = 64311, + [SMALL_STATE(2046)] = 64353, + [SMALL_STATE(2047)] = 64381, + [SMALL_STATE(2048)] = 64411, + [SMALL_STATE(2049)] = 64439, + [SMALL_STATE(2050)] = 64469, + [SMALL_STATE(2051)] = 64507, + [SMALL_STATE(2052)] = 64549, + [SMALL_STATE(2053)] = 64591, + [SMALL_STATE(2054)] = 64631, + [SMALL_STATE(2055)] = 64665, + [SMALL_STATE(2056)] = 64703, + [SMALL_STATE(2057)] = 64741, + [SMALL_STATE(2058)] = 64769, + [SMALL_STATE(2059)] = 64797, + [SMALL_STATE(2060)] = 64835, + [SMALL_STATE(2061)] = 64859, + [SMALL_STATE(2062)] = 64887, + [SMALL_STATE(2063)] = 64929, + [SMALL_STATE(2064)] = 64959, + [SMALL_STATE(2065)] = 64987, + [SMALL_STATE(2066)] = 65025, + [SMALL_STATE(2067)] = 65059, + [SMALL_STATE(2068)] = 65097, + [SMALL_STATE(2069)] = 65125, + [SMALL_STATE(2070)] = 65155, + [SMALL_STATE(2071)] = 65197, + [SMALL_STATE(2072)] = 65221, + [SMALL_STATE(2073)] = 65259, + [SMALL_STATE(2074)] = 65283, + [SMALL_STATE(2075)] = 65311, [SMALL_STATE(2076)] = 65339, [SMALL_STATE(2077)] = 65362, [SMALL_STATE(2078)] = 65385, - [SMALL_STATE(2079)] = 65408, - [SMALL_STATE(2080)] = 65431, - [SMALL_STATE(2081)] = 65454, - [SMALL_STATE(2082)] = 65477, - [SMALL_STATE(2083)] = 65500, - [SMALL_STATE(2084)] = 65523, - [SMALL_STATE(2085)] = 65546, - [SMALL_STATE(2086)] = 65569, - [SMALL_STATE(2087)] = 65592, - [SMALL_STATE(2088)] = 65629, - [SMALL_STATE(2089)] = 65652, - [SMALL_STATE(2090)] = 65693, - [SMALL_STATE(2091)] = 65734, - [SMALL_STATE(2092)] = 65757, - [SMALL_STATE(2093)] = 65780, - [SMALL_STATE(2094)] = 65803, - [SMALL_STATE(2095)] = 65826, - [SMALL_STATE(2096)] = 65849, - [SMALL_STATE(2097)] = 65872, - [SMALL_STATE(2098)] = 65895, - [SMALL_STATE(2099)] = 65918, - [SMALL_STATE(2100)] = 65941, - [SMALL_STATE(2101)] = 65964, - [SMALL_STATE(2102)] = 65987, - [SMALL_STATE(2103)] = 66010, - [SMALL_STATE(2104)] = 66033, - [SMALL_STATE(2105)] = 66056, - [SMALL_STATE(2106)] = 66093, - [SMALL_STATE(2107)] = 66116, - [SMALL_STATE(2108)] = 66139, - [SMALL_STATE(2109)] = 66180, - [SMALL_STATE(2110)] = 66211, - [SMALL_STATE(2111)] = 66234, - [SMALL_STATE(2112)] = 66271, - [SMALL_STATE(2113)] = 66294, - [SMALL_STATE(2114)] = 66329, - [SMALL_STATE(2115)] = 66362, - [SMALL_STATE(2116)] = 66385, - [SMALL_STATE(2117)] = 66426, - [SMALL_STATE(2118)] = 66461, - [SMALL_STATE(2119)] = 66492, - [SMALL_STATE(2120)] = 66523, - [SMALL_STATE(2121)] = 66558, - [SMALL_STATE(2122)] = 66581, - [SMALL_STATE(2123)] = 66604, - [SMALL_STATE(2124)] = 66641, + [SMALL_STATE(2079)] = 65420, + [SMALL_STATE(2080)] = 65443, + [SMALL_STATE(2081)] = 65466, + [SMALL_STATE(2082)] = 65497, + [SMALL_STATE(2083)] = 65532, + [SMALL_STATE(2084)] = 65555, + [SMALL_STATE(2085)] = 65578, + [SMALL_STATE(2086)] = 65601, + [SMALL_STATE(2087)] = 65624, + [SMALL_STATE(2088)] = 65647, + [SMALL_STATE(2089)] = 65688, + [SMALL_STATE(2090)] = 65711, + [SMALL_STATE(2091)] = 65752, + [SMALL_STATE(2092)] = 65787, + [SMALL_STATE(2093)] = 65810, + [SMALL_STATE(2094)] = 65833, + [SMALL_STATE(2095)] = 65856, + [SMALL_STATE(2096)] = 65879, + [SMALL_STATE(2097)] = 65902, + [SMALL_STATE(2098)] = 65925, + [SMALL_STATE(2099)] = 65948, + [SMALL_STATE(2100)] = 65971, + [SMALL_STATE(2101)] = 65994, + [SMALL_STATE(2102)] = 66017, + [SMALL_STATE(2103)] = 66040, + [SMALL_STATE(2104)] = 66071, + [SMALL_STATE(2105)] = 66104, + [SMALL_STATE(2106)] = 66135, + [SMALL_STATE(2107)] = 66158, + [SMALL_STATE(2108)] = 66195, + [SMALL_STATE(2109)] = 66232, + [SMALL_STATE(2110)] = 66255, + [SMALL_STATE(2111)] = 66278, + [SMALL_STATE(2112)] = 66301, + [SMALL_STATE(2113)] = 66324, + [SMALL_STATE(2114)] = 66347, + [SMALL_STATE(2115)] = 66370, + [SMALL_STATE(2116)] = 66407, + [SMALL_STATE(2117)] = 66444, + [SMALL_STATE(2118)] = 66467, + [SMALL_STATE(2119)] = 66490, + [SMALL_STATE(2120)] = 66513, + [SMALL_STATE(2121)] = 66536, + [SMALL_STATE(2122)] = 66567, + [SMALL_STATE(2123)] = 66590, + [SMALL_STATE(2124)] = 66631, [SMALL_STATE(2125)] = 66672, [SMALL_STATE(2126)] = 66695, [SMALL_STATE(2127)] = 66718, [SMALL_STATE(2128)] = 66741, - [SMALL_STATE(2129)] = 66765, - [SMALL_STATE(2130)] = 66799, - [SMALL_STATE(2131)] = 66831, - [SMALL_STATE(2132)] = 66863, - [SMALL_STATE(2133)] = 66901, - [SMALL_STATE(2134)] = 66929, - [SMALL_STATE(2135)] = 66953, - [SMALL_STATE(2136)] = 66987, - [SMALL_STATE(2137)] = 67019, - [SMALL_STATE(2138)] = 67047, - [SMALL_STATE(2139)] = 67071, - [SMALL_STATE(2140)] = 67109, - [SMALL_STATE(2141)] = 67141, - [SMALL_STATE(2142)] = 67179, - [SMALL_STATE(2143)] = 67217, - [SMALL_STATE(2144)] = 67255, - [SMALL_STATE(2145)] = 67293, - [SMALL_STATE(2146)] = 67331, - [SMALL_STATE(2147)] = 67357, - [SMALL_STATE(2148)] = 67389, - [SMALL_STATE(2149)] = 67427, - [SMALL_STATE(2150)] = 67451, - [SMALL_STATE(2151)] = 67487, - [SMALL_STATE(2152)] = 67515, - [SMALL_STATE(2153)] = 67547, - [SMALL_STATE(2154)] = 67573, - [SMALL_STATE(2155)] = 67601, - [SMALL_STATE(2156)] = 67633, - [SMALL_STATE(2157)] = 67657, - [SMALL_STATE(2158)] = 67689, - [SMALL_STATE(2159)] = 67727, - [SMALL_STATE(2160)] = 67765, - [SMALL_STATE(2161)] = 67793, - [SMALL_STATE(2162)] = 67831, - [SMALL_STATE(2163)] = 67859, - [SMALL_STATE(2164)] = 67885, - [SMALL_STATE(2165)] = 67923, - [SMALL_STATE(2166)] = 67955, - [SMALL_STATE(2167)] = 67993, - [SMALL_STATE(2168)] = 68031, - [SMALL_STATE(2169)] = 68063, - [SMALL_STATE(2170)] = 68101, - [SMALL_STATE(2171)] = 68133, - [SMALL_STATE(2172)] = 68171, - [SMALL_STATE(2173)] = 68203, - [SMALL_STATE(2174)] = 68229, - [SMALL_STATE(2175)] = 68261, + [SMALL_STATE(2129)] = 66779, + [SMALL_STATE(2130)] = 66817, + [SMALL_STATE(2131)] = 66845, + [SMALL_STATE(2132)] = 66869, + [SMALL_STATE(2133)] = 66893, + [SMALL_STATE(2134)] = 66925, + [SMALL_STATE(2135)] = 66963, + [SMALL_STATE(2136)] = 66995, + [SMALL_STATE(2137)] = 67027, + [SMALL_STATE(2138)] = 67059, + [SMALL_STATE(2139)] = 67087, + [SMALL_STATE(2140)] = 67125, + [SMALL_STATE(2141)] = 67153, + [SMALL_STATE(2142)] = 67191, + [SMALL_STATE(2143)] = 67229, + [SMALL_STATE(2144)] = 67261, + [SMALL_STATE(2145)] = 67295, + [SMALL_STATE(2146)] = 67327, + [SMALL_STATE(2147)] = 67359, + [SMALL_STATE(2148)] = 67383, + [SMALL_STATE(2149)] = 67415, + [SMALL_STATE(2150)] = 67447, + [SMALL_STATE(2151)] = 67483, + [SMALL_STATE(2152)] = 67507, + [SMALL_STATE(2153)] = 67539, + [SMALL_STATE(2154)] = 67577, + [SMALL_STATE(2155)] = 67615, + [SMALL_STATE(2156)] = 67653, + [SMALL_STATE(2157)] = 67679, + [SMALL_STATE(2158)] = 67707, + [SMALL_STATE(2159)] = 67739, + [SMALL_STATE(2160)] = 67771, + [SMALL_STATE(2161)] = 67809, + [SMALL_STATE(2162)] = 67847, + [SMALL_STATE(2163)] = 67885, + [SMALL_STATE(2164)] = 67923, + [SMALL_STATE(2165)] = 67961, + [SMALL_STATE(2166)] = 67993, + [SMALL_STATE(2167)] = 68017, + [SMALL_STATE(2168)] = 68043, + [SMALL_STATE(2169)] = 68069, + [SMALL_STATE(2170)] = 68097, + [SMALL_STATE(2171)] = 68131, + [SMALL_STATE(2172)] = 68159, + [SMALL_STATE(2173)] = 68197, + [SMALL_STATE(2174)] = 68235, + [SMALL_STATE(2175)] = 68263, [SMALL_STATE(2176)] = 68289, - [SMALL_STATE(2177)] = 68324, + [SMALL_STATE(2177)] = 68310, [SMALL_STATE(2178)] = 68345, - [SMALL_STATE(2179)] = 68366, - [SMALL_STATE(2180)] = 68387, - [SMALL_STATE(2181)] = 68422, - [SMALL_STATE(2182)] = 68457, - [SMALL_STATE(2183)] = 68492, - [SMALL_STATE(2184)] = 68527, - [SMALL_STATE(2185)] = 68562, - [SMALL_STATE(2186)] = 68597, - [SMALL_STATE(2187)] = 68632, - [SMALL_STATE(2188)] = 68667, - [SMALL_STATE(2189)] = 68702, - [SMALL_STATE(2190)] = 68737, - [SMALL_STATE(2191)] = 68772, - [SMALL_STATE(2192)] = 68807, - [SMALL_STATE(2193)] = 68842, - [SMALL_STATE(2194)] = 68877, - [SMALL_STATE(2195)] = 68912, - [SMALL_STATE(2196)] = 68947, - [SMALL_STATE(2197)] = 68982, - [SMALL_STATE(2198)] = 69017, - [SMALL_STATE(2199)] = 69052, - [SMALL_STATE(2200)] = 69087, - [SMALL_STATE(2201)] = 69122, - [SMALL_STATE(2202)] = 69147, - [SMALL_STATE(2203)] = 69182, - [SMALL_STATE(2204)] = 69207, - [SMALL_STATE(2205)] = 69242, - [SMALL_STATE(2206)] = 69277, - [SMALL_STATE(2207)] = 69306, - [SMALL_STATE(2208)] = 69327, - [SMALL_STATE(2209)] = 69348, - [SMALL_STATE(2210)] = 69383, - [SMALL_STATE(2211)] = 69418, - [SMALL_STATE(2212)] = 69451, - [SMALL_STATE(2213)] = 69486, - [SMALL_STATE(2214)] = 69511, - [SMALL_STATE(2215)] = 69546, - [SMALL_STATE(2216)] = 69581, - [SMALL_STATE(2217)] = 69614, - [SMALL_STATE(2218)] = 69649, - [SMALL_STATE(2219)] = 69684, - [SMALL_STATE(2220)] = 69719, + [SMALL_STATE(2179)] = 68380, + [SMALL_STATE(2180)] = 68415, + [SMALL_STATE(2181)] = 68448, + [SMALL_STATE(2182)] = 68483, + [SMALL_STATE(2183)] = 68516, + [SMALL_STATE(2184)] = 68551, + [SMALL_STATE(2185)] = 68578, + [SMALL_STATE(2186)] = 68613, + [SMALL_STATE(2187)] = 68648, + [SMALL_STATE(2188)] = 68683, + [SMALL_STATE(2189)] = 68718, + [SMALL_STATE(2190)] = 68753, + [SMALL_STATE(2191)] = 68788, + [SMALL_STATE(2192)] = 68809, + [SMALL_STATE(2193)] = 68844, + [SMALL_STATE(2194)] = 68879, + [SMALL_STATE(2195)] = 68914, + [SMALL_STATE(2196)] = 68949, + [SMALL_STATE(2197)] = 68984, + [SMALL_STATE(2198)] = 69019, + [SMALL_STATE(2199)] = 69054, + [SMALL_STATE(2200)] = 69089, + [SMALL_STATE(2201)] = 69124, + [SMALL_STATE(2202)] = 69157, + [SMALL_STATE(2203)] = 69190, + [SMALL_STATE(2204)] = 69225, + [SMALL_STATE(2205)] = 69260, + [SMALL_STATE(2206)] = 69285, + [SMALL_STATE(2207)] = 69320, + [SMALL_STATE(2208)] = 69355, + [SMALL_STATE(2209)] = 69390, + [SMALL_STATE(2210)] = 69425, + [SMALL_STATE(2211)] = 69460, + [SMALL_STATE(2212)] = 69495, + [SMALL_STATE(2213)] = 69528, + [SMALL_STATE(2214)] = 69563, + [SMALL_STATE(2215)] = 69584, + [SMALL_STATE(2216)] = 69619, + [SMALL_STATE(2217)] = 69640, + [SMALL_STATE(2218)] = 69661, + [SMALL_STATE(2219)] = 69682, + [SMALL_STATE(2220)] = 69717, [SMALL_STATE(2221)] = 69746, - [SMALL_STATE(2222)] = 69779, - [SMALL_STATE(2223)] = 69812, - [SMALL_STATE(2224)] = 69833, - [SMALL_STATE(2225)] = 69868, - [SMALL_STATE(2226)] = 69903, - [SMALL_STATE(2227)] = 69938, - [SMALL_STATE(2228)] = 69973, - [SMALL_STATE(2229)] = 70008, - [SMALL_STATE(2230)] = 70043, + [SMALL_STATE(2222)] = 69771, + [SMALL_STATE(2223)] = 69796, + [SMALL_STATE(2224)] = 69831, + [SMALL_STATE(2225)] = 69866, + [SMALL_STATE(2226)] = 69901, + [SMALL_STATE(2227)] = 69936, + [SMALL_STATE(2228)] = 69971, + [SMALL_STATE(2229)] = 70006, + [SMALL_STATE(2230)] = 70041, [SMALL_STATE(2231)] = 70076, [SMALL_STATE(2232)] = 70111, - [SMALL_STATE(2233)] = 70137, - [SMALL_STATE(2234)] = 70163, - [SMALL_STATE(2235)] = 70193, - [SMALL_STATE(2236)] = 70223, - [SMALL_STATE(2237)] = 70253, - [SMALL_STATE(2238)] = 70283, - [SMALL_STATE(2239)] = 70311, - [SMALL_STATE(2240)] = 70343, - [SMALL_STATE(2241)] = 70365, - [SMALL_STATE(2242)] = 70397, - [SMALL_STATE(2243)] = 70429, - [SMALL_STATE(2244)] = 70461, - [SMALL_STATE(2245)] = 70493, - [SMALL_STATE(2246)] = 70525, - [SMALL_STATE(2247)] = 70557, - [SMALL_STATE(2248)] = 70589, - [SMALL_STATE(2249)] = 70621, - [SMALL_STATE(2250)] = 70651, - [SMALL_STATE(2251)] = 70681, - [SMALL_STATE(2252)] = 70713, - [SMALL_STATE(2253)] = 70745, + [SMALL_STATE(2233)] = 70143, + [SMALL_STATE(2234)] = 70175, + [SMALL_STATE(2235)] = 70207, + [SMALL_STATE(2236)] = 70239, + [SMALL_STATE(2237)] = 70271, + [SMALL_STATE(2238)] = 70303, + [SMALL_STATE(2239)] = 70325, + [SMALL_STATE(2240)] = 70357, + [SMALL_STATE(2241)] = 70389, + [SMALL_STATE(2242)] = 70421, + [SMALL_STATE(2243)] = 70453, + [SMALL_STATE(2244)] = 70479, + [SMALL_STATE(2245)] = 70507, + [SMALL_STATE(2246)] = 70539, + [SMALL_STATE(2247)] = 70571, + [SMALL_STATE(2248)] = 70603, + [SMALL_STATE(2249)] = 70631, + [SMALL_STATE(2250)] = 70653, + [SMALL_STATE(2251)] = 70685, + [SMALL_STATE(2252)] = 70715, + [SMALL_STATE(2253)] = 70747, [SMALL_STATE(2254)] = 70777, - [SMALL_STATE(2255)] = 70809, - [SMALL_STATE(2256)] = 70841, - [SMALL_STATE(2257)] = 70873, - [SMALL_STATE(2258)] = 70901, - [SMALL_STATE(2259)] = 70933, - [SMALL_STATE(2260)] = 70965, - [SMALL_STATE(2261)] = 70997, - [SMALL_STATE(2262)] = 71027, - [SMALL_STATE(2263)] = 71057, - [SMALL_STATE(2264)] = 71089, - [SMALL_STATE(2265)] = 71119, - [SMALL_STATE(2266)] = 71149, - [SMALL_STATE(2267)] = 71171, - [SMALL_STATE(2268)] = 71203, - [SMALL_STATE(2269)] = 71235, - [SMALL_STATE(2270)] = 71267, - [SMALL_STATE(2271)] = 71295, - [SMALL_STATE(2272)] = 71327, - [SMALL_STATE(2273)] = 71349, - [SMALL_STATE(2274)] = 71381, - [SMALL_STATE(2275)] = 71413, - [SMALL_STATE(2276)] = 71445, - [SMALL_STATE(2277)] = 71477, + [SMALL_STATE(2255)] = 70807, + [SMALL_STATE(2256)] = 70837, + [SMALL_STATE(2257)] = 70867, + [SMALL_STATE(2258)] = 70895, + [SMALL_STATE(2259)] = 70925, + [SMALL_STATE(2260)] = 70957, + [SMALL_STATE(2261)] = 70979, + [SMALL_STATE(2262)] = 71005, + [SMALL_STATE(2263)] = 71037, + [SMALL_STATE(2264)] = 71069, + [SMALL_STATE(2265)] = 71101, + [SMALL_STATE(2266)] = 71133, + [SMALL_STATE(2267)] = 71165, + [SMALL_STATE(2268)] = 71197, + [SMALL_STATE(2269)] = 71227, + [SMALL_STATE(2270)] = 71259, + [SMALL_STATE(2271)] = 71289, + [SMALL_STATE(2272)] = 71321, + [SMALL_STATE(2273)] = 71353, + [SMALL_STATE(2274)] = 71385, + [SMALL_STATE(2275)] = 71417, + [SMALL_STATE(2276)] = 71449, + [SMALL_STATE(2277)] = 71479, [SMALL_STATE(2278)] = 71509, [SMALL_STATE(2279)] = 71541, - [SMALL_STATE(2280)] = 71573, - [SMALL_STATE(2281)] = 71605, - [SMALL_STATE(2282)] = 71633, + [SMALL_STATE(2280)] = 71569, + [SMALL_STATE(2281)] = 71595, + [SMALL_STATE(2282)] = 71627, [SMALL_STATE(2283)] = 71659, - [SMALL_STATE(2284)] = 71681, - [SMALL_STATE(2285)] = 71709, + [SMALL_STATE(2284)] = 71691, + [SMALL_STATE(2285)] = 71713, [SMALL_STATE(2286)] = 71735, [SMALL_STATE(2287)] = 71767, - [SMALL_STATE(2288)] = 71789, - [SMALL_STATE(2289)] = 71811, + [SMALL_STATE(2288)] = 71793, + [SMALL_STATE(2289)] = 71815, [SMALL_STATE(2290)] = 71843, - [SMALL_STATE(2291)] = 71872, - [SMALL_STATE(2292)] = 71901, + [SMALL_STATE(2291)] = 71870, + [SMALL_STATE(2292)] = 71893, [SMALL_STATE(2293)] = 71922, [SMALL_STATE(2294)] = 71951, - [SMALL_STATE(2295)] = 71980, - [SMALL_STATE(2296)] = 72009, - [SMALL_STATE(2297)] = 72038, - [SMALL_STATE(2298)] = 72067, - [SMALL_STATE(2299)] = 72096, - [SMALL_STATE(2300)] = 72117, - [SMALL_STATE(2301)] = 72146, - [SMALL_STATE(2302)] = 72175, - [SMALL_STATE(2303)] = 72198, - [SMALL_STATE(2304)] = 72227, - [SMALL_STATE(2305)] = 72252, - [SMALL_STATE(2306)] = 72279, - [SMALL_STATE(2307)] = 72308, - [SMALL_STATE(2308)] = 72337, - [SMALL_STATE(2309)] = 72366, - [SMALL_STATE(2310)] = 72395, - [SMALL_STATE(2311)] = 72424, - [SMALL_STATE(2312)] = 72447, - [SMALL_STATE(2313)] = 72476, - [SMALL_STATE(2314)] = 72505, - [SMALL_STATE(2315)] = 72534, - [SMALL_STATE(2316)] = 72555, - [SMALL_STATE(2317)] = 72584, - [SMALL_STATE(2318)] = 72613, - [SMALL_STATE(2319)] = 72642, - [SMALL_STATE(2320)] = 72665, - [SMALL_STATE(2321)] = 72684, - [SMALL_STATE(2322)] = 72713, - [SMALL_STATE(2323)] = 72742, - [SMALL_STATE(2324)] = 72771, - [SMALL_STATE(2325)] = 72800, - [SMALL_STATE(2326)] = 72829, - [SMALL_STATE(2327)] = 72858, - [SMALL_STATE(2328)] = 72887, - [SMALL_STATE(2329)] = 72916, - [SMALL_STATE(2330)] = 72945, - [SMALL_STATE(2331)] = 72974, - [SMALL_STATE(2332)] = 73003, - [SMALL_STATE(2333)] = 73032, - [SMALL_STATE(2334)] = 73061, - [SMALL_STATE(2335)] = 73090, - [SMALL_STATE(2336)] = 73119, - [SMALL_STATE(2337)] = 73142, - [SMALL_STATE(2338)] = 73169, - [SMALL_STATE(2339)] = 73198, - [SMALL_STATE(2340)] = 73227, - [SMALL_STATE(2341)] = 73246, - [SMALL_STATE(2342)] = 73269, - [SMALL_STATE(2343)] = 73294, - [SMALL_STATE(2344)] = 73323, - [SMALL_STATE(2345)] = 73344, - [SMALL_STATE(2346)] = 73373, - [SMALL_STATE(2347)] = 73402, - [SMALL_STATE(2348)] = 73431, - [SMALL_STATE(2349)] = 73458, - [SMALL_STATE(2350)] = 73487, - [SMALL_STATE(2351)] = 73516, - [SMALL_STATE(2352)] = 73545, - [SMALL_STATE(2353)] = 73574, - [SMALL_STATE(2354)] = 73603, - [SMALL_STATE(2355)] = 73630, - [SMALL_STATE(2356)] = 73659, - [SMALL_STATE(2357)] = 73682, - [SMALL_STATE(2358)] = 73711, - [SMALL_STATE(2359)] = 73740, - [SMALL_STATE(2360)] = 73769, - [SMALL_STATE(2361)] = 73790, - [SMALL_STATE(2362)] = 73811, - [SMALL_STATE(2363)] = 73832, - [SMALL_STATE(2364)] = 73853, - [SMALL_STATE(2365)] = 73882, - [SMALL_STATE(2366)] = 73905, - [SMALL_STATE(2367)] = 73934, - [SMALL_STATE(2368)] = 73963, - [SMALL_STATE(2369)] = 73992, - [SMALL_STATE(2370)] = 74021, - [SMALL_STATE(2371)] = 74050, - [SMALL_STATE(2372)] = 74077, - [SMALL_STATE(2373)] = 74102, - [SMALL_STATE(2374)] = 74131, - [SMALL_STATE(2375)] = 74156, - [SMALL_STATE(2376)] = 74185, - [SMALL_STATE(2377)] = 74214, - [SMALL_STATE(2378)] = 74241, - [SMALL_STATE(2379)] = 74270, - [SMALL_STATE(2380)] = 74293, - [SMALL_STATE(2381)] = 74316, - [SMALL_STATE(2382)] = 74345, - [SMALL_STATE(2383)] = 74368, - [SMALL_STATE(2384)] = 74397, - [SMALL_STATE(2385)] = 74420, - [SMALL_STATE(2386)] = 74443, - [SMALL_STATE(2387)] = 74466, + [SMALL_STATE(2295)] = 71974, + [SMALL_STATE(2296)] = 71995, + [SMALL_STATE(2297)] = 72024, + [SMALL_STATE(2298)] = 72053, + [SMALL_STATE(2299)] = 72082, + [SMALL_STATE(2300)] = 72111, + [SMALL_STATE(2301)] = 72132, + [SMALL_STATE(2302)] = 72151, + [SMALL_STATE(2303)] = 72180, + [SMALL_STATE(2304)] = 72203, + [SMALL_STATE(2305)] = 72230, + [SMALL_STATE(2306)] = 72259, + [SMALL_STATE(2307)] = 72282, + [SMALL_STATE(2308)] = 72305, + [SMALL_STATE(2309)] = 72334, + [SMALL_STATE(2310)] = 72357, + [SMALL_STATE(2311)] = 72386, + [SMALL_STATE(2312)] = 72415, + [SMALL_STATE(2313)] = 72436, + [SMALL_STATE(2314)] = 72465, + [SMALL_STATE(2315)] = 72494, + [SMALL_STATE(2316)] = 72523, + [SMALL_STATE(2317)] = 72552, + [SMALL_STATE(2318)] = 72575, + [SMALL_STATE(2319)] = 72596, + [SMALL_STATE(2320)] = 72625, + [SMALL_STATE(2321)] = 72654, + [SMALL_STATE(2322)] = 72673, + [SMALL_STATE(2323)] = 72702, + [SMALL_STATE(2324)] = 72731, + [SMALL_STATE(2325)] = 72756, + [SMALL_STATE(2326)] = 72785, + [SMALL_STATE(2327)] = 72814, + [SMALL_STATE(2328)] = 72843, + [SMALL_STATE(2329)] = 72866, + [SMALL_STATE(2330)] = 72893, + [SMALL_STATE(2331)] = 72922, + [SMALL_STATE(2332)] = 72951, + [SMALL_STATE(2333)] = 72980, + [SMALL_STATE(2334)] = 73009, + [SMALL_STATE(2335)] = 73034, + [SMALL_STATE(2336)] = 73063, + [SMALL_STATE(2337)] = 73092, + [SMALL_STATE(2338)] = 73121, + [SMALL_STATE(2339)] = 73144, + [SMALL_STATE(2340)] = 73173, + [SMALL_STATE(2341)] = 73202, + [SMALL_STATE(2342)] = 73231, + [SMALL_STATE(2343)] = 73260, + [SMALL_STATE(2344)] = 73285, + [SMALL_STATE(2345)] = 73306, + [SMALL_STATE(2346)] = 73329, + [SMALL_STATE(2347)] = 73358, + [SMALL_STATE(2348)] = 73387, + [SMALL_STATE(2349)] = 73416, + [SMALL_STATE(2350)] = 73443, + [SMALL_STATE(2351)] = 73472, + [SMALL_STATE(2352)] = 73501, + [SMALL_STATE(2353)] = 73530, + [SMALL_STATE(2354)] = 73559, + [SMALL_STATE(2355)] = 73582, + [SMALL_STATE(2356)] = 73603, + [SMALL_STATE(2357)] = 73624, + [SMALL_STATE(2358)] = 73645, + [SMALL_STATE(2359)] = 73674, + [SMALL_STATE(2360)] = 73697, + [SMALL_STATE(2361)] = 73726, + [SMALL_STATE(2362)] = 73755, + [SMALL_STATE(2363)] = 73784, + [SMALL_STATE(2364)] = 73813, + [SMALL_STATE(2365)] = 73842, + [SMALL_STATE(2366)] = 73871, + [SMALL_STATE(2367)] = 73894, + [SMALL_STATE(2368)] = 73923, + [SMALL_STATE(2369)] = 73948, + [SMALL_STATE(2370)] = 73975, + [SMALL_STATE(2371)] = 74004, + [SMALL_STATE(2372)] = 74033, + [SMALL_STATE(2373)] = 74060, + [SMALL_STATE(2374)] = 74089, + [SMALL_STATE(2375)] = 74118, + [SMALL_STATE(2376)] = 74147, + [SMALL_STATE(2377)] = 74176, + [SMALL_STATE(2378)] = 74205, + [SMALL_STATE(2379)] = 74234, + [SMALL_STATE(2380)] = 74257, + [SMALL_STATE(2381)] = 74286, + [SMALL_STATE(2382)] = 74315, + [SMALL_STATE(2383)] = 74344, + [SMALL_STATE(2384)] = 74373, + [SMALL_STATE(2385)] = 74402, + [SMALL_STATE(2386)] = 74431, + [SMALL_STATE(2387)] = 74460, [SMALL_STATE(2388)] = 74489, [SMALL_STATE(2389)] = 74518, [SMALL_STATE(2390)] = 74544, [SMALL_STATE(2391)] = 74570, - [SMALL_STATE(2392)] = 74594, - [SMALL_STATE(2393)] = 74618, - [SMALL_STATE(2394)] = 74644, - [SMALL_STATE(2395)] = 74670, - [SMALL_STATE(2396)] = 74696, + [SMALL_STATE(2392)] = 74596, + [SMALL_STATE(2393)] = 74620, + [SMALL_STATE(2394)] = 74646, + [SMALL_STATE(2395)] = 74668, + [SMALL_STATE(2396)] = 74694, [SMALL_STATE(2397)] = 74720, [SMALL_STATE(2398)] = 74746, - [SMALL_STATE(2399)] = 74772, - [SMALL_STATE(2400)] = 74798, - [SMALL_STATE(2401)] = 74822, - [SMALL_STATE(2402)] = 74848, - [SMALL_STATE(2403)] = 74874, - [SMALL_STATE(2404)] = 74892, - [SMALL_STATE(2405)] = 74918, - [SMALL_STATE(2406)] = 74944, - [SMALL_STATE(2407)] = 74964, - [SMALL_STATE(2408)] = 74986, - [SMALL_STATE(2409)] = 75012, - [SMALL_STATE(2410)] = 75038, - [SMALL_STATE(2411)] = 75064, - [SMALL_STATE(2412)] = 75090, - [SMALL_STATE(2413)] = 75116, - [SMALL_STATE(2414)] = 75142, - [SMALL_STATE(2415)] = 75168, - [SMALL_STATE(2416)] = 75194, - [SMALL_STATE(2417)] = 75212, - [SMALL_STATE(2418)] = 75230, - [SMALL_STATE(2419)] = 75248, - [SMALL_STATE(2420)] = 75274, - [SMALL_STATE(2421)] = 75300, - [SMALL_STATE(2422)] = 75320, - [SMALL_STATE(2423)] = 75346, - [SMALL_STATE(2424)] = 75372, - [SMALL_STATE(2425)] = 75394, - [SMALL_STATE(2426)] = 75420, - [SMALL_STATE(2427)] = 75446, - [SMALL_STATE(2428)] = 75470, - [SMALL_STATE(2429)] = 75492, - [SMALL_STATE(2430)] = 75518, - [SMALL_STATE(2431)] = 75542, - [SMALL_STATE(2432)] = 75568, - [SMALL_STATE(2433)] = 75594, - [SMALL_STATE(2434)] = 75618, - [SMALL_STATE(2435)] = 75644, - [SMALL_STATE(2436)] = 75662, - [SMALL_STATE(2437)] = 75688, - [SMALL_STATE(2438)] = 75714, - [SMALL_STATE(2439)] = 75736, - [SMALL_STATE(2440)] = 75754, - [SMALL_STATE(2441)] = 75778, - [SMALL_STATE(2442)] = 75804, - [SMALL_STATE(2443)] = 75822, - [SMALL_STATE(2444)] = 75840, - [SMALL_STATE(2445)] = 75858, - [SMALL_STATE(2446)] = 75884, - [SMALL_STATE(2447)] = 75902, - [SMALL_STATE(2448)] = 75928, - [SMALL_STATE(2449)] = 75946, - [SMALL_STATE(2450)] = 75964, - [SMALL_STATE(2451)] = 75990, - [SMALL_STATE(2452)] = 76016, - [SMALL_STATE(2453)] = 76034, - [SMALL_STATE(2454)] = 76052, - [SMALL_STATE(2455)] = 76070, - [SMALL_STATE(2456)] = 76088, - [SMALL_STATE(2457)] = 76106, - [SMALL_STATE(2458)] = 76132, - [SMALL_STATE(2459)] = 76154, - [SMALL_STATE(2460)] = 76180, - [SMALL_STATE(2461)] = 76204, - [SMALL_STATE(2462)] = 76222, - [SMALL_STATE(2463)] = 76244, - [SMALL_STATE(2464)] = 76262, - [SMALL_STATE(2465)] = 76288, - [SMALL_STATE(2466)] = 76314, - [SMALL_STATE(2467)] = 76340, - [SMALL_STATE(2468)] = 76366, - [SMALL_STATE(2469)] = 76390, - [SMALL_STATE(2470)] = 76414, - [SMALL_STATE(2471)] = 76432, - [SMALL_STATE(2472)] = 76456, - [SMALL_STATE(2473)] = 76474, - [SMALL_STATE(2474)] = 76498, - [SMALL_STATE(2475)] = 76524, - [SMALL_STATE(2476)] = 76546, - [SMALL_STATE(2477)] = 76568, - [SMALL_STATE(2478)] = 76586, + [SMALL_STATE(2399)] = 74770, + [SMALL_STATE(2400)] = 74788, + [SMALL_STATE(2401)] = 74814, + [SMALL_STATE(2402)] = 74840, + [SMALL_STATE(2403)] = 74862, + [SMALL_STATE(2404)] = 74880, + [SMALL_STATE(2405)] = 74902, + [SMALL_STATE(2406)] = 74926, + [SMALL_STATE(2407)] = 74952, + [SMALL_STATE(2408)] = 74978, + [SMALL_STATE(2409)] = 75004, + [SMALL_STATE(2410)] = 75022, + [SMALL_STATE(2411)] = 75048, + [SMALL_STATE(2412)] = 75066, + [SMALL_STATE(2413)] = 75084, + [SMALL_STATE(2414)] = 75108, + [SMALL_STATE(2415)] = 75134, + [SMALL_STATE(2416)] = 75160, + [SMALL_STATE(2417)] = 75186, + [SMALL_STATE(2418)] = 75212, + [SMALL_STATE(2419)] = 75238, + [SMALL_STATE(2420)] = 75264, + [SMALL_STATE(2421)] = 75282, + [SMALL_STATE(2422)] = 75308, + [SMALL_STATE(2423)] = 75332, + [SMALL_STATE(2424)] = 75358, + [SMALL_STATE(2425)] = 75384, + [SMALL_STATE(2426)] = 75402, + [SMALL_STATE(2427)] = 75426, + [SMALL_STATE(2428)] = 75444, + [SMALL_STATE(2429)] = 75466, + [SMALL_STATE(2430)] = 75484, + [SMALL_STATE(2431)] = 75502, + [SMALL_STATE(2432)] = 75526, + [SMALL_STATE(2433)] = 75548, + [SMALL_STATE(2434)] = 75574, + [SMALL_STATE(2435)] = 75594, + [SMALL_STATE(2436)] = 75618, + [SMALL_STATE(2437)] = 75638, + [SMALL_STATE(2438)] = 75662, + [SMALL_STATE(2439)] = 75688, + [SMALL_STATE(2440)] = 75712, + [SMALL_STATE(2441)] = 75730, + [SMALL_STATE(2442)] = 75756, + [SMALL_STATE(2443)] = 75780, + [SMALL_STATE(2444)] = 75798, + [SMALL_STATE(2445)] = 75818, + [SMALL_STATE(2446)] = 75844, + [SMALL_STATE(2447)] = 75868, + [SMALL_STATE(2448)] = 75894, + [SMALL_STATE(2449)] = 75920, + [SMALL_STATE(2450)] = 75942, + [SMALL_STATE(2451)] = 75968, + [SMALL_STATE(2452)] = 75994, + [SMALL_STATE(2453)] = 76016, + [SMALL_STATE(2454)] = 76038, + [SMALL_STATE(2455)] = 76060, + [SMALL_STATE(2456)] = 76086, + [SMALL_STATE(2457)] = 76108, + [SMALL_STATE(2458)] = 76134, + [SMALL_STATE(2459)] = 76160, + [SMALL_STATE(2460)] = 76186, + [SMALL_STATE(2461)] = 76212, + [SMALL_STATE(2462)] = 76230, + [SMALL_STATE(2463)] = 76256, + [SMALL_STATE(2464)] = 76280, + [SMALL_STATE(2465)] = 76306, + [SMALL_STATE(2466)] = 76324, + [SMALL_STATE(2467)] = 76342, + [SMALL_STATE(2468)] = 76368, + [SMALL_STATE(2469)] = 76386, + [SMALL_STATE(2470)] = 76410, + [SMALL_STATE(2471)] = 76428, + [SMALL_STATE(2472)] = 76446, + [SMALL_STATE(2473)] = 76464, + [SMALL_STATE(2474)] = 76490, + [SMALL_STATE(2475)] = 76508, + [SMALL_STATE(2476)] = 76526, + [SMALL_STATE(2477)] = 76552, + [SMALL_STATE(2478)] = 76578, [SMALL_STATE(2479)] = 76604, [SMALL_STATE(2480)] = 76622, - [SMALL_STATE(2481)] = 76642, - [SMALL_STATE(2482)] = 76666, - [SMALL_STATE(2483)] = 76690, - [SMALL_STATE(2484)] = 76716, - [SMALL_STATE(2485)] = 76742, - [SMALL_STATE(2486)] = 76768, - [SMALL_STATE(2487)] = 76794, - [SMALL_STATE(2488)] = 76816, - [SMALL_STATE(2489)] = 76838, - [SMALL_STATE(2490)] = 76864, - [SMALL_STATE(2491)] = 76890, + [SMALL_STATE(2481)] = 76648, + [SMALL_STATE(2482)] = 76674, + [SMALL_STATE(2483)] = 76692, + [SMALL_STATE(2484)] = 76718, + [SMALL_STATE(2485)] = 76744, + [SMALL_STATE(2486)] = 76770, + [SMALL_STATE(2487)] = 76796, + [SMALL_STATE(2488)] = 76822, + [SMALL_STATE(2489)] = 76848, + [SMALL_STATE(2490)] = 76872, + [SMALL_STATE(2491)] = 76898, [SMALL_STATE(2492)] = 76916, - [SMALL_STATE(2493)] = 76942, + [SMALL_STATE(2493)] = 76934, [SMALL_STATE(2494)] = 76960, - [SMALL_STATE(2495)] = 76981, - [SMALL_STATE(2496)] = 77004, - [SMALL_STATE(2497)] = 77025, - [SMALL_STATE(2498)] = 77048, - [SMALL_STATE(2499)] = 77071, - [SMALL_STATE(2500)] = 77094, - [SMALL_STATE(2501)] = 77117, - [SMALL_STATE(2502)] = 77140, - [SMALL_STATE(2503)] = 77163, - [SMALL_STATE(2504)] = 77186, - [SMALL_STATE(2505)] = 77209, - [SMALL_STATE(2506)] = 77232, - [SMALL_STATE(2507)] = 77255, - [SMALL_STATE(2508)] = 77278, - [SMALL_STATE(2509)] = 77297, - [SMALL_STATE(2510)] = 77320, - [SMALL_STATE(2511)] = 77339, - [SMALL_STATE(2512)] = 77362, - [SMALL_STATE(2513)] = 77385, - [SMALL_STATE(2514)] = 77408, - [SMALL_STATE(2515)] = 77431, - [SMALL_STATE(2516)] = 77454, - [SMALL_STATE(2517)] = 77473, - [SMALL_STATE(2518)] = 77496, - [SMALL_STATE(2519)] = 77519, - [SMALL_STATE(2520)] = 77542, - [SMALL_STATE(2521)] = 77563, - [SMALL_STATE(2522)] = 77586, - [SMALL_STATE(2523)] = 77609, - [SMALL_STATE(2524)] = 77632, - [SMALL_STATE(2525)] = 77655, + [SMALL_STATE(2495)] = 76983, + [SMALL_STATE(2496)] = 77006, + [SMALL_STATE(2497)] = 77027, + [SMALL_STATE(2498)] = 77050, + [SMALL_STATE(2499)] = 77073, + [SMALL_STATE(2500)] = 77096, + [SMALL_STATE(2501)] = 77119, + [SMALL_STATE(2502)] = 77142, + [SMALL_STATE(2503)] = 77165, + [SMALL_STATE(2504)] = 77188, + [SMALL_STATE(2505)] = 77211, + [SMALL_STATE(2506)] = 77234, + [SMALL_STATE(2507)] = 77257, + [SMALL_STATE(2508)] = 77280, + [SMALL_STATE(2509)] = 77303, + [SMALL_STATE(2510)] = 77326, + [SMALL_STATE(2511)] = 77349, + [SMALL_STATE(2512)] = 77372, + [SMALL_STATE(2513)] = 77395, + [SMALL_STATE(2514)] = 77418, + [SMALL_STATE(2515)] = 77441, + [SMALL_STATE(2516)] = 77458, + [SMALL_STATE(2517)] = 77481, + [SMALL_STATE(2518)] = 77504, + [SMALL_STATE(2519)] = 77525, + [SMALL_STATE(2520)] = 77546, + [SMALL_STATE(2521)] = 77567, + [SMALL_STATE(2522)] = 77590, + [SMALL_STATE(2523)] = 77613, + [SMALL_STATE(2524)] = 77636, + [SMALL_STATE(2525)] = 77659, [SMALL_STATE(2526)] = 77678, - [SMALL_STATE(2527)] = 77701, - [SMALL_STATE(2528)] = 77722, - [SMALL_STATE(2529)] = 77743, - [SMALL_STATE(2530)] = 77764, - [SMALL_STATE(2531)] = 77787, - [SMALL_STATE(2532)] = 77810, - [SMALL_STATE(2533)] = 77833, - [SMALL_STATE(2534)] = 77850, - [SMALL_STATE(2535)] = 77873, - [SMALL_STATE(2536)] = 77894, - [SMALL_STATE(2537)] = 77917, - [SMALL_STATE(2538)] = 77938, - [SMALL_STATE(2539)] = 77961, - [SMALL_STATE(2540)] = 77984, - [SMALL_STATE(2541)] = 78007, - [SMALL_STATE(2542)] = 78030, - [SMALL_STATE(2543)] = 78053, - [SMALL_STATE(2544)] = 78076, - [SMALL_STATE(2545)] = 78099, - [SMALL_STATE(2546)] = 78122, - [SMALL_STATE(2547)] = 78139, - [SMALL_STATE(2548)] = 78162, - [SMALL_STATE(2549)] = 78185, - [SMALL_STATE(2550)] = 78204, - [SMALL_STATE(2551)] = 78223, - [SMALL_STATE(2552)] = 78242, - [SMALL_STATE(2553)] = 78259, - [SMALL_STATE(2554)] = 78282, - [SMALL_STATE(2555)] = 78305, - [SMALL_STATE(2556)] = 78328, - [SMALL_STATE(2557)] = 78351, - [SMALL_STATE(2558)] = 78374, - [SMALL_STATE(2559)] = 78397, - [SMALL_STATE(2560)] = 78420, - [SMALL_STATE(2561)] = 78443, - [SMALL_STATE(2562)] = 78466, - [SMALL_STATE(2563)] = 78489, - [SMALL_STATE(2564)] = 78510, - [SMALL_STATE(2565)] = 78531, - [SMALL_STATE(2566)] = 78550, - [SMALL_STATE(2567)] = 78573, - [SMALL_STATE(2568)] = 78596, - [SMALL_STATE(2569)] = 78619, - [SMALL_STATE(2570)] = 78638, - [SMALL_STATE(2571)] = 78661, - [SMALL_STATE(2572)] = 78684, - [SMALL_STATE(2573)] = 78707, - [SMALL_STATE(2574)] = 78730, - [SMALL_STATE(2575)] = 78753, - [SMALL_STATE(2576)] = 78774, - [SMALL_STATE(2577)] = 78797, - [SMALL_STATE(2578)] = 78820, - [SMALL_STATE(2579)] = 78843, - [SMALL_STATE(2580)] = 78866, - [SMALL_STATE(2581)] = 78889, - [SMALL_STATE(2582)] = 78908, - [SMALL_STATE(2583)] = 78931, - [SMALL_STATE(2584)] = 78954, - [SMALL_STATE(2585)] = 78975, - [SMALL_STATE(2586)] = 78998, - [SMALL_STATE(2587)] = 79021, - [SMALL_STATE(2588)] = 79040, - [SMALL_STATE(2589)] = 79061, - [SMALL_STATE(2590)] = 79080, - [SMALL_STATE(2591)] = 79103, - [SMALL_STATE(2592)] = 79126, - [SMALL_STATE(2593)] = 79149, - [SMALL_STATE(2594)] = 79172, - [SMALL_STATE(2595)] = 79195, - [SMALL_STATE(2596)] = 79216, - [SMALL_STATE(2597)] = 79239, - [SMALL_STATE(2598)] = 79262, - [SMALL_STATE(2599)] = 79285, - [SMALL_STATE(2600)] = 79308, - [SMALL_STATE(2601)] = 79331, - [SMALL_STATE(2602)] = 79354, - [SMALL_STATE(2603)] = 79377, - [SMALL_STATE(2604)] = 79400, - [SMALL_STATE(2605)] = 79417, - [SMALL_STATE(2606)] = 79438, - [SMALL_STATE(2607)] = 79455, - [SMALL_STATE(2608)] = 79478, - [SMALL_STATE(2609)] = 79501, - [SMALL_STATE(2610)] = 79524, - [SMALL_STATE(2611)] = 79547, - [SMALL_STATE(2612)] = 79570, - [SMALL_STATE(2613)] = 79593, - [SMALL_STATE(2614)] = 79616, - [SMALL_STATE(2615)] = 79639, - [SMALL_STATE(2616)] = 79662, - [SMALL_STATE(2617)] = 79685, - [SMALL_STATE(2618)] = 79706, - [SMALL_STATE(2619)] = 79729, - [SMALL_STATE(2620)] = 79752, - [SMALL_STATE(2621)] = 79775, - [SMALL_STATE(2622)] = 79798, - [SMALL_STATE(2623)] = 79817, - [SMALL_STATE(2624)] = 79838, - [SMALL_STATE(2625)] = 79861, - [SMALL_STATE(2626)] = 79884, - [SMALL_STATE(2627)] = 79907, - [SMALL_STATE(2628)] = 79930, - [SMALL_STATE(2629)] = 79953, - [SMALL_STATE(2630)] = 79976, - [SMALL_STATE(2631)] = 79997, - [SMALL_STATE(2632)] = 80020, - [SMALL_STATE(2633)] = 80041, - [SMALL_STATE(2634)] = 80064, - [SMALL_STATE(2635)] = 80085, - [SMALL_STATE(2636)] = 80108, - [SMALL_STATE(2637)] = 80131, - [SMALL_STATE(2638)] = 80154, - [SMALL_STATE(2639)] = 80177, - [SMALL_STATE(2640)] = 80200, - [SMALL_STATE(2641)] = 80223, - [SMALL_STATE(2642)] = 80244, - [SMALL_STATE(2643)] = 80265, - [SMALL_STATE(2644)] = 80288, - [SMALL_STATE(2645)] = 80311, - [SMALL_STATE(2646)] = 80334, - [SMALL_STATE(2647)] = 80357, - [SMALL_STATE(2648)] = 80380, - [SMALL_STATE(2649)] = 80403, - [SMALL_STATE(2650)] = 80426, - [SMALL_STATE(2651)] = 80449, - [SMALL_STATE(2652)] = 80472, - [SMALL_STATE(2653)] = 80495, - [SMALL_STATE(2654)] = 80518, - [SMALL_STATE(2655)] = 80541, - [SMALL_STATE(2656)] = 80564, - [SMALL_STATE(2657)] = 80587, - [SMALL_STATE(2658)] = 80610, - [SMALL_STATE(2659)] = 80633, - [SMALL_STATE(2660)] = 80656, - [SMALL_STATE(2661)] = 80679, - [SMALL_STATE(2662)] = 80698, - [SMALL_STATE(2663)] = 80715, - [SMALL_STATE(2664)] = 80736, - [SMALL_STATE(2665)] = 80755, - [SMALL_STATE(2666)] = 80778, - [SMALL_STATE(2667)] = 80797, - [SMALL_STATE(2668)] = 80816, - [SMALL_STATE(2669)] = 80839, - [SMALL_STATE(2670)] = 80862, - [SMALL_STATE(2671)] = 80881, - [SMALL_STATE(2672)] = 80904, - [SMALL_STATE(2673)] = 80927, - [SMALL_STATE(2674)] = 80950, - [SMALL_STATE(2675)] = 80973, - [SMALL_STATE(2676)] = 80996, - [SMALL_STATE(2677)] = 81019, - [SMALL_STATE(2678)] = 81042, - [SMALL_STATE(2679)] = 81065, - [SMALL_STATE(2680)] = 81084, - [SMALL_STATE(2681)] = 81103, - [SMALL_STATE(2682)] = 81120, - [SMALL_STATE(2683)] = 81139, - [SMALL_STATE(2684)] = 81162, - [SMALL_STATE(2685)] = 81185, - [SMALL_STATE(2686)] = 81208, - [SMALL_STATE(2687)] = 81231, - [SMALL_STATE(2688)] = 81254, - [SMALL_STATE(2689)] = 81275, - [SMALL_STATE(2690)] = 81298, - [SMALL_STATE(2691)] = 81321, - [SMALL_STATE(2692)] = 81340, - [SMALL_STATE(2693)] = 81357, - [SMALL_STATE(2694)] = 81380, - [SMALL_STATE(2695)] = 81403, - [SMALL_STATE(2696)] = 81426, - [SMALL_STATE(2697)] = 81445, - [SMALL_STATE(2698)] = 81468, - [SMALL_STATE(2699)] = 81491, - [SMALL_STATE(2700)] = 81514, - [SMALL_STATE(2701)] = 81537, - [SMALL_STATE(2702)] = 81560, - [SMALL_STATE(2703)] = 81583, - [SMALL_STATE(2704)] = 81606, - [SMALL_STATE(2705)] = 81629, - [SMALL_STATE(2706)] = 81652, - [SMALL_STATE(2707)] = 81675, - [SMALL_STATE(2708)] = 81696, - [SMALL_STATE(2709)] = 81717, - [SMALL_STATE(2710)] = 81740, - [SMALL_STATE(2711)] = 81763, - [SMALL_STATE(2712)] = 81784, - [SMALL_STATE(2713)] = 81807, - [SMALL_STATE(2714)] = 81828, - [SMALL_STATE(2715)] = 81851, - [SMALL_STATE(2716)] = 81874, - [SMALL_STATE(2717)] = 81893, - [SMALL_STATE(2718)] = 81916, - [SMALL_STATE(2719)] = 81935, - [SMALL_STATE(2720)] = 81958, - [SMALL_STATE(2721)] = 81981, - [SMALL_STATE(2722)] = 82004, - [SMALL_STATE(2723)] = 82027, - [SMALL_STATE(2724)] = 82046, - [SMALL_STATE(2725)] = 82069, - [SMALL_STATE(2726)] = 82092, - [SMALL_STATE(2727)] = 82111, - [SMALL_STATE(2728)] = 82134, - [SMALL_STATE(2729)] = 82157, + [SMALL_STATE(2527)] = 77697, + [SMALL_STATE(2528)] = 77716, + [SMALL_STATE(2529)] = 77735, + [SMALL_STATE(2530)] = 77756, + [SMALL_STATE(2531)] = 77779, + [SMALL_STATE(2532)] = 77802, + [SMALL_STATE(2533)] = 77825, + [SMALL_STATE(2534)] = 77848, + [SMALL_STATE(2535)] = 77867, + [SMALL_STATE(2536)] = 77886, + [SMALL_STATE(2537)] = 77905, + [SMALL_STATE(2538)] = 77924, + [SMALL_STATE(2539)] = 77947, + [SMALL_STATE(2540)] = 77970, + [SMALL_STATE(2541)] = 77993, + [SMALL_STATE(2542)] = 78016, + [SMALL_STATE(2543)] = 78039, + [SMALL_STATE(2544)] = 78058, + [SMALL_STATE(2545)] = 78081, + [SMALL_STATE(2546)] = 78104, + [SMALL_STATE(2547)] = 78127, + [SMALL_STATE(2548)] = 78150, + [SMALL_STATE(2549)] = 78171, + [SMALL_STATE(2550)] = 78194, + [SMALL_STATE(2551)] = 78215, + [SMALL_STATE(2552)] = 78238, + [SMALL_STATE(2553)] = 78257, + [SMALL_STATE(2554)] = 78280, + [SMALL_STATE(2555)] = 78303, + [SMALL_STATE(2556)] = 78322, + [SMALL_STATE(2557)] = 78345, + [SMALL_STATE(2558)] = 78368, + [SMALL_STATE(2559)] = 78391, + [SMALL_STATE(2560)] = 78414, + [SMALL_STATE(2561)] = 78433, + [SMALL_STATE(2562)] = 78452, + [SMALL_STATE(2563)] = 78475, + [SMALL_STATE(2564)] = 78498, + [SMALL_STATE(2565)] = 78515, + [SMALL_STATE(2566)] = 78534, + [SMALL_STATE(2567)] = 78551, + [SMALL_STATE(2568)] = 78574, + [SMALL_STATE(2569)] = 78593, + [SMALL_STATE(2570)] = 78616, + [SMALL_STATE(2571)] = 78635, + [SMALL_STATE(2572)] = 78658, + [SMALL_STATE(2573)] = 78681, + [SMALL_STATE(2574)] = 78704, + [SMALL_STATE(2575)] = 78721, + [SMALL_STATE(2576)] = 78744, + [SMALL_STATE(2577)] = 78765, + [SMALL_STATE(2578)] = 78782, + [SMALL_STATE(2579)] = 78805, + [SMALL_STATE(2580)] = 78828, + [SMALL_STATE(2581)] = 78851, + [SMALL_STATE(2582)] = 78874, + [SMALL_STATE(2583)] = 78891, + [SMALL_STATE(2584)] = 78914, + [SMALL_STATE(2585)] = 78937, + [SMALL_STATE(2586)] = 78958, + [SMALL_STATE(2587)] = 78979, + [SMALL_STATE(2588)] = 79002, + [SMALL_STATE(2589)] = 79025, + [SMALL_STATE(2590)] = 79048, + [SMALL_STATE(2591)] = 79067, + [SMALL_STATE(2592)] = 79090, + [SMALL_STATE(2593)] = 79111, + [SMALL_STATE(2594)] = 79134, + [SMALL_STATE(2595)] = 79153, + [SMALL_STATE(2596)] = 79176, + [SMALL_STATE(2597)] = 79199, + [SMALL_STATE(2598)] = 79218, + [SMALL_STATE(2599)] = 79239, + [SMALL_STATE(2600)] = 79260, + [SMALL_STATE(2601)] = 79283, + [SMALL_STATE(2602)] = 79306, + [SMALL_STATE(2603)] = 79329, + [SMALL_STATE(2604)] = 79350, + [SMALL_STATE(2605)] = 79373, + [SMALL_STATE(2606)] = 79396, + [SMALL_STATE(2607)] = 79419, + [SMALL_STATE(2608)] = 79440, + [SMALL_STATE(2609)] = 79463, + [SMALL_STATE(2610)] = 79486, + [SMALL_STATE(2611)] = 79509, + [SMALL_STATE(2612)] = 79532, + [SMALL_STATE(2613)] = 79555, + [SMALL_STATE(2614)] = 79578, + [SMALL_STATE(2615)] = 79601, + [SMALL_STATE(2616)] = 79624, + [SMALL_STATE(2617)] = 79647, + [SMALL_STATE(2618)] = 79670, + [SMALL_STATE(2619)] = 79693, + [SMALL_STATE(2620)] = 79716, + [SMALL_STATE(2621)] = 79739, + [SMALL_STATE(2622)] = 79762, + [SMALL_STATE(2623)] = 79785, + [SMALL_STATE(2624)] = 79806, + [SMALL_STATE(2625)] = 79829, + [SMALL_STATE(2626)] = 79852, + [SMALL_STATE(2627)] = 79871, + [SMALL_STATE(2628)] = 79894, + [SMALL_STATE(2629)] = 79917, + [SMALL_STATE(2630)] = 79938, + [SMALL_STATE(2631)] = 79957, + [SMALL_STATE(2632)] = 79980, + [SMALL_STATE(2633)] = 80003, + [SMALL_STATE(2634)] = 80026, + [SMALL_STATE(2635)] = 80049, + [SMALL_STATE(2636)] = 80072, + [SMALL_STATE(2637)] = 80095, + [SMALL_STATE(2638)] = 80118, + [SMALL_STATE(2639)] = 80141, + [SMALL_STATE(2640)] = 80164, + [SMALL_STATE(2641)] = 80187, + [SMALL_STATE(2642)] = 80210, + [SMALL_STATE(2643)] = 80233, + [SMALL_STATE(2644)] = 80256, + [SMALL_STATE(2645)] = 80277, + [SMALL_STATE(2646)] = 80300, + [SMALL_STATE(2647)] = 80323, + [SMALL_STATE(2648)] = 80346, + [SMALL_STATE(2649)] = 80369, + [SMALL_STATE(2650)] = 80392, + [SMALL_STATE(2651)] = 80415, + [SMALL_STATE(2652)] = 80438, + [SMALL_STATE(2653)] = 80459, + [SMALL_STATE(2654)] = 80480, + [SMALL_STATE(2655)] = 80503, + [SMALL_STATE(2656)] = 80526, + [SMALL_STATE(2657)] = 80547, + [SMALL_STATE(2658)] = 80568, + [SMALL_STATE(2659)] = 80591, + [SMALL_STATE(2660)] = 80614, + [SMALL_STATE(2661)] = 80637, + [SMALL_STATE(2662)] = 80660, + [SMALL_STATE(2663)] = 80683, + [SMALL_STATE(2664)] = 80706, + [SMALL_STATE(2665)] = 80727, + [SMALL_STATE(2666)] = 80748, + [SMALL_STATE(2667)] = 80771, + [SMALL_STATE(2668)] = 80794, + [SMALL_STATE(2669)] = 80817, + [SMALL_STATE(2670)] = 80840, + [SMALL_STATE(2671)] = 80863, + [SMALL_STATE(2672)] = 80880, + [SMALL_STATE(2673)] = 80901, + [SMALL_STATE(2674)] = 80924, + [SMALL_STATE(2675)] = 80945, + [SMALL_STATE(2676)] = 80968, + [SMALL_STATE(2677)] = 80991, + [SMALL_STATE(2678)] = 81014, + [SMALL_STATE(2679)] = 81037, + [SMALL_STATE(2680)] = 81060, + [SMALL_STATE(2681)] = 81083, + [SMALL_STATE(2682)] = 81106, + [SMALL_STATE(2683)] = 81129, + [SMALL_STATE(2684)] = 81152, + [SMALL_STATE(2685)] = 81175, + [SMALL_STATE(2686)] = 81194, + [SMALL_STATE(2687)] = 81217, + [SMALL_STATE(2688)] = 81240, + [SMALL_STATE(2689)] = 81263, + [SMALL_STATE(2690)] = 81282, + [SMALL_STATE(2691)] = 81305, + [SMALL_STATE(2692)] = 81328, + [SMALL_STATE(2693)] = 81351, + [SMALL_STATE(2694)] = 81374, + [SMALL_STATE(2695)] = 81397, + [SMALL_STATE(2696)] = 81420, + [SMALL_STATE(2697)] = 81443, + [SMALL_STATE(2698)] = 81466, + [SMALL_STATE(2699)] = 81489, + [SMALL_STATE(2700)] = 81512, + [SMALL_STATE(2701)] = 81535, + [SMALL_STATE(2702)] = 81558, + [SMALL_STATE(2703)] = 81577, + [SMALL_STATE(2704)] = 81600, + [SMALL_STATE(2705)] = 81623, + [SMALL_STATE(2706)] = 81646, + [SMALL_STATE(2707)] = 81669, + [SMALL_STATE(2708)] = 81692, + [SMALL_STATE(2709)] = 81715, + [SMALL_STATE(2710)] = 81738, + [SMALL_STATE(2711)] = 81757, + [SMALL_STATE(2712)] = 81780, + [SMALL_STATE(2713)] = 81803, + [SMALL_STATE(2714)] = 81826, + [SMALL_STATE(2715)] = 81849, + [SMALL_STATE(2716)] = 81872, + [SMALL_STATE(2717)] = 81895, + [SMALL_STATE(2718)] = 81918, + [SMALL_STATE(2719)] = 81941, + [SMALL_STATE(2720)] = 81964, + [SMALL_STATE(2721)] = 81987, + [SMALL_STATE(2722)] = 82008, + [SMALL_STATE(2723)] = 82031, + [SMALL_STATE(2724)] = 82050, + [SMALL_STATE(2725)] = 82071, + [SMALL_STATE(2726)] = 82094, + [SMALL_STATE(2727)] = 82117, + [SMALL_STATE(2728)] = 82140, + [SMALL_STATE(2729)] = 82163, [SMALL_STATE(2730)] = 82180, [SMALL_STATE(2731)] = 82203, - [SMALL_STATE(2732)] = 82219, - [SMALL_STATE(2733)] = 82239, - [SMALL_STATE(2734)] = 82259, - [SMALL_STATE(2735)] = 82279, - [SMALL_STATE(2736)] = 82299, - [SMALL_STATE(2737)] = 82319, - [SMALL_STATE(2738)] = 82339, - [SMALL_STATE(2739)] = 82359, - [SMALL_STATE(2740)] = 82379, - [SMALL_STATE(2741)] = 82395, - [SMALL_STATE(2742)] = 82415, - [SMALL_STATE(2743)] = 82435, - [SMALL_STATE(2744)] = 82455, - [SMALL_STATE(2745)] = 82475, - [SMALL_STATE(2746)] = 82495, - [SMALL_STATE(2747)] = 82511, - [SMALL_STATE(2748)] = 82531, - [SMALL_STATE(2749)] = 82549, - [SMALL_STATE(2750)] = 82567, - [SMALL_STATE(2751)] = 82585, - [SMALL_STATE(2752)] = 82605, - [SMALL_STATE(2753)] = 82625, - [SMALL_STATE(2754)] = 82645, - [SMALL_STATE(2755)] = 82663, - [SMALL_STATE(2756)] = 82683, - [SMALL_STATE(2757)] = 82699, - [SMALL_STATE(2758)] = 82719, - [SMALL_STATE(2759)] = 82739, - [SMALL_STATE(2760)] = 82755, - [SMALL_STATE(2761)] = 82773, - [SMALL_STATE(2762)] = 82789, - [SMALL_STATE(2763)] = 82809, - [SMALL_STATE(2764)] = 82827, - [SMALL_STATE(2765)] = 82847, - [SMALL_STATE(2766)] = 82865, - [SMALL_STATE(2767)] = 82881, - [SMALL_STATE(2768)] = 82901, - [SMALL_STATE(2769)] = 82919, - [SMALL_STATE(2770)] = 82937, - [SMALL_STATE(2771)] = 82957, - [SMALL_STATE(2772)] = 82977, - [SMALL_STATE(2773)] = 82997, - [SMALL_STATE(2774)] = 83017, - [SMALL_STATE(2775)] = 83037, - [SMALL_STATE(2776)] = 83057, - [SMALL_STATE(2777)] = 83073, - [SMALL_STATE(2778)] = 83093, - [SMALL_STATE(2779)] = 83113, - [SMALL_STATE(2780)] = 83129, - [SMALL_STATE(2781)] = 83149, - [SMALL_STATE(2782)] = 83169, - [SMALL_STATE(2783)] = 83189, - [SMALL_STATE(2784)] = 83209, - [SMALL_STATE(2785)] = 83229, - [SMALL_STATE(2786)] = 83245, - [SMALL_STATE(2787)] = 83265, - [SMALL_STATE(2788)] = 83285, - [SMALL_STATE(2789)] = 83305, - [SMALL_STATE(2790)] = 83325, - [SMALL_STATE(2791)] = 83345, - [SMALL_STATE(2792)] = 83365, - [SMALL_STATE(2793)] = 83385, - [SMALL_STATE(2794)] = 83405, - [SMALL_STATE(2795)] = 83421, - [SMALL_STATE(2796)] = 83441, - [SMALL_STATE(2797)] = 83459, - [SMALL_STATE(2798)] = 83475, - [SMALL_STATE(2799)] = 83495, - [SMALL_STATE(2800)] = 83513, - [SMALL_STATE(2801)] = 83529, - [SMALL_STATE(2802)] = 83549, - [SMALL_STATE(2803)] = 83565, - [SMALL_STATE(2804)] = 83581, - [SMALL_STATE(2805)] = 83599, - [SMALL_STATE(2806)] = 83619, - [SMALL_STATE(2807)] = 83639, - [SMALL_STATE(2808)] = 83657, - [SMALL_STATE(2809)] = 83677, - [SMALL_STATE(2810)] = 83697, - [SMALL_STATE(2811)] = 83717, - [SMALL_STATE(2812)] = 83737, - [SMALL_STATE(2813)] = 83757, - [SMALL_STATE(2814)] = 83777, - [SMALL_STATE(2815)] = 83797, - [SMALL_STATE(2816)] = 83817, - [SMALL_STATE(2817)] = 83837, - [SMALL_STATE(2818)] = 83857, - [SMALL_STATE(2819)] = 83877, - [SMALL_STATE(2820)] = 83897, - [SMALL_STATE(2821)] = 83913, - [SMALL_STATE(2822)] = 83933, - [SMALL_STATE(2823)] = 83953, - [SMALL_STATE(2824)] = 83971, - [SMALL_STATE(2825)] = 83991, - [SMALL_STATE(2826)] = 84011, - [SMALL_STATE(2827)] = 84031, - [SMALL_STATE(2828)] = 84049, - [SMALL_STATE(2829)] = 84069, - [SMALL_STATE(2830)] = 84089, - [SMALL_STATE(2831)] = 84109, - [SMALL_STATE(2832)] = 84127, - [SMALL_STATE(2833)] = 84147, - [SMALL_STATE(2834)] = 84167, - [SMALL_STATE(2835)] = 84187, - [SMALL_STATE(2836)] = 84207, - [SMALL_STATE(2837)] = 84227, - [SMALL_STATE(2838)] = 84245, - [SMALL_STATE(2839)] = 84265, - [SMALL_STATE(2840)] = 84285, - [SMALL_STATE(2841)] = 84305, - [SMALL_STATE(2842)] = 84321, - [SMALL_STATE(2843)] = 84337, - [SMALL_STATE(2844)] = 84353, - [SMALL_STATE(2845)] = 84371, - [SMALL_STATE(2846)] = 84387, - [SMALL_STATE(2847)] = 84407, - [SMALL_STATE(2848)] = 84425, - [SMALL_STATE(2849)] = 84441, - [SMALL_STATE(2850)] = 84461, - [SMALL_STATE(2851)] = 84481, - [SMALL_STATE(2852)] = 84501, - [SMALL_STATE(2853)] = 84521, - [SMALL_STATE(2854)] = 84541, - [SMALL_STATE(2855)] = 84561, - [SMALL_STATE(2856)] = 84581, - [SMALL_STATE(2857)] = 84601, - [SMALL_STATE(2858)] = 84621, - [SMALL_STATE(2859)] = 84637, - [SMALL_STATE(2860)] = 84657, - [SMALL_STATE(2861)] = 84675, - [SMALL_STATE(2862)] = 84691, - [SMALL_STATE(2863)] = 84711, - [SMALL_STATE(2864)] = 84729, - [SMALL_STATE(2865)] = 84749, - [SMALL_STATE(2866)] = 84769, - [SMALL_STATE(2867)] = 84789, - [SMALL_STATE(2868)] = 84809, - [SMALL_STATE(2869)] = 84827, - [SMALL_STATE(2870)] = 84847, - [SMALL_STATE(2871)] = 84867, - [SMALL_STATE(2872)] = 84883, - [SMALL_STATE(2873)] = 84903, - [SMALL_STATE(2874)] = 84923, - [SMALL_STATE(2875)] = 84941, - [SMALL_STATE(2876)] = 84961, - [SMALL_STATE(2877)] = 84981, - [SMALL_STATE(2878)] = 84997, - [SMALL_STATE(2879)] = 85013, - [SMALL_STATE(2880)] = 85033, - [SMALL_STATE(2881)] = 85051, - [SMALL_STATE(2882)] = 85071, - [SMALL_STATE(2883)] = 85087, - [SMALL_STATE(2884)] = 85107, - [SMALL_STATE(2885)] = 85127, - [SMALL_STATE(2886)] = 85147, - [SMALL_STATE(2887)] = 85167, - [SMALL_STATE(2888)] = 85185, - [SMALL_STATE(2889)] = 85201, - [SMALL_STATE(2890)] = 85217, - [SMALL_STATE(2891)] = 85237, - [SMALL_STATE(2892)] = 85257, - [SMALL_STATE(2893)] = 85277, - [SMALL_STATE(2894)] = 85297, - [SMALL_STATE(2895)] = 85313, - [SMALL_STATE(2896)] = 85329, - [SMALL_STATE(2897)] = 85347, - [SMALL_STATE(2898)] = 85363, - [SMALL_STATE(2899)] = 85383, - [SMALL_STATE(2900)] = 85399, - [SMALL_STATE(2901)] = 85419, - [SMALL_STATE(2902)] = 85439, - [SMALL_STATE(2903)] = 85459, - [SMALL_STATE(2904)] = 85479, - [SMALL_STATE(2905)] = 85499, - [SMALL_STATE(2906)] = 85519, - [SMALL_STATE(2907)] = 85539, - [SMALL_STATE(2908)] = 85559, - [SMALL_STATE(2909)] = 85579, - [SMALL_STATE(2910)] = 85599, - [SMALL_STATE(2911)] = 85619, - [SMALL_STATE(2912)] = 85639, - [SMALL_STATE(2913)] = 85655, - [SMALL_STATE(2914)] = 85673, - [SMALL_STATE(2915)] = 85693, - [SMALL_STATE(2916)] = 85711, - [SMALL_STATE(2917)] = 85731, - [SMALL_STATE(2918)] = 85751, - [SMALL_STATE(2919)] = 85771, - [SMALL_STATE(2920)] = 85791, - [SMALL_STATE(2921)] = 85809, - [SMALL_STATE(2922)] = 85829, - [SMALL_STATE(2923)] = 85847, - [SMALL_STATE(2924)] = 85863, - [SMALL_STATE(2925)] = 85881, - [SMALL_STATE(2926)] = 85901, - [SMALL_STATE(2927)] = 85917, - [SMALL_STATE(2928)] = 85935, - [SMALL_STATE(2929)] = 85953, - [SMALL_STATE(2930)] = 85973, - [SMALL_STATE(2931)] = 85991, - [SMALL_STATE(2932)] = 86009, - [SMALL_STATE(2933)] = 86029, - [SMALL_STATE(2934)] = 86049, - [SMALL_STATE(2935)] = 86069, - [SMALL_STATE(2936)] = 86089, - [SMALL_STATE(2937)] = 86109, - [SMALL_STATE(2938)] = 86129, - [SMALL_STATE(2939)] = 86147, - [SMALL_STATE(2940)] = 86167, - [SMALL_STATE(2941)] = 86183, - [SMALL_STATE(2942)] = 86203, - [SMALL_STATE(2943)] = 86223, - [SMALL_STATE(2944)] = 86243, - [SMALL_STATE(2945)] = 86263, - [SMALL_STATE(2946)] = 86281, - [SMALL_STATE(2947)] = 86301, - [SMALL_STATE(2948)] = 86321, - [SMALL_STATE(2949)] = 86339, - [SMALL_STATE(2950)] = 86355, - [SMALL_STATE(2951)] = 86375, - [SMALL_STATE(2952)] = 86395, - [SMALL_STATE(2953)] = 86415, - [SMALL_STATE(2954)] = 86431, - [SMALL_STATE(2955)] = 86447, - [SMALL_STATE(2956)] = 86467, - [SMALL_STATE(2957)] = 86487, - [SMALL_STATE(2958)] = 86507, - [SMALL_STATE(2959)] = 86523, - [SMALL_STATE(2960)] = 86543, - [SMALL_STATE(2961)] = 86563, - [SMALL_STATE(2962)] = 86583, - [SMALL_STATE(2963)] = 86599, - [SMALL_STATE(2964)] = 86619, - [SMALL_STATE(2965)] = 86635, - [SMALL_STATE(2966)] = 86653, - [SMALL_STATE(2967)] = 86669, - [SMALL_STATE(2968)] = 86689, - [SMALL_STATE(2969)] = 86709, - [SMALL_STATE(2970)] = 86729, - [SMALL_STATE(2971)] = 86749, - [SMALL_STATE(2972)] = 86765, - [SMALL_STATE(2973)] = 86785, - [SMALL_STATE(2974)] = 86801, - [SMALL_STATE(2975)] = 86817, - [SMALL_STATE(2976)] = 86837, - [SMALL_STATE(2977)] = 86857, - [SMALL_STATE(2978)] = 86873, - [SMALL_STATE(2979)] = 86889, - [SMALL_STATE(2980)] = 86909, - [SMALL_STATE(2981)] = 86929, - [SMALL_STATE(2982)] = 86949, - [SMALL_STATE(2983)] = 86969, - [SMALL_STATE(2984)] = 86985, - [SMALL_STATE(2985)] = 87005, - [SMALL_STATE(2986)] = 87025, - [SMALL_STATE(2987)] = 87045, - [SMALL_STATE(2988)] = 87063, - [SMALL_STATE(2989)] = 87079, - [SMALL_STATE(2990)] = 87099, - [SMALL_STATE(2991)] = 87115, - [SMALL_STATE(2992)] = 87135, - [SMALL_STATE(2993)] = 87155, - [SMALL_STATE(2994)] = 87175, - [SMALL_STATE(2995)] = 87195, - [SMALL_STATE(2996)] = 87211, - [SMALL_STATE(2997)] = 87231, - [SMALL_STATE(2998)] = 87251, - [SMALL_STATE(2999)] = 87267, - [SMALL_STATE(3000)] = 87287, - [SMALL_STATE(3001)] = 87303, - [SMALL_STATE(3002)] = 87323, - [SMALL_STATE(3003)] = 87343, - [SMALL_STATE(3004)] = 87363, - [SMALL_STATE(3005)] = 87383, - [SMALL_STATE(3006)] = 87403, - [SMALL_STATE(3007)] = 87421, - [SMALL_STATE(3008)] = 87441, - [SMALL_STATE(3009)] = 87459, - [SMALL_STATE(3010)] = 87479, - [SMALL_STATE(3011)] = 87499, - [SMALL_STATE(3012)] = 87519, - [SMALL_STATE(3013)] = 87539, - [SMALL_STATE(3014)] = 87559, - [SMALL_STATE(3015)] = 87577, - [SMALL_STATE(3016)] = 87597, - [SMALL_STATE(3017)] = 87613, - [SMALL_STATE(3018)] = 87633, - [SMALL_STATE(3019)] = 87653, - [SMALL_STATE(3020)] = 87673, - [SMALL_STATE(3021)] = 87693, - [SMALL_STATE(3022)] = 87713, - [SMALL_STATE(3023)] = 87733, - [SMALL_STATE(3024)] = 87753, - [SMALL_STATE(3025)] = 87773, - [SMALL_STATE(3026)] = 87793, - [SMALL_STATE(3027)] = 87811, - [SMALL_STATE(3028)] = 87831, - [SMALL_STATE(3029)] = 87851, - [SMALL_STATE(3030)] = 87871, - [SMALL_STATE(3031)] = 87891, - [SMALL_STATE(3032)] = 87911, + [SMALL_STATE(2732)] = 82223, + [SMALL_STATE(2733)] = 82243, + [SMALL_STATE(2734)] = 82263, + [SMALL_STATE(2735)] = 82283, + [SMALL_STATE(2736)] = 82303, + [SMALL_STATE(2737)] = 82323, + [SMALL_STATE(2738)] = 82343, + [SMALL_STATE(2739)] = 82363, + [SMALL_STATE(2740)] = 82383, + [SMALL_STATE(2741)] = 82403, + [SMALL_STATE(2742)] = 82423, + [SMALL_STATE(2743)] = 82443, + [SMALL_STATE(2744)] = 82463, + [SMALL_STATE(2745)] = 82483, + [SMALL_STATE(2746)] = 82503, + [SMALL_STATE(2747)] = 82523, + [SMALL_STATE(2748)] = 82541, + [SMALL_STATE(2749)] = 82559, + [SMALL_STATE(2750)] = 82577, + [SMALL_STATE(2751)] = 82595, + [SMALL_STATE(2752)] = 82613, + [SMALL_STATE(2753)] = 82633, + [SMALL_STATE(2754)] = 82653, + [SMALL_STATE(2755)] = 82673, + [SMALL_STATE(2756)] = 82693, + [SMALL_STATE(2757)] = 82713, + [SMALL_STATE(2758)] = 82731, + [SMALL_STATE(2759)] = 82751, + [SMALL_STATE(2760)] = 82771, + [SMALL_STATE(2761)] = 82789, + [SMALL_STATE(2762)] = 82807, + [SMALL_STATE(2763)] = 82827, + [SMALL_STATE(2764)] = 82847, + [SMALL_STATE(2765)] = 82863, + [SMALL_STATE(2766)] = 82883, + [SMALL_STATE(2767)] = 82901, + [SMALL_STATE(2768)] = 82917, + [SMALL_STATE(2769)] = 82933, + [SMALL_STATE(2770)] = 82953, + [SMALL_STATE(2771)] = 82973, + [SMALL_STATE(2772)] = 82991, + [SMALL_STATE(2773)] = 83011, + [SMALL_STATE(2774)] = 83031, + [SMALL_STATE(2775)] = 83051, + [SMALL_STATE(2776)] = 83071, + [SMALL_STATE(2777)] = 83091, + [SMALL_STATE(2778)] = 83109, + [SMALL_STATE(2779)] = 83129, + [SMALL_STATE(2780)] = 83149, + [SMALL_STATE(2781)] = 83169, + [SMALL_STATE(2782)] = 83187, + [SMALL_STATE(2783)] = 83207, + [SMALL_STATE(2784)] = 83227, + [SMALL_STATE(2785)] = 83247, + [SMALL_STATE(2786)] = 83265, + [SMALL_STATE(2787)] = 83285, + [SMALL_STATE(2788)] = 83305, + [SMALL_STATE(2789)] = 83325, + [SMALL_STATE(2790)] = 83343, + [SMALL_STATE(2791)] = 83363, + [SMALL_STATE(2792)] = 83383, + [SMALL_STATE(2793)] = 83403, + [SMALL_STATE(2794)] = 83423, + [SMALL_STATE(2795)] = 83443, + [SMALL_STATE(2796)] = 83463, + [SMALL_STATE(2797)] = 83483, + [SMALL_STATE(2798)] = 83503, + [SMALL_STATE(2799)] = 83523, + [SMALL_STATE(2800)] = 83541, + [SMALL_STATE(2801)] = 83561, + [SMALL_STATE(2802)] = 83579, + [SMALL_STATE(2803)] = 83599, + [SMALL_STATE(2804)] = 83619, + [SMALL_STATE(2805)] = 83639, + [SMALL_STATE(2806)] = 83659, + [SMALL_STATE(2807)] = 83679, + [SMALL_STATE(2808)] = 83699, + [SMALL_STATE(2809)] = 83715, + [SMALL_STATE(2810)] = 83735, + [SMALL_STATE(2811)] = 83755, + [SMALL_STATE(2812)] = 83771, + [SMALL_STATE(2813)] = 83791, + [SMALL_STATE(2814)] = 83811, + [SMALL_STATE(2815)] = 83827, + [SMALL_STATE(2816)] = 83847, + [SMALL_STATE(2817)] = 83867, + [SMALL_STATE(2818)] = 83885, + [SMALL_STATE(2819)] = 83905, + [SMALL_STATE(2820)] = 83925, + [SMALL_STATE(2821)] = 83945, + [SMALL_STATE(2822)] = 83963, + [SMALL_STATE(2823)] = 83983, + [SMALL_STATE(2824)] = 84003, + [SMALL_STATE(2825)] = 84023, + [SMALL_STATE(2826)] = 84043, + [SMALL_STATE(2827)] = 84061, + [SMALL_STATE(2828)] = 84079, + [SMALL_STATE(2829)] = 84099, + [SMALL_STATE(2830)] = 84117, + [SMALL_STATE(2831)] = 84137, + [SMALL_STATE(2832)] = 84155, + [SMALL_STATE(2833)] = 84175, + [SMALL_STATE(2834)] = 84195, + [SMALL_STATE(2835)] = 84215, + [SMALL_STATE(2836)] = 84233, + [SMALL_STATE(2837)] = 84253, + [SMALL_STATE(2838)] = 84273, + [SMALL_STATE(2839)] = 84293, + [SMALL_STATE(2840)] = 84313, + [SMALL_STATE(2841)] = 84331, + [SMALL_STATE(2842)] = 84347, + [SMALL_STATE(2843)] = 84367, + [SMALL_STATE(2844)] = 84387, + [SMALL_STATE(2845)] = 84407, + [SMALL_STATE(2846)] = 84427, + [SMALL_STATE(2847)] = 84447, + [SMALL_STATE(2848)] = 84467, + [SMALL_STATE(2849)] = 84487, + [SMALL_STATE(2850)] = 84505, + [SMALL_STATE(2851)] = 84525, + [SMALL_STATE(2852)] = 84543, + [SMALL_STATE(2853)] = 84563, + [SMALL_STATE(2854)] = 84581, + [SMALL_STATE(2855)] = 84599, + [SMALL_STATE(2856)] = 84619, + [SMALL_STATE(2857)] = 84637, + [SMALL_STATE(2858)] = 84657, + [SMALL_STATE(2859)] = 84677, + [SMALL_STATE(2860)] = 84697, + [SMALL_STATE(2861)] = 84717, + [SMALL_STATE(2862)] = 84737, + [SMALL_STATE(2863)] = 84755, + [SMALL_STATE(2864)] = 84775, + [SMALL_STATE(2865)] = 84793, + [SMALL_STATE(2866)] = 84813, + [SMALL_STATE(2867)] = 84833, + [SMALL_STATE(2868)] = 84853, + [SMALL_STATE(2869)] = 84873, + [SMALL_STATE(2870)] = 84893, + [SMALL_STATE(2871)] = 84913, + [SMALL_STATE(2872)] = 84933, + [SMALL_STATE(2873)] = 84953, + [SMALL_STATE(2874)] = 84973, + [SMALL_STATE(2875)] = 84991, + [SMALL_STATE(2876)] = 85011, + [SMALL_STATE(2877)] = 85031, + [SMALL_STATE(2878)] = 85051, + [SMALL_STATE(2879)] = 85069, + [SMALL_STATE(2880)] = 85089, + [SMALL_STATE(2881)] = 85109, + [SMALL_STATE(2882)] = 85129, + [SMALL_STATE(2883)] = 85147, + [SMALL_STATE(2884)] = 85167, + [SMALL_STATE(2885)] = 85187, + [SMALL_STATE(2886)] = 85205, + [SMALL_STATE(2887)] = 85223, + [SMALL_STATE(2888)] = 85243, + [SMALL_STATE(2889)] = 85263, + [SMALL_STATE(2890)] = 85283, + [SMALL_STATE(2891)] = 85303, + [SMALL_STATE(2892)] = 85323, + [SMALL_STATE(2893)] = 85343, + [SMALL_STATE(2894)] = 85363, + [SMALL_STATE(2895)] = 85383, + [SMALL_STATE(2896)] = 85401, + [SMALL_STATE(2897)] = 85421, + [SMALL_STATE(2898)] = 85441, + [SMALL_STATE(2899)] = 85461, + [SMALL_STATE(2900)] = 85481, + [SMALL_STATE(2901)] = 85501, + [SMALL_STATE(2902)] = 85521, + [SMALL_STATE(2903)] = 85541, + [SMALL_STATE(2904)] = 85557, + [SMALL_STATE(2905)] = 85577, + [SMALL_STATE(2906)] = 85595, + [SMALL_STATE(2907)] = 85615, + [SMALL_STATE(2908)] = 85635, + [SMALL_STATE(2909)] = 85655, + [SMALL_STATE(2910)] = 85673, + [SMALL_STATE(2911)] = 85691, + [SMALL_STATE(2912)] = 85709, + [SMALL_STATE(2913)] = 85729, + [SMALL_STATE(2914)] = 85749, + [SMALL_STATE(2915)] = 85769, + [SMALL_STATE(2916)] = 85789, + [SMALL_STATE(2917)] = 85809, + [SMALL_STATE(2918)] = 85829, + [SMALL_STATE(2919)] = 85849, + [SMALL_STATE(2920)] = 85869, + [SMALL_STATE(2921)] = 85889, + [SMALL_STATE(2922)] = 85909, + [SMALL_STATE(2923)] = 85925, + [SMALL_STATE(2924)] = 85945, + [SMALL_STATE(2925)] = 85965, + [SMALL_STATE(2926)] = 85985, + [SMALL_STATE(2927)] = 86005, + [SMALL_STATE(2928)] = 86025, + [SMALL_STATE(2929)] = 86041, + [SMALL_STATE(2930)] = 86061, + [SMALL_STATE(2931)] = 86081, + [SMALL_STATE(2932)] = 86101, + [SMALL_STATE(2933)] = 86121, + [SMALL_STATE(2934)] = 86139, + [SMALL_STATE(2935)] = 86155, + [SMALL_STATE(2936)] = 86175, + [SMALL_STATE(2937)] = 86195, + [SMALL_STATE(2938)] = 86215, + [SMALL_STATE(2939)] = 86231, + [SMALL_STATE(2940)] = 86247, + [SMALL_STATE(2941)] = 86263, + [SMALL_STATE(2942)] = 86279, + [SMALL_STATE(2943)] = 86295, + [SMALL_STATE(2944)] = 86315, + [SMALL_STATE(2945)] = 86335, + [SMALL_STATE(2946)] = 86355, + [SMALL_STATE(2947)] = 86375, + [SMALL_STATE(2948)] = 86395, + [SMALL_STATE(2949)] = 86415, + [SMALL_STATE(2950)] = 86431, + [SMALL_STATE(2951)] = 86447, + [SMALL_STATE(2952)] = 86467, + [SMALL_STATE(2953)] = 86483, + [SMALL_STATE(2954)] = 86499, + [SMALL_STATE(2955)] = 86515, + [SMALL_STATE(2956)] = 86531, + [SMALL_STATE(2957)] = 86551, + [SMALL_STATE(2958)] = 86571, + [SMALL_STATE(2959)] = 86587, + [SMALL_STATE(2960)] = 86603, + [SMALL_STATE(2961)] = 86619, + [SMALL_STATE(2962)] = 86635, + [SMALL_STATE(2963)] = 86651, + [SMALL_STATE(2964)] = 86667, + [SMALL_STATE(2965)] = 86683, + [SMALL_STATE(2966)] = 86703, + [SMALL_STATE(2967)] = 86723, + [SMALL_STATE(2968)] = 86743, + [SMALL_STATE(2969)] = 86759, + [SMALL_STATE(2970)] = 86775, + [SMALL_STATE(2971)] = 86791, + [SMALL_STATE(2972)] = 86809, + [SMALL_STATE(2973)] = 86825, + [SMALL_STATE(2974)] = 86841, + [SMALL_STATE(2975)] = 86861, + [SMALL_STATE(2976)] = 86881, + [SMALL_STATE(2977)] = 86897, + [SMALL_STATE(2978)] = 86917, + [SMALL_STATE(2979)] = 86933, + [SMALL_STATE(2980)] = 86949, + [SMALL_STATE(2981)] = 86969, + [SMALL_STATE(2982)] = 86989, + [SMALL_STATE(2983)] = 87009, + [SMALL_STATE(2984)] = 87025, + [SMALL_STATE(2985)] = 87041, + [SMALL_STATE(2986)] = 87057, + [SMALL_STATE(2987)] = 87077, + [SMALL_STATE(2988)] = 87097, + [SMALL_STATE(2989)] = 87117, + [SMALL_STATE(2990)] = 87133, + [SMALL_STATE(2991)] = 87149, + [SMALL_STATE(2992)] = 87169, + [SMALL_STATE(2993)] = 87185, + [SMALL_STATE(2994)] = 87201, + [SMALL_STATE(2995)] = 87221, + [SMALL_STATE(2996)] = 87237, + [SMALL_STATE(2997)] = 87257, + [SMALL_STATE(2998)] = 87277, + [SMALL_STATE(2999)] = 87297, + [SMALL_STATE(3000)] = 87317, + [SMALL_STATE(3001)] = 87333, + [SMALL_STATE(3002)] = 87349, + [SMALL_STATE(3003)] = 87369, + [SMALL_STATE(3004)] = 87385, + [SMALL_STATE(3005)] = 87401, + [SMALL_STATE(3006)] = 87417, + [SMALL_STATE(3007)] = 87433, + [SMALL_STATE(3008)] = 87453, + [SMALL_STATE(3009)] = 87469, + [SMALL_STATE(3010)] = 87489, + [SMALL_STATE(3011)] = 87505, + [SMALL_STATE(3012)] = 87521, + [SMALL_STATE(3013)] = 87541, + [SMALL_STATE(3014)] = 87561, + [SMALL_STATE(3015)] = 87581, + [SMALL_STATE(3016)] = 87601, + [SMALL_STATE(3017)] = 87621, + [SMALL_STATE(3018)] = 87641, + [SMALL_STATE(3019)] = 87657, + [SMALL_STATE(3020)] = 87677, + [SMALL_STATE(3021)] = 87697, + [SMALL_STATE(3022)] = 87717, + [SMALL_STATE(3023)] = 87737, + [SMALL_STATE(3024)] = 87757, + [SMALL_STATE(3025)] = 87777, + [SMALL_STATE(3026)] = 87797, + [SMALL_STATE(3027)] = 87813, + [SMALL_STATE(3028)] = 87829, + [SMALL_STATE(3029)] = 87849, + [SMALL_STATE(3030)] = 87869, + [SMALL_STATE(3031)] = 87889, + [SMALL_STATE(3032)] = 87909, [SMALL_STATE(3033)] = 87927, - [SMALL_STATE(3034)] = 87942, - [SMALL_STATE(3035)] = 87959, - [SMALL_STATE(3036)] = 87976, - [SMALL_STATE(3037)] = 87991, - [SMALL_STATE(3038)] = 88008, - [SMALL_STATE(3039)] = 88025, - [SMALL_STATE(3040)] = 88040, - [SMALL_STATE(3041)] = 88057, - [SMALL_STATE(3042)] = 88072, - [SMALL_STATE(3043)] = 88089, - [SMALL_STATE(3044)] = 88106, - [SMALL_STATE(3045)] = 88123, - [SMALL_STATE(3046)] = 88140, - [SMALL_STATE(3047)] = 88157, - [SMALL_STATE(3048)] = 88174, - [SMALL_STATE(3049)] = 88191, - [SMALL_STATE(3050)] = 88206, - [SMALL_STATE(3051)] = 88223, - [SMALL_STATE(3052)] = 88240, - [SMALL_STATE(3053)] = 88257, - [SMALL_STATE(3054)] = 88274, - [SMALL_STATE(3055)] = 88291, - [SMALL_STATE(3056)] = 88306, - [SMALL_STATE(3057)] = 88323, - [SMALL_STATE(3058)] = 88340, - [SMALL_STATE(3059)] = 88357, - [SMALL_STATE(3060)] = 88374, - [SMALL_STATE(3061)] = 88391, - [SMALL_STATE(3062)] = 88408, - [SMALL_STATE(3063)] = 88425, - [SMALL_STATE(3064)] = 88440, - [SMALL_STATE(3065)] = 88457, - [SMALL_STATE(3066)] = 88472, - [SMALL_STATE(3067)] = 88489, - [SMALL_STATE(3068)] = 88506, - [SMALL_STATE(3069)] = 88523, - [SMALL_STATE(3070)] = 88540, - [SMALL_STATE(3071)] = 88557, - [SMALL_STATE(3072)] = 88574, - [SMALL_STATE(3073)] = 88591, - [SMALL_STATE(3074)] = 88606, - [SMALL_STATE(3075)] = 88623, - [SMALL_STATE(3076)] = 88640, - [SMALL_STATE(3077)] = 88655, - [SMALL_STATE(3078)] = 88670, - [SMALL_STATE(3079)] = 88685, - [SMALL_STATE(3080)] = 88702, - [SMALL_STATE(3081)] = 88719, - [SMALL_STATE(3082)] = 88736, - [SMALL_STATE(3083)] = 88751, - [SMALL_STATE(3084)] = 88768, - [SMALL_STATE(3085)] = 88783, - [SMALL_STATE(3086)] = 88800, - [SMALL_STATE(3087)] = 88817, - [SMALL_STATE(3088)] = 88834, - [SMALL_STATE(3089)] = 88849, - [SMALL_STATE(3090)] = 88864, - [SMALL_STATE(3091)] = 88881, - [SMALL_STATE(3092)] = 88898, - [SMALL_STATE(3093)] = 88915, - [SMALL_STATE(3094)] = 88932, - [SMALL_STATE(3095)] = 88949, - [SMALL_STATE(3096)] = 88966, - [SMALL_STATE(3097)] = 88983, - [SMALL_STATE(3098)] = 89000, - [SMALL_STATE(3099)] = 89017, - [SMALL_STATE(3100)] = 89034, - [SMALL_STATE(3101)] = 89051, - [SMALL_STATE(3102)] = 89068, - [SMALL_STATE(3103)] = 89085, - [SMALL_STATE(3104)] = 89102, - [SMALL_STATE(3105)] = 89119, - [SMALL_STATE(3106)] = 89136, - [SMALL_STATE(3107)] = 89153, - [SMALL_STATE(3108)] = 89170, - [SMALL_STATE(3109)] = 89187, - [SMALL_STATE(3110)] = 89202, - [SMALL_STATE(3111)] = 89219, - [SMALL_STATE(3112)] = 89236, - [SMALL_STATE(3113)] = 89253, - [SMALL_STATE(3114)] = 89270, - [SMALL_STATE(3115)] = 89287, - [SMALL_STATE(3116)] = 89304, - [SMALL_STATE(3117)] = 89321, - [SMALL_STATE(3118)] = 89338, - [SMALL_STATE(3119)] = 89355, - [SMALL_STATE(3120)] = 89372, - [SMALL_STATE(3121)] = 89387, - [SMALL_STATE(3122)] = 89404, - [SMALL_STATE(3123)] = 89421, + [SMALL_STATE(3034)] = 87944, + [SMALL_STATE(3035)] = 87961, + [SMALL_STATE(3036)] = 87978, + [SMALL_STATE(3037)] = 87995, + [SMALL_STATE(3038)] = 88012, + [SMALL_STATE(3039)] = 88029, + [SMALL_STATE(3040)] = 88046, + [SMALL_STATE(3041)] = 88063, + [SMALL_STATE(3042)] = 88080, + [SMALL_STATE(3043)] = 88095, + [SMALL_STATE(3044)] = 88112, + [SMALL_STATE(3045)] = 88129, + [SMALL_STATE(3046)] = 88146, + [SMALL_STATE(3047)] = 88163, + [SMALL_STATE(3048)] = 88180, + [SMALL_STATE(3049)] = 88197, + [SMALL_STATE(3050)] = 88214, + [SMALL_STATE(3051)] = 88231, + [SMALL_STATE(3052)] = 88248, + [SMALL_STATE(3053)] = 88265, + [SMALL_STATE(3054)] = 88282, + [SMALL_STATE(3055)] = 88299, + [SMALL_STATE(3056)] = 88316, + [SMALL_STATE(3057)] = 88333, + [SMALL_STATE(3058)] = 88350, + [SMALL_STATE(3059)] = 88367, + [SMALL_STATE(3060)] = 88384, + [SMALL_STATE(3061)] = 88401, + [SMALL_STATE(3062)] = 88416, + [SMALL_STATE(3063)] = 88433, + [SMALL_STATE(3064)] = 88450, + [SMALL_STATE(3065)] = 88467, + [SMALL_STATE(3066)] = 88484, + [SMALL_STATE(3067)] = 88501, + [SMALL_STATE(3068)] = 88518, + [SMALL_STATE(3069)] = 88533, + [SMALL_STATE(3070)] = 88550, + [SMALL_STATE(3071)] = 88567, + [SMALL_STATE(3072)] = 88584, + [SMALL_STATE(3073)] = 88599, + [SMALL_STATE(3074)] = 88616, + [SMALL_STATE(3075)] = 88633, + [SMALL_STATE(3076)] = 88650, + [SMALL_STATE(3077)] = 88667, + [SMALL_STATE(3078)] = 88684, + [SMALL_STATE(3079)] = 88701, + [SMALL_STATE(3080)] = 88718, + [SMALL_STATE(3081)] = 88735, + [SMALL_STATE(3082)] = 88750, + [SMALL_STATE(3083)] = 88765, + [SMALL_STATE(3084)] = 88782, + [SMALL_STATE(3085)] = 88799, + [SMALL_STATE(3086)] = 88814, + [SMALL_STATE(3087)] = 88831, + [SMALL_STATE(3088)] = 88848, + [SMALL_STATE(3089)] = 88865, + [SMALL_STATE(3090)] = 88882, + [SMALL_STATE(3091)] = 88899, + [SMALL_STATE(3092)] = 88914, + [SMALL_STATE(3093)] = 88931, + [SMALL_STATE(3094)] = 88948, + [SMALL_STATE(3095)] = 88965, + [SMALL_STATE(3096)] = 88980, + [SMALL_STATE(3097)] = 88997, + [SMALL_STATE(3098)] = 89012, + [SMALL_STATE(3099)] = 89029, + [SMALL_STATE(3100)] = 89046, + [SMALL_STATE(3101)] = 89063, + [SMALL_STATE(3102)] = 89080, + [SMALL_STATE(3103)] = 89095, + [SMALL_STATE(3104)] = 89112, + [SMALL_STATE(3105)] = 89129, + [SMALL_STATE(3106)] = 89146, + [SMALL_STATE(3107)] = 89161, + [SMALL_STATE(3108)] = 89178, + [SMALL_STATE(3109)] = 89193, + [SMALL_STATE(3110)] = 89210, + [SMALL_STATE(3111)] = 89227, + [SMALL_STATE(3112)] = 89244, + [SMALL_STATE(3113)] = 89261, + [SMALL_STATE(3114)] = 89278, + [SMALL_STATE(3115)] = 89295, + [SMALL_STATE(3116)] = 89312, + [SMALL_STATE(3117)] = 89327, + [SMALL_STATE(3118)] = 89342, + [SMALL_STATE(3119)] = 89357, + [SMALL_STATE(3120)] = 89374, + [SMALL_STATE(3121)] = 89389, + [SMALL_STATE(3122)] = 89406, + [SMALL_STATE(3123)] = 89423, [SMALL_STATE(3124)] = 89438, [SMALL_STATE(3125)] = 89455, [SMALL_STATE(3126)] = 89472, [SMALL_STATE(3127)] = 89489, [SMALL_STATE(3128)] = 89506, - [SMALL_STATE(3129)] = 89523, - [SMALL_STATE(3130)] = 89540, - [SMALL_STATE(3131)] = 89557, + [SMALL_STATE(3129)] = 89521, + [SMALL_STATE(3130)] = 89538, + [SMALL_STATE(3131)] = 89555, [SMALL_STATE(3132)] = 89572, [SMALL_STATE(3133)] = 89589, [SMALL_STATE(3134)] = 89606, @@ -188473,159 +188481,159 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(3136)] = 89638, [SMALL_STATE(3137)] = 89655, [SMALL_STATE(3138)] = 89672, - [SMALL_STATE(3139)] = 89687, - [SMALL_STATE(3140)] = 89704, - [SMALL_STATE(3141)] = 89721, - [SMALL_STATE(3142)] = 89738, - [SMALL_STATE(3143)] = 89755, - [SMALL_STATE(3144)] = 89770, - [SMALL_STATE(3145)] = 89787, + [SMALL_STATE(3139)] = 89689, + [SMALL_STATE(3140)] = 89706, + [SMALL_STATE(3141)] = 89723, + [SMALL_STATE(3142)] = 89740, + [SMALL_STATE(3143)] = 89757, + [SMALL_STATE(3144)] = 89772, + [SMALL_STATE(3145)] = 89789, [SMALL_STATE(3146)] = 89804, [SMALL_STATE(3147)] = 89821, [SMALL_STATE(3148)] = 89838, - [SMALL_STATE(3149)] = 89853, - [SMALL_STATE(3150)] = 89870, + [SMALL_STATE(3149)] = 89855, + [SMALL_STATE(3150)] = 89872, [SMALL_STATE(3151)] = 89887, [SMALL_STATE(3152)] = 89904, [SMALL_STATE(3153)] = 89921, - [SMALL_STATE(3154)] = 89938, - [SMALL_STATE(3155)] = 89955, - [SMALL_STATE(3156)] = 89972, - [SMALL_STATE(3157)] = 89989, - [SMALL_STATE(3158)] = 90006, - [SMALL_STATE(3159)] = 90023, - [SMALL_STATE(3160)] = 90040, - [SMALL_STATE(3161)] = 90057, - [SMALL_STATE(3162)] = 90074, - [SMALL_STATE(3163)] = 90091, - [SMALL_STATE(3164)] = 90108, - [SMALL_STATE(3165)] = 90125, - [SMALL_STATE(3166)] = 90142, - [SMALL_STATE(3167)] = 90159, - [SMALL_STATE(3168)] = 90176, - [SMALL_STATE(3169)] = 90193, - [SMALL_STATE(3170)] = 90210, - [SMALL_STATE(3171)] = 90227, - [SMALL_STATE(3172)] = 90244, - [SMALL_STATE(3173)] = 90261, - [SMALL_STATE(3174)] = 90278, - [SMALL_STATE(3175)] = 90295, - [SMALL_STATE(3176)] = 90312, - [SMALL_STATE(3177)] = 90327, - [SMALL_STATE(3178)] = 90344, - [SMALL_STATE(3179)] = 90361, - [SMALL_STATE(3180)] = 90378, - [SMALL_STATE(3181)] = 90395, - [SMALL_STATE(3182)] = 90412, - [SMALL_STATE(3183)] = 90429, - [SMALL_STATE(3184)] = 90446, - [SMALL_STATE(3185)] = 90461, - [SMALL_STATE(3186)] = 90476, - [SMALL_STATE(3187)] = 90493, - [SMALL_STATE(3188)] = 90510, - [SMALL_STATE(3189)] = 90527, - [SMALL_STATE(3190)] = 90542, - [SMALL_STATE(3191)] = 90559, - [SMALL_STATE(3192)] = 90576, - [SMALL_STATE(3193)] = 90593, - [SMALL_STATE(3194)] = 90610, - [SMALL_STATE(3195)] = 90627, - [SMALL_STATE(3196)] = 90642, - [SMALL_STATE(3197)] = 90657, - [SMALL_STATE(3198)] = 90672, - [SMALL_STATE(3199)] = 90689, - [SMALL_STATE(3200)] = 90704, - [SMALL_STATE(3201)] = 90719, - [SMALL_STATE(3202)] = 90734, - [SMALL_STATE(3203)] = 90751, + [SMALL_STATE(3154)] = 89936, + [SMALL_STATE(3155)] = 89953, + [SMALL_STATE(3156)] = 89968, + [SMALL_STATE(3157)] = 89985, + [SMALL_STATE(3158)] = 90002, + [SMALL_STATE(3159)] = 90017, + [SMALL_STATE(3160)] = 90034, + [SMALL_STATE(3161)] = 90049, + [SMALL_STATE(3162)] = 90066, + [SMALL_STATE(3163)] = 90081, + [SMALL_STATE(3164)] = 90098, + [SMALL_STATE(3165)] = 90113, + [SMALL_STATE(3166)] = 90130, + [SMALL_STATE(3167)] = 90147, + [SMALL_STATE(3168)] = 90162, + [SMALL_STATE(3169)] = 90179, + [SMALL_STATE(3170)] = 90196, + [SMALL_STATE(3171)] = 90213, + [SMALL_STATE(3172)] = 90228, + [SMALL_STATE(3173)] = 90245, + [SMALL_STATE(3174)] = 90262, + [SMALL_STATE(3175)] = 90279, + [SMALL_STATE(3176)] = 90296, + [SMALL_STATE(3177)] = 90313, + [SMALL_STATE(3178)] = 90330, + [SMALL_STATE(3179)] = 90347, + [SMALL_STATE(3180)] = 90364, + [SMALL_STATE(3181)] = 90381, + [SMALL_STATE(3182)] = 90398, + [SMALL_STATE(3183)] = 90413, + [SMALL_STATE(3184)] = 90430, + [SMALL_STATE(3185)] = 90447, + [SMALL_STATE(3186)] = 90464, + [SMALL_STATE(3187)] = 90481, + [SMALL_STATE(3188)] = 90498, + [SMALL_STATE(3189)] = 90513, + [SMALL_STATE(3190)] = 90530, + [SMALL_STATE(3191)] = 90547, + [SMALL_STATE(3192)] = 90564, + [SMALL_STATE(3193)] = 90581, + [SMALL_STATE(3194)] = 90598, + [SMALL_STATE(3195)] = 90615, + [SMALL_STATE(3196)] = 90632, + [SMALL_STATE(3197)] = 90649, + [SMALL_STATE(3198)] = 90666, + [SMALL_STATE(3199)] = 90683, + [SMALL_STATE(3200)] = 90700, + [SMALL_STATE(3201)] = 90715, + [SMALL_STATE(3202)] = 90732, + [SMALL_STATE(3203)] = 90749, [SMALL_STATE(3204)] = 90766, [SMALL_STATE(3205)] = 90783, - [SMALL_STATE(3206)] = 90798, - [SMALL_STATE(3207)] = 90815, + [SMALL_STATE(3206)] = 90800, + [SMALL_STATE(3207)] = 90817, [SMALL_STATE(3208)] = 90832, [SMALL_STATE(3209)] = 90849, [SMALL_STATE(3210)] = 90866, [SMALL_STATE(3211)] = 90883, [SMALL_STATE(3212)] = 90900, [SMALL_STATE(3213)] = 90917, - [SMALL_STATE(3214)] = 90934, - [SMALL_STATE(3215)] = 90951, - [SMALL_STATE(3216)] = 90968, - [SMALL_STATE(3217)] = 90985, - [SMALL_STATE(3218)] = 91000, - [SMALL_STATE(3219)] = 91017, - [SMALL_STATE(3220)] = 91034, - [SMALL_STATE(3221)] = 91051, - [SMALL_STATE(3222)] = 91068, - [SMALL_STATE(3223)] = 91085, - [SMALL_STATE(3224)] = 91102, - [SMALL_STATE(3225)] = 91119, - [SMALL_STATE(3226)] = 91136, - [SMALL_STATE(3227)] = 91153, - [SMALL_STATE(3228)] = 91170, - [SMALL_STATE(3229)] = 91187, - [SMALL_STATE(3230)] = 91204, - [SMALL_STATE(3231)] = 91221, - [SMALL_STATE(3232)] = 91238, - [SMALL_STATE(3233)] = 91253, - [SMALL_STATE(3234)] = 91270, - [SMALL_STATE(3235)] = 91287, - [SMALL_STATE(3236)] = 91302, - [SMALL_STATE(3237)] = 91319, - [SMALL_STATE(3238)] = 91336, - [SMALL_STATE(3239)] = 91351, - [SMALL_STATE(3240)] = 91368, - [SMALL_STATE(3241)] = 91385, - [SMALL_STATE(3242)] = 91402, - [SMALL_STATE(3243)] = 91419, - [SMALL_STATE(3244)] = 91436, - [SMALL_STATE(3245)] = 91453, - [SMALL_STATE(3246)] = 91470, - [SMALL_STATE(3247)] = 91487, - [SMALL_STATE(3248)] = 91504, - [SMALL_STATE(3249)] = 91521, - [SMALL_STATE(3250)] = 91538, - [SMALL_STATE(3251)] = 91553, - [SMALL_STATE(3252)] = 91570, - [SMALL_STATE(3253)] = 91585, - [SMALL_STATE(3254)] = 91602, + [SMALL_STATE(3214)] = 90932, + [SMALL_STATE(3215)] = 90949, + [SMALL_STATE(3216)] = 90966, + [SMALL_STATE(3217)] = 90983, + [SMALL_STATE(3218)] = 90998, + [SMALL_STATE(3219)] = 91015, + [SMALL_STATE(3220)] = 91032, + [SMALL_STATE(3221)] = 91049, + [SMALL_STATE(3222)] = 91066, + [SMALL_STATE(3223)] = 91083, + [SMALL_STATE(3224)] = 91100, + [SMALL_STATE(3225)] = 91117, + [SMALL_STATE(3226)] = 91134, + [SMALL_STATE(3227)] = 91151, + [SMALL_STATE(3228)] = 91168, + [SMALL_STATE(3229)] = 91185, + [SMALL_STATE(3230)] = 91202, + [SMALL_STATE(3231)] = 91217, + [SMALL_STATE(3232)] = 91234, + [SMALL_STATE(3233)] = 91251, + [SMALL_STATE(3234)] = 91268, + [SMALL_STATE(3235)] = 91285, + [SMALL_STATE(3236)] = 91300, + [SMALL_STATE(3237)] = 91317, + [SMALL_STATE(3238)] = 91332, + [SMALL_STATE(3239)] = 91349, + [SMALL_STATE(3240)] = 91366, + [SMALL_STATE(3241)] = 91383, + [SMALL_STATE(3242)] = 91400, + [SMALL_STATE(3243)] = 91415, + [SMALL_STATE(3244)] = 91432, + [SMALL_STATE(3245)] = 91449, + [SMALL_STATE(3246)] = 91466, + [SMALL_STATE(3247)] = 91483, + [SMALL_STATE(3248)] = 91500, + [SMALL_STATE(3249)] = 91517, + [SMALL_STATE(3250)] = 91532, + [SMALL_STATE(3251)] = 91549, + [SMALL_STATE(3252)] = 91566, + [SMALL_STATE(3253)] = 91583, + [SMALL_STATE(3254)] = 91600, [SMALL_STATE(3255)] = 91617, [SMALL_STATE(3256)] = 91634, - [SMALL_STATE(3257)] = 91649, + [SMALL_STATE(3257)] = 91651, [SMALL_STATE(3258)] = 91666, [SMALL_STATE(3259)] = 91683, [SMALL_STATE(3260)] = 91700, [SMALL_STATE(3261)] = 91715, [SMALL_STATE(3262)] = 91730, [SMALL_STATE(3263)] = 91747, - [SMALL_STATE(3264)] = 91762, + [SMALL_STATE(3264)] = 91764, [SMALL_STATE(3265)] = 91779, [SMALL_STATE(3266)] = 91796, [SMALL_STATE(3267)] = 91813, [SMALL_STATE(3268)] = 91830, - [SMALL_STATE(3269)] = 91847, - [SMALL_STATE(3270)] = 91864, - [SMALL_STATE(3271)] = 91881, - [SMALL_STATE(3272)] = 91898, - [SMALL_STATE(3273)] = 91915, - [SMALL_STATE(3274)] = 91932, - [SMALL_STATE(3275)] = 91949, - [SMALL_STATE(3276)] = 91966, - [SMALL_STATE(3277)] = 91983, - [SMALL_STATE(3278)] = 92000, - [SMALL_STATE(3279)] = 92017, - [SMALL_STATE(3280)] = 92034, - [SMALL_STATE(3281)] = 92051, - [SMALL_STATE(3282)] = 92066, - [SMALL_STATE(3283)] = 92083, - [SMALL_STATE(3284)] = 92100, - [SMALL_STATE(3285)] = 92117, - [SMALL_STATE(3286)] = 92132, - [SMALL_STATE(3287)] = 92149, - [SMALL_STATE(3288)] = 92166, - [SMALL_STATE(3289)] = 92183, - [SMALL_STATE(3290)] = 92200, - [SMALL_STATE(3291)] = 92217, + [SMALL_STATE(3269)] = 91845, + [SMALL_STATE(3270)] = 91862, + [SMALL_STATE(3271)] = 91879, + [SMALL_STATE(3272)] = 91896, + [SMALL_STATE(3273)] = 91911, + [SMALL_STATE(3274)] = 91928, + [SMALL_STATE(3275)] = 91945, + [SMALL_STATE(3276)] = 91962, + [SMALL_STATE(3277)] = 91979, + [SMALL_STATE(3278)] = 91994, + [SMALL_STATE(3279)] = 92011, + [SMALL_STATE(3280)] = 92028, + [SMALL_STATE(3281)] = 92045, + [SMALL_STATE(3282)] = 92062, + [SMALL_STATE(3283)] = 92079, + [SMALL_STATE(3284)] = 92096, + [SMALL_STATE(3285)] = 92113, + [SMALL_STATE(3286)] = 92130, + [SMALL_STATE(3287)] = 92147, + [SMALL_STATE(3288)] = 92164, + [SMALL_STATE(3289)] = 92181, + [SMALL_STATE(3290)] = 92198, + [SMALL_STATE(3291)] = 92215, [SMALL_STATE(3292)] = 92232, [SMALL_STATE(3293)] = 92249, [SMALL_STATE(3294)] = 92266, @@ -188642,9 +188650,9 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(3305)] = 92453, [SMALL_STATE(3306)] = 92470, [SMALL_STATE(3307)] = 92487, - [SMALL_STATE(3308)] = 92504, - [SMALL_STATE(3309)] = 92521, - [SMALL_STATE(3310)] = 92538, + [SMALL_STATE(3308)] = 92502, + [SMALL_STATE(3309)] = 92519, + [SMALL_STATE(3310)] = 92536, [SMALL_STATE(3311)] = 92553, [SMALL_STATE(3312)] = 92570, [SMALL_STATE(3313)] = 92584, @@ -188960,1499 +188968,1499 @@ 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(2286), - [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2483), + [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2493), [7] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 0, 0, 0), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1484), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3006), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3121), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3470), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2063), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2061), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1032), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3497), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3199), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(807), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2567), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3342), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1964), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(42), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2381), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3537), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3558), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3569), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2026), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1488), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1481), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3037), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3038), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3402), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2054), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(38), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1067), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1037), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3517), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3042), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(836), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(814), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2497), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3609), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1946), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2293), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3605), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3602), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3600), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1514), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2028), [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1877), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2064), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3052), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2609), - [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), - [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2063), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3064), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2517), + [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), - [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3455), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1987), - [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), - [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), - [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3121), - [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), - [123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1, 0, 0), - [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [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(1484), - [136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(702), - [139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3006), - [142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(171), - [145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(155), - [148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(5), - [151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(339), - [154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1478), - [157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(247), - [160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(783), - [163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(849), - [166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(38), - [169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3079), - [172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3121), - [175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3470), - [178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2063), - [181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(41), - [184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2061), - [187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1045), - [190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1032), - [193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3497), - [196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3199), - [199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(804), - [202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(189), - [205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(845), - [208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(807), - [211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2567), - [214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(370), - [217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3342), - [220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1964), - [223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(42), - [226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2381), - [229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3537), - [232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3558), - [235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3569), - [238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1509), - [241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2026), - [244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1877), - [247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(172), - [250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2064), - [253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(37), - [256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3052), - [259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2609), - [262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1462), - [265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2563), - [268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1463), - [271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1475), - [274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3455), - [277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1987), - [280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1475), - [283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3376), - [286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), - [300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), - [302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), - [304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), - [306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), - [332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), - [334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1040), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1473), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3566), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1975), + [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), + [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), + [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1488), + [126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(496), + [129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3032), + [132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(175), + [135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(143), + [138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(10), + [141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), + [143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(261), + [146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1481), + [149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(246), + [152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(785), + [155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(850), + [158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(39), + [161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3037), + [164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3038), + [167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3402), + [170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2054), + [173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(38), + [176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2066), + [179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1067), + [182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1037), + [185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3517), + [188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3042), + [191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(822), + [194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(203), + [197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(836), + [200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(814), + [203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2497), + [206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(303), + [209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3609), + [212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1946), + [215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(36), + [218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2293), + [221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3605), + [224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3602), + [227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3600), + [230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1514), + [233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2028), + [236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1877), + [239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(174), + [242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2063), + [245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(41), + [248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3064), + [251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2517), + [254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1102), + [257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2520), + [260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1337), + [263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1473), + [266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3566), + [269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1975), + [272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1473), + [275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3492), + [278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), + [280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), + [284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1, 0, 0), + [286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), + [292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), + [296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), + [298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), + [302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), + [304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), + [322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 2, 0, 0), + [324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1034), [336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 2, 0, 0), - [338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2669), + [338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2705), [342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 2, 0, 0), - [344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), - [346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2489), - [348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2690), - [350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), - [352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), - [354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), - [356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2684), - [358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), - [360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2972), - [362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2703), - [364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), - [366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2687), - [368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 2, 0, 0), - [370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 2, 0, 0), - [372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1, 0, 0), - [374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1, 0, 0), - [376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), - [378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(783), - [380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), - [382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), - [384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 1, 0, 0), - [386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 1, 0, 0), - [388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 1, 0, 0), - [390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 1, 0, 0), - [392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3493), - [394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 1, 0, 0), - [396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 1, 0, 0), - [398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1507), - [400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2714), - [404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1591), - [406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), - [408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3042), - [410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2415), - [412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(47), - [414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2631), - [416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1544), - [418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1548), - [420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(796), - [422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), - [424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2615), - [426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), - [428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(45), - [430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2850), - [432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2586), - [434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), - [436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(46), - [438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3122), - [440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2616), - [442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), - [444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), - [446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1779), - [448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), - [450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3464), - [452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), - [454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3519), - [456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), - [458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1553), - [460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), - [462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), - [464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65), - [466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1537), - [468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), - [470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2757), - [472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), - [474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3044), - [476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1558), - [478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3322), - [480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), - [482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), - [488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(50), - [490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3360), - [492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), - [494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), - [496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1542), - [498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), - [500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2968), - [502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), - [504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3094), - [506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), - [508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), + [344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), + [346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2473), + [348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2593), + [350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1404), + [352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), + [354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), + [356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2600), + [358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), + [360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2848), + [362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2596), + [364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), + [366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2602), + [368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 1, 0, 0), + [370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 1, 0, 0), + [372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), + [374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), + [376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), + [378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37), + [380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 1, 0, 0), + [382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 1, 0, 0), + [384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 1, 0, 0), + [386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 1, 0, 0), + [388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3495), + [390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 2, 0, 0), + [392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 2, 0, 0), + [394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1, 0, 0), + [396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1, 0, 0), + [398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1506), + [400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2584), + [404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1601), + [406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), + [408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3033), + [410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2485), + [412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(46), + [414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2639), + [416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1555), + [418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1569), + [420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(801), + [422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), + [424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2572), + [426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), + [428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(50), + [430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2812), + [432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2506), + [434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), + [436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(44), + [438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3216), + [440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2575), + [442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), + [444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), + [446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1805), + [448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1592), + [450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3471), + [452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), + [454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3527), + [456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), + [462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52), + [464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3591), + [466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1507), + [468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1567), + [470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), + [472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3121), + [474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65), + [476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1517), + [478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), + [480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3007), + [482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), + [484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3059), + [486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1561), + [488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3323), + [490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), + [492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), + [494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), + [496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1563), + [498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(58), + [500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2843), + [502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), + [504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3157), + [506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), + [508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), [510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), - [512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62), - [514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(166), - [517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(137), - [520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(68), + [512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), + [514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(141), + [517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(167), + [520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(79), [523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), - [525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(69), - [528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(76), - [531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(137), - [534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(3323), - [537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(156), - [540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2630), - [543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(167), - [546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(168), - [549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(3513), - [552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), - [554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), - [566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3323), - [568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), - [572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), - [574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3513), - [578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3313), - [580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3325), - [584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), - [586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), - [588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(157), - [591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(137), - [594] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(99), - [597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), - [599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(100), - [602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(101), - [605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(137), - [608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(3474), - [611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(156), - [614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(2630), - [617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(167), - [620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(157), - [623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(3513), - [626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(183), - [629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(208), - [632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(111), - [635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), - [637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(112), - [640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(113), - [643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(208), - [646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(183), - [649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(173), - [652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(2584), - [655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(175), - [658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(3461), - [661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), - [663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), - [669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), - [675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), - [681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), - [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3461), - [685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), - [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), - [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3474), - [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2661), - [701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), - [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), - [717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), - [719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), - [729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), - [731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), - [733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(137), - [736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), - [738] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(137), - [741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__token_pattern, 1, 0, 0), - [743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__token_pattern, 1, 0, 0), + [525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(82), + [528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(80), + [531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(167), + [534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(3500), + [537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(151), + [540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2629), + [543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(145), + [546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(148), + [549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(3521), + [552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), + [554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), + [566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3500), + [568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), + [572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), + [574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3521), + [578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3520), + [580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), + [582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), + [584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(207), + [587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(206), + [590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(125), + [593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), + [595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(106), + [598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(88), + [601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(206), + [604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(207), + [607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(200), + [610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(2496), + [613] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(194), + [616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(3467), + [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), + [621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(165), + [624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(167), + [627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(128), + [630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), + [632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(127), + [635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(122), + [638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(167), + [641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(3503), + [644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(151), + [647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(2629), + [650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(145), + [653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(165), + [656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(3521), + [659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), + [663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), + [675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), + [681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), + [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), + [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), + [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), + [693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), + [695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), + [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3503), + [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), + [717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), + [719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), + [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), + [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), + [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__token_pattern, 1, 0, 0), + [733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__token_pattern, 1, 0, 0), + [735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), + [737] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(167), + [740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), + [742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(167), [745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 1, 0, 0), [747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 1, 0, 0), - [749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 1, 0, 0), - [751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 1, 0, 0), - [753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2, 0, 0), - [755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2, 0, 0), - [757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 2, 0, 0), - [759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 2, 0, 0), - [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), - [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3541), - [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3431), - [767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 3, 0, 0), - [769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 3, 0, 0), - [771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3, 0, 0), - [773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3, 0, 0), - [775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 3, 0, 0), - [777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 3, 0, 0), - [779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_binding_pattern, 3, 0, 197), - [781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_binding_pattern, 3, 0, 197), - [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3563), - [787] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1040), - [790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(171), - [793] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(155), - [796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), - [798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(11), - [801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(339), - [804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1478), - [807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(247), - [810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(783), - [813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(849), - [816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(38), - [819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3079), - [822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3431), - [825] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3470), - [828] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2489), - [831] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(41), - [834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2690), - [837] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1045), - [840] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1238), - [843] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(825), - [846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(201), - [849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2684), - [852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(342), - [855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(42), - [858] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2972), - [861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2703), - [864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(202), - [867] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(37), - [870] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3052), - [873] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2687), - [876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1462), - [879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2563), - [882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1463), - [885] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1475), - [888] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3455), - [891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1475), - [894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3376), - [897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 4, 0, 0), - [899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 4, 0, 0), - [901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 6, 0, 0), - [903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 6, 0, 0), - [905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 1, 0, 0), - [907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 1, 0, 0), - [909] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(208), - [912] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(208), - [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), - [919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 4, 0, 0), - [921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 4, 0, 0), - [923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 5, 0, 0), - [925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 5, 0, 0), - [927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 6, 0, 0), - [929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 6, 0, 0), - [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3610), - [935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal, 1, 0, 0), - [937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal, 1, 0, 0), - [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), - [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), - [943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fragment_specifier, 1, 0, 0), - [945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fragment_specifier, 1, 0, 0), - [947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__non_delim_token, 1, 0, 0), - [949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__non_delim_token, 1, 0, 0), - [951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 2, 0, 0), - [953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 2, 0, 0), - [955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), - [957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3398), - [959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 3, 0, 0), - [961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 3, 0, 0), - [963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 5, 0, 0), - [965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 5, 0, 0), - [967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1, 0, 0), - [969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1, 0, 0), - [971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1998), - [973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), - [981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), - [983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 2, 0, 0), - [987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 2, 0, 0), - [989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 3, 0, 0), - [991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 3, 0, 0), - [993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__delim_tokens, 1, 0, 0), - [995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__delim_tokens, 1, 0, 0), - [997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 1, 0, 0), - [999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 1, 0, 0), - [1001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), - [1003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), - [1005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [1007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), - [1009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), - [1011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), - [1013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), - [1015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [1017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), - [1019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), - [1021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [1023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [1025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [1027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), - [1029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), - [1031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [1033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [1035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [1037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [1039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [1041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [1043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [1045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1295), - [1047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [1049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [1051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), - [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), - [1055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [1057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [1059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [1061] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1040), - [1064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(171), - [1067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), - [1069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(155), - [1072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(11), - [1075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(339), - [1078] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1478), - [1081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(247), - [1084] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(783), - [1087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(849), - [1090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(38), - [1093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3079), - [1096] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3470), - [1099] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2489), - [1102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(41), - [1105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2690), - [1108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1045), - [1111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1238), - [1114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(825), - [1117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(201), - [1120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2684), - [1123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(342), - [1126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(42), - [1129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2972), - [1132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2703), - [1135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(202), - [1138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(37), - [1141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3052), - [1144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2687), - [1147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1462), - [1150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2563), - [1153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1463), - [1156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1475), - [1159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3455), - [1162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1475), - [1165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3376), - [1168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), - [1170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1249), - [1172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [1174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [1176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [1178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), - [1180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [1182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), - [1184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1661), - [1186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [1188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1672), - [1190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [1192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), - [1194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 3, 0, 30), - [1196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 3, 0, 30), - [1198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2377), - [1200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), - [1202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), - [1204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), - [1206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4, 0, 0), - [1208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 4, 0, 0), - [1210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [1212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2451), - [1214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2618), - [1216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), - [1218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), - [1220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2582), - [1222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), - [1224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2699), - [1226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), - [1228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2583), - [1230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [1232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 5, 0, 0), - [1234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 5, 0, 0), - [1236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 6, 0, 0), - [1238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 6, 0, 0), - [1240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), - [1242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), - [1244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), - [1246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), - [1248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1942), - [1250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [1252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), - [1254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [1256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3254), - [1258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [1260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2135), - [1262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3263), - [1264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), - [1266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [1268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [1270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2482), - [1272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2088), - [1274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), - [1276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), - [1278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), - [1280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), - [1282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3531), - [1284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2320), - [1286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2109), - [1288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1936), - [1290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3207), - [1292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3439), - [1294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), - [1296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2058), - [1298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2213), - [1300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(812), - [1302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), - [1304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), - [1306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), - [1308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), - [1310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1997), - [1312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2281), - [1314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2708), - [1316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), - [1318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3601), - [1320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, 0, 39), - [1322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, 0, 39), - [1324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1958), - [1326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [1328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), - [1330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2136), - [1332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [1334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2427), - [1336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3397), - [1338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), - [1340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1981), - [1342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2150), - [1344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2284), - [1346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2663), - [1348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), - [1350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 5, 0, 115), - [1352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 5, 0, 115), - [1354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), - [1356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), - [1358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), - [1360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), - [1362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 3, 0, 0), - [1364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 3, 0, 0), - [1366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_block, 2, 0, 8), - [1368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_block, 2, 0, 8), - [1370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 3, 0, 0), - [1372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 3, 0, 0), - [1374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 2, 0, 8), - [1376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 2, 0, 8), - [1378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 5, 0, 145), - [1380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 5, 0, 145), - [1382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unsafe_block, 2, 0, 0), - [1384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unsafe_block, 2, 0, 0), - [1386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, 0, 75), - [1388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, 0, 75), - [1390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 4, 0, 0), - [1392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 4, 0, 0), - [1394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 2, 0, 0), - [1396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 2, 0, 0), - [1398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 3, 0, 33), - [1400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 3, 0, 33), - [1402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 2, 0, 0), - [1404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 2, 0, 0), - [1406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [1408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2430), - [1410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3361), - [1412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), - [1414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), - [1416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1, 0, 0), - [1418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1, 0, 0), - [1420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_block, 2, 0, 0), - [1422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_block, 2, 0, 0), - [1424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 4, 0, 98), - [1426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 4, 0, 98), - [1428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 7, 0, 241), - [1430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 7, 0, 241), - [1432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1, 0, 0), - [1434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1, 0, 0), - [1436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), - [1438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2471), - [1440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3442), - [1442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, 0, 28), - [1444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, 0, 28), - [1446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), - [1448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3447), - [1450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 3, 0, 38), - [1452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 3, 0, 38), - [1454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [1456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2508), - [1458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), - [1460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), - [1462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [1464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), - [1466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [1468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), - [1470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), - [1472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), - [1474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), + [749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1034), + [752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(175), + [755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(143), + [758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), + [760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3), + [763] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(261), + [766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1481), + [769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(246), + [772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(785), + [775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(850), + [778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(39), + [781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3037), + [784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3504), + [787] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3402), + [790] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2473), + [793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(38), + [796] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2593), + [799] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1067), + [802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1404), + [805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(800), + [808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(184), + [811] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2600), + [814] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(298), + [817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(36), + [820] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2848), + [823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2596), + [826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(201), + [829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(41), + [832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3064), + [835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2602), + [838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1102), + [841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2520), + [844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1337), + [847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1473), + [850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3566), + [853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1473), + [856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3492), + [859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_binding_pattern, 3, 0, 199), + [861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_binding_pattern, 3, 0, 199), + [863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 3, 0, 0), + [865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 3, 0, 0), + [867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3395), + [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3504), + [873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3389), + [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3499), + [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), + [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3329), + [885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1, 0, 0), + [887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1, 0, 0), + [889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 6, 0, 0), + [891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 6, 0, 0), + [893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 5, 0, 0), + [895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 5, 0, 0), + [897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2000), + [899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 2, 0, 0), + [901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 2, 0, 0), + [903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal, 1, 0, 0), + [905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal, 1, 0, 0), + [907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 4, 0, 0), + [909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 4, 0, 0), + [911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 1, 0, 0), + [913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 1, 0, 0), + [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 = 2, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(206), + [922] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(206), + [925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 6, 0, 0), + [927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 6, 0, 0), + [929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 4, 0, 0), + [931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 4, 0, 0), + [933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 3, 0, 0), + [935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 3, 0, 0), + [937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3, 0, 0), + [939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3, 0, 0), + [941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 3, 0, 0), + [943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 3, 0, 0), + [945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2, 0, 0), + [947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2, 0, 0), + [949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 5, 0, 0), + [951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 5, 0, 0), + [953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), + [955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3405), + [957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 2, 0, 0), + [959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 2, 0, 0), + [961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), + [963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), + [965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 1, 0, 0), + [967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 1, 0, 0), + [969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fragment_specifier, 1, 0, 0), + [971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fragment_specifier, 1, 0, 0), + [973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), + [981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 2, 0, 0), + [983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 2, 0, 0), + [985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), + [987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), + [991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), + [993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), + [1001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 3, 0, 0), + [1003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 3, 0, 0), + [1005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [1007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [1009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), + [1011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), + [1013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [1015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [1017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [1019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), + [1021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [1023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), + [1025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), + [1027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), + [1029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 1, 0, 0), + [1031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 1, 0, 0), + [1033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__delim_tokens, 1, 0, 0), + [1035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__delim_tokens, 1, 0, 0), + [1037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [1039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1329), + [1041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [1043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [1045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [1047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1293), + [1049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [1051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1255), + [1055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [1057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [1059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [1061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), + [1063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [1065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [1067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1767), + [1069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [1071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), + [1073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), + [1075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [1077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1831), + [1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [1081] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1034), + [1084] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(175), + [1087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), + [1089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(143), + [1092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3), + [1095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(261), + [1098] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1481), + [1101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(246), + [1104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(785), + [1107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(850), + [1110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(39), + [1113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3037), + [1116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3402), + [1119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2473), + [1122] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(38), + [1125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2593), + [1128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1067), + [1131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1404), + [1134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(800), + [1137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(184), + [1140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2600), + [1143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(298), + [1146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(36), + [1149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2848), + [1152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2596), + [1155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(201), + [1158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(41), + [1161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3064), + [1164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2602), + [1167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1102), + [1170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2520), + [1173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1337), + [1176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1473), + [1179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3566), + [1182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1473), + [1185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3492), + [1188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), + [1190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [1192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), + [1194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 3, 0, 33), + [1196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 3, 0, 33), + [1198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2329), + [1200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), + [1202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), + [1204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), + [1206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), + [1208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), + [1210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [1212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [1214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2417), + [1216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2581), + [1218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), + [1220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), + [1222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2499), + [1224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), + [1226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2611), + [1228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), + [1230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2498), + [1232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), + [1234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), + [1236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4, 0, 0), + [1238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 4, 0, 0), + [1240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 5, 0, 0), + [1242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 5, 0, 0), + [1244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 6, 0, 0), + [1246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 6, 0, 0), + [1248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, 0, 31), + [1250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, 0, 31), + [1252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 2, 0, 9), + [1254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 2, 0, 9), + [1256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_block, 2, 0, 9), + [1258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_block, 2, 0, 9), + [1260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1953), + [1262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [1264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), + [1266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [1268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), + [1270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [1272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2135), + [1274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), + [1276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), + [1278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [1280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [1282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2431), + [1284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2080), + [1286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), + [1288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3473), + [1290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3250), + [1292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3588), + [1294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3474), + [1296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2321), + [1298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2103), + [1300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1985), + [1302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3141), + [1304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3470), + [1306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1074), + [1308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2150), + [1310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2205), + [1312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), + [1314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1498), + [1316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(788), + [1318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), + [1320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), + [1322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1999), + [1324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2257), + [1326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2724), + [1328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), + [1330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3321), + [1332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1962), + [1334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [1336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), + [1338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2170), + [1340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [1342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2426), + [1344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3452), + [1346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3288), + [1348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1934), + [1350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2072), + [1352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2279), + [1354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2607), + [1356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), + [1358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 3, 0, 41), + [1360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 3, 0, 41), + [1362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 2, 0, 0), + [1364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 2, 0, 0), + [1366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 2, 0, 0), + [1368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 2, 0, 0), + [1370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unsafe_block, 2, 0, 0), + [1372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unsafe_block, 2, 0, 0), + [1374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 5, 0, 117), + [1376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 5, 0, 117), + [1378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), + [1380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2439), + [1382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), + [1384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [1386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2413), + [1388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3378), + [1390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), + [1392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3373), + [1394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, 0, 77), + [1396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, 0, 77), + [1398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 3, 0, 36), + [1400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 3, 0, 36), + [1402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), + [1404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), + [1406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1, 0, 0), + [1408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1, 0, 0), + [1410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), + [1412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3558), + [1414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, 0, 42), + [1416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, 0, 42), + [1418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_block, 2, 0, 0), + [1420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_block, 2, 0, 0), + [1422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1, 0, 0), + [1424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1, 0, 0), + [1426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 3, 0, 0), + [1428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 3, 0, 0), + [1430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 4, 0, 100), + [1432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 4, 0, 100), + [1434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), + [1436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), + [1438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 5, 0, 147), + [1440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 5, 0, 147), + [1442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 7, 0, 243), + [1444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 7, 0, 243), + [1446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 4, 0, 0), + [1448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 4, 0, 0), + [1450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 3, 0, 0), + [1452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 3, 0, 0), + [1454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), + [1456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2702), + [1458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [1460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [1462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), + [1464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), + [1466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), + [1468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [1470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), + [1472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), + [1474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), [1476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [1478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [1478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), [1480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2079), - [1482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), - [1484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3339), - [1486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2824), - [1488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), - [1490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3098), - [1492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), - [1494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), - [1496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2468), - [1498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2581), - [1500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2473), - [1502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2433), - [1504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1955), - [1506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [1508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), - [1510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2152), - [1512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [1514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), - [1516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), - [1518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1937), - [1520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2120), - [1522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2713), - [1524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), - [1526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [1528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), - [1530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2304), - [1532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), - [1534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2342), - [1536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), - [1538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2374), - [1540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), - [1542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2372), - [1544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), + [1482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), + [1484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3388), + [1486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2860), + [1488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(802), + [1490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3170), + [1492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), + [1494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), + [1496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2590), + [1498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2463), + [1500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2405), + [1502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2489), + [1504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1945), + [1506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [1508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), + [1510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2143), + [1512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [1514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3385), + [1516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), + [1518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1961), + [1520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2078), + [1522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2586), + [1524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), + [1526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), + [1528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [1530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), + [1532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2368), + [1534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), + [1536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2343), + [1538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), + [1540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2334), + [1542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2324), + [1544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), [1546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label, 2, 0, 0), [1548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label, 2, 0, 0), [1550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 2, 0, 0), [1552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 2, 0, 0), [1554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 3, 0, 0), [1556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 3, 0, 0), - [1558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2038), - [1560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [1562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [1558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2036), + [1560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [1562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), [1564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [1566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1952), - [1568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [1570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), - [1572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), - [1574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3335), - [1576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2124), - [1578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2613), - [1580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), - [1582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3332), - [1584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), - [1586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [1588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), - [1590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), - [1592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), - [1594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), - [1596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [1598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), - [1600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [1602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2348), - [1604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2007), + [1566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1951), + [1568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [1570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), + [1572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), + [1574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3427), + [1576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2081), + [1578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2612), + [1580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2938), + [1582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3333), + [1584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), + [1586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), + [1588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), + [1590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), + [1592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), + [1594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), + [1596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [1598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [1600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [1602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2349), + [1604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2002), [1606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [1608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [1610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [1612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2233), - [1614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), - [1616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [1618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [1620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2877), - [1622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2899), - [1624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), - [1626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), - [1628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2585), - [1630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2117), - [1632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), - [1634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), - [1636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), - [1638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), - [1640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2360), - [1642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2707), - [1644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2707), - [1646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3494), - [1648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 116), - [1650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 116), - [1652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), - [1654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), - [1656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 172), - [1658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 172), - [1660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [1662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, 0, 29), - [1664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, 0, 29), - [1666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, 0, 54), - [1668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, 0, 54), - [1670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, 0, 6), - [1672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, 0, 6), - [1674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 4, 0, 0), - [1676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 4, 0, 0), - [1678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 112), - [1680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 112), - [1682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 156), - [1684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 156), - [1686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 157), - [1688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 157), - [1690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 158), - [1692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 158), - [1694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 159), - [1696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 159), - [1698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 160), - [1700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 160), - [1702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 161), - [1704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 161), - [1706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 162), - [1708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 162), - [1710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 120), - [1712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 120), - [1714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 163), - [1716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 163), - [1718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 164), - [1720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 164), - [1722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 165), - [1724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 165), - [1726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 166), - [1728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 166), - [1730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 167), - [1732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 167), - [1734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 123), - [1736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 123), - [1738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 168), - [1740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 168), - [1742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 169), - [1744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 169), - [1746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 170), - [1748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 170), - [1750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 171), - [1752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 171), - [1754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 6, 0, 174), - [1756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 6, 0, 174), - [1758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 3, 0, 29), - [1760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 3, 0, 29), - [1762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 4, 0, 0), - [1764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 4, 0, 0), - [1766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 72), - [1768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 72), - [1770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 179), - [1772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 179), - [1774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 130), - [1776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 130), - [1778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 180), - [1780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 180), - [1782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 6, 0, 131), - [1784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 6, 0, 131), - [1786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 132), - [1788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 132), - [1790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 181), - [1792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 181), - [1794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 182), - [1796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 182), - [1798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 183), - [1800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 183), - [1802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 184), - [1804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 184), - [1806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 6, 0, 185), - [1808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 6, 0, 185), - [1810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 188), - [1812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 188), - [1814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 189), - [1816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 189), - [1818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 140), - [1820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 140), - [1822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 190), - [1824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 190), - [1826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 6, 0, 174), - [1828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 6, 0, 174), - [1830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 6, 0, 183), - [1832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 6, 0, 183), - [1834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 88), - [1836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 88), - [1838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 137), - [1840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 137), - [1842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 183), - [1844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 183), - [1846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 191), - [1848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 191), - [1850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 6, 0, 183), - [1852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 6, 0, 183), - [1854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 192), - [1856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 192), - [1858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 193), - [1860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 193), - [1862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 194), - [1864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 194), - [1866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 195), - [1868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 195), - [1870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 196), - [1872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 196), - [1874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, 0, 22), - [1876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, 0, 22), - [1878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, 0, 31), - [1880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, 0, 31), - [1882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 3, 0, 32), - [1884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 3, 0, 32), - [1886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, 0, 54), - [1888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, 0, 54), - [1890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, 0, 6), - [1892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, 0, 6), - [1894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, 0, 6), - [1896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, 0, 6), - [1898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 7, 0, 201), - [1900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 7, 0, 201), - [1902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 5, 0, 0), - [1904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 5, 0, 0), - [1906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, 0, 34), - [1908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, 0, 34), - [1910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 204), - [1912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 204), - [1914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 205), - [1916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 205), - [1918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 157), - [1920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 157), - [1922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 206), - [1924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 206), - [1926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 159), - [1928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 159), - [1930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 207), - [1932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 207), - [1934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 161), - [1936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 161), - [1938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 208), - [1940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 208), - [1942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 209), - [1944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 209), - [1946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 210), - [1948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 210), - [1950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 211), - [1952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 211), - [1954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 212), - [1956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 212), - [1958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 164), - [1960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 164), - [1962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 213), - [1964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 213), - [1966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 166), - [1968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 166), - [1970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 214), - [1972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 214), - [1974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 215), - [1976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 215), - [1978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 216), - [1980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 216), - [1982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 217), - [1984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 217), - [1986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, 0, 218), - [1988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, 0, 218), - [1990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, 0, 201), - [1992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, 0, 201), - [1994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 5, 0, 0), - [1996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 5, 0, 0), - [1998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 180), - [2000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 180), - [2002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 221), - [2004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 221), - [2006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 222), - [2008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 222), - [2010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 223), - [2012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 223), - [2014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 224), - [2016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 224), - [2018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 225), - [2020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 225), - [2022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 226), - [2024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 226), - [2026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 227), - [2028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 227), - [2030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 228), - [2032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 228), - [2034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 229), - [2036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 229), - [2038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 188), - [2040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 188), - [2042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 230), - [2044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 230), - [2046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 231), - [2048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 231), - [2050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 232), - [2052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 232), - [2054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 7, 0, 137), - [2056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 7, 0, 137), - [2058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 191), - [2060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 191), - [2062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 233), - [2064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 233), - [2066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 234), - [2068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 234), - [2070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 235), - [2072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 235), - [2074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 236), - [2076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 236), - [2078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 7, 0, 237), - [2080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 7, 0, 237), - [2082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 238), - [2084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 238), - [2086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 239), - [2088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 239), - [2090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 195), - [2092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 195), - [2094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 240), - [2096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 240), - [2098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, 0, 7), - [2100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, 0, 7), - [2102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 6, 0, 0), - [2104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 6, 0, 0), - [2106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 204), - [2108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 204), - [2110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 244), - [2112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 244), - [2114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 209), - [2116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 209), - [2118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 245), - [2120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 245), - [2122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 211), - [2124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 211), - [2126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 246), - [2128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 246), - [2130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, 0, 247), - [2132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, 0, 247), - [2134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, 0, 248), - [2136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, 0, 248), - [2138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, 0, 249), - [2140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, 0, 249), - [2142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, 0, 250), - [2144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, 0, 250), - [2146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 6, 0, 0), - [2148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 6, 0, 0), - [2150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 221), - [2152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 221), - [2154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 252), - [2156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 252), - [2158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 223), - [2160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 223), - [2162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 253), - [2164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 253), - [2166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 254), - [2168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 254), - [2170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 255), - [2172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 255), - [2174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 256), - [2176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 256), - [2178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 257), - [2180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 257), - [2182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 225), - [2184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 225), - [2186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 258), - [2188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 258), - [2190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 227), - [2192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 227), - [2194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 259), - [2196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 259), - [2198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 260), - [2200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 260), - [2202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 261), - [2204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 261), - [2206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 231), - [2208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 231), - [2210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 262), - [2212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 262), - [2214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 8, 0, 250), - [2216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 8, 0, 250), - [2218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, 0, 263), - [2220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, 0, 263), - [2222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 8, 0, 233), - [2224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 8, 0, 233), - [2226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 8, 0, 264), - [2228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 8, 0, 264), - [2230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 238), - [2232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 238), - [2234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 265), - [2236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 265), - [2238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 266), - [2240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 266), - [2242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 267), - [2244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 267), - [2246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 3, 0, 29), - [2248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 3, 0, 29), - [2250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 9, 0, 268), - [2252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 9, 0, 268), - [2254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 9, 0, 269), - [2256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 9, 0, 269), - [2258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 254), - [2260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 254), - [2262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 270), - [2264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 270), - [2266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 256), - [2268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 256), - [2270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 5, 0, 144), - [2272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 5, 0, 144), - [2274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, 0, 260), - [2276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, 0, 260), - [2278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, 0, 272), - [2280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, 0, 272), - [2282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, 0, 273), - [2284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, 0, 273), - [2286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, 0, 274), - [2288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, 0, 274), - [2290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, 0, 266), - [2292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, 0, 266), - [2294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, 0, 275), - [2296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, 0, 275), - [2298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 3, 0, 7), - [2300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 3, 0, 7), - [2302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 10, 0, 276), - [2304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 10, 0, 276), - [2306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 10, 0, 277), - [2308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 10, 0, 277), - [2310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 10, 0, 273), - [2312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 10, 0, 273), - [2314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 10, 0, 278), - [2316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 10, 0, 278), - [2318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 3, 0, 29), - [2320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 3, 0, 29), - [2322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 3, 0, 37), - [2324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 3, 0, 37), - [2326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2, 0, 0), - [2328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2, 0, 0), - [2330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3108), - [2332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [2334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), - [2336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [2338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3532), - [2340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), - [2342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3280), - [2344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2240), - [2346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2201), - [2348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3604), - [2350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3281), - [2352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), - [2354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), - [2356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3314), - [2358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2955), - [2360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3315), - [2362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3316), - [2364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3317), - [2366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2957), - [2368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2203), - [2370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1880), - [2372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2068), - [2374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3324), - [2376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1982), - [2378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), - [2380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3, 0, 0), - [2382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3, 0, 0), - [2384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3, 0, 44), - [2386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3, 0, 44), - [2388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, 0, 54), - [2390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, 0, 54), - [2392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, 0, 6), - [2394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, 0, 6), - [2396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1, 0, 0), - [2398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1, 0, 0), - [2400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2, 0, 0), - [2402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2, 0, 0), - [2404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [2406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2, 0, 8), - [2408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2, 0, 8), - [2410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_item, 4, 0, 0), - [2412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_item, 4, 0, 0), - [2414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), - [2416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), - [2418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 2, 0, 0), - [2420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 2, 0, 0), - [2422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 71), - [2424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 71), - [2426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 72), - [2428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 72), - [2430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 4, 0, 73), - [2432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 4, 0, 73), - [2434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 4, 0, 74), - [2436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 4, 0, 74), - [2438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 79), - [2440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 79), - [2442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 80), - [2444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 80), - [2446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 22), - [2448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 22), - [2450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 81), - [2452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 81), - [2454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 4, 0, 82), - [2456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 4, 0, 82), - [2458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2, 0, 0), - [2460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2, 0, 0), - [2462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 29), - [2464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 29), - [2466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 71), - [2468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 71), - [2470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 84), - [2472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 84), - [2474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 72), - [2476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 72), - [2478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 71), - [2480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 71), - [2482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 85), - [2484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 85), - [2486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 72), - [2488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 72), - [2490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, 0, 7), - [2492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, 0, 7), - [2494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, 0, 86), - [2496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, 0, 86), - [2498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, 0, 84), - [2500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, 0, 84), - [2502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, 0, 71), - [2504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, 0, 71), - [2506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, 0, 72), - [2508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, 0, 72), - [2510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 63), - [2512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 63), - [2514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 87), - [2516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 87), - [2518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 88), - [2520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 88), - [2522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 4, 0, 93), - [2524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 4, 0, 93), - [2526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [2528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3, 0, 0), - [2530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3, 0, 0), - [2532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3108), - [2535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1374), - [2538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3008), - [2541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), - [2543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3532), - [2546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(849), - [2549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3039), - [2552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3280), - [2555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2320), - [2558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2240), - [2561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2201), - [2564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3604), - [2567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3281), - [2570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(841), - [2573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(817), - [2576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3314), - [2579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1964), - [2582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2955), - [2585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3315), - [2588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3316), - [2591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3317), - [2594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2957), - [2597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2203), - [2600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1880), - [2603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2068), - [2606] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3324), - [2609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1982), - [2612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3324), - [2615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 88), - [2617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 88), - [2619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, 0, 93), - [2621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, 0, 93), - [2623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, 0, 94), - [2625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, 0, 94), - [2627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 95), - [2629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 95), - [2631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 88), - [2633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 88), - [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), - [2637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, 0, 88), - [2639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, 0, 88), - [2641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 4, 0, 96), - [2643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 4, 0, 96), - [2645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, 0, 54), - [2647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, 0, 54), - [2649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1, 0, 0), - [2651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1, 0, 0), - [2653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, 0, 6), - [2655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, 0, 6), - [2657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inner_attribute_item, 5, 0, 0), - [2659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inner_attribute_item, 5, 0, 0), - [2661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 5, 0, 110), - [2663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 5, 0, 110), - [2665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 3, 0, 0), - [2667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 3, 0, 0), - [2669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, 0, 111), - [2671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, 0, 111), - [2673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, 0, 112), - [2675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, 0, 112), - [2677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, 0, 113), - [2679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, 0, 113), - [2681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, 0, 73), - [2683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, 0, 73), - [2685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, 0, 114), - [2687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, 0, 114), - [2689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 120), - [2691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 120), - [2693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 121), - [2695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 121), - [2697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 79), - [2699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 79), - [2701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 122), - [2703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 122), - [2705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 123), - [2707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 123), - [2709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 124), - [2711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 124), - [2713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 100), - [2715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 100), - [2717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 116), - [2719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 116), - [2721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 125), - [2723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 125), - [2725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2007), - [2728] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(754), - [2731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(776), - [2734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2233), - [2737] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3131), - [2740] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(820), - [2743] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(823), - [2746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(849), - [2749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2877), - [2752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2899), - [2755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3157), - [2758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3298), - [2761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2585), - [2764] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2117), - [2767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(821), - [2770] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(824), - [2773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2299), - [2776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2617), - [2779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2360), - [2782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2707), - [2785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2707), - [2788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3494), - [2791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 5, 0, 110), - [2793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 5, 0, 110), - [2795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3, 0, 0), - [2797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3, 0, 0), - [2799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 29), - [2801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 29), - [2803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 72), - [2805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 72), - [2807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 111), - [2809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 111), - [2811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 128), - [2813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 128), - [2815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 111), - [2817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 111), - [2819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 129), - [2821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 129), - [2823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 5, 0, 130), - [2825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 5, 0, 130), - [2827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, 0, 86), - [2829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, 0, 86), - [2831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, 0, 84), - [2833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, 0, 84), - [2835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, 0, 131), - [2837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, 0, 131), - [2839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, 0, 111), - [2841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, 0, 111), - [2843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 132), - [2845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 132), - [2847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 133), - [2849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 133), - [2851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 63), - [2853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 63), - [2855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 134), - [2857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 134), - [2859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 135), - [2861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 135), - [2863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 136), - [2865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 136), - [2867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 137), - [2869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 137), - [2871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, 0, 140), - [2873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, 0, 140), - [2875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, 0, 141), - [2877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, 0, 141), - [2879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, 0, 135), - [2881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, 0, 135), - [2883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, 0, 137), - [2885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, 0, 137), - [2887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 88), - [2889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 88), - [2891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 135), - [2893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 135), - [2895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 142), - [2897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 142), - [2899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 137), - [2901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 137), - [2903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, 0, 135), - [2905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, 0, 135), - [2907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, 0, 137), - [2909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, 0, 137), - [2911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 143), - [2913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 143), - [2915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 271), - [2917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 271), - [2919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), + [1608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [1610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [1612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2243), + [1614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), + [1616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [1618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [1620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2939), + [1622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2940), + [1624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3271), + [1626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), + [1628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2695), + [1630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2091), + [1632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), + [1634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), + [1636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), + [1638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), + [1640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2356), + [1642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2623), + [1644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), + [1646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502), + [1648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 174), + [1650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 174), + [1652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [1654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [1656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 118), + [1658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 118), + [1660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), + [1662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 159), + [1664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 159), + [1666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 125), + [1668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 125), + [1670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, 0, 32), + [1672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, 0, 32), + [1674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 241), + [1676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 241), + [1678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 113), + [1680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 113), + [1682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 74), + [1684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 74), + [1686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 3, 0, 32), + [1688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 3, 0, 32), + [1690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 240), + [1692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 240), + [1694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 7, 0, 239), + [1696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 7, 0, 239), + [1698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 3, 0, 8), + [1700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 3, 0, 8), + [1702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 32), + [1704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 32), + [1706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 238), + [1708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 238), + [1710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3, 0, 0), + [1712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3, 0, 0), + [1714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 3, 0, 32), + [1716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 3, 0, 32), + [1718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 237), + [1720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 237), + [1722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 236), + [1724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 236), + [1726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 235), + [1728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 235), + [1730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1, 0, 0), + [1732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1, 0, 0), + [1734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 193), + [1736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 193), + [1738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 7, 0, 139), + [1740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 7, 0, 139), + [1742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 234), + [1744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 234), + [1746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 233), + [1748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 233), + [1750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 232), + [1752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 232), + [1754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 190), + [1756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 190), + [1758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 231), + [1760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 231), + [1762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 230), + [1764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 230), + [1766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 5, 0, 112), + [1768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 5, 0, 112), + [1770] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2002), + [1773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(754), + [1776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(777), + [1779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2243), + [1782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3153), + [1785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(819), + [1788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(812), + [1791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(850), + [1794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2939), + [1797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2940), + [1800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3271), + [1803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3057), + [1806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2695), + [1809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2091), + [1812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(810), + [1815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(803), + [1818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2355), + [1821] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2576), + [1824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2356), + [1827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2623), + [1830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2623), + [1833] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3502), + [1836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 3, 0, 40), + [1838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 3, 0, 40), + [1840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 127), + [1842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 127), + [1844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 229), + [1846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 229), + [1848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 228), + [1850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 228), + [1852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 227), + [1854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 227), + [1856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 226), + [1858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 226), + [1860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 118), + [1862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 118), + [1864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 102), + [1866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 102), + [1868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 225), + [1870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 225), + [1872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 126), + [1874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 126), + [1876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2, 0, 0), + [1878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2, 0, 0), + [1880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 224), + [1882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 224), + [1884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 223), + [1886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 223), + [1888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 125), + [1890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 125), + [1892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, 0, 8), + [1894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, 0, 8), + [1896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 182), + [1898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 182), + [1900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 5, 0, 0), + [1902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 5, 0, 0), + [1904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 197), + [1906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 197), + [1908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 242), + [1910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 242), + [1912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 124), + [1914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 124), + [1916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 81), + [1918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 81), + [1920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3244), + [1922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [1924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), + [1926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [1928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3370), + [1930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3261), + [1932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), + [1934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2249), + [1936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2221), + [1938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3327), + [1940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3091), + [1942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), + [1944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), + [1946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3315), + [1948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2787), + [1950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3316), + [1952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3317), + [1954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3318), + [1956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2791), + [1958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2222), + [1960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1878), + [1962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2047), + [1964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3312), + [1966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1982), + [1968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), + [1970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 123), + [1972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 123), + [1974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 122), + [1976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 122), + [1978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, 0, 116), + [1980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, 0, 116), + [1982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, 0, 75), + [1984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, 0, 75), + [1986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, 0, 115), + [1988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, 0, 115), + [1990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 130), + [1992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 130), + [1994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, 0, 37), + [1996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, 0, 37), + [1998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, 0, 7), + [2000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, 0, 7), + [2002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, 0, 114), + [2004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, 0, 114), + [2006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 3, 0, 35), + [2008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 3, 0, 35), + [2010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, 0, 113), + [2012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, 0, 113), + [2014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3, 0, 0), + [2016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3, 0, 0), + [2018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3, 0, 47), + [2020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3, 0, 47), + [2022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 113), + [2024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 113), + [2026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 131), + [2028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 131), + [2030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 5, 0, 132), + [2032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 5, 0, 132), + [2034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, 0, 88), + [2036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, 0, 88), + [2038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, 0, 203), + [2040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, 0, 203), + [2042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, 0, 34), + [2044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, 0, 34), + [2046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, 0, 25), + [2048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, 0, 25), + [2050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, 0, 220), + [2052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, 0, 220), + [2054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 6, 0, 0), + [2056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 6, 0, 0), + [2058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 206), + [2060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 206), + [2062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 246), + [2064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 246), + [2066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 219), + [2068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 219), + [2070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 218), + [2072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 218), + [2074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 3, 0, 0), + [2076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 3, 0, 0), + [2078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 217), + [2080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 217), + [2082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 5, 0, 112), + [2084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 5, 0, 112), + [2086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 216), + [2088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 216), + [2090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 168), + [2092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 168), + [2094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 215), + [2096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 215), + [2098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inner_attribute_item, 5, 0, 0), + [2100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inner_attribute_item, 5, 0, 0), + [2102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, 0, 86), + [2104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, 0, 86), + [2106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 166), + [2108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 166), + [2110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 214), + [2112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 214), + [2114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 213), + [2116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 213), + [2118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, 0, 133), + [2120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, 0, 133), + [2122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, 0, 113), + [2124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, 0, 113), + [2126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 134), + [2128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 134), + [2130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 212), + [2132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 212), + [2134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 211), + [2136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 211), + [2138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 211), + [2140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 211), + [2142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 247), + [2144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 247), + [2146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 261), + [2148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 261), + [2150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 210), + [2152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 210), + [2154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 213), + [2156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 213), + [2158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 248), + [2160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 248), + [2162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 163), + [2164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 163), + [2166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, 0, 249), + [2168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, 0, 249), + [2170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 209), + [2172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 209), + [2174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 161), + [2176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 161), + [2178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 135), + [2180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 135), + [2182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, 0, 56), + [2184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, 0, 56), + [2186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 65), + [2188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 65), + [2190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 208), + [2192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 208), + [2194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 159), + [2196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 159), + [2198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, 0, 250), + [2200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, 0, 250), + [2202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 207), + [2204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 207), + [2206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, 0, 251), + [2208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, 0, 251), + [2210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 206), + [2212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 206), + [2214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, 0, 7), + [2216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, 0, 7), + [2218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 136), + [2220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 136), + [2222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, 0, 252), + [2224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, 0, 252), + [2226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 5, 0, 0), + [2228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 5, 0, 0), + [2230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 7, 0, 203), + [2232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 7, 0, 203), + [2234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 137), + [2236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 137), + [2238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 6, 0, 0), + [2240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 6, 0, 0), + [2242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 138), + [2244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 138), + [2246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 139), + [2248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 139), + [2250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1, 0, 0), + [2252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1, 0, 0), + [2254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 223), + [2256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 223), + [2258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 3, 0, 32), + [2260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 3, 0, 32), + [2262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 254), + [2264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 254), + [2266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 225), + [2268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 225), + [2270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 255), + [2272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 255), + [2274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 256), + [2276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 256), + [2278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 257), + [2280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 257), + [2282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 258), + [2284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 258), + [2286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, 0, 142), + [2288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, 0, 142), + [2290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 259), + [2292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 259), + [2294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, 0, 143), + [2296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, 0, 143), + [2298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, 0, 137), + [2300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, 0, 137), + [2302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 227), + [2304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 227), + [2306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, 0, 139), + [2308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, 0, 139), + [2310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 90), + [2312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 90), + [2314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 137), + [2316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 137), + [2318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 144), + [2320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 144), + [2322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, 0, 7), + [2324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, 0, 7), + [2326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, 0, 56), + [2328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, 0, 56), + [2330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 260), + [2332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 260), + [2334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 139), + [2336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 139), + [2338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 229), + [2340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 229), + [2342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, 0, 137), + [2344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, 0, 137), + [2346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, 0, 139), + [2348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, 0, 139), + [2350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 145), + [2352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 145), + [2354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, 0, 274), + [2356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, 0, 274), + [2358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [2360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 262), + [2362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 262), + [2364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 263), + [2366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 263), + [2368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 233), + [2370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 233), + [2372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 264), + [2374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 264), + [2376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 8, 0, 252), + [2378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 8, 0, 252), + [2380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 5, 0, 146), + [2382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 5, 0, 146), + [2384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, 0, 265), + [2386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, 0, 265), + [2388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 8, 0, 235), + [2390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 8, 0, 235), + [2392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 8, 0, 266), + [2394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 8, 0, 266), + [2396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 198), + [2398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 198), + [2400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 197), + [2402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 197), + [2404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 240), + [2406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 240), + [2408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 196), + [2410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 196), + [2412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 267), + [2414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 267), + [2416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 268), + [2418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 268), + [2420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 195), + [2422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 195), + [2424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, 0, 56), + [2426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, 0, 56), + [2428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 194), + [2430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 194), + [2432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 6, 0, 185), + [2434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 6, 0, 185), + [2436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, 0, 7), + [2438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, 0, 7), + [2440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 269), + [2442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 269), + [2444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, 0, 7), + [2446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, 0, 7), + [2448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 193), + [2450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 193), + [2452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 185), + [2454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 185), + [2456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 139), + [2458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 139), + [2460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, 0, 56), + [2462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, 0, 56), + [2464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 4, 0, 98), + [2466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 4, 0, 98), + [2468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, 0, 90), + [2470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, 0, 90), + [2472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 90), + [2474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 90), + [2476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 90), + [2478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 90), + [2480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 97), + [2482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 97), + [2484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 9, 0, 270), + [2486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 9, 0, 270), + [2488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, 0, 96), + [2490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, 0, 96), + [2492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 6, 0, 185), + [2494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 6, 0, 185), + [2496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, 0, 95), + [2498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, 0, 95), + [2500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 90), + [2502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 90), + [2504] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3244), + [2507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1278), + [2510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2862), + [2513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), + [2515] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3370), + [2518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(850), + [2521] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3261), + [2524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3093), + [2527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2321), + [2530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2249), + [2533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2221), + [2536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3327), + [2539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3091), + [2542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(841), + [2545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(816), + [2548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3315), + [2551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1946), + [2554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2787), + [2557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3316), + [2560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3317), + [2563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3318), + [2566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2791), + [2569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2222), + [2572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1878), + [2575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2047), + [2578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3312), + [2581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1982), + [2584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3312), + [2587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 6, 0, 176), + [2589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 6, 0, 176), + [2591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 9, 0, 271), + [2593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 9, 0, 271), + [2595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3, 0, 0), + [2597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3, 0, 0), + [2599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 4, 0, 95), + [2601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 4, 0, 95), + [2603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 192), + [2605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 192), + [2607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 142), + [2609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 142), + [2611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 4, 0, 0), + [2613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 4, 0, 0), + [2615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 256), + [2617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 256), + [2619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 191), + [2621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 191), + [2623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 90), + [2625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 90), + [2627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 89), + [2629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 89), + [2631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 272), + [2633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 272), + [2635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 190), + [2637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 190), + [2639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 258), + [2641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 258), + [2643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 6, 0, 187), + [2645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 6, 0, 187), + [2647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 65), + [2649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 65), + [2651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, 0, 74), + [2653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, 0, 74), + [2655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, 0, 73), + [2657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, 0, 73), + [2659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, 0, 86), + [2661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, 0, 86), + [2663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 273), + [2665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 273), + [2667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, 0, 88), + [2669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, 0, 88), + [2671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, 0, 8), + [2673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, 0, 8), + [2675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 114), + [2677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 114), + [2679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 74), + [2681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 74), + [2683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 87), + [2685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 87), + [2687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 186), + [2689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 186), + [2691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 185), + [2693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 185), + [2695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 184), + [2697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 184), + [2699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 183), + [2701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 183), + [2703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 134), + [2705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 134), + [2707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, 0, 262), + [2709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, 0, 262), + [2711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 73), + [2713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 73), + [2715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2, 0, 0), + [2717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2, 0, 0), + [2719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 74), + [2721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 74), + [2723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 86), + [2725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 86), + [2727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 73), + [2729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 73), + [2731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, 0, 275), + [2733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, 0, 275), + [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [2737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 6, 0, 133), + [2739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 6, 0, 133), + [2741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_item, 4, 0, 0), + [2743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_item, 4, 0, 0), + [2745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, 0, 276), + [2747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, 0, 276), + [2749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 32), + [2751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 32), + [2753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, 0, 268), + [2755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, 0, 268), + [2757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2, 0, 9), + [2759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2, 0, 9), + [2761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, 0, 277), + [2763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, 0, 277), + [2765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 158), + [2767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 158), + [2769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2, 0, 0), + [2771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2, 0, 0), + [2773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 160), + [2775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 160), + [2777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 161), + [2779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 161), + [2781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 162), + [2783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 162), + [2785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 163), + [2787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 163), + [2789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 10, 0, 278), + [2791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 10, 0, 278), + [2793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 2, 0, 0), + [2795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 2, 0, 0), + [2797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 164), + [2799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 164), + [2801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [2803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 122), + [2805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 122), + [2807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 182), + [2809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 182), + [2811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 132), + [2813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 132), + [2815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 181), + [2817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 181), + [2819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 165), + [2821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 165), + [2823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 74), + [2825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 74), + [2827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 166), + [2829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 166), + [2831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 10, 0, 279), + [2833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 10, 0, 279), + [2835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 167), + [2837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 167), + [2839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 168), + [2841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 168), + [2843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), + [2845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), + [2847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 4, 0, 0), + [2849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 4, 0, 0), + [2851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 169), + [2853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 169), + [2855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 170), + [2857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 170), + [2859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 73), + [2861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 73), + [2863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 74), + [2865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 74), + [2867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 4, 0, 84), + [2869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 4, 0, 84), + [2871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 171), + [2873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 171), + [2875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 4, 0, 75), + [2877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 4, 0, 75), + [2879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 83), + [2881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 83), + [2883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 25), + [2885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 25), + [2887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 4, 0, 76), + [2889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 4, 0, 76), + [2891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 10, 0, 275), + [2893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 10, 0, 275), + [2895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 82), + [2897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 82), + [2899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 81), + [2901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 81), + [2903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 6, 0, 176), + [2905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 6, 0, 176), + [2907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 10, 0, 280), + [2909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 10, 0, 280), + [2911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 172), + [2913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 172), + [2915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 173), + [2917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 173), + [2919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1906), [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [2923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), - [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [2927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1999), - [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3406), - [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), - [2935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2697), - [2937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1935), - [2939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2494), - [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), - [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), - [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), - [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), - [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), - [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), - [2953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2000), - [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3536), - [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3453), - [2959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2283), - [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), - [2963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1903), - [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), - [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3574), - [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3531), - [2971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1531), - [2973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1517), - [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), - [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), - [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), - [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), - [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), - [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), - [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), - [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3378), - [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2990), - [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3543), - [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2923), - [2997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), - [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), - [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), - [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), - [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3417), - [3007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), - [3009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2392), - [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), - [3013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2257), - [3015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), - [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), - [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), + [2923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2941), + [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [2927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2001), + [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3393), + [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), + [2935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2609), + [2937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1930), + [2939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2598), + [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), + [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), + [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), + [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3001), + [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3027), + [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), + [2953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1903), + [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), + [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3584), + [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3544), + [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3474), + [2963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1519), + [2965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1531), + [2967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1997), + [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3447), + [2971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2238), + [2973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), + [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), + [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), + [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), + [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), + [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), + [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), + [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2969), + [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3361), + [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), + [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3455), + [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), + [2997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3359), + [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2942), + [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3390), + [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), + [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3428), + [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2973), + [3009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3010), + [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), + [3013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3006), + [3015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), + [3017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2469), + [3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), - [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), - [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964), - [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2974), - [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2882), - [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), - [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), - [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), - [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), - [3041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), - [3043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2469), - [3045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), - [3047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(819), - [3049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(802), - [3051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [3053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), - [3055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2754), - [3057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), - [3059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1492), - [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [3063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3033), - [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [3071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), - [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), - [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3180), - [3079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2118), - [3081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3054), - [3083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), - [3085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2590), - [3087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1504), - [3089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), - [3091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3529), - [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), - [3095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), - [3097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), - [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [3107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1090), - [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), - [3115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2119), - [3117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3149), - [3119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1062), - [3121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2710), - [3123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1498), - [3125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), - [3127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3514), - [3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [3131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(979), - [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), - [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), - [3139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), - [3141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), - [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [3145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3240), - [3147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), - [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), - [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), - [3155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2034), - [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), - [3159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), - [3161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2037), - [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), - [3165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), - [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), - [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [3171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2073), - [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), - [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), - [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), - [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), - [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), - [3183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2750), - [3185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2065), - [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), + [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), + [3027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2248), + [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3018), + [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), + [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3004), + [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3003), + [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), + [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), + [3041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797), + [3043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), + [3045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), + [3047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), + [3049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2422), + [3051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), + [3053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [3055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [3057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), + [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [3063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), + [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), + [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3296), + [3071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2105), + [3073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3076), + [3075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1088), + [3077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2512), + [3079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1492), + [3081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), + [3083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3537), + [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), + [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [3089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), + [3091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2751), + [3093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), + [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [3097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), + [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [3105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1053), + [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3223), + [3113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2121), + [3115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3168), + [3117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), + [3119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2632), + [3121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1484), + [3123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(966), + [3125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3522), + [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [3129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(950), + [3131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), + [3133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), + [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [3137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2056), + [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), + [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), + [3147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3254), + [3149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2065), + [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), + [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), + [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), + [3157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2059), + [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), + [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), + [3163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), + [3165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), + [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), + [3169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), + [3171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2055), + [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), + [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), + [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), + [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237), + [3183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2050), + [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), + [3187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2851), [3189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2044), - [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), - [3193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2072), + [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), + [3193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2043), [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), - [3197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2074), - [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), + [3197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2067), + [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), [3201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), [3203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 1, 0, 0), [3205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 1, 0, 0), @@ -190461,1981 +190469,1981 @@ static const TSParseActionEntry ts_parse_actions[] = { [3211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), [3213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lifetime, 2, 0, 0), [3215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lifetime, 2, 0, 0), - [3217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2043), - [3219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 2, 0, 0), - [3221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 2, 0, 0), - [3223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2041), - [3225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2046), - [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), - [3229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2054), - [3231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 2, 0, 1), - [3233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 2, 0, 1), - [3235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2069), - [3237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2035), - [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), - [3241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 5), - [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [3245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, 0, 5), - [3247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2497), - [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), + [3217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2037), + [3219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 2, 0, 1), + [3221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 2, 0, 1), + [3223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2074), + [3225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2040), + [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), + [3229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2058), + [3231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 2, 0, 0), + [3233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 2, 0, 0), + [3235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2061), + [3237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2046), + [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), + [3241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 6), + [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [3245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, 0, 6), + [3247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2658), + [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2661), [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [3253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, 0, 24), - [3255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, 0, 24), - [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), - [3259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, 0, 24), - [3261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, 0, 24), - [3263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 4, 0, 104), - [3265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 4, 0, 104), - [3267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 17), - [3269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, 0, 17), - [3271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 16), - [3273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 16), - [3275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 46), - [3277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, 0, 46), - [3279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 45), - [3281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 45), - [3283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 4, 0, 105), - [3285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 4, 0, 105), - [3287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, 0, 25), - [3289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, 0, 25), - [3291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 2, 0, 7), - [3293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 2, 0, 7), - [3295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 2, 0, 6), - [3297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, 0, 6), - [3299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), - [3301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, 0, 0), - [3303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, 0, 25), - [3305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, 0, 25), - [3307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 41), - [3309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, 0, 41), - [3311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 40), - [3313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 40), - [3315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1, 0, 1), - [3317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1, 0, 1), - [3319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2727), - [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3037), - [3323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 1, 0, 0), - [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), - [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), - [3329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), - [3331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), - [3333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), SHIFT_REPEAT(3298), - [3336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 4, 0, 0), - [3338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 4, 0, 0), - [3340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 1, 0, 0), - [3342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 1, 0, 0), - [3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3470), - [3346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 41), - [3348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, 0, 0), - [3350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4, 0, 0), - [3352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 19), - [3354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 19), - [3356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 66), - [3358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 66), - [3360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), - [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3436), - [3366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 49), - [3368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 49), - [3370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2, 0, 0), - [3372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 2, 0, 0), - [3374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1513), - [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [3378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3481), - [3380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3311), - [3382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2162), - [3384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3266), - [3386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2836), - [3388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3530), - [3390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3530), - [3392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), - [3394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [3396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), - [3398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 46), - [3400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 50), - [3402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 50), - [3404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5, 0, 0), - [3406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5, 0, 0), - [3408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3, 0, 0), - [3410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3, 0, 0), - [3412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, 0, 23), - [3414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, 0, 23), - [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [3418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3, 0, 0), - [3420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 3, 0, 0), - [3422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), - [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [3426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3312), - [3428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), - [3430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2137), - [3432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3211), - [3434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2784), - [3436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3526), - [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3526), - [3440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3536), - [3443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 5, 0, 0), - [3445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 5, 0, 0), - [3447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 67), - [3449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 67), - [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [3453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1508), - [3455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 17), - [3457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 20), - [3459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 20), - [3461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 6, 0, 0), - [3463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 6, 0, 0), - [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), - [3467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1014), - [3469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 21), - [3471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 21), - [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), - [3475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2423), - [3477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 3, 0, 0), - [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [3481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), - [3483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2816), - [3485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [3487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3051), - [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), - [3491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2881), - [3493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3295), - [3495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3469), - [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), - [3499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1907), - [3501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3440), - [3503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2151), - [3505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3056), - [3507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 6, 0, 0), - [3509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 6, 0, 0), - [3511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 4, 0, 0), - [3513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 64), - [3515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 64), - [3517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [3519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1911), - [3521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 107), - [3523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 107), - [3525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [3527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, 0, 27), - [3529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, 0, 27), - [3531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [3533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, 0, 26), - [3535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, 0, 26), - [3537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [3539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 2, 0, 7), - [3541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), - [3543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_function, 3, 0, 42), - [3545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_function, 3, 0, 42), - [3547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 4, 0, 0), - [3549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 4, 0, 0), - [3551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 4, 0, 0), - [3553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 4, 0, 0), - [3555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 6, 0, 175), - [3557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 6, 0, 175), - [3559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, 0, 10), - [3561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, 0, 10), - [3563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 6, 0, 0), - [3565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 6, 0, 0), - [3567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3, 0, 0), - [3569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3, 0, 0), - [3571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, 0, 11), - [3573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, 0, 11), - [3575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 12), - [3577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 12), - [3579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_higher_ranked_trait_bound, 3, 0, 79), - [3581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_higher_ranked_trait_bound, 3, 0, 79), - [3583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, 0, 62), - [3585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, 0, 62), - [3587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 3, 0, 63), - [3589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 3, 0, 63), - [3591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 3, 0, 63), - [3593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 3, 0, 63), - [3595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2718), - [3597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2716), - [3599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3261), - [3601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2723), - [3603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), - [3605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 2, 0, 0), - [3607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 2, 0, 0), - [3609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 7, 0, 0), - [3611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 7, 0, 0), - [3613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 7, 0, 0), - [3615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 7, 0, 0), - [3617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2, 0, 0), - [3619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2, 0, 0), - [3621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_type, 2, 0, 0), - [3623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_type, 2, 0, 0), - [3625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bounded_type, 3, 0, 0), - [3627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bounded_type, 3, 0, 0), - [3629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_removed_trait_bound, 2, 0, 0), - [3631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_removed_trait_bound, 2, 0, 0), - [3633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_expression, 2, 0, 0), - [3635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_expression, 2, 0, 0), - [3637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 2, 0, 22), - [3639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 2, 0, 22), - [3641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, 0, 76), - [3643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 0, 76), - [3645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, 0, 0), - [3647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 0, 0), - [3649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 3, 0, 0), - [3651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 3, 0, 0), - [3653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2717), - [3655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 5, 0, 116), - [3657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 5, 0, 116), - [3659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 5, 0, 116), - [3661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, 0, 83), - [3663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, 0, 83), - [3665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 47), - [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [3669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 47), - [3671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [3673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2834), - [3675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [3677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 6, 0, 0), - [3679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 6, 0, 0), - [3681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 6, 0, 119), - [3683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 6, 0, 119), - [3685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 6, 0, 0), - [3687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 6, 0, 0), - [3689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, 0, 146), - [3691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, 0, 146), - [3693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, 0, 0), - [3695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, 0, 0), - [3697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, 0, 76), - [3699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 76), - [3701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, 0, 0), - [3703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 0), - [3705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 5, 0, 0), - [3707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 5, 0, 0), - [3709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, 0, 119), - [3711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 119), - [3713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 3, 0, 0), - [3715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 3, 0, 0), - [3717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 2, 0, 0), - [3719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 2, 0, 0), - [3721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 172), - [3723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 172), - [3725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, 0, 172), - [3727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4, 0, 0), - [3729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4, 0, 0), - [3731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 4, 0, 102), - [3733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 4, 0, 102), - [3735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 103), - [3737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 103), - [3739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 3, 0, 35), - [3741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 3, 0, 35), - [3743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 106), - [3745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 106), - [3747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3, 0, 0), - [3749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3, 0, 0), - [3751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4, 0, 0), - [3753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4, 0, 0), - [3755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2670), - [3757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2666), - [3759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2682), - [3761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), - [3763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, 0, 97), - [3765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, 0, 97), - [3767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 108), - [3769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 108), - [3771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 2, 0, 13), - [3773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 2, 0, 13), - [3775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_cast_expression, 3, 0, 51), - [3777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_cast_expression, 3, 0, 51), - [3779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 5, 0, 0), - [3781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 5, 0, 0), - [3783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [3785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [3787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 0), - [3789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 0), - [3791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, 0, 99), - [3793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, 0, 99), - [3795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, 0, 0), - [3797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, 0, 0), - [3799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 3, 0, 0), - [3801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 3, 0, 0), - [3803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 2, 0, 4), - [3805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 2, 0, 4), - [3807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 3, 0, 18), - [3809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 3, 0, 18), - [3811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, 0, 76), - [3813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 76), - [3815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, 0, 0), - [3817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 0), - [3819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, 0, 119), - [3821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 119), - [3823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5, 0, 0), - [3825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5, 0, 0), - [3827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, 0, 52), - [3829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5, 0, 0), - [3831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5, 0, 0), - [3833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 2, 0, 0), - [3835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 2, 0, 0), - [3837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 5, 0, 127), - [3839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 5, 0, 127), - [3841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, 0, 150), - [3843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 5, 0, 150), - [3845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 2, 0, 0), - [3847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 2, 0, 0), - [3849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 152), - [3851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 152), - [3853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 153), - [3855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 153), - [3857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 154), - [3859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 154), - [3861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2625), - [3863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, 0, 43), - [3865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_never_type, 1, 0, 0), - [3867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_never_type, 1, 0, 0), - [3869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 4, 0, 0), - [3871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 4, 0, 0), - [3873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 6, 0, 200), - [3875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 6, 0, 200), - [3877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 1, 0, 0), - [3879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 1, 0, 0), - [3881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4, 0, 0), - [3883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4, 0, 0), - [3885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 1, 0, 0), - [3887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 1, 0, 0), - [3889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), - [3891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_arm_repeat1, 1, 0, 0), - [3893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 1, 0, 0), - [3895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 3, 0, 0), - [3897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), - [3899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), - [3901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), - [3903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), - [3905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), - [3907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [3909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [3911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), - [3913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 3, 0, 0), - [3915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [3917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), - [3919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 3, 0, 0), - [3921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 3, 0, 0), - [3923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36), - [3925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [3927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2521), - [3929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [3931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), - [3933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 2, 0, 0), - [3935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 2, 0, 0), - [3937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1905), - [3939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [3941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2635), - [3943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2656), - [3945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [3947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_assignment_expr, 3, 0, 47), - [3949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_assignment_expr, 3, 0, 47), - [3951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), - [3953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3258), - [3955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2, 0, 0), - [3957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 2, 0, 0), - [3959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 48), - [3961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, 0, 48), - [3963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1506), - [3965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3070), - [3967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), - [3969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), - [3971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), - [3973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2364), - [3975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), - [3977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 1, 0, 0), - [3979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), - [3981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), SHIFT(3247), - [3984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), SHIFT(2667), - [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), - [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), - [3991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 4, 0, 0), - [3993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 4, 0, 0), - [3995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5, 0, 126), - [3997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, 0, 126), + [3253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 4, 0, 106), + [3255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 4, 0, 106), + [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), + [3259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, 0, 27), + [3261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, 0, 27), + [3263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, 0, 27), + [3265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, 0, 27), + [3267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, 0, 28), + [3269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, 0, 28), + [3271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 44), + [3273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, 0, 44), + [3275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 43), + [3277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 43), + [3279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 4, 0, 107), + [3281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 4, 0, 107), + [3283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 20), + [3285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, 0, 20), + [3287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 19), + [3289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 19), + [3291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), + [3293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, 0, 0), + [3295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 49), + [3297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, 0, 49), + [3299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 48), + [3301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 48), + [3303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 2, 0, 8), + [3305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 2, 0, 8), + [3307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 2, 0, 7), + [3309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, 0, 7), + [3311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, 0, 28), + [3313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, 0, 28), + [3315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), + [3317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), + [3319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), SHIFT_REPEAT(3057), + [3322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), + [3324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), + [3326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1, 0, 1), + [3328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1, 0, 1), + [3330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2618), + [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3122), + [3334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 1, 0, 0), + [3336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2, 0, 0), + [3338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 2, 0, 0), + [3340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3, 0, 0), + [3342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 3, 0, 0), + [3344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2455), + [3346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 3, 0, 0), + [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [3350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3277), + [3352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3029), + [3354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [3356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), + [3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3577), + [3360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2752), + [3362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3107), + [3364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3476), + [3366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3476), + [3368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 49), + [3370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), + [3372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, 0, 30), + [3374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, 0, 30), + [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [3378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, 0, 29), + [3380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, 0, 29), + [3382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [3384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3383), + [3386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 109), + [3388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 109), + [3390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [3392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), + [3394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), + [3396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [3398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3369), + [3400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3282), + [3402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2169), + [3404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3248), + [3406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2948), + [3408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3534), + [3410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), + [3412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3220), + [3414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, 0, 0), + [3416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4, 0, 0), + [3418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3, 0, 0), + [3420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3, 0, 0), + [3422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), + [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [3426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), + [3428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), + [3430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 52), + [3432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 52), + [3434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 44), + [3436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, 0, 26), + [3438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, 0, 26), + [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [3442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 1, 0, 0), + [3444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 1, 0, 0), + [3446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3402), + [3448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5, 0, 0), + [3450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5, 0, 0), + [3452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 53), + [3454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 53), + [3456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 24), + [3458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 24), + [3460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 20), + [3462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 23), + [3464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 23), + [3466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 6, 0, 0), + [3468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 6, 0, 0), + [3470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), + [3472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3365), + [3474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2157), + [3476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3259), + [3478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 22), + [3480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 22), + [3482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 6, 0, 0), + [3484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 6, 0, 0), + [3486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1911), + [3488] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3544), + [3491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 5, 0, 0), + [3493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 5, 0, 0), + [3495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 66), + [3497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 66), + [3499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [3501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 2, 0, 8), + [3503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 68), + [3505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 68), + [3507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [3509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1513), + [3511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [3513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3488), + [3515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3301), + [3517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2130), + [3519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2838), + [3521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3538), + [3523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3538), + [3525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 4, 0, 0), + [3527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 4, 0, 0), + [3529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), + [3531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), + [3533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3126), + [3535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 4, 0, 0), + [3537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 69), + [3539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 69), + [3541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [3543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, 0, 0), + [3545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 0), + [3547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, 0, 121), + [3549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 121), + [3551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 5, 0, 129), + [3553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 5, 0, 129), + [3555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, 0, 78), + [3557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 78), + [3559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 3, 0, 21), + [3561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [3563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 3, 0, 21), + [3565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [3567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2755), + [3569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 4, 0, 0), + [3571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 4, 0, 0), + [3573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_higher_ranked_trait_bound, 3, 0, 81), + [3575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_higher_ranked_trait_bound, 3, 0, 81), + [3577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4, 0, 0), + [3579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4, 0, 0), + [3581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, 0, 0), + [3583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, 0, 0), + [3585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, 0, 101), + [3587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, 0, 101), + [3589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 5, 0, 0), + [3591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 5, 0, 0), + [3593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 6, 0, 0), + [3595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 6, 0, 0), + [3597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, 0, 148), + [3599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, 0, 148), + [3601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, 0, 0), + [3603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, 0, 0), + [3605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, 0, 99), + [3607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, 0, 99), + [3609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4, 0, 0), + [3611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4, 0, 0), + [3613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3, 0, 0), + [3615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3, 0, 0), + [3617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, 0, 85), + [3619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, 0, 85), + [3621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 3, 0, 0), + [3623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 3, 0, 0), + [3625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 5, 0, 118), + [3627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 5, 0, 118), + [3629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 5, 0, 118), + [3631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2669), + [3633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 110), + [3635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 110), + [3637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 108), + [3639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 108), + [3641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [3643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [3645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 105), + [3647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 105), + [3649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 4, 0, 104), + [3651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 4, 0, 104), + [3653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4, 0, 0), + [3655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4, 0, 0), + [3657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, 0, 12), + [3659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, 0, 12), + [3661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 3, 0, 38), + [3663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 3, 0, 38), + [3665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 6, 0, 0), + [3667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 6, 0, 0), + [3669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 6, 0, 202), + [3671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 6, 0, 202), + [3673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, 0, 78), + [3675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 78), + [3677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, 0, 0), + [3679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 0), + [3681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, 0, 121), + [3683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 121), + [3685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 156), + [3687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 156), + [3689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 2, 0, 14), + [3691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 2, 0, 14), + [3693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 155), + [3695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 155), + [3697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 154), + [3699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 154), + [3701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 2, 0, 0), + [3703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 2, 0, 0), + [3705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 13), + [3707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 13), + [3709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_never_type, 1, 0, 0), + [3711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_never_type, 1, 0, 0), + [3713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, 0, 0), + [3715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 0, 0), + [3717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, 0, 78), + [3719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 0, 78), + [3721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 6, 0, 177), + [3723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 6, 0, 177), + [3725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, 0, 11), + [3727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, 0, 11), + [3729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 2, 0, 0), + [3731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 2, 0, 0), + [3733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 3, 0, 0), + [3735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 3, 0, 0), + [3737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bounded_type, 3, 0, 0), + [3739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bounded_type, 3, 0, 0), + [3741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 1, 0, 0), + [3743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 1, 0, 0), + [3745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5, 0, 0), + [3747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5, 0, 0), + [3749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, 0, 152), + [3751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 5, 0, 152), + [3753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 3, 0, 65), + [3755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 3, 0, 65), + [3757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 3, 0, 65), + [3759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 3, 0, 65), + [3761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, 0, 64), + [3763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, 0, 64), + [3765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3, 0, 0), + [3767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3, 0, 0), + [3769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 5, 0, 0), + [3771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 5, 0, 0), + [3773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_expression, 2, 0, 0), + [3775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_expression, 2, 0, 0), + [3777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2638), + [3779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 2, 0, 0), + [3781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 2, 0, 0), + [3783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2, 0, 0), + [3785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2, 0, 0), + [3787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 50), + [3789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 50), + [3791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [3793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2536), + [3795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2537), + [3797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3257), + [3799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2535), + [3801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), + [3803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 174), + [3805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 174), + [3807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, 0, 174), + [3809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 3, 0, 0), + [3811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 3, 0, 0), + [3813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_cast_expression, 3, 0, 54), + [3815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_cast_expression, 3, 0, 54), + [3817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_function, 3, 0, 45), + [3819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, 0, 55), + [3821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_function, 3, 0, 45), + [3823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 6, 0, 0), + [3825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 6, 0, 0), + [3827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 6, 0, 121), + [3829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 6, 0, 121), + [3831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2527), + [3833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2528), + [3835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2526), + [3837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), + [3839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_type, 2, 0, 0), + [3841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_type, 2, 0, 0), + [3843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 4, 0, 0), + [3845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 4, 0, 0), + [3847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_removed_trait_bound, 2, 0, 0), + [3849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_removed_trait_bound, 2, 0, 0), + [3851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 2, 0, 25), + [3853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 2, 0, 25), + [3855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5, 0, 0), + [3857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5, 0, 0), + [3859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, 0, 46), + [3861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 4, 0, 0), + [3863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 4, 0, 0), + [3865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 2, 0, 5), + [3867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 2, 0, 5), + [3869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 0), + [3871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 0), + [3873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 7, 0, 0), + [3875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 7, 0, 0), + [3877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 7, 0, 0), + [3879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 7, 0, 0), + [3881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 2, 0, 0), + [3883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 2, 0, 0), + [3885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), + [3887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_arm_repeat1, 1, 0, 0), + [3889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 1, 0, 0), + [3891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 1, 0, 0), + [3893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 1, 0, 0), + [3895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), + [3897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), + [3899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), + [3901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), + [3903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), + [3905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [3907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [3909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), + [3911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [3913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), + [3915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [3917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), + [3919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(42), + [3921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [3923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1014), + [3925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3292), + [3927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 2, 0, 0), + [3929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 2, 0, 0), + [3931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2, 0, 0), + [3933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 2, 0, 0), + [3935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 3, 0, 0), + [3937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 3, 0, 0), + [3939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2660), + [3941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [3943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2655), + [3945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2714), + [3947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [3949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1508), + [3951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3111), + [3953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1908), + [3955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_assignment_expr, 3, 0, 50), + [3957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_assignment_expr, 3, 0, 50), + [3959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 51), + [3961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, 0, 51), + [3963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 3, 0, 0), + [3965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 3, 0, 0), + [3967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), + [3969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), + [3971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), + [3973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2719), + [3975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2333), + [3977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), + [3979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 1, 0, 0), + [3981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), SHIFT(2710), + [3984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), + [3986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 4, 0, 0), + [3988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 4, 0, 0), + [3990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), + [3992] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), SHIFT(3233), + [3995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5, 0, 128), + [3997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, 0, 128), [3999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5, 0, 0), [4001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, 0, 0), - [4003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [4005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(40), - [4007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [4009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [4011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), - [4013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), - [4015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2633), - [4017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), - [4019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [4021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [4023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), - [4025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), - [4027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), - [4029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), - [4031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), - [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [4037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), - [4039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [4041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), - [4043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [4045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), - [4047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), - [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), - [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3204), - [4059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [4063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(58), - [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [4075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2491), - [4077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3259), - [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), - [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3551), - [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [4091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2, 0, 0), - [4093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 3, 0, 0), - [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), - [4097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2422), - [4099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3071), - [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [4103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2405), - [4105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3101), - [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), - [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), - [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3062), - [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [4129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__let_chain, 3, 0, 0), - [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), - [4135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2935), - [4137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), - [4139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), - [4141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), - [4143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), - [4145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), - [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [4151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), - [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [4155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), - [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [4159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), - [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), - [4167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_field_initializer, 2, 0, 0), - [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [4171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_condition, 4, 0, 116), - [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), - [4177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 138), - [4179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 139), - [4181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__condition, 1, 0, 0), - [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [4187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), - [4189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), - [4191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), - [4193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), - [4195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), - [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [4201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), - [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [4205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), - [4207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [4209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), - [4211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), - [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), - [4217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, 0, 155), - [4219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [4221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), - [4223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), - [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [4231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), - [4233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 3, 0, 172), - [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), - [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [4241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2462), - [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), - [4245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), - [4247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2988), - [4249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2458), - [4251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3446), - [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), - [4255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2476), - [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), - [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [4261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, 0, 186), - [4263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, 0, 187), - [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [4267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), - [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), - [4273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [4275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), - [4277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [4279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), - [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2706), - [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [4287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, 0, 202), - [4289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, 0, 203), - [4291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), - [4293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [4295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), - [4299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, 0, 116), - [4301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), - [4303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [4305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [4307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), - [4309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 5, 0, 243), - [4311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), - [4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [4315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [4317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 109), - [4319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 18), - [4321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), - [4323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49), - [4325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [4327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [4329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), - [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), - [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), - [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [4343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [4345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), - [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), - [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), - [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), - [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), - [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), - [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [4375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2843), - [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [4379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2728), - [4381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3454), - [4383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), - [4385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2753), - [4387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3501), - [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3501), - [4391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2729), - [4393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2502), - [4395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2677), - [4397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2556), - [4399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2720), - [4401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2724), - [4403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2725), - [4405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 5, 0, 0), - [4407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 5, 0, 0), - [4409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 6, 0, 0), - [4411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 6, 0, 0), + [4003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), + [4005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), + [4007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), + [4009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), + [4011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), + [4013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [4015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [4017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), + [4019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [4021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), + [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [4025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), + [4027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(57), + [4029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [4031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [4033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(40), + [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [4037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [4039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), + [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [4043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [4045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3446), + [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), + [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), + [4059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2646), + [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), + [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [4065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), + [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3215), + [4071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2396), + [4073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3258), + [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3523), + [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), + [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [4091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), + [4093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), + [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [4099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 3, 0, 0), + [4101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2438), + [4103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3252), + [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), + [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [4111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2448), + [4113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3112), + [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [4117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2, 0, 0), + [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), + [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [4131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), + [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), + [4135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2798), + [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [4139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_condition, 4, 0, 118), + [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [4143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), + [4145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), + [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [4151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 140), + [4153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 141), + [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), + [4159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), + [4163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), + [4165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), + [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [4171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_field_initializer, 2, 0, 0), + [4173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), + [4175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), + [4177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), + [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [4185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), + [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [4189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), + [4191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), + [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [4195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), + [4197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), + [4199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), + [4201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), + [4203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), + [4205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [4207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [4209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), + [4211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [4213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), + [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [4217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), + [4219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), + [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [4223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 5, 0, 245), + [4225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, 0, 157), + [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), + [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), + [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), + [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), + [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2579), + [4245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [4247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [4249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), + [4251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [4253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 3, 0, 174), + [4255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [4257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__let_chain, 3, 0, 0), + [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [4261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2453), + [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), + [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), + [4267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), + [4269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2454), + [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), + [4273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), + [4275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2452), + [4277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), + [4279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [4283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__condition, 1, 0, 0), + [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [4287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, 0, 118), + [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [4291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [4293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), + [4295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, 0, 188), + [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [4299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, 0, 205), + [4301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, 0, 204), + [4303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, 0, 189), + [4305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), + [4307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [4309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), + [4311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [4315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), + [4319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [4321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [4323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [4325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 21), + [4327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 111), + [4329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), + [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), + [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), + [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), + [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), + [4343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [4345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [4351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(45), + [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), + [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [4375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), + [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [4379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2682), + [4381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3367), + [4383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), + [4385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2754), + [4387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3509), + [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3509), + [4391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2580), + [4393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2510), + [4395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2567), + [4397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2554), + [4399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2725), + [4401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2511), + [4403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2508), + [4405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 6, 0, 0), + [4407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 6, 0, 0), + [4409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 5, 0, 0), + [4411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 5, 0, 0), [4413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 4, 0, 0), [4415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 4, 0, 0), - [4417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2268), - [4419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2267), - [4421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2269), - [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), - [4425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3104), - [4427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3103), - [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), - [4431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3106), - [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), - [4435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3091), - [4437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3309), - [4439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3093), - [4441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), - [4443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), - [4447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), - [4449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [4451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), - [4453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), - [4455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [4457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), - [4459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, 0, 0), - [4461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [4463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), - [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), - [4467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), - [4469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), - [4471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), - [4473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), - [4475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), - [4477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), - [4479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), - [4481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3387), - [4483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3459), - [4485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3409), - [4487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3445), - [4489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), - [4491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), - [4493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), - [4495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), - [4497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3352), - [4499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3285), - [4501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3353), - [4503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), - [4505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3354), - [4507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3349), - [4509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3599), - [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3355), - [4513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), - [4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), - [4517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), - [4519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 1), - [4521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, 0, 1), - [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), - [4525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), - [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), - [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3270), - [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), - [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), - [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3247), - [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3460), - [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [4543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 5), REDUCE(sym__pattern, 1, 0, 0), - [4546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2652), - [4548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [4550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [4552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3239), - [4556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [4558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2654), - [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [4562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), - [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), - [4568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [4570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [4572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), - [4574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), - [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3205), - [4578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [4580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), - [4582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), - [4584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [4586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [4588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), - [4590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 40), REDUCE(sym_scoped_type_identifier, 3, 0, 41), - [4593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 16), REDUCE(sym_scoped_type_identifier, 3, 0, 17), - [4596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal_pattern, 1, 0, 0), - [4598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal_pattern, 1, 0, 0), - [4600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, 0, 6), REDUCE(sym_scoped_type_identifier, 2, 0, 7), - [4603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [4605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), - [4607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), - [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [4611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1216), - [4613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [4615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), - [4617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 45), REDUCE(sym_scoped_type_identifier, 3, 0, 46), - [4620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negative_literal, 2, 0, 0), - [4622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negative_literal, 2, 0, 0), - [4624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2440), - [4626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [4628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3399), - [4630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), - [4632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), - [4634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [4636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), - [4638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), - [4640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [4642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), - [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [4646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [4648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), - [4654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), - [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [4658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), - [4660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), - [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [4664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 1), - [4666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 1), - [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), - [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [4674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 59), - [4676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 59), - [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3310), - [4680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), - [4682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), - [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), - [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3386), - [4690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 0), - [4692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 0), - [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), - [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), - [4702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 1, 0, 0), - [4704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3509), - [4706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2303), - [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), - [4710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2306), - [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), - [4714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2298), - [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), - [4718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2343), - [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2959), - [4722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3554), - [4724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_modifiers_repeat1, 1, 0, 0), - [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), - [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3448), - [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3351), - [4734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 55), - [4736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 55), - [4738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3390), - [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [4746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [4748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2460), - [4750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), - [4752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, 0, 57), - [4754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 3, 0, 0), - [4756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), - [4758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 3, 0, 0), - [4760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 3, 0, 56), - [4762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5, 0, 0), - [4764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 5, 0, 0), - [4766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 2, 0, 0), - [4768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_captured_pattern, 3, 0, 0), - [4770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), - [4772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remaining_field_pattern, 1, 0, 0), - [4774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2238), - [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), - [4778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3437), + [4417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2234), + [4419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2259), + [4421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2241), + [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), + [4425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3041), + [4427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3043), + [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), + [4431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3040), + [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), + [4435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3203), + [4437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3211), + [4439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3202), + [4441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), + [4443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), + [4447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2687), + [4449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [4451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), + [4453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [4455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), + [4457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, 0, 0), + [4459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [4461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), + [4463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), + [4467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), + [4469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 1), + [4471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, 0, 1), + [4473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), + [4475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), + [4477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [4479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), + [4481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), + [4483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), + [4485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3415), + [4487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), + [4489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3414), + [4491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2800), + [4493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3412), + [4495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3437), + [4497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3411), + [4499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3410), + [4501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), + [4503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), + [4505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), + [4507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), + [4509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3353), + [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), + [4513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3354), + [4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3031), + [4517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3355), + [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3350), + [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3607), + [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3356), + [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), + [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), + [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), + [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3253), + [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), + [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [4543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 6), REDUCE(sym__pattern, 1, 0, 0), + [4546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), + [4548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), + [4550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [4552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3228), + [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3233), + [4556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [4558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), + [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2693), + [4562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3273), + [4568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [4570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), + [4572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [4574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3207), + [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), + [4578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), + [4580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [4582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [4584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), + [4586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [4588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), + [4590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [4592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), + [4594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2604), + [4596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [4598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), + [4600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [4602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), + [4604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 43), REDUCE(sym_scoped_type_identifier, 3, 0, 44), + [4607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 19), REDUCE(sym_scoped_type_identifier, 3, 0, 20), + [4610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, 0, 7), REDUCE(sym_scoped_type_identifier, 2, 0, 8), + [4613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negative_literal, 2, 0, 0), + [4615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negative_literal, 2, 0, 0), + [4617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal_pattern, 1, 0, 0), + [4619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal_pattern, 1, 0, 0), + [4621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 48), REDUCE(sym_scoped_type_identifier, 3, 0, 49), + [4624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2398), + [4626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [4628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3519), + [4630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), + [4632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), + [4634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [4636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), + [4638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [4640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [4642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), + [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), + [4646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [4648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), + [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), + [4654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [4658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), + [4660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [4662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2382), + [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), + [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [4668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 1), + [4670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 1), + [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), + [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), + [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), + [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [4680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), + [4682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), + [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), + [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [4690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2335), + [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), + [4694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 0), + [4696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 0), + [4698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 1, 0, 0), + [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3352), + [4702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3366), + [4704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [4706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2367), + [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), + [4710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2327), + [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3002), + [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3348), + [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), + [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [4724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [4726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 61), + [4728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 61), + [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), + [4732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2446), + [4734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), + [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3425), + [4738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [4740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3456), + [4742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_modifiers_repeat1, 1, 0, 0), + [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [4746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3392), + [4748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 57), + [4750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 57), + [4752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, 0, 59), + [4754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, 0, 59), + [4756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remaining_field_pattern, 1, 0, 0), + [4758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2707), + [4760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), + [4762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 2, 0, 0), + [4764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 2, 0, 0), + [4766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 2, 0, 0), + [4768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_pattern, 2, 0, 0), + [4770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2289), + [4772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [4774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3507), + [4776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3508), + [4778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mut_pattern, 2, 0, 0), [4780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3595), - [4782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3485), - [4784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [4786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3606), - [4788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 5, 0, 56), - [4790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 2, 0, 0), - [4792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 4, 0, 61), - [4794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, 0, 57), - [4796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4, 0, 0), - [4798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 3, 0, 61), - [4800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 6, 0, 56), - [4802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 5, 0, 61), - [4804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_pattern, 2, 0, 0), - [4806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, 0, 56), - [4808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 3, 0, 0), - [4810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 4, 0, 0), - [4812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), - [4814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, 0, 57), - [4816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 4, 0, 56), - [4818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [4820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3583), - [4822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 6, 0, 61), - [4824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [4826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 2, 0, 0), - [4828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), - [4830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), - [4832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, 0, 56), - [4834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [4836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3428), - [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), - [4840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1303), - [4842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), - [4844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), - [4846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), - [4848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), - [4850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, 0, 56), - [4852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mut_pattern, 2, 0, 0), - [4854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), - [4856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, 0, 57), - [4858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3, 0, 0), - [4860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, 0, 56), - [4862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2649), - [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [4866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [4868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [4870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), - [4872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), - [4874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), - [4876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [4878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [4880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), REDUCE(sym__pattern, 1, 0, 1), - [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), - [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), - [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), - [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [4901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 2, 0, 0), - [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), - [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [4917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(70), - [4920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), - [4922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(71), - [4925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(75), - [4928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2, 0, 0), - [4930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2, 0, 0), SHIFT_REPEAT(840), - [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), - [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), - [4945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 3, 0, 0), - [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [4951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), - [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [4959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), - [4975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 2, 0, 0), - [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [4983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [4985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [4987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [4989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [4995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [5007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [5021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [5023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [5025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [5027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [5035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_modifiers, 1, 0, 0), - [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), - [5039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2868), - [5041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), - [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3391), - [5045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3140), - [5047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3434), - [5049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), - [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), - [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [5057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [5059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [5061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [5063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [5065] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(2320), - [5068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2, 0, 0), - [5070] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(2213), - [5073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2995), - [5075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), - [5077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), - [5079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3584), - [5081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [5083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [5087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [5091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), - [5095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), - [5097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [5099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [5101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3177), - [5103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1034), - [5105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2759), - [5107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), - [5109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), - [5111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 1, 0, 70), - [5113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [5115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [5117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3540), - [5119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [5121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3393), - [5123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [5125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [5127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [5129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), - [5131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [5133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [5135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), - [5137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), - [5139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), - [5141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), - [5143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [5145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [5147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3382), - [5149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [5151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 2, 0, 0), - [5153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), - [5155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), - [5157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [5159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3612), - [5161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [5163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2973), - [5165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2983), - [5167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [5169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), - [5171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2897), - [5173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3331), - [5175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [5177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [5179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 1), - [5181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [5183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [5185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 0), - [5187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [5189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, 0, 6), - [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3557), - [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3476), - [5197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3575), - [5199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), - [5201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3482), - [5203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 1, 0, 0), - [5205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(990), - [5207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3172), - [5209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3318), - [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), - [5213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3402), - [5215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3619), - [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), - [5219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3502), - [5221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3389), - [5223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3559), - [5225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [5227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [5229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [5231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [5233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), - [5235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), - [5237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), - [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [5243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [5247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 2, 0, 0), REDUCE(sym_tuple_struct_pattern, 3, 0, 56), - [5250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), - [5252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), - [5254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [5256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), - [5258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), - [5260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [5262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [5264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [5266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 3, 0, 0), REDUCE(sym_tuple_struct_pattern, 4, 0, 56), - [5269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [5271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [5273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [5281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), - [5283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), - [5285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [5287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), - [5289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), - [5291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [5293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [5295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), - [5297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [5299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [5301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [5303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [5305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [5307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [5309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 3, 0, 0), - [5311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), - [5313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [5315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [5317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [5319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [5321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [5323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), - [5325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [5327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [5329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [5331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [5333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [5335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [5337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [5339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [5341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [5343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [5345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [5347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [5349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), - [5351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [5353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [5355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [5357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3412), - [5359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3058), - [5361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3458), - [5363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3171), - [5365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [5367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [5369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [5371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), - [5373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), - [5375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [5377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [5381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2686), - [5383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), - [5385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3366), - [5387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [5389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [5391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [5393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 2, 0, 0), - [5395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [5397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2, 0, 0), - [5399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1480), + [4782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [4784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3592), + [4786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), + [4788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), + [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [4792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3229), + [4794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 3, 0, 0), + [4796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 3, 0, 0), + [4798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 3, 0, 58), + [4800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, 0, 59), + [4802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_captured_pattern, 3, 0, 0), + [4804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3, 0, 0), + [4806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 3, 0, 63), + [4808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, 0, 58), + [4810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 3, 0, 0), + [4812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), + [4814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), + [4816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [4818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), + [4820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4, 0, 0), + [4822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 4, 0, 0), + [4824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 4, 0, 58), + [4826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, 0, 59), + [4828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 4, 0, 63), + [4830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, 0, 58), + [4832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), + [4834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [4836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 6, 0, 58), + [4838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 5, 0, 63), + [4840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 5, 0, 0), + [4842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5, 0, 0), + [4844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), + [4846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 5, 0, 58), + [4848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [4850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3397), + [4852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [4854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), + [4856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, 0, 58), + [4858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 6, 0, 63), + [4860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, 0, 58), + [4862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [4866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), + [4868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [4870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [4872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [4874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [4876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [4878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [4880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [4882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [4884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [4886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [4888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [4890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [4892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), + [4894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), + [4896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [4898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), REDUCE(sym__pattern, 1, 0, 1), + [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2713), + [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [4909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2, 0, 0), + [4911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2, 0, 0), SHIFT_REPEAT(846), + [4914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2698), + [4916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [4918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [4922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 3, 0, 0), + [4924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3071), + [4928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(81), + [4931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), + [4933] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(69), + [4936] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(83), + [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), + [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [4951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [4955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 2, 0, 0), + [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [4959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3052), + [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), + [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [4983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [4985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2874), + [4987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2963), + [4989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3360), + [4991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3177), + [4993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3441), + [4995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2970), + [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3363), + [4999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(2321), + [5002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2, 0, 0), + [5004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(2205), + [5007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [5021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 2, 0, 0), + [5023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [5025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [5027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [5035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [5039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [5041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [5047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), + [5049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3438), + [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), + [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3458), + [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [5057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [5059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [5061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [5063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [5065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [5067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [5069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [5071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), + [5073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [5075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [5077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [5079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [5081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_modifiers, 1, 0, 0), + [5083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), + [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [5087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [5091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [5095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [5097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [5099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [5101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [5103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [5105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), + [5107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [5109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [5111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [5113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [5115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 0), + [5117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [5119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [5121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3498), + [5123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3571), + [5125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [5127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3460), + [5129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [5131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, 0, 7), + [5133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [5135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [5137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [5139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 2, 0, 0), + [5141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(957), + [5143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3241), + [5145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3548), + [5147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), + [5149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3451), + [5151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1039), + [5153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2960), + [5155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3005), + [5157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), + [5159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), + [5161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 1, 0, 0), + [5163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), + [5165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3255), + [5167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 1), + [5169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [5171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3567), + [5173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3340), + [5175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [5177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3420), + [5179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [5181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), + [5183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [5185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), + [5187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [5189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), + [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3449), + [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), + [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), + [5197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3290), + [5199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [5201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [5203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [5205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3381), + [5207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3379), + [5209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3555), + [5211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3613), + [5213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3551), + [5215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3550), + [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3294), + [5219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3391), + [5221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 1, 0, 72), + [5223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [5225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [5227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), + [5229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [5231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3440), + [5233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3169), + [5235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3442), + [5237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3173), + [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), + [5243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), + [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), + [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [5253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), + [5255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [5257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [5259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [5263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [5265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [5269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), + [5271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [5273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 3, 0, 0), + [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [5281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), + [5283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [5285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), + [5287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), + [5289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [5291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [5293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 3, 0, 0), REDUCE(sym_tuple_struct_pattern, 4, 0, 58), + [5296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [5298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [5300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [5302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [5306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [5308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [5310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [5314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [5316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [5318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 2, 0, 0), REDUCE(sym_tuple_struct_pattern, 3, 0, 58), + [5321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [5323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), + [5325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [5327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [5329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [5331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), + [5333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), + [5335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [5337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [5339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), + [5341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [5343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [5345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [5347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [5349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [5351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [5353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), + [5355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), + [5357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [5359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [5361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [5363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [5365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [5367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [5369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), + [5371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [5373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [5375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [5377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [5381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2971), + [5383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3554), + [5385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), REDUCE(sym__pattern, 1, 0, 0), + [5388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), + [5390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [5392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [5394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [5396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), + [5398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 78), + [5400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), [5402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_unit_type, 2, 0, 0), REDUCE(sym_tuple_pattern, 2, 0, 0), - [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), - [5407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [5409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [5411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [5415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [5417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), - [5419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [5421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [5423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), REDUCE(sym__pattern, 1, 0, 0), - [5426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), - [5428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [5430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [5432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [5434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [5438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [5440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [5442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [5444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [5446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [5448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [5450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [5452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [5454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [5456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), - [5458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, 0, 63), - [5460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), - [5462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), - [5464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [5466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 2, 0, 0), - [5468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [5470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, 0, 22), - [5472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 76), - [5474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 63), - [5476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 219), - [5478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 176), - [5480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [5482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, 0, 176), - [5484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), - [5486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2591), - [5488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [5490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, 0, 1), - [5492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), - [5494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3562), - [5496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [5498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 3, 0, 119), - [5500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 7, 0, 251), - [5502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, 0, 0), - [5504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), - [5506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3587), - [5508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), - [5510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [5512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [5514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [5516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [5518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [5520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [5522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), - [5524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [5526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3, 0, 0), - [5528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), - [5530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [5532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3, 0, 22), + [5405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 104), + [5407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [5409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [5411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), + [5415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), + [5417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [5419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [5421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [5423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 178), + [5425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3, 0, 0), + [5427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3, 0, 25), + [5429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [5431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [5433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [5435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [5437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), + [5439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [5441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 7, 0, 253), + [5443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [5447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, 0, 253), + [5449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), SHIFT(1957), + [5452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), SHIFT(408), + [5455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, 0, 104), + [5457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), + [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [5463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [5465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [5467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2663), + [5469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), + [5471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), + [5473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [5475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 2, 0, 0), + [5477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1041), + [5479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2985), + [5481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2, 0, 0), + [5483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1479), + [5486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [5488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 3, 0, 121), + [5490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, 0, 0), + [5492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), + [5494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), + [5496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [5498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), + [5500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), + [5502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, 0, 1), + [5504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), + [5506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), + [5508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 2, 0, 0), + [5510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [5512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [5514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [5516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [5518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2686), + [5520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [5522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [5524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [5526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), + [5528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [5530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, 0, 221), + [5532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), [5534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [5536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [5538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), - [5540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, 0, 219), - [5542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, 0, 102), - [5544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, 0, 251), - [5546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), - [5548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2977), - [5550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), SHIFT(1946), - [5553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), SHIFT(408), - [5556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614), - [5558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3041), - [5560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), - [5562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3396), - [5564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [5566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [5568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [5570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), - [5572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [5574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2236), - [5576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), - [5578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [5580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [5582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 102), - [5584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), - [5586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2858), - [5588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1523), - [5590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), - [5592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [5594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2871), - [5596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [5598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), - [5600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [5602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1909), - [5604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1925), - [5606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [5608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [5610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2, 0, 0), - [5612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), - [5614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2858), - [5617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [5619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [5621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [5623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [5625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [5627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [5629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), - [5631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [5633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), - [5635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [5637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2802), - [5639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [5641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2134), - [5643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_rule, 3, 0, 48), - [5645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), - [5647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [5649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), - [5651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1919), - [5653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [5655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [5657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2954), - [5659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), - [5661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), - [5663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3608), - [5665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [5667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [5669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [5671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), - [5673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [5675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [5677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), - [5679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 3, 0, 0), - [5681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 4, 0, 198), - [5683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 3, 0, 147), - [5685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [5687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [5689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), - [5691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [5693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), - [5695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [5697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [5699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [5701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [5703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 3, 0, 0), - [5705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [5707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2940), - [5709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), - [5711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(210), - [5714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [5716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [5718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [5720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [5722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1538), - [5724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), - [5726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), - [5728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [5730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, 0, 78), - [5732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), REDUCE(aux_sym_for_lifetimes_repeat1, 2, 0, 0), - [5735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, 0, 77), - [5737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [5739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [5741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), - [5743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [5745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), - [5747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [5749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [5751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [5753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 100), - [5755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), - [5757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [5759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), - [5761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [5763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [5765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [5767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [5769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031), - [5771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), - [5773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [5775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), - [5777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), - [5779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2009), - [5781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [5783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [5785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), - [5787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), - [5789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), - [5791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2002), - [5793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), - [5795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2740), - [5797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), - [5799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 60), - [5801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), - [5803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), - [5805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3552), - [5807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [5809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [5811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), - [5813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [5815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [5817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), - [5819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [5821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), - [5823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), - [5825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [5827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), - [5829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [5831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), - [5833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [5835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_slice_pattern_repeat1, 2, 0, 0), - [5837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slice_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(797), - [5840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3063), - [5842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [5844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), - [5846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2731), - [5848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), - [5850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), - [5852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), - [5854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [5856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), - [5858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [5860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [5862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), - [5864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [5866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1033), - [5868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [5870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [5872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2628), - [5874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [5876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [5878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [5880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [5882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [5884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [5886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [5888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [5890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [5892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [5894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), - [5896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [5898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [5900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [5902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), - [5904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), - [5906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [5908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [5910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [5912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), - [5914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), - [5916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), - [5918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [5920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), - [5922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [5924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [5926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, 0, 77), - [5928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [5930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 2, 0, 0), - [5932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [5934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(442), - [5937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 4, 0, 0), - [5939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [5941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3289), - [5943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [5945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), - [5947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), - [5949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [5951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, 0, 0), - [5953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [5955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), - [5957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), - [5959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, 0, 148), - [5961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [5963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [5965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 1, 0, 0), - [5967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [5969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, 0, 11), - [5971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [5973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), - [5975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), - [5977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), - [5979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), - [5981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, 0, 91), - [5983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 5, 0, 0), - [5985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [5987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), - [5989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [5991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3592), - [5993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3246), - [5995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3367), - [5997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [5999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [6001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [6003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [6005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [6007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), - [6009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [6011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [6013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [6015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(411), - [6018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), - [6020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [6022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2, 0, 0), - [6024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2, 0, 0), SHIFT_REPEAT(2210), - [6027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [6029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, 0, 149), - [6031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), - [6033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [6035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [6037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [6039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [6041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), - [6043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [6045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [6047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [6049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3346), - [6051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [6053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 2, 0, 0), - [6055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), - [6057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [6059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), - [6061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [6063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [6065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 2, 0, 101), - [6067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [6069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [6071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [6073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, 0, 34), - [6075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [6077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), - [6079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [6081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), - [6083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), - [6085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [6087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), - [6089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), - [6091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), - [6093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter, 3, 0, 117), - [6095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [6097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [6099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [6101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, 0, 92), - [6103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 4, 0, 0), - [6105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2, 0, 0), - [6107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2337), - [6110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [6112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 3, 0, 0), - [6114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [6116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), - [6118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), - [6120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), - [6122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), - [6124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), - [6126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [6128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [6130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [6132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 1, 0, 0), - [6134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), - [6136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(2060), - [6139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [6141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter, 3, 0, 118), - [6143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [6145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [6147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), - [6149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), - [6151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 1, 0, 58), - [6153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [6155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), - [6157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), - [6159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), - [6161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), - [6163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 3, 0, 63), - [6165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [6167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [6169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), SHIFT_REPEAT(916), - [6172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), - [6174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [6176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__condition, 1, 0, 9), - [6178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, 0, 78), - [6180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 2, 0, 36), - [6182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), - [6184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), - [6186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), - [6188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), - [6190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [6192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, 0, 220), - [6194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [6196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), - [6198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [6200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3206), - [6202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), - [6204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), - [6206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), - [6208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), - [6210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), - [6212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), - [6214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [6216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), - [6218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [6220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), - [6222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), - [6224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [6226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [6228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [6230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [6232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, 0, 22), - [6234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), + [5536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [5538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, 0, 65), + [5540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [5542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, 0, 25), + [5544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, 0, 178), + [5546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), + [5548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [5550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [5552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [5554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [5556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [5558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [5560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), + [5562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [5564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [5566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [5568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [5570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [5572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 65), + [5574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 221), + [5576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614), + [5578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), + [5580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), + [5582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3518), + [5584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [5586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), + [5588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [5590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [5592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), + [5594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), + [5596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [5598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [5600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [5602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), + [5604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [5606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [5608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [5610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [5612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [5614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [5616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [5618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [5620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), + [5622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), + [5624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), + [5626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), + [5628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [5630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1522), + [5632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1554), + [5634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1907), + [5636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), + [5638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [5640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 62), + [5642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [5644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [5646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [5648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [5650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1925), + [5652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [5654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2934), + [5656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), + [5658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [5660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2953), + [5662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), + [5664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [5666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [5668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), + [5670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), + [5672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [5674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_slice_pattern_repeat1, 2, 0, 0), + [5676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slice_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(823), + [5679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2928), + [5681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), + [5683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [5685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 102), + [5687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [5689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), + [5691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, 0, 80), + [5693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, 0, 79), + [5695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [5697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [5699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2625), + [5701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [5703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), REDUCE(aux_sym_for_lifetimes_repeat1, 2, 0, 0), + [5706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [5708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [5710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [5712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 3, 0, 0), + [5714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), + [5716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 4, 0, 200), + [5718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2903), + [5720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), + [5722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), + [5724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [5726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [5728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), + [5730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [5732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), + [5734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [5736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [5738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [5740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [5742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [5744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1919), + [5746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3275), + [5748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(211), + [5751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [5753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), + [5755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3319), + [5757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [5759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [5761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), + [5763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), + [5765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [5767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [5769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [5771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), + [5773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1033), + [5775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [5777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [5779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [5781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), + [5783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [5785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [5787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [5789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), + [5791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 3, 0, 0), + [5793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1527), + [5795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), + [5797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1065), + [5799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2132), + [5801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), + [5803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [5805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), + [5807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2993), + [5809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [5811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [5813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [5815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), + [5817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [5819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2003), + [5821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2976), + [5823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [5825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2955), + [5827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [5829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [5831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), + [5833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [5835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), + [5837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [5839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), + [5841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2808), + [5844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), + [5846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [5848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [5850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [5852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [5854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2048), + [5856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), + [5858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [5860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2, 0, 0), + [5862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2012), + [5864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [5866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [5868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), + [5870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [5872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [5874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), + [5876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3332), + [5878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), + [5880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1518), + [5882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 3, 0, 149), + [5884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_rule, 3, 0, 51), + [5886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), + [5888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [5890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), + [5892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), + [5894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), + [5896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [5898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [5900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [5902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), + [5904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), + [5906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), + [5908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [5910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [5912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), + [5914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), + [5916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), + [5918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [5920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [5922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(445), + [5925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, 0, 150), + [5927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [5929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, 0, 151), + [5931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2, 0, 0), + [5933] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2304), + [5936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [5938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), + [5940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), + [5942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1417), + [5944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [5946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [5948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), + [5950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [5952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [5954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [5956] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(410), + [5959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2, 0, 0), + [5961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2144), + [5964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [5966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [5968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [5970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 2, 0, 0), + [5972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), + [5974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), + [5976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), + [5978] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1880), + [5981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 2, 0, 39), + [5983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 4, 0, 0), + [5985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [5987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), + [5989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [5991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [5993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [5995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [5997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 1, 0, 0), + [5999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [6001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [6003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), + [6005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2, 0, 0), + [6007] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2, 0, 0), SHIFT_REPEAT(3109), + [6010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2989), + [6012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), + [6014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2, 0, 0), + [6016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2, 0, 0), SHIFT_REPEAT(2183), + [6019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2995), + [6021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), + [6023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3553), + [6025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3048), + [6027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3604), + [6029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [6031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, 0, 37), + [6033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [6035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), + [6037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), + [6039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [6041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [6043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [6045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), + [6047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [6049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1576), + [6051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1823), + [6053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), + [6055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_parameter, 4, 0, 112), + [6057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3465), + [6059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3240), + [6061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3314), + [6063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [6065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [6067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [6069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), + [6071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [6073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [6075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [6077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), + [6079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 1, 0, 0), + [6081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [6083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [6085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [6087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3225), + [6089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [6091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [6093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 1, 0, 0), + [6095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), + [6097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [6099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), + [6101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, 0, 25), + [6103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [6105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, 0, 179), + [6107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, 0, 179), SHIFT_REPEAT(773), + [6110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [6112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), + [6114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [6116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), + [6118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, 0, 180), + [6120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter, 3, 0, 120), + [6122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [6124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2, 0, 0), + [6126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2206), + [6129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), + [6131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__condition, 1, 0, 10), + [6133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [6135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [6137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [6139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [6141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(2039), + [6144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [6146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [6148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), + [6150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [6152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 5, 0, 0), + [6154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3358), + [6156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [6158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3197), + [6160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), + [6162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [6164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [6166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), + [6168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 4, 0, 201), + [6170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [6172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 4, 0, 0), + [6174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), + [6176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), + [6178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), + [6180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, 0, 12), + [6182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [6184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), + [6186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter, 3, 0, 119), + [6188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), + [6190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), + [6192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), + [6194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [6196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [6198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), + [6200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [6202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2739), + [6204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2735), + [6206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 3, 0, 65), + [6208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), + [6210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [6212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), + [6214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3218), + [6216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), + [6218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), + [6220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [6222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [6224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 1, 0, 60), + [6226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [6228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), + [6230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), + [6232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [6234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), [6236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2, 0, 0), - [6238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [6240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [6242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1, 0, 0), - [6244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [6246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [6248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), - [6250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1879), - [6253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [6255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, 0, 177), - [6257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, 0, 177), SHIFT_REPEAT(777), - [6260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(780), - [6263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [6265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, 0, 178), - [6267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, 0, 0), - [6269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), - [6271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_parameter, 4, 0, 110), - [6273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2, 0, 0), - [6275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2209), - [6278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [6280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [6282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [6284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [6286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [6288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), - [6290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1666), - [6292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), - [6294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), - [6296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), - [6298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), - [6300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(762), - [6303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), - [6305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [6307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), - [6309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), - [6311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [6313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [6315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [6317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [6319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2, 0, 0), - [6321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2, 0, 0), SHIFT_REPEAT(3075), - [6324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), - [6326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [6328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [6330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [6332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [6334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3545), - [6336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3304), - [6338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3596), - [6340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), - [6342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), - [6344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [6346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), - [6348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 5, 0, 242), - [6350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [6352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), - [6354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [6356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), - [6358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), - [6360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [6362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [6364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, 0, 1), - [6366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [6368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [6370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [6372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [6374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), - [6376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), - [6378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [6380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [6382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 4, 0, 102), - [6384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 1, 0, 0), - [6386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [6388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), - [6390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), - [6392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), - [6394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), - [6396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [6398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [6400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [6402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, 0, 89), - [6404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [6406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [6408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [6410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [6412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2835), - [6414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2741), - [6416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [6418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2904), - [6420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2903), - [6422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [6424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [6426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [6428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), - [6430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 4, 0, 199), - [6432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [6434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [6436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, 0, 90), - [6438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [6440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [6442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [6444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [6446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [6448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2800), - [6450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), - [6452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [6454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [6456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [6458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2, 0, 0), - [6460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2129), - [6463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [6465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3555), - [6467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3308), - [6469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3602), - [6471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [6473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [6475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [6477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [6479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), - [6481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3420), - [6483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), - [6485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), - [6487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1921), - [6489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1016), - [6491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_doc_comment_marker, 1, 0, 3), - [6493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1518), - [6495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1547), - [6497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [6499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3449), - [6501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), - [6503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1524), - [6505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1561), - [6507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1908), - [6509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 4, 0, 32), - [6511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), - [6513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1522), - [6515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1545), - [6517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1929), - [6519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1912), - [6521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1036), - [6523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_doc_comment_marker, 1, 0, 2), - [6525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2138), - [6527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), - [6529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2128), - [6531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 3, 0, 0), - [6533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1913), - [6535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), - [6537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), - [6539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1516), - [6541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), - [6543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1527), - [6545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), - [6547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3260), - [6549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), - [6551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), - [6553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2017), - [6555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1918), - [6557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [6559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), - [6561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [6563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3395), - [6565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), - [6567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3457), - [6569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), - [6571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), - [6573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1906), - [6575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2040), - [6577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), - [6579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), - [6581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1924), - [6583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 2, 0, 0), - [6585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), - [6587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3444), - [6589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2827), - [6591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3356), - [6593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2006), - [6595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [6597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), - [6599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2010), - [6601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [6603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), - [6605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [6607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2045), - [6609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2149), - [6611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2003), - [6613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2067), - [6615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2012), - [6617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2015), - [6619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2016), - [6621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2008), - [6623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [6625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1519), - [6627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1533), - [6629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 3, 0, 151), - [6631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [6633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 3, 0, 0), - [6635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3147), - [6637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), - [6639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [6641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), - [6643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), - [6645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1521), - [6647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [6649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3414), - [6651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), - [6653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), - [6655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3432), - [6657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3433), - [6659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3435), - [6661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3566), - [6663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [6665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 3, 0, 0), - [6667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1, 0, 0), - [6669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [6671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [6673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), - [6675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), - [6677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), - [6679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2657), - [6681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3616), - [6683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3419), - [6685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [6687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1915), - [6689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [6691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), - [6693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type, 3, 0, 65), - [6695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), - [6697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3443), - [6699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), - [6701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3538), - [6703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), - [6705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [6707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), - [6709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [6711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), - [6713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [6715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), - [6717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), - [6719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [6721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [6723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [6725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [6727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3565), - [6729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3607), - [6731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), - [6733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3030), - [6735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), - [6737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), - [6739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), - [6741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [6743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line_doc_comment_marker, 1, 0, 2), - [6745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [6747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [6749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [6751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [6753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [6755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [6757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [6759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3303), - [6761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [6763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3618), - [6765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), - [6767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [6769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), - [6771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3259), - [6773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), - [6775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line_doc_comment_marker, 1, 0, 3), - [6777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), - [6779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), - [6781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [6783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_type, 3, 0, 0), - [6785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [6787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), - [6789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), - [6791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), - [6793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), - [6795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2867), - [6797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), - [6799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), - [6801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), - [6803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [6805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), - [6807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [6809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [6811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), - [6813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [6815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), - [6817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [6819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [6821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3435), - [6823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2627), - [6825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), - [6827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [6829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [6831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3176), - [6833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [6835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), - [6837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [6839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), - [6841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [6843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [6845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [6847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [6849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2600), - [6851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [6853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), - [6855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [6857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), - [6859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), - [6861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [6863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [6865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3425), - [6867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), - [6869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3318), - [6871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [6873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [6875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3613), - [6877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [6879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [6881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3036), - [6883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [6885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), - [6887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [6889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [6891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [6893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [6895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [6897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 69), - [6899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), - [6901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3394), - [6903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [6905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [6907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [6909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [6911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), - [6913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), - [6915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3249), - [6917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [6919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [6921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2827), - [6923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [6925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [6927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3307), - [6929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [6931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [6933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), - [6935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), - [6937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), - [6939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3045), - [6941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3424), - [6943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [6945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), - [6947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [6949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), - [6951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3592), - [6953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), - [6955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), - [6957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3451), - [6959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [6961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [6963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [6965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [6967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), - [6969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [6971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [6973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [6975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3071), - [6977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [6979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), - [6981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [6983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), - [6985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [6987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [6989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), - [6991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), - [6993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [6995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [6997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [6999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [7001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inner_line_doc_comment_marker, 1, 0, 0), - [7003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 68), - [7005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [7007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [7009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), - [7011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), - [7013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), - [7015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), - [7017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [7019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [7021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), - [7023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__outer_line_doc_comment_marker, 1, 0, 0), - [7025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [7027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), - [7029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [7031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [7033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), - [7035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [7037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), - [7039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3438), - [7041] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [7043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3380), - [7045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3168), - [7047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [7049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [7051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3429), - [7053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3183), - [7055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), - [7057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3167), - [7059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3186), - [7061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [7063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), - [7065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2669), - [7067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), - [7069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), - [7071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), - [7073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3372), - [7075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [7077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [7079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), - [7081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [7083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [7085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), - [7087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [7089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), - [7091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), - [7093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), - [7095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), - [7097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), - [7099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [7101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [7103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [7105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), - [7107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), - [7109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [7111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3480), - [7113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [7115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), - [7117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), - [7119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [7121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3588), - [7123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), - [7125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [7127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), - [7129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [7131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [7133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [7135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), - [7137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [7139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [7141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), - [7143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), - [7145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), - [7147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3486), - [7149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2714), - [7151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), - [7153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), - [7155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [7157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3518), - [7159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), - [7161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), - [7163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [7165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 3, 0, 173), - [7167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3555), - [7169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [7171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), - [7173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), - [7175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3291), - [7177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3553), - [7179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3565), - [7181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), - [7183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), - [7185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [7187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3577), - [7189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), - [7191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [7193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 3, 0, 0), + [6238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [6240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [6242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(784), + [6245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [6247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), + [6249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), SHIFT_REPEAT(896), + [6252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [6254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), + [6256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [6258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [6260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), + [6262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), + [6264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [6266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 2, 0, 103), + [6268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [6270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), + [6272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [6274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [6276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [6278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [6280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [6282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [6284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 5, 0, 244), + [6286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [6288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), + [6290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 4, 0, 104), + [6292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, 0, 0), + [6294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(764), + [6297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [6299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [6301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), + [6303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), + [6305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [6307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), + [6309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), + [6311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [6313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [6315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [6317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [6319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [6321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [6323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [6325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), + [6327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3445), + [6329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), + [6331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), + [6333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2872), + [6335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, 0, 222), + [6337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [6339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [6341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [6343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [6345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [6347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [6349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [6351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [6353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), + [6355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [6357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [6359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [6361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), + [6363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [6365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [6367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, 0, 0), + [6369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [6371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [6373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 2, 0, 0), + [6375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [6377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [6379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), + [6381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), + [6383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, 0, 94), + [6385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, 0, 93), + [6387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [6389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [6391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [6393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, 0, 92), + [6395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, 0, 91), + [6397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, 0, 1), + [6399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [6401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), + [6403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), + [6405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, 0, 79), + [6407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [6409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [6411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 3, 0, 0), + [6413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), + [6415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), + [6417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [6419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [6421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, 0, 80), + [6423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3088), + [6425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [6427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [6429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [6431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [6433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [6435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), + [6437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [6439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [6441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [6443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [6445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [6447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [6449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [6451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [6453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [6455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [6457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1, 0, 0), + [6459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [6461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [6463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [6465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [6467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3563), + [6469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3045), + [6471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3610), + [6473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2852), + [6475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2857), + [6477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), + [6479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1543), + [6481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), + [6483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), + [6485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1081), + [6487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), + [6489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3459), + [6491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), + [6493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), + [6495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), + [6497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), + [6499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), + [6501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3573), + [6503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3403), + [6505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [6507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [6509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [6511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), + [6513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [6515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1917), + [6517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), + [6519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3589), + [6521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [6523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1523), + [6525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1570), + [6527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1905), + [6529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1912), + [6531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [6533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), + [6535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 3, 0, 0), + [6537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), + [6539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [6541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), + [6543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), + [6545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3546), + [6547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1526), + [6549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1546), + [6551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 3, 0, 0), + [6553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1922), + [6555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [6557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), + [6559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_doc_comment_marker, 1, 0, 4), + [6561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1909), + [6563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1040), + [6565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [6567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3322), + [6569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [6571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_doc_comment_marker, 1, 0, 3), + [6573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 2, 0, 0), + [6575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), + [6577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3619), + [6579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3396), + [6581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3291), + [6583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 4, 0, 35), + [6585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 3, 0, 0), + [6587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2131), + [6589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1533), + [6591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), + [6593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), + [6595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1914), + [6597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1928), + [6599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), + [6601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), + [6603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type, 3, 0, 67), + [6605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [6607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [6609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3276), + [6611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), + [6613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3328), + [6615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1, 0, 0), + [6617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), + [6619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [6621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), + [6623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3404), + [6625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), + [6627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [6629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2147), + [6631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [6633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [6635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [6637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [6639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1541), + [6641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [6643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3448), + [6645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [6647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2895), + [6649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3453), + [6651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3540), + [6653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3539), + [6655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2011), + [6657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1920), + [6659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [6661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [6663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1534), + [6665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), + [6667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1047), + [6669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3247), + [6671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), + [6673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2075), + [6675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1026), + [6677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1929), + [6679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), + [6681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 3, 0, 153), + [6683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3494), + [6685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3549), + [6687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2007), + [6689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2016), + [6691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2017), + [6693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2166), + [6695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [6697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), + [6699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), + [6701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), + [6703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [6705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2068), + [6707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2004), + [6709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2064), + [6711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [6713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [6715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), + [6717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3256), + [6719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2010), + [6721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2005), + [6723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2015), + [6725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1537), + [6727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1539), + [6729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [6731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3423), + [6733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [6735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3494), + [6737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2810), + [6739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), + [6741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), + [6743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), + [6745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), + [6747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3479), + [6749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3486), + [6751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [6753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [6755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), + [6757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [6759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [6761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), + [6763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3129), + [6765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [6767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [6769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [6771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), + [6773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), + [6775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [6777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2983), + [6779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [6781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2978), + [6783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [6785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), + [6787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3307), + [6789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3306), + [6791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), + [6793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), + [6795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), + [6797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), + [6799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [6801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_type, 3, 0, 0), + [6803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), + [6805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [6807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), + [6809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [6811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), + [6813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3239), + [6815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), + [6817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [6819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), + [6821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), + [6823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [6825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [6827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), + [6829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [6831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [6833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [6835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [6837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [6839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), + [6841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), + [6843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [6845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), + [6847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [6849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [6851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [6853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [6855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [6857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3585), + [6859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [6861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [6863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [6865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [6867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), + [6869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), + [6871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2795), + [6873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), + [6875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [6877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), + [6879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), + [6881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), + [6883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [6885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), + [6887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [6889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), + [6891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [6893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3263), + [6895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [6897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), + [6899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [6901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [6903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [6905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), + [6907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [6909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [6911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 3, 0, 175), + [6913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [6915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), + [6917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), + [6919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [6921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2895), + [6923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3465), + [6925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), + [6927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), + [6929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), + [6931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), + [6933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3325), + [6935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 70), + [6937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), + [6939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), + [6941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [6943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [6945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3345), + [6947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), + [6949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), + [6951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [6953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [6955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [6957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3582), + [6959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3258), + [6961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), + [6963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [6965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [6967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), + [6969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [6971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [6973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), + [6975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), + [6977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [6979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), + [6981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [6983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), + [6985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [6987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), + [6989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), + [6991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3511), + [6993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [6995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [6997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [6999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [7001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 71), + [7003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [7005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [7007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3443), + [7009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [7011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [7013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3188), + [7015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3192), + [7017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [7019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [7021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3232), + [7023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [7025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), + [7027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), + [7029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [7031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), + [7033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3618), + [7035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3571), + [7037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3408), + [7039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [7041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3286), + [7043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line_doc_comment_marker, 1, 0, 4), + [7045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [7047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3377), + [7049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3299), + [7051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3303), + [7053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3285), + [7055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3302), + [7057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [7059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [7061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [7063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line_doc_comment_marker, 1, 0, 3), + [7065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), + [7067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), + [7069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), + [7071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), + [7073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3374), + [7075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [7077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), + [7079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__outer_line_doc_comment_marker, 1, 0, 0), + [7081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inner_line_doc_comment_marker, 1, 0, 0), + [7083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [7085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [7087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [7089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3616), + [7091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), + [7093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [7095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), + [7097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [7099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), + [7101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [7103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [7105] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [7107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [7109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [7111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [7113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [7115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [7117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [7119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [7121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [7123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [7125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [7127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [7129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [7131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [7133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3387), + [7135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [7137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [7139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), + [7141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [7143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [7145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), + [7147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), + [7149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), + [7151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3493), + [7153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [7155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), + [7157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3516), + [7159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [7161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [7163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3526), + [7165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3530), + [7167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3533), + [7169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), + [7171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), + [7173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [7175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3563), + [7177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), + [7179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [7181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2899), + [7183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), + [7185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), + [7187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), + [7189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [7191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [7193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 2, 0, 2), [7195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 2, 0, 0), - [7197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 4, 0, 53), - [7199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 3, 0, 15), - [7201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 3, 0, 0), - [7203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 3, 0, 14), - [7205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 2, 0, 0), + [7197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 4, 0, 16), + [7199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 3, 0, 15), + [7201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 3, 0, 16), + [7203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 3, 0, 17), + [7205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 3, 0, 18), }; enum ts_external_scanner_symbol_identifiers { @@ -192496,13 +192504,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_content] = true, }, [8] = { - [ts_external_token_raw_string_literal_content] = true, + [ts_external_token__raw_string_literal_end] = true, }, [9] = { - [ts_external_token__raw_string_literal_end] = true, + [ts_external_token__line_doc_content] = true, }, }; diff --git a/test/corpus/declarations.txt b/test/corpus/declarations.txt index 7f62fb1..233238e 100644 --- a/test/corpus/declarations.txt +++ b/test/corpus/declarations.txt @@ -335,7 +335,8 @@ pub unsafe extern "C" fn c_variadic_no_use(fmt: *const i8, mut ap: ...) -> i32 { (identifier))) (primitive_type) (block - (line_comment) + (line_comment + (comment)) (call_expression (identifier) (arguments @@ -345,7 +346,8 @@ pub unsafe extern "C" fn c_variadic_no_use(fmt: *const i8, mut ap: ...) -> i32 { (identifier) (field_identifier)) (arguments)))) - (line_comment)))) + (line_comment + (comment))))) ================================================================================ Use declarations @@ -1318,7 +1320,8 @@ pub enum Error { -------------------------------------------------------------------------------- (source_file - (line_comment) + (line_comment + (comment)) (use_declaration (scoped_identifier (identifier) @@ -1614,7 +1617,8 @@ impl Foo { (parameters) (primitive_type) (block - (line_comment) + (line_comment + (comment)) (expression_statement (call_expression (field_expression diff --git a/test/corpus/macros.txt b/test/corpus/macros.txt index c8c0bb6..eae2dc2 100644 --- a/test/corpus/macros.txt +++ b/test/corpus/macros.txt @@ -154,8 +154,10 @@ ok! { (macro_invocation (identifier) (token_tree - (line_comment) - (block_comment)))) + (line_comment + (comment)) + (block_comment + (comment))))) ================================================================================ Macro definition diff --git a/test/corpus/source_files.txt b/test/corpus/source_files.txt index 9b6261f..8161d4c 100644 --- a/test/corpus/source_files.txt +++ b/test/corpus/source_files.txt @@ -17,8 +17,10 @@ Block comments ---- (source_file - (block_comment) - (block_comment) + (block_comment + comment: (comment)) + (block_comment + comment: (comment)) (block_comment outer: (outer_doc_comment_marker) doc: (doc_comment)) @@ -51,12 +53,18 @@ Nested block comments ---- (source_file - (block_comment) - (line_comment) - (block_comment) - (line_comment) - (block_comment) - (line_comment)) + (block_comment + (comment)) + (line_comment + (comment)) + (block_comment + (comment)) + (line_comment + (comment)) + (block_comment + (comment)) + (line_comment + (comment))) ============================================ Line comments @@ -71,7 +79,8 @@ Line comments ---- (source_file - (line_comment) + (line_comment + comment: (comment)) (line_comment outer: (outer_doc_comment_marker) doc: (doc_comment)) @@ -99,14 +108,16 @@ Line doc comments (line_comment inner: (inner_doc_comment_marker) doc: (doc_comment)) - (line_comment) + (line_comment + comment: (comment)) (line_comment outer: (outer_doc_comment_marker) doc: (doc_comment)) (line_comment outer: (outer_doc_comment_marker) doc: (doc_comment)) - (line_comment)) + (line_comment + comment: (comment))) ==================================== Block doc comments @@ -128,11 +139,13 @@ Block doc comments (block_comment inner: (inner_doc_comment_marker) doc: (doc_comment)) - (block_comment) + (block_comment + comment: (comment)) (block_comment outer: (outer_doc_comment_marker) doc: (doc_comment)) - (block_comment)) + (block_comment + comment: (comment))) ===================================== Nested doc block comments @@ -145,7 +158,8 @@ Nested doc block comments ---- (source_file - (block_comment) + (block_comment + comment: (comment)) (block_comment inner: (inner_doc_comment_marker) doc: (doc_comment)) @@ -178,15 +192,18 @@ let x; // <- immediate item after an empty line doc comment (doc_comment)) (block_comment (inner_doc_comment_marker)) - (line_comment) + (line_comment + (comment)) (line_comment (outer_doc_comment_marker) (doc_comment)) (let_declaration (identifier)) - (line_comment) + (line_comment + (comment)) (block_comment) - (block_comment)) + (block_comment + (comment))) ================================================================================ Line doc comment with no EOL